@etherisc/gif-next 0.0.2-bad4d33-850 → 0.0.2-bad547c-946

Sign up to get free protection for your applications and to get access to all the features.
Files changed (753) hide show
  1. package/README.md +85 -23
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1007 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +744 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +791 -0
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1379 -0
  10. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +24 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1434 -0
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +542 -0
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  17. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1130 -0
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +350 -0
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +167 -0
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +253 -0
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1322 -0
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +589 -0
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1016 -0
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1509 -0
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +864 -0
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +915 -0
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  39. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1008 -0
  40. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  41. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  42. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1475 -0
  44. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +589 -0
  46. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2040 -0
  48. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +589 -0
  50. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  51. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1479 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +589 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1195 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1655 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +589 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2426 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  65. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +589 -0
  66. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  67. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
  68. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  69. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +305 -1532
  70. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  71. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +369 -196
  72. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  73. package/artifacts/contracts/instance/Instance.sol/Instance.json +449 -2564
  74. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  75. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1929 -0
  76. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +661 -0
  78. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  79. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1617 -569
  80. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  81. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +424 -438
  82. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  83. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +375 -104
  84. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  85. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3718 -0
  86. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  87. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -0
  88. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  89. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  90. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  91. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
  92. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  93. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  94. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  95. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  96. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  97. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
  98. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  99. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  100. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  101. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  102. package/artifacts/contracts/instance/module/{ITreasury.sol/ITreasury.json → IComponents.sol/IComponents.json} +2 -2
  103. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  104. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  105. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  106. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  107. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  108. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  109. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +959 -0
  110. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  111. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +569 -0
  112. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  113. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  114. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  115. package/artifacts/contracts/{components/IPoolComponent.sol/IPoolComponent.json → oracle/IOracleComponent.sol/IOracleComponent.json} +345 -284
  116. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  117. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → oracle/IOracleService.sol/IOracleService.json} +310 -343
  118. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  119. package/artifacts/contracts/{components/Distribution.sol/Distribution.json → oracle/Oracle.sol/Oracle.json} +323 -297
  120. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  121. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
  122. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  123. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +764 -0
  124. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  125. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1252 -0
  126. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  127. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +589 -0
  128. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  129. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1261 -0
  130. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  131. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +800 -0
  132. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  133. package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +435 -270
  134. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  135. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/IPoolComponent.sol/IPoolComponent.json} +344 -351
  136. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  137. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1230 -0
  138. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  139. package/artifacts/contracts/pool/Pool.sol/Pool.json +1027 -0
  140. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  141. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +456 -0
  142. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  143. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1574 -0
  144. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  145. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +808 -0
  146. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  147. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +813 -0
  148. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  149. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +728 -0
  150. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  151. package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → product/BasicProduct.sol/BasicProduct.json} +668 -255
  152. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  153. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +589 -0
  154. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  155. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1496 -0
  156. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  157. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +848 -0
  158. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  159. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IApplicationService.sol/IApplicationService.json} +286 -220
  160. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  161. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1064 -0
  162. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  163. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +981 -0
  164. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  165. package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → product/IPricingService.sol/IPricingService.json} +311 -203
  166. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  167. package/artifacts/contracts/{components/Product.sol/Product.json → product/IProductComponent.sol/IProductComponent.json} +450 -381
  168. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  169. package/artifacts/contracts/{instance/service/IDistributionService.sol/IDistributionService.json → product/IRiskService.sol/IRiskService.json} +169 -157
  170. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  171. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1333 -0
  172. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  173. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +293 -0
  174. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  175. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +808 -0
  176. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  177. package/artifacts/contracts/product/PricingService.sol/PricingService.json +930 -0
  178. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  179. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +784 -0
  180. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  181. package/artifacts/contracts/product/Product.sol/Product.json +1119 -0
  182. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  183. package/artifacts/contracts/product/RiskService.sol/RiskService.json +637 -0
  184. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  185. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +724 -0
  186. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  187. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +72 -16
  188. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  189. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +513 -27
  190. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  191. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +284 -222
  192. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  193. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  194. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  195. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -0
  196. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  197. package/artifacts/contracts/registry/Registry.sol/Registry.json +996 -119
  198. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  199. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1928 -0
  200. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  201. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +347 -278
  202. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  203. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +361 -90
  204. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  205. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +1849 -0
  206. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  207. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  208. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  209. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1333 -0
  210. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  211. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
  212. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  213. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +350 -83
  214. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  215. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/Component.sol/Component.json} +318 -214
  216. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  217. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1571 -0
  218. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  219. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +820 -0
  220. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  221. package/artifacts/contracts/{components/IComponent.sol/IComponent.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +178 -148
  222. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  223. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +541 -0
  224. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  225. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  226. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  227. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  228. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  229. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  230. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  231. package/artifacts/contracts/{components/Component.sol/Component.json → shared/IComponent.sol/IComponent.json} +192 -216
  232. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  233. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1203 -0
  234. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  235. package/artifacts/contracts/{components/IDistributionComponent.sol/IDistributionComponent.json → shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json} +287 -226
  236. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  237. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -14
  238. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  239. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  240. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  241. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +46 -26
  242. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  243. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
  244. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  245. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +143 -10
  246. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  247. package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +15 -17
  248. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  249. package/artifacts/contracts/shared/IService.sol/IService.json +124 -141
  250. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  251. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  252. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  253. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +797 -0
  254. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  255. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
  256. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  257. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  258. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  259. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  260. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  261. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +74 -36
  262. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  263. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
  264. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  265. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +156 -60
  266. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  267. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
  268. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  269. package/artifacts/contracts/shared/Service.sol/Service.json +142 -165
  270. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  271. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +635 -8
  272. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  273. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  274. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  275. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  276. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  277. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1436 -0
  278. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  279. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1149 -0
  280. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  281. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
  282. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  283. package/artifacts/contracts/staking/Staking.sol/Staking.json +1846 -0
  284. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  285. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  286. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  287. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +792 -0
  288. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  289. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +536 -0
  290. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  291. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1362 -0
  292. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  293. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +736 -0
  294. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  295. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2283 -0
  296. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  297. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
  298. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  299. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  300. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  301. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  302. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  303. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  304. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  305. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  306. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  307. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  308. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  309. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  310. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  311. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  312. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  313. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  314. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  315. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  316. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  317. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  318. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  319. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  320. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  321. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  322. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  323. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  324. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  325. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  326. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  327. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +199 -0
  328. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  329. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +433 -0
  330. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  331. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
  332. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  333. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  334. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  335. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  336. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  337. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  338. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  339. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  340. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  341. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  342. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  343. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -0
  344. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  345. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  346. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  347. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +113 -0
  348. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  349. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +55 -0
  350. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  351. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
  352. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  353. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  354. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  355. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +78 -0
  356. package/contracts/accounting/AccountingService.sol +262 -0
  357. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  358. package/contracts/accounting/IAccountingService.sol +45 -0
  359. package/contracts/authorization/AccessAdmin.sol +689 -0
  360. package/contracts/authorization/AccessManagerCloneable.sol +149 -0
  361. package/contracts/authorization/Authorization.sol +337 -0
  362. package/contracts/authorization/IAccess.sol +49 -0
  363. package/contracts/authorization/IAccessAdmin.sol +143 -0
  364. package/contracts/authorization/IAuthorization.sol +74 -0
  365. package/contracts/authorization/IServiceAuthorization.sol +40 -0
  366. package/contracts/authorization/ServiceAuthorization.sol +106 -0
  367. package/contracts/distribution/BasicDistribution.sol +141 -0
  368. package/contracts/distribution/BasicDistributionAuthorization.sol +60 -0
  369. package/contracts/distribution/Distribution.sol +289 -0
  370. package/contracts/distribution/DistributionService.sol +358 -0
  371. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  372. package/contracts/distribution/IDistributionComponent.sol +52 -0
  373. package/contracts/distribution/IDistributionService.sol +101 -0
  374. package/contracts/examples/fire/DamageLevel.sol +59 -0
  375. package/contracts/examples/fire/FirePool.sol +90 -0
  376. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  377. package/contracts/examples/fire/FireProduct.sol +438 -0
  378. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  379. package/contracts/examples/fire/FireUSD.sol +26 -0
  380. package/contracts/examples/unpermissioned/SimpleDistribution.sol +57 -0
  381. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  382. package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
  383. package/contracts/examples/unpermissioned/SimplePool.sol +106 -0
  384. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  385. package/contracts/examples/unpermissioned/SimpleProduct.sol +377 -0
  386. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  387. package/contracts/instance/BundleSet.sol +130 -0
  388. package/contracts/instance/IInstance.sol +50 -52
  389. package/contracts/instance/IInstanceService.sol +53 -22
  390. package/contracts/instance/Instance.sol +178 -200
  391. package/contracts/instance/InstanceAdmin.sol +437 -0
  392. package/contracts/instance/InstanceAuthorizationV3.sol +213 -0
  393. package/contracts/instance/InstanceReader.sol +408 -64
  394. package/contracts/instance/InstanceService.sol +307 -338
  395. package/contracts/instance/InstanceServiceManager.sol +14 -29
  396. package/contracts/instance/InstanceStore.sol +298 -0
  397. package/contracts/instance/RiskSet.sol +118 -0
  398. package/contracts/instance/base/BalanceStore.sol +123 -0
  399. package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
  400. package/contracts/instance/base/ObjectCounter.sol +20 -0
  401. package/contracts/instance/base/ObjectLifecycle.sol +113 -0
  402. package/contracts/instance/base/ObjectSet.sol +77 -0
  403. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  404. package/contracts/instance/module/IBundle.sol +8 -8
  405. package/contracts/instance/module/IComponents.sol +51 -0
  406. package/contracts/instance/module/IDistribution.sol +8 -5
  407. package/contracts/instance/module/IPolicy.sol +59 -19
  408. package/contracts/instance/module/IRisk.sol +4 -1
  409. package/contracts/{test/TestToken.sol → mock/Dip.sol} +6 -6
  410. package/contracts/oracle/BasicOracle.sol +47 -0
  411. package/contracts/oracle/BasicOracleAuthorization.sol +37 -0
  412. package/contracts/oracle/IOracle.sol +36 -0
  413. package/contracts/oracle/IOracleComponent.sol +33 -0
  414. package/contracts/oracle/IOracleService.sol +66 -0
  415. package/contracts/oracle/Oracle.sol +156 -0
  416. package/contracts/oracle/OracleService.sol +310 -0
  417. package/contracts/oracle/OracleServiceManager.sol +39 -0
  418. package/contracts/pool/BasicPool.sol +175 -0
  419. package/contracts/pool/BasicPoolAuthorization.sol +76 -0
  420. package/contracts/pool/BundleService.sol +395 -0
  421. package/contracts/pool/BundleServiceManager.sol +39 -0
  422. package/contracts/pool/IBundleService.sol +115 -0
  423. package/contracts/pool/IPoolComponent.sol +62 -0
  424. package/contracts/pool/IPoolService.sol +165 -0
  425. package/contracts/pool/Pool.sol +345 -0
  426. package/contracts/pool/PoolLib.sol +216 -0
  427. package/contracts/pool/PoolService.sol +757 -0
  428. package/contracts/pool/PoolServiceManager.sol +39 -0
  429. package/contracts/product/ApplicationService.sol +259 -0
  430. package/contracts/product/ApplicationServiceManager.sol +38 -0
  431. package/contracts/product/BasicProduct.sol +51 -0
  432. package/contracts/product/BasicProductAuthorization.sol +56 -0
  433. package/contracts/product/ClaimService.sol +632 -0
  434. package/contracts/product/ClaimServiceManager.sol +38 -0
  435. package/contracts/product/IApplicationService.sol +66 -0
  436. package/contracts/product/IClaimService.sol +135 -0
  437. package/contracts/product/IPolicyService.sol +95 -0
  438. package/contracts/product/IPricingService.sol +39 -0
  439. package/contracts/product/IProductComponent.sol +62 -0
  440. package/contracts/product/IRiskService.sol +33 -0
  441. package/contracts/product/PolicyService.sol +682 -0
  442. package/contracts/product/PolicyServiceLib.sol +65 -0
  443. package/contracts/product/PolicyServiceManager.sol +39 -0
  444. package/contracts/product/PricingService.sol +304 -0
  445. package/contracts/product/PricingServiceManager.sol +39 -0
  446. package/contracts/product/Product.sol +478 -0
  447. package/contracts/product/RiskService.sol +145 -0
  448. package/contracts/product/RiskServiceManager.sol +39 -0
  449. package/contracts/registry/ChainNft.sol +83 -36
  450. package/contracts/registry/IRegistry.sol +98 -30
  451. package/contracts/registry/IRegistryService.sol +38 -41
  452. package/contracts/registry/IRelease.sol +26 -0
  453. package/contracts/registry/ITransferInterceptor.sol +1 -1
  454. package/contracts/registry/Registry.sol +485 -207
  455. package/contracts/registry/RegistryAdmin.sol +354 -0
  456. package/contracts/registry/RegistryService.sol +118 -139
  457. package/contracts/registry/RegistryServiceManager.sol +24 -33
  458. package/contracts/registry/ReleaseAdmin.sol +245 -0
  459. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  460. package/contracts/registry/ReleaseRegistry.sol +511 -0
  461. package/contracts/registry/ServiceAuthorizationV3.sol +247 -0
  462. package/contracts/registry/TokenRegistry.sol +263 -62
  463. package/contracts/shared/Component.sol +227 -0
  464. package/contracts/shared/ComponentService.sol +692 -0
  465. package/contracts/shared/ComponentServiceManager.sol +38 -0
  466. package/contracts/shared/ComponentVerifyingService.sol +128 -0
  467. package/contracts/shared/ContractLib.sol +253 -0
  468. package/contracts/shared/IComponent.sol +61 -0
  469. package/contracts/shared/IComponentService.sol +112 -0
  470. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  471. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  472. package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
  473. package/contracts/shared/INftOwnable.sol +15 -12
  474. package/contracts/shared/IPolicyHolder.sol +35 -0
  475. package/contracts/shared/IRegisterable.sol +24 -2
  476. package/contracts/shared/IRegistryLinked.sol +11 -0
  477. package/contracts/shared/IService.sol +12 -5
  478. package/contracts/shared/InitializableERC165.sol +27 -0
  479. package/contracts/shared/InstanceLinkedComponent.sol +197 -0
  480. package/contracts/shared/KeyValueStore.sol +131 -0
  481. package/contracts/shared/Lifecycle.sol +88 -0
  482. package/contracts/shared/NftIdSet.sol +65 -0
  483. package/contracts/shared/NftOwnable.sol +75 -87
  484. package/contracts/shared/PolicyHolder.sol +62 -0
  485. package/contracts/shared/Registerable.sol +52 -29
  486. package/contracts/shared/RegistryLinked.sol +38 -0
  487. package/contracts/shared/Service.sol +39 -34
  488. package/contracts/shared/TokenHandler.sol +326 -12
  489. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  490. package/contracts/staking/IStaking.sol +164 -0
  491. package/contracts/staking/IStakingService.sol +168 -0
  492. package/contracts/staking/StakeManagerLib.sol +273 -0
  493. package/contracts/staking/Staking.sol +530 -0
  494. package/contracts/staking/StakingLifecycle.sol +23 -0
  495. package/contracts/staking/StakingManager.sol +52 -0
  496. package/contracts/staking/StakingReader.sol +175 -0
  497. package/contracts/staking/StakingService.sol +453 -0
  498. package/contracts/staking/StakingServiceManager.sol +45 -0
  499. package/contracts/staking/StakingStore.sol +605 -0
  500. package/contracts/staking/TargetManagerLib.sol +211 -0
  501. package/contracts/{types → type}/AddressSet.sol +1 -1
  502. package/contracts/type/Amount.sol +150 -0
  503. package/contracts/{types → type}/Blocknumber.sol +27 -3
  504. package/contracts/type/ClaimId.sol +80 -0
  505. package/contracts/{types → type}/DistributorType.sol +2 -2
  506. package/contracts/{types → type}/Fee.sol +33 -23
  507. package/contracts/{types → type}/Key32.sol +2 -2
  508. package/contracts/type/Key32Set.sol +62 -0
  509. package/contracts/{types → type}/NftId.sol +28 -15
  510. package/contracts/{types → type}/NftIdSet.sol +2 -2
  511. package/contracts/type/ObjectType.sol +303 -0
  512. package/contracts/type/PayoutId.sol +82 -0
  513. package/contracts/{types → type}/Referral.sol +6 -1
  514. package/contracts/type/RequestId.sol +75 -0
  515. package/contracts/type/RiskId.sol +74 -0
  516. package/contracts/type/RoleId.sol +182 -0
  517. package/contracts/type/Seconds.sol +101 -0
  518. package/contracts/type/Selector.sol +107 -0
  519. package/contracts/{types → type}/StateId.sol +48 -4
  520. package/contracts/type/String.sol +53 -0
  521. package/contracts/{types → type}/Timestamp.sol +33 -19
  522. package/contracts/{types → type}/UFixed.sol +41 -121
  523. package/contracts/{types → type}/Version.sol +20 -7
  524. package/contracts/{shared → upgradeability}/IVersionable.sol +5 -48
  525. package/contracts/upgradeability/ProxyManager.sol +232 -0
  526. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  527. package/contracts/upgradeability/Versionable.sol +59 -0
  528. package/package.json +11 -7
  529. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  530. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  531. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  532. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  533. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  534. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  535. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  536. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  537. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
  538. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
  539. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
  540. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
  541. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
  542. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
  543. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  544. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  545. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  546. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  547. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  548. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  549. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  550. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  551. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  552. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  553. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  554. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  555. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  556. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  557. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  558. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  559. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  560. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  561. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  562. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  563. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  564. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  565. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  566. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  567. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  568. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  569. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  570. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  571. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  572. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  573. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  574. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  575. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  576. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  577. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -764
  578. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  579. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  580. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1034
  581. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  582. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -261
  583. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  584. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  585. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  586. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  587. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
  588. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  589. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  590. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
  591. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -254
  592. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  593. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  594. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  595. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1102
  596. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  597. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -449
  598. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  599. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -772
  600. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  601. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -437
  602. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  603. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  604. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  605. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  606. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  607. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  608. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1227
  609. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  610. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -505
  611. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  612. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -806
  613. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  614. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -437
  615. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  616. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -856
  617. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  618. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -437
  619. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  620. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  621. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  622. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -547
  623. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  624. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  625. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  626. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
  627. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  628. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -205
  629. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  630. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -362
  631. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  632. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  633. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  634. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -228
  635. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  636. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  637. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  638. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -313
  639. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  640. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  641. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  642. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -608
  643. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  644. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  645. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  646. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  647. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  648. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -286
  649. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  650. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  651. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  652. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  653. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  654. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  655. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  656. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  657. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  658. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  659. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  660. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  661. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  662. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  663. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  664. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  665. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  666. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  667. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  668. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  669. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  670. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  671. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  672. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
  673. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  674. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  675. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  676. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  677. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  678. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  679. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  680. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -249
  681. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  682. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  683. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  684. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  685. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  686. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  687. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  688. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  689. package/contracts/components/Component.sol +0 -216
  690. package/contracts/components/Distribution.sol +0 -153
  691. package/contracts/components/IComponent.sol +0 -43
  692. package/contracts/components/IDistributionComponent.sol +0 -47
  693. package/contracts/components/IPoolComponent.sol +0 -51
  694. package/contracts/components/IProductComponent.sol +0 -39
  695. package/contracts/components/Pool.sol +0 -208
  696. package/contracts/components/Product.sol +0 -266
  697. package/contracts/experiment/cloning/Cloner.sol +0 -47
  698. package/contracts/experiment/errors/Require.sol +0 -38
  699. package/contracts/experiment/errors/Revert.sol +0 -44
  700. package/contracts/experiment/inheritance/A.sol +0 -53
  701. package/contracts/experiment/inheritance/B.sol +0 -28
  702. package/contracts/experiment/inheritance/C.sol +0 -34
  703. package/contracts/experiment/inheritance/IA.sol +0 -13
  704. package/contracts/experiment/inheritance/IB.sol +0 -10
  705. package/contracts/experiment/inheritance/IC.sol +0 -12
  706. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  707. package/contracts/experiment/statemachine/ISM.sol +0 -25
  708. package/contracts/experiment/statemachine/SM.sol +0 -57
  709. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  710. package/contracts/experiment/types/TypeA.sol +0 -47
  711. package/contracts/experiment/types/TypeB.sol +0 -29
  712. package/contracts/instance/BundleManager.sol +0 -125
  713. package/contracts/instance/InstanceAccessManager.sol +0 -298
  714. package/contracts/instance/ObjectManager.sol +0 -84
  715. package/contracts/instance/base/ComponentService.sol +0 -134
  716. package/contracts/instance/base/KeyValueStore.sol +0 -172
  717. package/contracts/instance/base/Lifecycle.sol +0 -100
  718. package/contracts/instance/module/IAccess.sol +0 -48
  719. package/contracts/instance/module/ISetup.sol +0 -46
  720. package/contracts/instance/module/ITreasury.sol +0 -23
  721. package/contracts/instance/service/BundleService.sol +0 -293
  722. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  723. package/contracts/instance/service/DistributionService.sol +0 -106
  724. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  725. package/contracts/instance/service/IBundleService.sol +0 -44
  726. package/contracts/instance/service/IDistributionService.sol +0 -12
  727. package/contracts/instance/service/IPolicyService.sol +0 -94
  728. package/contracts/instance/service/IPoolService.sol +0 -20
  729. package/contracts/instance/service/IProductService.sol +0 -40
  730. package/contracts/instance/service/PolicyService.sol +0 -538
  731. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  732. package/contracts/instance/service/PoolService.sol +0 -110
  733. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  734. package/contracts/instance/service/ProductService.sol +0 -233
  735. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  736. package/contracts/registry/RegistryAccessManager.sol +0 -216
  737. package/contracts/registry/ReleaseManager.sol +0 -332
  738. package/contracts/shared/ContractDeployerLib.sol +0 -72
  739. package/contracts/shared/ERC165.sol +0 -25
  740. package/contracts/shared/ProxyManager.sol +0 -94
  741. package/contracts/shared/Versionable.sol +0 -147
  742. package/contracts/test/TestFee.sol +0 -25
  743. package/contracts/test/TestRegisterable.sol +0 -18
  744. package/contracts/test/TestRoleId.sol +0 -14
  745. package/contracts/test/TestService.sol +0 -25
  746. package/contracts/test/TestVersion.sol +0 -44
  747. package/contracts/test/TestVersionable.sol +0 -17
  748. package/contracts/test/Usdc.sol +0 -26
  749. package/contracts/types/ChainId.sol +0 -38
  750. package/contracts/types/NumberId.sol +0 -52
  751. package/contracts/types/ObjectType.sol +0 -152
  752. package/contracts/types/RiskId.sol +0 -43
  753. package/contracts/types/RoleId.sol +0 -90
@@ -0,0 +1,1846 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "Staking",
4
+ "sourceName": "contracts/staking/Staking.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "authority",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorAuthorityInvalid",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [],
57
+ "name": "ErrorComponentNameLengthZero",
58
+ "type": "error"
59
+ },
60
+ {
61
+ "inputs": [
62
+ {
63
+ "internalType": "address",
64
+ "name": "caller",
65
+ "type": "address"
66
+ }
67
+ ],
68
+ "name": "ErrorComponentNotChainNft",
69
+ "type": "error"
70
+ },
71
+ {
72
+ "inputs": [],
73
+ "name": "ErrorComponentProductNftIdNonzero",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "inputs": [],
78
+ "name": "ErrorComponentProductNftIdZero",
79
+ "type": "error"
80
+ },
81
+ {
82
+ "inputs": [
83
+ {
84
+ "internalType": "address",
85
+ "name": "token",
86
+ "type": "address"
87
+ }
88
+ ],
89
+ "name": "ErrorComponentTokenInvalid",
90
+ "type": "error"
91
+ },
92
+ {
93
+ "inputs": [],
94
+ "name": "ErrorComponentWalletAddressIsSameAsCurrent",
95
+ "type": "error"
96
+ },
97
+ {
98
+ "inputs": [],
99
+ "name": "ErrorComponentWalletAddressZero",
100
+ "type": "error"
101
+ },
102
+ {
103
+ "inputs": [],
104
+ "name": "ErrorComponentWalletNotComponent",
105
+ "type": "error"
106
+ },
107
+ {
108
+ "inputs": [
109
+ {
110
+ "internalType": "NftId",
111
+ "name": "nftId",
112
+ "type": "uint96"
113
+ }
114
+ ],
115
+ "name": "ErrorNftOwnableAlreadyLinked",
116
+ "type": "error"
117
+ },
118
+ {
119
+ "inputs": [
120
+ {
121
+ "internalType": "address",
122
+ "name": "contractAddress",
123
+ "type": "address"
124
+ }
125
+ ],
126
+ "name": "ErrorNftOwnableContractNotRegistered",
127
+ "type": "error"
128
+ },
129
+ {
130
+ "inputs": [],
131
+ "name": "ErrorNftOwnableInitialOwnerZero",
132
+ "type": "error"
133
+ },
134
+ {
135
+ "inputs": [
136
+ {
137
+ "internalType": "NftId",
138
+ "name": "nftId",
139
+ "type": "uint96"
140
+ },
141
+ {
142
+ "internalType": "ObjectType",
143
+ "name": "expectedObjectType",
144
+ "type": "uint8"
145
+ }
146
+ ],
147
+ "name": "ErrorNftOwnableInvalidType",
148
+ "type": "error"
149
+ },
150
+ {
151
+ "inputs": [
152
+ {
153
+ "internalType": "address",
154
+ "name": "account",
155
+ "type": "address"
156
+ }
157
+ ],
158
+ "name": "ErrorNftOwnableNotOwner",
159
+ "type": "error"
160
+ },
161
+ {
162
+ "inputs": [
163
+ {
164
+ "internalType": "address",
165
+ "name": "registryAddress",
166
+ "type": "address"
167
+ }
168
+ ],
169
+ "name": "ErrorNotRegistry",
170
+ "type": "error"
171
+ },
172
+ {
173
+ "inputs": [],
174
+ "name": "ErrorRegisterableNotActive",
175
+ "type": "error"
176
+ },
177
+ {
178
+ "inputs": [
179
+ {
180
+ "internalType": "address",
181
+ "name": "owner",
182
+ "type": "address"
183
+ },
184
+ {
185
+ "internalType": "address",
186
+ "name": "tokenHandler",
187
+ "type": "address"
188
+ },
189
+ {
190
+ "internalType": "uint256",
191
+ "name": "amount",
192
+ "type": "uint256"
193
+ },
194
+ {
195
+ "internalType": "uint256",
196
+ "name": "dipAllowance",
197
+ "type": "uint256"
198
+ }
199
+ ],
200
+ "name": "ErrorStakingDipAllowanceInsufficient",
201
+ "type": "error"
202
+ },
203
+ {
204
+ "inputs": [
205
+ {
206
+ "internalType": "address",
207
+ "name": "owner",
208
+ "type": "address"
209
+ },
210
+ {
211
+ "internalType": "uint256",
212
+ "name": "amount",
213
+ "type": "uint256"
214
+ },
215
+ {
216
+ "internalType": "uint256",
217
+ "name": "dipBalance",
218
+ "type": "uint256"
219
+ }
220
+ ],
221
+ "name": "ErrorStakingDipBalanceInsufficient",
222
+ "type": "error"
223
+ },
224
+ {
225
+ "inputs": [
226
+ {
227
+ "internalType": "NftId",
228
+ "name": "targetNftId",
229
+ "type": "uint96"
230
+ },
231
+ {
232
+ "internalType": "Seconds",
233
+ "name": "maxLockingPeriod",
234
+ "type": "uint40"
235
+ },
236
+ {
237
+ "internalType": "Seconds",
238
+ "name": "lockingPeriod",
239
+ "type": "uint40"
240
+ }
241
+ ],
242
+ "name": "ErrorStakingLockingPeriodTooLong",
243
+ "type": "error"
244
+ },
245
+ {
246
+ "inputs": [
247
+ {
248
+ "internalType": "NftId",
249
+ "name": "targetNftId",
250
+ "type": "uint96"
251
+ },
252
+ {
253
+ "internalType": "Seconds",
254
+ "name": "minLockingPeriod",
255
+ "type": "uint40"
256
+ },
257
+ {
258
+ "internalType": "Seconds",
259
+ "name": "lockingPeriod",
260
+ "type": "uint40"
261
+ }
262
+ ],
263
+ "name": "ErrorStakingLockingPeriodTooShort",
264
+ "type": "error"
265
+ },
266
+ {
267
+ "inputs": [
268
+ {
269
+ "internalType": "NftId",
270
+ "name": "nftId",
271
+ "type": "uint96"
272
+ }
273
+ ],
274
+ "name": "ErrorStakingNotNftOwner",
275
+ "type": "error"
276
+ },
277
+ {
278
+ "inputs": [
279
+ {
280
+ "internalType": "address",
281
+ "name": "registry",
282
+ "type": "address"
283
+ }
284
+ ],
285
+ "name": "ErrorStakingNotRegistry",
286
+ "type": "error"
287
+ },
288
+ {
289
+ "inputs": [
290
+ {
291
+ "internalType": "NftId",
292
+ "name": "stakeNftId",
293
+ "type": "uint96"
294
+ }
295
+ ],
296
+ "name": "ErrorStakingNotStake",
297
+ "type": "error"
298
+ },
299
+ {
300
+ "inputs": [],
301
+ "name": "ErrorStakingNotStakingOwner",
302
+ "type": "error"
303
+ },
304
+ {
305
+ "inputs": [
306
+ {
307
+ "internalType": "NftId",
308
+ "name": "targetNftId",
309
+ "type": "uint96"
310
+ }
311
+ ],
312
+ "name": "ErrorStakingNotTarget",
313
+ "type": "error"
314
+ },
315
+ {
316
+ "inputs": [
317
+ {
318
+ "internalType": "NftId",
319
+ "name": "targetNftId",
320
+ "type": "uint96"
321
+ },
322
+ {
323
+ "internalType": "UFixed",
324
+ "name": "maxRewardRate",
325
+ "type": "uint256"
326
+ },
327
+ {
328
+ "internalType": "UFixed",
329
+ "name": "rewardRate",
330
+ "type": "uint256"
331
+ }
332
+ ],
333
+ "name": "ErrorStakingRewardRateTooHigh",
334
+ "type": "error"
335
+ },
336
+ {
337
+ "inputs": [
338
+ {
339
+ "internalType": "NftId",
340
+ "name": "targetNftId",
341
+ "type": "uint96"
342
+ }
343
+ ],
344
+ "name": "ErrorStakingStakeAmountZero",
345
+ "type": "error"
346
+ },
347
+ {
348
+ "inputs": [
349
+ {
350
+ "internalType": "NftId",
351
+ "name": "stakeNftId",
352
+ "type": "uint96"
353
+ },
354
+ {
355
+ "internalType": "Timestamp",
356
+ "name": "lockedUntil",
357
+ "type": "uint40"
358
+ }
359
+ ],
360
+ "name": "ErrorStakingStakeLocked",
361
+ "type": "error"
362
+ },
363
+ {
364
+ "inputs": [
365
+ {
366
+ "internalType": "address",
367
+ "name": "stakingByStakingReader",
368
+ "type": "address"
369
+ }
370
+ ],
371
+ "name": "ErrorStakingStakingReaderStakingMismatch",
372
+ "type": "error"
373
+ },
374
+ {
375
+ "inputs": [
376
+ {
377
+ "internalType": "NftId",
378
+ "name": "targetNftId",
379
+ "type": "uint96"
380
+ }
381
+ ],
382
+ "name": "ErrorStakingTargetAlreadyRegistered",
383
+ "type": "error"
384
+ },
385
+ {
386
+ "inputs": [],
387
+ "name": "ErrorStakingTargetNftIdZero",
388
+ "type": "error"
389
+ },
390
+ {
391
+ "inputs": [
392
+ {
393
+ "internalType": "NftId",
394
+ "name": "targetNftId",
395
+ "type": "uint96"
396
+ }
397
+ ],
398
+ "name": "ErrorStakingTargetNotFound",
399
+ "type": "error"
400
+ },
401
+ {
402
+ "inputs": [
403
+ {
404
+ "internalType": "NftId",
405
+ "name": "targetNftId",
406
+ "type": "uint96"
407
+ },
408
+ {
409
+ "internalType": "uint256",
410
+ "name": "chainId",
411
+ "type": "uint256"
412
+ },
413
+ {
414
+ "internalType": "address",
415
+ "name": "token",
416
+ "type": "address"
417
+ }
418
+ ],
419
+ "name": "ErrorStakingTargetTokenNotFound",
420
+ "type": "error"
421
+ },
422
+ {
423
+ "inputs": [
424
+ {
425
+ "internalType": "NftId",
426
+ "name": "targetNftId",
427
+ "type": "uint96"
428
+ },
429
+ {
430
+ "internalType": "ObjectType",
431
+ "name": "objectType",
432
+ "type": "uint8"
433
+ }
434
+ ],
435
+ "name": "ErrorStakingTargetTypeNotSupported",
436
+ "type": "error"
437
+ },
438
+ {
439
+ "inputs": [
440
+ {
441
+ "internalType": "NftId",
442
+ "name": "targetNftId",
443
+ "type": "uint96"
444
+ },
445
+ {
446
+ "internalType": "ObjectType",
447
+ "name": "expectedObjectType",
448
+ "type": "uint8"
449
+ },
450
+ {
451
+ "internalType": "ObjectType",
452
+ "name": "actualObjectType",
453
+ "type": "uint8"
454
+ }
455
+ ],
456
+ "name": "ErrorStakingTargetUnexpectedObjectType",
457
+ "type": "error"
458
+ },
459
+ {
460
+ "inputs": [
461
+ {
462
+ "internalType": "uint256",
463
+ "name": "chainId",
464
+ "type": "uint256"
465
+ },
466
+ {
467
+ "internalType": "address",
468
+ "name": "token",
469
+ "type": "address"
470
+ }
471
+ ],
472
+ "name": "ErrorStakingTokenNotRegistered",
473
+ "type": "error"
474
+ },
475
+ {
476
+ "inputs": [],
477
+ "name": "InvalidInitialization",
478
+ "type": "error"
479
+ },
480
+ {
481
+ "inputs": [],
482
+ "name": "NotInitializing",
483
+ "type": "error"
484
+ },
485
+ {
486
+ "anonymous": false,
487
+ "inputs": [
488
+ {
489
+ "indexed": false,
490
+ "internalType": "address",
491
+ "name": "authority",
492
+ "type": "address"
493
+ }
494
+ ],
495
+ "name": "AuthorityUpdated",
496
+ "type": "event"
497
+ },
498
+ {
499
+ "anonymous": false,
500
+ "inputs": [
501
+ {
502
+ "indexed": false,
503
+ "internalType": "uint64",
504
+ "name": "version",
505
+ "type": "uint64"
506
+ }
507
+ ],
508
+ "name": "Initialized",
509
+ "type": "event"
510
+ },
511
+ {
512
+ "anonymous": false,
513
+ "inputs": [
514
+ {
515
+ "indexed": false,
516
+ "internalType": "address",
517
+ "name": "tokenHandler",
518
+ "type": "address"
519
+ },
520
+ {
521
+ "indexed": false,
522
+ "internalType": "address",
523
+ "name": "token",
524
+ "type": "address"
525
+ },
526
+ {
527
+ "indexed": false,
528
+ "internalType": "Amount",
529
+ "name": "limit",
530
+ "type": "uint96"
531
+ },
532
+ {
533
+ "indexed": false,
534
+ "internalType": "bool",
535
+ "name": "isMaxAmount",
536
+ "type": "bool"
537
+ }
538
+ ],
539
+ "name": "LogComponentTokenHandlerApproved",
540
+ "type": "event"
541
+ },
542
+ {
543
+ "anonymous": false,
544
+ "inputs": [
545
+ {
546
+ "indexed": false,
547
+ "internalType": "address",
548
+ "name": "oldWallet",
549
+ "type": "address"
550
+ },
551
+ {
552
+ "indexed": false,
553
+ "internalType": "address",
554
+ "name": "newWallet",
555
+ "type": "address"
556
+ }
557
+ ],
558
+ "name": "LogComponentWalletAddressChanged",
559
+ "type": "event"
560
+ },
561
+ {
562
+ "anonymous": false,
563
+ "inputs": [
564
+ {
565
+ "indexed": false,
566
+ "internalType": "address",
567
+ "name": "from",
568
+ "type": "address"
569
+ },
570
+ {
571
+ "indexed": false,
572
+ "internalType": "address",
573
+ "name": "to",
574
+ "type": "address"
575
+ },
576
+ {
577
+ "indexed": false,
578
+ "internalType": "uint256",
579
+ "name": "amount",
580
+ "type": "uint256"
581
+ }
582
+ ],
583
+ "name": "LogComponentWalletTokensTransferred",
584
+ "type": "event"
585
+ },
586
+ {
587
+ "anonymous": false,
588
+ "inputs": [
589
+ {
590
+ "indexed": false,
591
+ "internalType": "NftId",
592
+ "name": "targetNftId",
593
+ "type": "uint96"
594
+ },
595
+ {
596
+ "indexed": false,
597
+ "internalType": "Seconds",
598
+ "name": "oldLockingPeriod",
599
+ "type": "uint40"
600
+ },
601
+ {
602
+ "indexed": false,
603
+ "internalType": "Seconds",
604
+ "name": "lockingPeriod",
605
+ "type": "uint40"
606
+ }
607
+ ],
608
+ "name": "LogStakingLockingPeriodSet",
609
+ "type": "event"
610
+ },
611
+ {
612
+ "anonymous": false,
613
+ "inputs": [
614
+ {
615
+ "indexed": false,
616
+ "internalType": "NftId",
617
+ "name": "targetNftId",
618
+ "type": "uint96"
619
+ },
620
+ {
621
+ "indexed": false,
622
+ "internalType": "UFixed",
623
+ "name": "oldRewardRate",
624
+ "type": "uint256"
625
+ },
626
+ {
627
+ "indexed": false,
628
+ "internalType": "UFixed",
629
+ "name": "rewardRate",
630
+ "type": "uint256"
631
+ }
632
+ ],
633
+ "name": "LogStakingRewardRateSet",
634
+ "type": "event"
635
+ },
636
+ {
637
+ "anonymous": false,
638
+ "inputs": [
639
+ {
640
+ "indexed": false,
641
+ "internalType": "uint256",
642
+ "name": "chainId",
643
+ "type": "uint256"
644
+ },
645
+ {
646
+ "indexed": false,
647
+ "internalType": "address",
648
+ "name": "token",
649
+ "type": "address"
650
+ },
651
+ {
652
+ "indexed": false,
653
+ "internalType": "UFixed",
654
+ "name": "oldStakingRate",
655
+ "type": "uint256"
656
+ },
657
+ {
658
+ "indexed": false,
659
+ "internalType": "UFixed",
660
+ "name": "newStakingRate",
661
+ "type": "uint256"
662
+ }
663
+ ],
664
+ "name": "LogStakingStakingRateSet",
665
+ "type": "event"
666
+ },
667
+ {
668
+ "inputs": [],
669
+ "name": "COMPONENT_LOCATION_V1",
670
+ "outputs": [
671
+ {
672
+ "internalType": "bytes32",
673
+ "name": "",
674
+ "type": "bytes32"
675
+ }
676
+ ],
677
+ "stateMutability": "view",
678
+ "type": "function"
679
+ },
680
+ {
681
+ "inputs": [],
682
+ "name": "CONTRACT_NAME",
683
+ "outputs": [
684
+ {
685
+ "internalType": "string",
686
+ "name": "",
687
+ "type": "string"
688
+ }
689
+ ],
690
+ "stateMutability": "view",
691
+ "type": "function"
692
+ },
693
+ {
694
+ "inputs": [],
695
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
696
+ "outputs": [
697
+ {
698
+ "internalType": "bytes32",
699
+ "name": "",
700
+ "type": "bytes32"
701
+ }
702
+ ],
703
+ "stateMutability": "view",
704
+ "type": "function"
705
+ },
706
+ {
707
+ "inputs": [],
708
+ "name": "REGISTERABLE_LOCATION_V1",
709
+ "outputs": [
710
+ {
711
+ "internalType": "bytes32",
712
+ "name": "",
713
+ "type": "bytes32"
714
+ }
715
+ ],
716
+ "stateMutability": "view",
717
+ "type": "function"
718
+ },
719
+ {
720
+ "inputs": [],
721
+ "name": "STAKING_LOCATION_V1",
722
+ "outputs": [
723
+ {
724
+ "internalType": "bytes32",
725
+ "name": "",
726
+ "type": "bytes32"
727
+ }
728
+ ],
729
+ "stateMutability": "view",
730
+ "type": "function"
731
+ },
732
+ {
733
+ "inputs": [
734
+ {
735
+ "internalType": "contract IERC20Metadata",
736
+ "name": "token",
737
+ "type": "address"
738
+ },
739
+ {
740
+ "internalType": "Amount",
741
+ "name": "amount",
742
+ "type": "uint96"
743
+ }
744
+ ],
745
+ "name": "approveTokenHandler",
746
+ "outputs": [],
747
+ "stateMutability": "nonpayable",
748
+ "type": "function"
749
+ },
750
+ {
751
+ "inputs": [],
752
+ "name": "authority",
753
+ "outputs": [
754
+ {
755
+ "internalType": "address",
756
+ "name": "",
757
+ "type": "address"
758
+ }
759
+ ],
760
+ "stateMutability": "view",
761
+ "type": "function"
762
+ },
763
+ {
764
+ "inputs": [
765
+ {
766
+ "internalType": "NftId",
767
+ "name": "stakeNftId",
768
+ "type": "uint96"
769
+ }
770
+ ],
771
+ "name": "claimRewards",
772
+ "outputs": [
773
+ {
774
+ "internalType": "Amount",
775
+ "name": "rewardsClaimedAmount",
776
+ "type": "uint96"
777
+ }
778
+ ],
779
+ "stateMutability": "nonpayable",
780
+ "type": "function"
781
+ },
782
+ {
783
+ "inputs": [
784
+ {
785
+ "internalType": "NftId",
786
+ "name": "stakeNftId",
787
+ "type": "uint96"
788
+ },
789
+ {
790
+ "internalType": "NftId",
791
+ "name": "targetNftId",
792
+ "type": "uint96"
793
+ },
794
+ {
795
+ "internalType": "Amount",
796
+ "name": "stakeAmount",
797
+ "type": "uint96"
798
+ }
799
+ ],
800
+ "name": "createStake",
801
+ "outputs": [],
802
+ "stateMutability": "nonpayable",
803
+ "type": "function"
804
+ },
805
+ {
806
+ "inputs": [
807
+ {
808
+ "internalType": "NftId",
809
+ "name": "targetNftId",
810
+ "type": "uint96"
811
+ },
812
+ {
813
+ "internalType": "address",
814
+ "name": "token",
815
+ "type": "address"
816
+ },
817
+ {
818
+ "internalType": "Amount",
819
+ "name": "amount",
820
+ "type": "uint96"
821
+ }
822
+ ],
823
+ "name": "decreaseTotalValueLocked",
824
+ "outputs": [
825
+ {
826
+ "internalType": "Amount",
827
+ "name": "newBalance",
828
+ "type": "uint96"
829
+ }
830
+ ],
831
+ "stateMutability": "nonpayable",
832
+ "type": "function"
833
+ },
834
+ {
835
+ "inputs": [],
836
+ "name": "getComponentInfo",
837
+ "outputs": [
838
+ {
839
+ "components": [
840
+ {
841
+ "internalType": "string",
842
+ "name": "name",
843
+ "type": "string"
844
+ },
845
+ {
846
+ "internalType": "contract IERC20Metadata",
847
+ "name": "token",
848
+ "type": "address"
849
+ },
850
+ {
851
+ "internalType": "contract TokenHandler",
852
+ "name": "tokenHandler",
853
+ "type": "address"
854
+ },
855
+ {
856
+ "internalType": "bytes",
857
+ "name": "data",
858
+ "type": "bytes"
859
+ }
860
+ ],
861
+ "internalType": "struct IComponents.ComponentInfo",
862
+ "name": "info",
863
+ "type": "tuple"
864
+ }
865
+ ],
866
+ "stateMutability": "view",
867
+ "type": "function"
868
+ },
869
+ {
870
+ "inputs": [],
871
+ "name": "getInitialComponentInfo",
872
+ "outputs": [
873
+ {
874
+ "components": [
875
+ {
876
+ "internalType": "string",
877
+ "name": "name",
878
+ "type": "string"
879
+ },
880
+ {
881
+ "internalType": "contract IERC20Metadata",
882
+ "name": "token",
883
+ "type": "address"
884
+ },
885
+ {
886
+ "internalType": "contract TokenHandler",
887
+ "name": "tokenHandler",
888
+ "type": "address"
889
+ },
890
+ {
891
+ "internalType": "bytes",
892
+ "name": "data",
893
+ "type": "bytes"
894
+ }
895
+ ],
896
+ "internalType": "struct IComponents.ComponentInfo",
897
+ "name": "info",
898
+ "type": "tuple"
899
+ }
900
+ ],
901
+ "stateMutability": "view",
902
+ "type": "function"
903
+ },
904
+ {
905
+ "inputs": [],
906
+ "name": "getInitialInfo",
907
+ "outputs": [
908
+ {
909
+ "components": [
910
+ {
911
+ "internalType": "NftId",
912
+ "name": "nftId",
913
+ "type": "uint96"
914
+ },
915
+ {
916
+ "internalType": "NftId",
917
+ "name": "parentNftId",
918
+ "type": "uint96"
919
+ },
920
+ {
921
+ "internalType": "ObjectType",
922
+ "name": "objectType",
923
+ "type": "uint8"
924
+ },
925
+ {
926
+ "internalType": "bool",
927
+ "name": "isInterceptor",
928
+ "type": "bool"
929
+ },
930
+ {
931
+ "internalType": "address",
932
+ "name": "objectAddress",
933
+ "type": "address"
934
+ },
935
+ {
936
+ "internalType": "address",
937
+ "name": "initialOwner",
938
+ "type": "address"
939
+ },
940
+ {
941
+ "internalType": "bytes",
942
+ "name": "data",
943
+ "type": "bytes"
944
+ }
945
+ ],
946
+ "internalType": "struct IRegistry.ObjectInfo",
947
+ "name": "info",
948
+ "type": "tuple"
949
+ }
950
+ ],
951
+ "stateMutability": "view",
952
+ "type": "function"
953
+ },
954
+ {
955
+ "inputs": [],
956
+ "name": "getName",
957
+ "outputs": [
958
+ {
959
+ "internalType": "string",
960
+ "name": "name",
961
+ "type": "string"
962
+ }
963
+ ],
964
+ "stateMutability": "view",
965
+ "type": "function"
966
+ },
967
+ {
968
+ "inputs": [],
969
+ "name": "getNftId",
970
+ "outputs": [
971
+ {
972
+ "internalType": "NftId",
973
+ "name": "",
974
+ "type": "uint96"
975
+ }
976
+ ],
977
+ "stateMutability": "view",
978
+ "type": "function"
979
+ },
980
+ {
981
+ "inputs": [],
982
+ "name": "getOwner",
983
+ "outputs": [
984
+ {
985
+ "internalType": "address",
986
+ "name": "",
987
+ "type": "address"
988
+ }
989
+ ],
990
+ "stateMutability": "view",
991
+ "type": "function"
992
+ },
993
+ {
994
+ "inputs": [],
995
+ "name": "getRegistry",
996
+ "outputs": [
997
+ {
998
+ "internalType": "contract IRegistry",
999
+ "name": "",
1000
+ "type": "address"
1001
+ }
1002
+ ],
1003
+ "stateMutability": "view",
1004
+ "type": "function"
1005
+ },
1006
+ {
1007
+ "inputs": [],
1008
+ "name": "getRelease",
1009
+ "outputs": [
1010
+ {
1011
+ "internalType": "VersionPart",
1012
+ "name": "",
1013
+ "type": "uint8"
1014
+ }
1015
+ ],
1016
+ "stateMutability": "pure",
1017
+ "type": "function"
1018
+ },
1019
+ {
1020
+ "inputs": [],
1021
+ "name": "getStakingReader",
1022
+ "outputs": [
1023
+ {
1024
+ "internalType": "contract StakingReader",
1025
+ "name": "reader",
1026
+ "type": "address"
1027
+ }
1028
+ ],
1029
+ "stateMutability": "view",
1030
+ "type": "function"
1031
+ },
1032
+ {
1033
+ "inputs": [],
1034
+ "name": "getStakingStore",
1035
+ "outputs": [
1036
+ {
1037
+ "internalType": "contract StakingStore",
1038
+ "name": "stakingStore",
1039
+ "type": "address"
1040
+ }
1041
+ ],
1042
+ "stateMutability": "view",
1043
+ "type": "function"
1044
+ },
1045
+ {
1046
+ "inputs": [],
1047
+ "name": "getToken",
1048
+ "outputs": [
1049
+ {
1050
+ "internalType": "contract IERC20Metadata",
1051
+ "name": "token",
1052
+ "type": "address"
1053
+ }
1054
+ ],
1055
+ "stateMutability": "view",
1056
+ "type": "function"
1057
+ },
1058
+ {
1059
+ "inputs": [],
1060
+ "name": "getTokenHandler",
1061
+ "outputs": [
1062
+ {
1063
+ "internalType": "contract TokenHandler",
1064
+ "name": "tokenHandler",
1065
+ "type": "address"
1066
+ }
1067
+ ],
1068
+ "stateMutability": "view",
1069
+ "type": "function"
1070
+ },
1071
+ {
1072
+ "inputs": [],
1073
+ "name": "getTokenRegistryAddress",
1074
+ "outputs": [
1075
+ {
1076
+ "internalType": "address",
1077
+ "name": "tokenRegistry",
1078
+ "type": "address"
1079
+ }
1080
+ ],
1081
+ "stateMutability": "view",
1082
+ "type": "function"
1083
+ },
1084
+ {
1085
+ "inputs": [],
1086
+ "name": "getVersion",
1087
+ "outputs": [
1088
+ {
1089
+ "internalType": "Version",
1090
+ "name": "",
1091
+ "type": "uint24"
1092
+ }
1093
+ ],
1094
+ "stateMutability": "pure",
1095
+ "type": "function"
1096
+ },
1097
+ {
1098
+ "inputs": [],
1099
+ "name": "getWallet",
1100
+ "outputs": [
1101
+ {
1102
+ "internalType": "address",
1103
+ "name": "walletAddress",
1104
+ "type": "address"
1105
+ }
1106
+ ],
1107
+ "stateMutability": "view",
1108
+ "type": "function"
1109
+ },
1110
+ {
1111
+ "inputs": [
1112
+ {
1113
+ "internalType": "NftId",
1114
+ "name": "targetNftId",
1115
+ "type": "uint96"
1116
+ },
1117
+ {
1118
+ "internalType": "address",
1119
+ "name": "token",
1120
+ "type": "address"
1121
+ },
1122
+ {
1123
+ "internalType": "Amount",
1124
+ "name": "amount",
1125
+ "type": "uint96"
1126
+ }
1127
+ ],
1128
+ "name": "increaseTotalValueLocked",
1129
+ "outputs": [
1130
+ {
1131
+ "internalType": "Amount",
1132
+ "name": "newBalance",
1133
+ "type": "uint96"
1134
+ }
1135
+ ],
1136
+ "stateMutability": "nonpayable",
1137
+ "type": "function"
1138
+ },
1139
+ {
1140
+ "inputs": [],
1141
+ "name": "initializeTokenHandler",
1142
+ "outputs": [],
1143
+ "stateMutability": "nonpayable",
1144
+ "type": "function"
1145
+ },
1146
+ {
1147
+ "inputs": [
1148
+ {
1149
+ "internalType": "address",
1150
+ "name": "activatedBy",
1151
+ "type": "address"
1152
+ },
1153
+ {
1154
+ "internalType": "bytes",
1155
+ "name": "data",
1156
+ "type": "bytes"
1157
+ }
1158
+ ],
1159
+ "name": "initializeVersionable",
1160
+ "outputs": [],
1161
+ "stateMutability": "nonpayable",
1162
+ "type": "function"
1163
+ },
1164
+ {
1165
+ "inputs": [],
1166
+ "name": "isActive",
1167
+ "outputs": [
1168
+ {
1169
+ "internalType": "bool",
1170
+ "name": "active",
1171
+ "type": "bool"
1172
+ }
1173
+ ],
1174
+ "stateMutability": "view",
1175
+ "type": "function"
1176
+ },
1177
+ {
1178
+ "inputs": [],
1179
+ "name": "isConsumingScheduledOp",
1180
+ "outputs": [
1181
+ {
1182
+ "internalType": "bytes4",
1183
+ "name": "",
1184
+ "type": "bytes4"
1185
+ }
1186
+ ],
1187
+ "stateMutability": "view",
1188
+ "type": "function"
1189
+ },
1190
+ {
1191
+ "inputs": [],
1192
+ "name": "isNftInterceptor",
1193
+ "outputs": [
1194
+ {
1195
+ "internalType": "bool",
1196
+ "name": "isInterceptor",
1197
+ "type": "bool"
1198
+ }
1199
+ ],
1200
+ "stateMutability": "view",
1201
+ "type": "function"
1202
+ },
1203
+ {
1204
+ "inputs": [],
1205
+ "name": "isRegistered",
1206
+ "outputs": [
1207
+ {
1208
+ "internalType": "bool",
1209
+ "name": "",
1210
+ "type": "bool"
1211
+ }
1212
+ ],
1213
+ "stateMutability": "view",
1214
+ "type": "function"
1215
+ },
1216
+ {
1217
+ "inputs": [],
1218
+ "name": "linkToRegisteredNftId",
1219
+ "outputs": [
1220
+ {
1221
+ "internalType": "NftId",
1222
+ "name": "nftId",
1223
+ "type": "uint96"
1224
+ }
1225
+ ],
1226
+ "stateMutability": "nonpayable",
1227
+ "type": "function"
1228
+ },
1229
+ {
1230
+ "inputs": [
1231
+ {
1232
+ "internalType": "address",
1233
+ "name": "from",
1234
+ "type": "address"
1235
+ },
1236
+ {
1237
+ "internalType": "address",
1238
+ "name": "to",
1239
+ "type": "address"
1240
+ },
1241
+ {
1242
+ "internalType": "uint256",
1243
+ "name": "tokenId",
1244
+ "type": "uint256"
1245
+ },
1246
+ {
1247
+ "internalType": "address",
1248
+ "name": "operator",
1249
+ "type": "address"
1250
+ }
1251
+ ],
1252
+ "name": "nftTransferFrom",
1253
+ "outputs": [],
1254
+ "stateMutability": "nonpayable",
1255
+ "type": "function"
1256
+ },
1257
+ {
1258
+ "inputs": [
1259
+ {
1260
+ "internalType": "NftId",
1261
+ "name": "targetNftId",
1262
+ "type": "uint96"
1263
+ },
1264
+ {
1265
+ "internalType": "Amount",
1266
+ "name": "dipAmount",
1267
+ "type": "uint96"
1268
+ }
1269
+ ],
1270
+ "name": "refillRewardReserves",
1271
+ "outputs": [
1272
+ {
1273
+ "internalType": "Amount",
1274
+ "name": "newBalance",
1275
+ "type": "uint96"
1276
+ }
1277
+ ],
1278
+ "stateMutability": "nonpayable",
1279
+ "type": "function"
1280
+ },
1281
+ {
1282
+ "inputs": [
1283
+ {
1284
+ "internalType": "NftId",
1285
+ "name": "targetNftId",
1286
+ "type": "uint96"
1287
+ },
1288
+ {
1289
+ "components": [
1290
+ {
1291
+ "internalType": "ObjectType",
1292
+ "name": "objectType",
1293
+ "type": "uint8"
1294
+ },
1295
+ {
1296
+ "internalType": "uint256",
1297
+ "name": "chainId",
1298
+ "type": "uint256"
1299
+ },
1300
+ {
1301
+ "internalType": "Seconds",
1302
+ "name": "lockingPeriod",
1303
+ "type": "uint40"
1304
+ },
1305
+ {
1306
+ "internalType": "UFixed",
1307
+ "name": "rewardRate",
1308
+ "type": "uint256"
1309
+ }
1310
+ ],
1311
+ "internalType": "struct IStaking.TargetInfo",
1312
+ "name": "targetInfo",
1313
+ "type": "tuple"
1314
+ }
1315
+ ],
1316
+ "name": "registerRemoteTarget",
1317
+ "outputs": [],
1318
+ "stateMutability": "nonpayable",
1319
+ "type": "function"
1320
+ },
1321
+ {
1322
+ "inputs": [
1323
+ {
1324
+ "internalType": "NftId",
1325
+ "name": "targetNftId",
1326
+ "type": "uint96"
1327
+ },
1328
+ {
1329
+ "internalType": "ObjectType",
1330
+ "name": "expectedObjectType",
1331
+ "type": "uint8"
1332
+ },
1333
+ {
1334
+ "internalType": "uint256",
1335
+ "name": "chainId",
1336
+ "type": "uint256"
1337
+ },
1338
+ {
1339
+ "internalType": "Seconds",
1340
+ "name": "initialLockingPeriod",
1341
+ "type": "uint40"
1342
+ },
1343
+ {
1344
+ "internalType": "UFixed",
1345
+ "name": "initialRewardRate",
1346
+ "type": "uint256"
1347
+ }
1348
+ ],
1349
+ "name": "registerTarget",
1350
+ "outputs": [],
1351
+ "stateMutability": "nonpayable",
1352
+ "type": "function"
1353
+ },
1354
+ {
1355
+ "inputs": [
1356
+ {
1357
+ "internalType": "NftId",
1358
+ "name": "stakeNftId",
1359
+ "type": "uint96"
1360
+ },
1361
+ {
1362
+ "internalType": "NftId",
1363
+ "name": "newStakeNftId",
1364
+ "type": "uint96"
1365
+ }
1366
+ ],
1367
+ "name": "restake",
1368
+ "outputs": [
1369
+ {
1370
+ "internalType": "Amount",
1371
+ "name": "newStakeBalance",
1372
+ "type": "uint96"
1373
+ }
1374
+ ],
1375
+ "stateMutability": "nonpayable",
1376
+ "type": "function"
1377
+ },
1378
+ {
1379
+ "inputs": [
1380
+ {
1381
+ "internalType": "address",
1382
+ "name": "newAuthority",
1383
+ "type": "address"
1384
+ }
1385
+ ],
1386
+ "name": "setAuthority",
1387
+ "outputs": [],
1388
+ "stateMutability": "nonpayable",
1389
+ "type": "function"
1390
+ },
1391
+ {
1392
+ "inputs": [
1393
+ {
1394
+ "internalType": "NftId",
1395
+ "name": "targetNftId",
1396
+ "type": "uint96"
1397
+ },
1398
+ {
1399
+ "internalType": "Seconds",
1400
+ "name": "lockingPeriod",
1401
+ "type": "uint40"
1402
+ }
1403
+ ],
1404
+ "name": "setLockingPeriod",
1405
+ "outputs": [],
1406
+ "stateMutability": "nonpayable",
1407
+ "type": "function"
1408
+ },
1409
+ {
1410
+ "inputs": [
1411
+ {
1412
+ "internalType": "NftId",
1413
+ "name": "targetNftId",
1414
+ "type": "uint96"
1415
+ },
1416
+ {
1417
+ "internalType": "UFixed",
1418
+ "name": "rewardRate",
1419
+ "type": "uint256"
1420
+ }
1421
+ ],
1422
+ "name": "setRewardRate",
1423
+ "outputs": [],
1424
+ "stateMutability": "nonpayable",
1425
+ "type": "function"
1426
+ },
1427
+ {
1428
+ "inputs": [
1429
+ {
1430
+ "internalType": "uint256",
1431
+ "name": "chainId",
1432
+ "type": "uint256"
1433
+ },
1434
+ {
1435
+ "internalType": "address",
1436
+ "name": "token",
1437
+ "type": "address"
1438
+ },
1439
+ {
1440
+ "internalType": "UFixed",
1441
+ "name": "stakingRate",
1442
+ "type": "uint256"
1443
+ }
1444
+ ],
1445
+ "name": "setStakingRate",
1446
+ "outputs": [],
1447
+ "stateMutability": "nonpayable",
1448
+ "type": "function"
1449
+ },
1450
+ {
1451
+ "inputs": [
1452
+ {
1453
+ "internalType": "contract StakingReader",
1454
+ "name": "stakingReader",
1455
+ "type": "address"
1456
+ }
1457
+ ],
1458
+ "name": "setStakingReader",
1459
+ "outputs": [],
1460
+ "stateMutability": "nonpayable",
1461
+ "type": "function"
1462
+ },
1463
+ {
1464
+ "inputs": [
1465
+ {
1466
+ "internalType": "NftId",
1467
+ "name": "stakeNftId",
1468
+ "type": "uint96"
1469
+ },
1470
+ {
1471
+ "internalType": "Amount",
1472
+ "name": "stakeAmount",
1473
+ "type": "uint96"
1474
+ }
1475
+ ],
1476
+ "name": "stake",
1477
+ "outputs": [
1478
+ {
1479
+ "internalType": "Amount",
1480
+ "name": "stakeBalance",
1481
+ "type": "uint96"
1482
+ }
1483
+ ],
1484
+ "stateMutability": "nonpayable",
1485
+ "type": "function"
1486
+ },
1487
+ {
1488
+ "inputs": [
1489
+ {
1490
+ "internalType": "bytes4",
1491
+ "name": "interfaceId",
1492
+ "type": "bytes4"
1493
+ }
1494
+ ],
1495
+ "name": "supportsInterface",
1496
+ "outputs": [
1497
+ {
1498
+ "internalType": "bool",
1499
+ "name": "",
1500
+ "type": "bool"
1501
+ }
1502
+ ],
1503
+ "stateMutability": "view",
1504
+ "type": "function"
1505
+ },
1506
+ {
1507
+ "inputs": [
1508
+ {
1509
+ "internalType": "NftId",
1510
+ "name": "stakeNftId",
1511
+ "type": "uint96"
1512
+ }
1513
+ ],
1514
+ "name": "unstake",
1515
+ "outputs": [
1516
+ {
1517
+ "internalType": "Amount",
1518
+ "name": "unstakedAmount",
1519
+ "type": "uint96"
1520
+ },
1521
+ {
1522
+ "internalType": "Amount",
1523
+ "name": "rewardsClaimedAmount",
1524
+ "type": "uint96"
1525
+ }
1526
+ ],
1527
+ "stateMutability": "nonpayable",
1528
+ "type": "function"
1529
+ },
1530
+ {
1531
+ "inputs": [
1532
+ {
1533
+ "internalType": "NftId",
1534
+ "name": "targetNftId",
1535
+ "type": "uint96"
1536
+ },
1537
+ {
1538
+ "internalType": "address",
1539
+ "name": "token",
1540
+ "type": "address"
1541
+ },
1542
+ {
1543
+ "internalType": "Amount",
1544
+ "name": "amount",
1545
+ "type": "uint96"
1546
+ }
1547
+ ],
1548
+ "name": "updateRemoteTvl",
1549
+ "outputs": [],
1550
+ "stateMutability": "nonpayable",
1551
+ "type": "function"
1552
+ },
1553
+ {
1554
+ "inputs": [
1555
+ {
1556
+ "internalType": "NftId",
1557
+ "name": "stakeNftId",
1558
+ "type": "uint96"
1559
+ }
1560
+ ],
1561
+ "name": "updateRewards",
1562
+ "outputs": [],
1563
+ "stateMutability": "nonpayable",
1564
+ "type": "function"
1565
+ },
1566
+ {
1567
+ "inputs": [
1568
+ {
1569
+ "internalType": "bytes",
1570
+ "name": "data",
1571
+ "type": "bytes"
1572
+ }
1573
+ ],
1574
+ "name": "upgradeVersionable",
1575
+ "outputs": [],
1576
+ "stateMutability": "nonpayable",
1577
+ "type": "function"
1578
+ },
1579
+ {
1580
+ "inputs": [
1581
+ {
1582
+ "internalType": "NftId",
1583
+ "name": "targetNftId",
1584
+ "type": "uint96"
1585
+ },
1586
+ {
1587
+ "internalType": "Amount",
1588
+ "name": "dipAmount",
1589
+ "type": "uint96"
1590
+ }
1591
+ ],
1592
+ "name": "withdrawRewardReserves",
1593
+ "outputs": [
1594
+ {
1595
+ "internalType": "Amount",
1596
+ "name": "newBalance",
1597
+ "type": "uint96"
1598
+ }
1599
+ ],
1600
+ "stateMutability": "nonpayable",
1601
+ "type": "function"
1602
+ }
1603
+ ],
1604
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b614c8a806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106102cb575f3560e01c80635fd1efec1161017b578063958697a0116100e4578063caed98971161009e578063dea4ccf211610079578063dea4ccf214610675578063e8ce883d146106a8578063ea15869f146106bb578063ea48ce9b146106e2575f80fd5b8063caed989714610647578063d44f8a4b1461064f578063de0eb85f14610662575f80fd5b8063958697a0146105ea5780639a726364146105fd578063ad12ad6014610610578063ada9652e14610623578063b423086c14610637578063bf7e214f1461063f575f80fd5b806376b707b71161013557806376b707b7146105775780637a9e5e4b1461059157806386c75754146105a4578063893d20e8146105ac5780638fb36037146105b457806390edbd35146105d5575f80fd5b80635fd1efec146104f3578063614d08f8146105065780636291423a1461052c578063644c45e0146105345780636c1e9dff14610551578063719f761a14610564575f80fd5b806322f3e2d41161023757806343d752d3116101f15780635741e5e9116101cc5780635741e5e9146104b45780635ab1bd53146104bc5780635cbb7d85146104cd5780635ecf260f146104e0575f80fd5b806343d752d31461048657806349bb9e4b1461048e578063562119ee146104a1575f80fd5b806322f3e2d41461041f5780632a80f6731461042757806331ecc5cc1461043a578063329d6e741461044d57806336644da614610460578063419197fe14610473575f80fd5b806313299604116102885780631329960414610393578063138461e0146103b357806317d7de7c146103d35780631eff4b22146103e857806321df0da71461040f5780632236684414610417575f80fd5b806301ffc9a7146102cf578063062c9cdf1461031057806309980bfd146103455780630d8e6e2c1461034f5780630fec111c1461036b57806310a0638a14610380575b5f80fd5b6102fb6102dd366004613fe3565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6103377fafe8d4462b2ed26a47154f4b8f6d1497d2f772496965791d25bd456e342b7f0081565b604051908152602001610307565b61034d6106f5565b005b610357610875565b60405162ffffff9091168152602001610307565b6103736108fc565b604051610307919061403f565b61034d61038e3660046140df565b610ab6565b61039b610b9a565b6040516001600160a01b039091168152602001610307565b6103bb610c02565b6040516001600160601b039091168152602001610307565b6103db610c0c565b60405161030791906140fa565b6103377f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b61039b610c1c565b6102fb610c2e565b6102fb610d24565b61034d61043536600461410c565b610d9b565b61034d610448366004614136565b611005565b61034d61045b366004614284565b6111b0565b61034d61046e3660046142d5565b6112fa565b61034d610481366004614362565b611342565b61039b611390565b61034d61049c366004614399565b6113ab565b61034d6104af3660046143e5565b6114a7565b6102fb6115d1565b6001546001600160a01b031661039b565b6103bb6104db36600461443c565b61168e565b61034d6104ee366004614458565b61180c565b61034d610501366004614484565b611a7b565b6103db604051806040016040528060078152602001665374616b696e6760c81b81525081565b61039b611be0565b5f80516020614bf5833981519152546001600160601b03166103bb565b6103bb61055f36600461443c565b611bfb565b6103bb6105723660046140df565b611d3f565b61057f611fb0565b60405160ff9091168152602001610307565b61034d61059f366004614484565b612024565b61039b6120a6565b61039b6120c1565b6105bc6121f2565b6040516001600160e01b03199091168152602001610307565b6105dd612227565b604051610307919061449f565b61034d6105f83660046144fc565b61224c565b61034d61060b366004614529565b612295565b61034d61061e36600461455e565b6124ab565b6103375f80516020614bf583398151915281565b6105dd61254d565b61039b61255d565b61039b612578565b6103bb61065d3660046144fc565b612590565b6103bb61067036600461443c565b61271f565b6106886106833660046140df565b6127ba565b604080516001600160601b03938416815292909116602083015201610307565b6103bb6106b636600461443c565b612b31565b6103377fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b6103bb6106f03660046144fc565b612b88565b6001546001600160a01b0316331461072757604051632a6e1a8960e01b81523360048201526024015b60405180910390fd5b5f610730612ccc565b905073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d61075e6001546001600160a01b031690565b30610767610c1c565b6001546001600160a01b03166001600160a01b031663e2b178a06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d291906145be565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af415801561082c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061085091906145be565b60019190910180546001600160a01b0319166001600160a01b03909216919091179055565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156108d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f791906145d9565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156109a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109cc9190614606565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160701b909104161515606082015230608082015260a001610a146120c1565b6001600160a01b03168152602001826001018054610a3190614621565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5d90614621565b8015610aa85780601f10610a7f57610100808354040283529160200191610aa8565b820191905f5260205f20905b815481529060010190602001808311610a8b57829003601f168201915b505050505081525091505090565b610ac2335b5f36612cf0565b80610acb612ccc565b60020154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa158015610b1b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3f9190614668565b610b6757604051632ab4595b60e11b81526001600160601b038216600482015260240161071e565b5f610b70612ccc565b60038101546002820154919250610b94916001600160a01b03918216911685612dee565b50505050565b5f610ba3611390565b6001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bde573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f791906145be565b5f6108f730612f70565b6060610c16612227565b51919050565b5f610c25612227565b60200151905090565b5f610c416001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610c85573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ca99190614606565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610d00573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f79190614668565b5f610d2d61255d565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610d71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d959190614668565b15905090565b610da433610abb565b81610dad612ccc565b6002015f9054906101000a90046001600160a01b03166001600160a01b0316635cce3fa16040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dfe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e2291906145be565b604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b039190911690634f9c1c0990602401602060405180830381865afa158015610e6f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e939190614668565b610ebb576040516396cff01560e01b81526001600160601b038216600482015260240161071e565b604051633a39e8ad60e21b81523060048201526001600160601b0384166024820152604481018390525f90819073__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__9063e8e7a2b49060640160a060405180830381865af4158015610f22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f4691906146e2565b91509150610f52612ccc565b60020154604051630300f49160e31b81526001600160a01b0390911690631807a48890610f85908890859060040161470d565b5f604051808303815f87803b158015610f9c575f80fd5b505af1158015610fae573d5f803e3d5ffd5b5050604080516001600160601b0389168152602081018690529081018790527f3e76c26439d1ec3386e26dfeebf955ea11f5f5f30459052b70e061ade8c9554f925060600190505b60405180910390a15050505050565b61100e33610abb565b5f611017612ccc565b6003810154604051630e8d845760e31b81526001600160a01b0390911660048201526001600160601b038086166024830152841660448201529091505f9073__$dbe4bf03c942dc0574f54ee579c90d56ef$__9063746c22b890606401602060405180830381865af415801561108f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110b39190614756565b60028301546040805160208101825264ffffffffff848116825291516331420df160e11b81526001600160601b038a166004820152905190911660248201529192506001600160a01b0316906362841be2906044015f604051808303815f87803b15801561111f575f80fd5b505af1158015611131573d5f803e3d5ffd5b505050506002820154604051633861317f60e01b81526001600160601b0380881660048301528087166024830152851660448201526001600160a01b0390911690633861317f906064015b5f604051808303815f87803b158015611193575f80fd5b505af11580156111a5573d5f803e3d5ffd5b505050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6111d2610875565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611210573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112349190614771565b5f80516020614c358339815191528054600160401b900460ff1680611266575080546001600160401b03808416911610155b156112845760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556112ae83613169565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b61130333610abb565b61130b6120c1565b6001600160a01b0316336001600160a01b03161461133e5760405163086391f760e31b815233600482015260240161071e565b5050565b61134b33610abb565b6113536120c1565b6001600160a01b0316336001600160a01b0316146113865760405163086391f760e31b815233600482015260240161071e565b61133e8282613171565b5f611399612ccc565b600101546001600160a01b0316919050565b5f80516020614c358339815191528054600160401b810460ff1615906001600160401b03165f811580156113dc5750825b90505f826001600160401b031660011480156113f75750303b155b905081158015611405575080155b156114235760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561144d57845460ff60401b1916600160401b1785555b61145787876131de565b831561149e57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b6114b033610abb565b73__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__639ed616cd6114dc6001546001600160a01b031690565b6114e4612ccc565b6003015460405160e084901b6001600160e01b03191681526001600160a01b039283166004820152911660248201526001600160601b038816604482015260ff8716606482015264ffffffffff8516608482015260a4810184905260c4015f6040518083038186803b158015611558575f80fd5b505af415801561156a573d5f803e3d5ffd5b50505050611576612ccc565b600201546040805160808101825260ff871681526020810186905264ffffffffff851681830152606081018490529051632df8be9b60e01b81526001600160a01b0390921691632df8be9b9161117c9189919060040161470d565b5f6115da610c2e565b1561165e576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa15801561162e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261165591908101906147e4565b60600151905090565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0154600160a01b900460ff1690565b5f61169833610abb565b826116a1612ccc565b60020154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa1580156116f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117159190614668565b61173d57604051632ab4595b60e11b81526001600160601b038216600482015260240161071e565b61174884601e6135aa565b61175383601e6135aa565b5f61175c612ccc565b6003810154600282015460405163060550e560e41b81526001600160a01b039283166004820152911660248201526001600160601b0380881660448301528616606482015290915073__$dbe4bf03c942dc0574f54ee579c90d56ef$__906360550e50906084015b602060405180830381865af41580156117df573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118039190614606565b95945050505050565b61181533610abb565b8161181e612ccc565b6002015f9054906101000a90046001600160a01b03166001600160a01b0316635cce3fa16040518163ffffffff1660e01b8152600401602060405180830381865afa15801561186f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061189391906145be565b604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b039190911690634f9c1c0990602401602060405180830381865afa1580156118e0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119049190614668565b61192c576040516396cff01560e01b81526001600160601b038216600482015260240161071e565b604051635f9c0df360e11b81523060048201526001600160601b038416602482015264ffffffffff831660448201525f90819073__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__9063bf381be69060640160a060405180830381865af4158015611999573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119bd91906148b4565b915091506119c9612ccc565b60020154604051630300f49160e31b81526001600160a01b0390911690631807a488906119fc908890859060040161470d565b5f604051808303815f87803b158015611a13575f80fd5b505af1158015611a25573d5f803e3d5ffd5b5050604080516001600160601b038916815264ffffffffff80871660208301528816918101919091527fb847665302c1d8b6f507e07b17145514cea04af84e1665d629d82246992311e792506060019050610ff6565b611a836120c1565b6001600160a01b0316336001600160a01b031614611ab65760405163086391f760e31b815233600482015260240161071e565b306001600160a01b0316816001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa158015611afc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b2091906145be565b6001600160a01b031614611bb357806001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b8e91906145be565b604051631641c88f60e11b81526001600160a01b03909116600482015260240161071e565b80611bbc612ccc565b60030180546001600160a01b0319166001600160a01b039290921691909117905550565b5f611be9612ccc565b600301546001600160a01b0316919050565b5f611c0533610abb565b82611c0e612ccc565b60020154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa158015611c5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c829190614668565b611caa57604051632ab4595b60e11b81526001600160601b038216600482015260240161071e565b5f611cb3612ccc565b905073__$dbe4bf03c942dc0574f54ee579c90d56ef$__630fcf5d08611ce16001546001600160a01b031690565b6003840154600285015460405160e085901b6001600160e01b03191681526001600160a01b03938416600482015291831660248301529190911660448201526001600160601b0380891660648301528716608482015260a4016117c4565b5f611d4933610abb565b81611d52612ccc565b60020154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa158015611da2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dc69190614668565b611dee57604051632ab4595b60e11b81526001600160601b038216600482015260240161071e565b5f611df7612ccc565b600381015460028201549192505f91611e1d916001600160a01b03908116911687612dee565b9050816002015f9054906101000a90046001600160a01b03166001600160a01b0316633fbdfe32868373__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611e8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eb19190614606565b60405160e085901b6001600160e01b03191681526001600160601b039384166004820152918316602483015290911660448201526064016020604051808303815f875af1158015611f04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f289190614606565b600283015460405163136cfef760e01b81526001600160601b038085166004830152831660248201529195506001600160a01b03169063136cfef7906044016020604051808303815f875af1158015611f83573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fa79190614606565b50505050919050565b604051632392b61b60e21b8152600360048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015612000573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f791906148df565b3361202d61255d565b6001600160a01b0316816001600160a01b0316146120685760405162d1953b60e31b81526001600160a01b038216600482015260240161071e565b816001600160a01b03163b5f0361209d576040516361798f2f60e11b81526001600160a01b038316600482015260240161071e565b61133e82613661565b5f6120af612ccc565b600201546001600160a01b0316919050565b5f805f80516020614bf583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561212d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121519190614668565b156121dc576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156121b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121d691906145be565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020614c1583398151915280545f9190600160a01b900460ff16612219575f6121d6565b638fb3603760e01b91505090565b61222f613fab565b612237610c2e565b15612244576108f76136c1565b6108f761254d565b61225533610abb565b61225d6120c1565b6001600160a01b0316336001600160a01b0316146122905760405163086391f760e31b815233600482015260240161071e565b505050565b61229d6120c1565b6001600160a01b0316336001600160a01b0316146122d05760405163086391f760e31b815233600482015260240161071e565b5f6122d9612ccc565b8054604051631703edc360e31b8152600481018790526001600160a01b03868116602483015292935091169063b81f6e1890604401602060405180830381865afa158015612329573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061234d9190614668565b61237c576040516374ddbd6960e01b8152600481018590526001600160a01b038416602482015260440161071e565b6002810154604051637b21556160e01b8152600481018690526001600160a01b0385811660248301525f921690637b21556190604401602060405180830381865afa1580156123cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123f191906148fa565b600283015460405163269c98d960e21b8152600481018890526001600160a01b03878116602483015260448201879052929350911690639a726364906064015f604051808303815f87803b158015612447575f80fd5b505af1158015612459573d5f803e3d5ffd5b5050604080518881526001600160a01b0388166020820152908101849052606081018690527f8075f599388073d04550222731e9c7e00c284a4f858d8a0ffc0657164981c76e92506080019050610ff6565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124f2573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061251691906145be565b6001600160a01b0316336001600160a01b0316146125485760405162f0630960e01b815233600482015260240161071e565b610b94565b612555613fab565b6108f76136c1565b5f80516020614c15833981519152546001600160a01b031690565b5f612581612ccc565b546001600160a01b0316919050565b5f61259a33610abb565b5f6125a3612ccc565b600381015460405163153d412560e31b81526001600160601b03881660048201529192505f916001600160a01b039091169063a9ea092890602401608060405180830381865afa1580156125f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061261d9190614911565b602001516003830154604051637b21556160e01b8152600481018390526001600160a01b0388811660248301529293505f9290911690637b21556190604401602060405180830381865afa158015612677573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061269b91906148fa565b6002840154604051633ece552760e21b81529192506001600160a01b03169063fb39549c906126d4908a9085908b908b9060040161492b565b6020604051808303815f875af11580156126f0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127149190614606565b979650505050505050565b5f61272933610abb565b5f612732612ccc565b600281015460405163d7537c3760e01b81526001600160601b038088166004830152861660248201529192506001600160a01b03169063d7537c37906044015b6020604051808303815f875af115801561278e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127b29190614606565b949350505050565b5f806127c533610abb565b826127ce612ccc565b60020154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa15801561281e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128429190614668565b61286a57604051632ab4595b60e11b81526001600160601b038216600482015260240161071e565b5f612873612ccc565b600381015460405163b3eff9e160e01b81526001600160a01b0390911660048201526001600160601b038716602482015290915073__$dbe4bf03c942dc0574f54ee579c90d56ef$__9063b3eff9e190604401602060405180830381865af41580156128e1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129059190614756565b50600381015460028201545f91612929916001600160a01b03918216911688612dee565b9050816002015f9054906101000a90046001600160a01b03166001600160a01b031663eb98e8a0878373__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015612999573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129bd9190614606565b73__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015612a04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a289190614606565b60405160e086901b6001600160e01b03191681526001600160601b03948516600482015292841660248401529083166044830152909116606482015260840160408051808303815f875af1158015612a82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612aa6919061495f565b600284015460405163136cfef760e01b81526001600160601b038086166004830152831660248201529297509095506001600160a01b03169063136cfef7906044016020604051808303815f875af1158015612b04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b289190614606565b50505050915091565b5f612b3b33610abb565b5f612b44612ccc565b600281015460405163136cfef760e01b81526001600160601b038088166004830152861660248201529192506001600160a01b03169063136cfef790604401612772565b5f612b9233610abb565b5f612b9b612ccc565b600381015460405163153d412560e31b81526001600160601b03881660048201529192505f916001600160a01b039091169063a9ea092890602401608060405180830381865afa158015612bf1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c159190614911565b602001516003830154604051637b21556160e01b8152600481018390526001600160a01b0388811660248301529293505f9290911690637b21556190604401602060405180830381865afa158015612c6f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c9391906148fa565b60028401546040516377f9185160e01b81529192506001600160a01b0316906377f91851906126d4908a9085908b908b9060040161492b565b7fafe8d4462b2ed26a47154f4b8f6d1497d2f772496965791d25bd456e342b7f0090565b5f80516020614c158339815191525f80612d28612d0b61255d565b8730612d1a60045f8a8c61498c565b612d23916149b3565b6137b3565b9150915081612de65763ffffffff811615612dc357825460ff60a01b1916600160a01b178355612d5661255d565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612d85939291906149eb565b5f604051808303815f87803b158015612d9c575f80fd5b505af1158015612dae573d5f803e3d5ffd5b5050845460ff60a01b1916855550612de69050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161071e565b505050505050565b6040516312b9a5c960e01b81526001600160601b03821660048201525f9081906001600160a01b038616906312b9a5c9906024016040805180830381865afa158015612e3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e609190614a2a565b60405163e048754d60e01b81526001600160a01b03881660048201526001600160601b03861660248201526044810182905291935091505f9073__$dbe4bf03c942dc0574f54ee579c90d56ef$__9063e048754d906064016040805180830381865af4158015612ed2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ef6919061495f565b50604051634a2101d160e01b81526001600160601b0380871660048301528086166024830152821660448201529091506001600160a01b03861690634a2101d1906064015f604051808303815f87803b158015612f51575f80fd5b505af1158015612f63573d5f803e3d5ffd5b5050505050509392505050565b5f805f80516020614bf583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612fdc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130009190614668565b1561302c5780546040516301ab8b6760e21b81526001600160601b03909116600482015260240161071e565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561307e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130a29190614668565b6130ca5760405163b9304b0d60e01b81526001600160a01b038416600482015260240161071e565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa15801561311c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131409190614606565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b6102cb6138bb565b61317b60036138f3565b6040516320c8cbff60e11b81526001600160a01b0384811660048301526001600160601b0384166024830152919091169063419197fe906044015f604051808303815f87803b1580156131cc575f80fd5b505af1158015612de6573d5f803e3d5ffd5b5f80516020614c358339815191528054600160401b810460ff1615906001600160401b03165f8115801561320f5750825b90505f826001600160401b0316600114801561322a5750303b155b905081158015613238575080155b156132565760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561328057845460ff60401b1916600160401b1785555b5f805f80898060200190518101906132989190614a56565b93509350935093505f8490505f816001600160a01b031663e2b178a06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132e1573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061330591906145be565b90505f8590505f816001600160a01b031663b201f7096040518163ffffffff1660e01b8152600401602060405180830381865afa158015613348573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061336c91906145be565b90505f613377612ccc565b9050846001600160a01b031663fff74f6c6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133d99190614606565b6003820180546001600160601b0392909216600160a01b026001600160a01b039283161790556002820180549189166001600160a01b0319929092168217905560408051633148a11d60e11b81529051636291423a916004808201926020929091908290030181865afa158015613452573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061347691906145be565b6003820180546001600160a01b03199081166001600160a01b039384161790915582541689821617825560408051630322622f60e51b8152905161354f9287928d92918a169163644c45e0916004808201926020929091908290030181865afa1580156134e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135099190614606565b6040805180820190915260078152665374616b696e6760c81b60208201528660035f8d60405180602001604052805f81525060405180602001604052805f81525061398a565b61355f637641aba360e01b613c0c565b505050505050505050831561149e57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611495565b6001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa15801561360c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136309190614668565b61133e5760405163d711af7560e01b81526001600160601b038316600482015260ff8216602482015260440161071e565b5f80516020614c1583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6136c9613fab565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060800160405280825f01805461370690614621565b80601f016020809104026020016040519081016040528092919081815260200182805461373290614621565b801561377d5780601f106137545761010080835404028352916020019161377d565b820191905f5260205f20905b81548152906001019060200180831161376057829003601f168201915b505050918352505060018301546001600160a01b031660208201525f6040820152600283018054606090920191610a3190614621565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516138219190614aa7565b5f60405180830381855afa9150503d805f8114613859576040519150601f19603f3d011682016040523d82523d5f602084013e61385e565b606091505b509150915081156138b057604081511061389057808060200190518101906138869190614abd565b90945092506138b0565b60208151106138b057808060200190518101906138ad9190614668565b93505b505094509492505050565b5f80516020614c3583398151915254600160401b900460ff166138f157604051631afcd79f60e31b815260040160405180910390fd5b565b5f6139066001546001600160a01b031690565b6001600160a01b031663d39e60438361391d611fb0565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613960573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061398491906145be565b92915050565b6139926138bb565b5f896001600160a01b031663caed98976040518163ffffffff1660e01b8152600401602060405180830381865afa1580156139cf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139f391906145be565b90505f8b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a32573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a5691906148df565b905060ff8716600314613b1c57604051637d482da160e01b81526001600160a01b0380841660048301528916602482015246604482015260ff8216606482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90637d482da190608401602060405180830381865af4158015613ad0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613af49190614668565b613b1c57604051638071294b60e01b81526001600160a01b038916600482015260240161071e565b88515f03613b3d5760405163591eebf360e11b815260040160405180910390fd5b613b4c8c8c8c8a8a8a8a613c38565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0080613b788b82614b3a565b50600181018054881515600160a01b026001600160a81b03199091166001600160a01b038c161717905560028101613bb08582614b3a565b50613bbb600b6138f3565b6003820180546001600160a01b0319166001600160a01b0392909216919091179055613bed634a531f3360e01b613c0c565b613bfd6306e9e5ff60e31b613c0c565b50505050505050505050505050565b613c146138bb565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b613c406138bb565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015613c96573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cba9190614668565b613ce25760405163cf6935e560e01b81526001600160a01b038816600482015260240161071e565b613ceb87613dff565b613cf58683613e13565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff871602178155604080516376b707b760e01b815290516001600160a01b038a16916376b707b79160048083019260209291908290030181865afa158015613d85573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613da991906148df565b815461ffff60681b1916600160681b60ff929092169190910260ff60701b191617600160701b8515150217815560018101613de48382614b3a565b50613df5634a531f3360e01b613c0c565b5050505050505050565b613e076138bb565b613e1081613e89565b50565b613e1b6138bb565b613e2482613e9a565b613e2c613f66565b6001600160a01b038116613e535760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020614bf583398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b613e916138bb565b613e1081613661565b613ea26138bb565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015613ef8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f1c9190614668565b613f445760405163fdeac91f60e01b81526001600160a01b038216600482015260240161071e565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b613f6e6138bb565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040518060800160405280606081526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f60208284031215613ff3575f80fd5b81356001600160e01b03198116811461400a575f80fd5b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614087608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526127b2610100840182614011565b6001600160601b0381168114613e10575f80fd5b5f602082840312156140ef575f80fd5b813561400a816140cb565b602081525f61400a6020830184614011565b5f806040838503121561411d575f80fd5b8235614128816140cb565b946020939093013593505050565b5f805f60608486031215614148575f80fd5b8335614153816140cb565b92506020840135614163816140cb565b91506040840135614173816140cb565b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b604051608081016001600160401b03811182821017156141b4576141b461417e565b60405290565b60405160e081016001600160401b03811182821017156141b4576141b461417e565b604051601f8201601f191681016001600160401b03811182821017156142045761420461417e565b604052919050565b5f6001600160401b038211156142245761422461417e565b50601f01601f191660200190565b5f82601f830112614241575f80fd5b813561425461424f8261420c565b6141dc565b818152846020838601011115614268575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614294575f80fd5b81356001600160401b038111156142a9575f80fd5b6127b284828501614232565b60ff81168114613e10575f80fd5b64ffffffffff81168114613e10575f80fd5b5f8082840360a08112156142e7575f80fd5b83356142f2816140cb565b92506080601f1982011215614305575f80fd5b5061430e614192565b602084013561431c816142b5565b8152604084013560208201526060840135614336816142c3565b60408201526080939093013560608401525092909150565b6001600160a01b0381168114613e10575f80fd5b5f8060408385031215614373575f80fd5b823561437e8161434e565b9150602083013561438e816140cb565b809150509250929050565b5f80604083850312156143aa575f80fd5b82356143b58161434e565b915060208301356001600160401b038111156143cf575f80fd5b6143db85828601614232565b9150509250929050565b5f805f805f60a086880312156143f9575f80fd5b8535614404816140cb565b94506020860135614414816142b5565b935060408601359250606086013561442b816142c3565b949793965091946080013592915050565b5f806040838503121561444d575f80fd5b823561437e816140cb565b5f8060408385031215614469575f80fd5b8235614474816140cb565b9150602083013561438e816142c3565b5f60208284031215614494575f80fd5b813561400a8161434e565b602081525f8251608060208401526144ba60a0840182614011565b60208501516001600160a01b0390811660408681019190915286015116606080860191909152850151848203601f190160808601529091506118038282614011565b5f805f6060848603121561450e575f80fd5b8335614519816140cb565b925060208401356141638161434e565b5f805f6060848603121561453b575f80fd5b83359250602084013561454d8161434e565b929592945050506040919091013590565b5f805f8060808587031215614571575f80fd5b843561457c8161434e565b9350602085013561458c8161434e565b92506040850135915060608501356145a38161434e565b939692955090935050565b80516145b98161434e565b919050565b5f602082840312156145ce575f80fd5b815161400a8161434e565b5f602082840312156145e9575f80fd5b815162ffffff8116811461400a575f80fd5b80516145b9816140cb565b5f60208284031215614616575f80fd5b815161400a816140cb565b600181811c9082168061463557607f821691505b60208210810361465357634e487b7160e01b5f52602260045260245ffd5b50919050565b805180151581146145b9575f80fd5b5f60208284031215614678575f80fd5b61400a82614659565b80516145b9816142b5565b5f6080828403121561469c575f80fd5b6146a4614192565b905081516146b1816142b5565b81526020828101519082015260408201516146cb816142c3565b604082015260609182015191810191909152919050565b5f8060a083850312156146f3575f80fd5b82519150614704846020850161468c565b90509250929050565b5f60a0820190506001600160601b038416825260ff83511660208301526020830151604083015264ffffffffff6040840151166060830152606083015160808301529392505050565b5f60208284031215614766575f80fd5b815161400a816142c3565b5f60208284031215614781575f80fd5b81516001600160401b038116811461400a575f80fd5b5f82601f8301126147a6575f80fd5b81516147b461424f8261420c565b8181528460208386010111156147c8575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f602082840312156147f4575f80fd5b81516001600160401b03811115614809575f80fd5b820160e0818503121561481a575f80fd5b6148226141ba565b61482b826145fb565b8152614839602083016145fb565b602082015261484a60408301614681565b604082015261485b60608301614659565b606082015261486c608083016145ae565b608082015261487d60a083016145ae565b60a082015260c08201516001600160401b0381111561489a575f80fd5b6148a686828501614797565b60c083015250949350505050565b5f8060a083850312156148c5575f80fd5b82516148d0816142c3565b9150614704846020850161468c565b5f602082840312156148ef575f80fd5b815161400a816142b5565b5f6020828403121561490a575f80fd5b5051919050565b5f60808284031215614921575f80fd5b61400a838361468c565b6001600160601b03948516815260208101939093526001600160a01b03919091166040830152909116606082015260800190565b5f8060408385031215614970575f80fd5b825161497b816140cb565b602084015190925061438e816140cb565b5f808585111561499a575f80fd5b838611156149a6575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156149e4576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f8060408385031215614a3b575f80fd5b8251614a46816140cb565b6020939093015192949293505050565b5f805f8060808587031215614a69575f80fd5b8451614a748161434e565b6020860151909450614a858161434e565b6040860151909350614a968161434e565b60608601519092506145a38161434e565b5f82518060208501845e5f920191825250919050565b5f8060408385031215614ace575f80fd5b614ad783614659565b9150602083015163ffffffff8116811461438e575f80fd5b601f82111561229057805f5260205f20601f840160051c81016020851015614b145750805b601f840160051c820191505b81811015614b33575f8155600101614b20565b5050505050565b81516001600160401b03811115614b5357614b5361417e565b614b6781614b618454614621565b84614aef565b6020601f821160018114614b99575f8315614b825750848201515b5f19600385901b1c1916600184901b178455614b33565b5f84815260208120601f198516915b82811015614bc85787850151825560209485019460019092019101614ba8565b5084821015614be557868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212203c2bb205ecc6367af5107282dc66d5240f07c60bfc0e9e034808bfa4e8decd6964736f6c634300081a0033",
1605
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106102cb575f3560e01c80635fd1efec1161017b578063958697a0116100e4578063caed98971161009e578063dea4ccf211610079578063dea4ccf214610675578063e8ce883d146106a8578063ea15869f146106bb578063ea48ce9b146106e2575f80fd5b8063caed989714610647578063d44f8a4b1461064f578063de0eb85f14610662575f80fd5b8063958697a0146105ea5780639a726364146105fd578063ad12ad6014610610578063ada9652e14610623578063b423086c14610637578063bf7e214f1461063f575f80fd5b806376b707b71161013557806376b707b7146105775780637a9e5e4b1461059157806386c75754146105a4578063893d20e8146105ac5780638fb36037146105b457806390edbd35146105d5575f80fd5b80635fd1efec146104f3578063614d08f8146105065780636291423a1461052c578063644c45e0146105345780636c1e9dff14610551578063719f761a14610564575f80fd5b806322f3e2d41161023757806343d752d3116101f15780635741e5e9116101cc5780635741e5e9146104b45780635ab1bd53146104bc5780635cbb7d85146104cd5780635ecf260f146104e0575f80fd5b806343d752d31461048657806349bb9e4b1461048e578063562119ee146104a1575f80fd5b806322f3e2d41461041f5780632a80f6731461042757806331ecc5cc1461043a578063329d6e741461044d57806336644da614610460578063419197fe14610473575f80fd5b806313299604116102885780631329960414610393578063138461e0146103b357806317d7de7c146103d35780631eff4b22146103e857806321df0da71461040f5780632236684414610417575f80fd5b806301ffc9a7146102cf578063062c9cdf1461031057806309980bfd146103455780630d8e6e2c1461034f5780630fec111c1461036b57806310a0638a14610380575b5f80fd5b6102fb6102dd366004613fe3565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6103377fafe8d4462b2ed26a47154f4b8f6d1497d2f772496965791d25bd456e342b7f0081565b604051908152602001610307565b61034d6106f5565b005b610357610875565b60405162ffffff9091168152602001610307565b6103736108fc565b604051610307919061403f565b61034d61038e3660046140df565b610ab6565b61039b610b9a565b6040516001600160a01b039091168152602001610307565b6103bb610c02565b6040516001600160601b039091168152602001610307565b6103db610c0c565b60405161030791906140fa565b6103377f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b61039b610c1c565b6102fb610c2e565b6102fb610d24565b61034d61043536600461410c565b610d9b565b61034d610448366004614136565b611005565b61034d61045b366004614284565b6111b0565b61034d61046e3660046142d5565b6112fa565b61034d610481366004614362565b611342565b61039b611390565b61034d61049c366004614399565b6113ab565b61034d6104af3660046143e5565b6114a7565b6102fb6115d1565b6001546001600160a01b031661039b565b6103bb6104db36600461443c565b61168e565b61034d6104ee366004614458565b61180c565b61034d610501366004614484565b611a7b565b6103db604051806040016040528060078152602001665374616b696e6760c81b81525081565b61039b611be0565b5f80516020614bf5833981519152546001600160601b03166103bb565b6103bb61055f36600461443c565b611bfb565b6103bb6105723660046140df565b611d3f565b61057f611fb0565b60405160ff9091168152602001610307565b61034d61059f366004614484565b612024565b61039b6120a6565b61039b6120c1565b6105bc6121f2565b6040516001600160e01b03199091168152602001610307565b6105dd612227565b604051610307919061449f565b61034d6105f83660046144fc565b61224c565b61034d61060b366004614529565b612295565b61034d61061e36600461455e565b6124ab565b6103375f80516020614bf583398151915281565b6105dd61254d565b61039b61255d565b61039b612578565b6103bb61065d3660046144fc565b612590565b6103bb61067036600461443c565b61271f565b6106886106833660046140df565b6127ba565b604080516001600160601b03938416815292909116602083015201610307565b6103bb6106b636600461443c565b612b31565b6103377fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b6103bb6106f03660046144fc565b612b88565b6001546001600160a01b0316331461072757604051632a6e1a8960e01b81523360048201526024015b60405180910390fd5b5f610730612ccc565b905073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d61075e6001546001600160a01b031690565b30610767610c1c565b6001546001600160a01b03166001600160a01b031663e2b178a06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d291906145be565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af415801561082c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061085091906145be565b60019190910180546001600160a01b0319166001600160a01b03909216919091179055565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156108d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f791906145d9565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156109a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109cc9190614606565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160701b909104161515606082015230608082015260a001610a146120c1565b6001600160a01b03168152602001826001018054610a3190614621565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5d90614621565b8015610aa85780601f10610a7f57610100808354040283529160200191610aa8565b820191905f5260205f20905b815481529060010190602001808311610a8b57829003601f168201915b505050505081525091505090565b610ac2335b5f36612cf0565b80610acb612ccc565b60020154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa158015610b1b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3f9190614668565b610b6757604051632ab4595b60e11b81526001600160601b038216600482015260240161071e565b5f610b70612ccc565b60038101546002820154919250610b94916001600160a01b03918216911685612dee565b50505050565b5f610ba3611390565b6001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bde573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f791906145be565b5f6108f730612f70565b6060610c16612227565b51919050565b5f610c25612227565b60200151905090565b5f610c416001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610c85573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ca99190614606565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610d00573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f79190614668565b5f610d2d61255d565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610d71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d959190614668565b15905090565b610da433610abb565b81610dad612ccc565b6002015f9054906101000a90046001600160a01b03166001600160a01b0316635cce3fa16040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dfe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e2291906145be565b604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b039190911690634f9c1c0990602401602060405180830381865afa158015610e6f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e939190614668565b610ebb576040516396cff01560e01b81526001600160601b038216600482015260240161071e565b604051633a39e8ad60e21b81523060048201526001600160601b0384166024820152604481018390525f90819073__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__9063e8e7a2b49060640160a060405180830381865af4158015610f22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f4691906146e2565b91509150610f52612ccc565b60020154604051630300f49160e31b81526001600160a01b0390911690631807a48890610f85908890859060040161470d565b5f604051808303815f87803b158015610f9c575f80fd5b505af1158015610fae573d5f803e3d5ffd5b5050604080516001600160601b0389168152602081018690529081018790527f3e76c26439d1ec3386e26dfeebf955ea11f5f5f30459052b70e061ade8c9554f925060600190505b60405180910390a15050505050565b61100e33610abb565b5f611017612ccc565b6003810154604051630e8d845760e31b81526001600160a01b0390911660048201526001600160601b038086166024830152841660448201529091505f9073__$dbe4bf03c942dc0574f54ee579c90d56ef$__9063746c22b890606401602060405180830381865af415801561108f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110b39190614756565b60028301546040805160208101825264ffffffffff848116825291516331420df160e11b81526001600160601b038a166004820152905190911660248201529192506001600160a01b0316906362841be2906044015f604051808303815f87803b15801561111f575f80fd5b505af1158015611131573d5f803e3d5ffd5b505050506002820154604051633861317f60e01b81526001600160601b0380881660048301528087166024830152851660448201526001600160a01b0390911690633861317f906064015b5f604051808303815f87803b158015611193575f80fd5b505af11580156111a5573d5f803e3d5ffd5b505050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6111d2610875565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611210573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112349190614771565b5f80516020614c358339815191528054600160401b900460ff1680611266575080546001600160401b03808416911610155b156112845760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556112ae83613169565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b61130333610abb565b61130b6120c1565b6001600160a01b0316336001600160a01b03161461133e5760405163086391f760e31b815233600482015260240161071e565b5050565b61134b33610abb565b6113536120c1565b6001600160a01b0316336001600160a01b0316146113865760405163086391f760e31b815233600482015260240161071e565b61133e8282613171565b5f611399612ccc565b600101546001600160a01b0316919050565b5f80516020614c358339815191528054600160401b810460ff1615906001600160401b03165f811580156113dc5750825b90505f826001600160401b031660011480156113f75750303b155b905081158015611405575080155b156114235760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561144d57845460ff60401b1916600160401b1785555b61145787876131de565b831561149e57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b6114b033610abb565b73__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__639ed616cd6114dc6001546001600160a01b031690565b6114e4612ccc565b6003015460405160e084901b6001600160e01b03191681526001600160a01b039283166004820152911660248201526001600160601b038816604482015260ff8716606482015264ffffffffff8516608482015260a4810184905260c4015f6040518083038186803b158015611558575f80fd5b505af415801561156a573d5f803e3d5ffd5b50505050611576612ccc565b600201546040805160808101825260ff871681526020810186905264ffffffffff851681830152606081018490529051632df8be9b60e01b81526001600160a01b0390921691632df8be9b9161117c9189919060040161470d565b5f6115da610c2e565b1561165e576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa15801561162e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261165591908101906147e4565b60600151905090565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0154600160a01b900460ff1690565b5f61169833610abb565b826116a1612ccc565b60020154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa1580156116f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117159190614668565b61173d57604051632ab4595b60e11b81526001600160601b038216600482015260240161071e565b61174884601e6135aa565b61175383601e6135aa565b5f61175c612ccc565b6003810154600282015460405163060550e560e41b81526001600160a01b039283166004820152911660248201526001600160601b0380881660448301528616606482015290915073__$dbe4bf03c942dc0574f54ee579c90d56ef$__906360550e50906084015b602060405180830381865af41580156117df573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118039190614606565b95945050505050565b61181533610abb565b8161181e612ccc565b6002015f9054906101000a90046001600160a01b03166001600160a01b0316635cce3fa16040518163ffffffff1660e01b8152600401602060405180830381865afa15801561186f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061189391906145be565b604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b039190911690634f9c1c0990602401602060405180830381865afa1580156118e0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119049190614668565b61192c576040516396cff01560e01b81526001600160601b038216600482015260240161071e565b604051635f9c0df360e11b81523060048201526001600160601b038416602482015264ffffffffff831660448201525f90819073__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__9063bf381be69060640160a060405180830381865af4158015611999573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119bd91906148b4565b915091506119c9612ccc565b60020154604051630300f49160e31b81526001600160a01b0390911690631807a488906119fc908890859060040161470d565b5f604051808303815f87803b158015611a13575f80fd5b505af1158015611a25573d5f803e3d5ffd5b5050604080516001600160601b038916815264ffffffffff80871660208301528816918101919091527fb847665302c1d8b6f507e07b17145514cea04af84e1665d629d82246992311e792506060019050610ff6565b611a836120c1565b6001600160a01b0316336001600160a01b031614611ab65760405163086391f760e31b815233600482015260240161071e565b306001600160a01b0316816001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa158015611afc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b2091906145be565b6001600160a01b031614611bb357806001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b8e91906145be565b604051631641c88f60e11b81526001600160a01b03909116600482015260240161071e565b80611bbc612ccc565b60030180546001600160a01b0319166001600160a01b039290921691909117905550565b5f611be9612ccc565b600301546001600160a01b0316919050565b5f611c0533610abb565b82611c0e612ccc565b60020154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa158015611c5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c829190614668565b611caa57604051632ab4595b60e11b81526001600160601b038216600482015260240161071e565b5f611cb3612ccc565b905073__$dbe4bf03c942dc0574f54ee579c90d56ef$__630fcf5d08611ce16001546001600160a01b031690565b6003840154600285015460405160e085901b6001600160e01b03191681526001600160a01b03938416600482015291831660248301529190911660448201526001600160601b0380891660648301528716608482015260a4016117c4565b5f611d4933610abb565b81611d52612ccc565b60020154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa158015611da2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dc69190614668565b611dee57604051632ab4595b60e11b81526001600160601b038216600482015260240161071e565b5f611df7612ccc565b600381015460028201549192505f91611e1d916001600160a01b03908116911687612dee565b9050816002015f9054906101000a90046001600160a01b03166001600160a01b0316633fbdfe32868373__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611e8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eb19190614606565b60405160e085901b6001600160e01b03191681526001600160601b039384166004820152918316602483015290911660448201526064016020604051808303815f875af1158015611f04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f289190614606565b600283015460405163136cfef760e01b81526001600160601b038085166004830152831660248201529195506001600160a01b03169063136cfef7906044016020604051808303815f875af1158015611f83573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fa79190614606565b50505050919050565b604051632392b61b60e21b8152600360048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015612000573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f791906148df565b3361202d61255d565b6001600160a01b0316816001600160a01b0316146120685760405162d1953b60e31b81526001600160a01b038216600482015260240161071e565b816001600160a01b03163b5f0361209d576040516361798f2f60e11b81526001600160a01b038316600482015260240161071e565b61133e82613661565b5f6120af612ccc565b600201546001600160a01b0316919050565b5f805f80516020614bf583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561212d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121519190614668565b156121dc576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156121b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121d691906145be565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020614c1583398151915280545f9190600160a01b900460ff16612219575f6121d6565b638fb3603760e01b91505090565b61222f613fab565b612237610c2e565b15612244576108f76136c1565b6108f761254d565b61225533610abb565b61225d6120c1565b6001600160a01b0316336001600160a01b0316146122905760405163086391f760e31b815233600482015260240161071e565b505050565b61229d6120c1565b6001600160a01b0316336001600160a01b0316146122d05760405163086391f760e31b815233600482015260240161071e565b5f6122d9612ccc565b8054604051631703edc360e31b8152600481018790526001600160a01b03868116602483015292935091169063b81f6e1890604401602060405180830381865afa158015612329573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061234d9190614668565b61237c576040516374ddbd6960e01b8152600481018590526001600160a01b038416602482015260440161071e565b6002810154604051637b21556160e01b8152600481018690526001600160a01b0385811660248301525f921690637b21556190604401602060405180830381865afa1580156123cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123f191906148fa565b600283015460405163269c98d960e21b8152600481018890526001600160a01b03878116602483015260448201879052929350911690639a726364906064015f604051808303815f87803b158015612447575f80fd5b505af1158015612459573d5f803e3d5ffd5b5050604080518881526001600160a01b0388166020820152908101849052606081018690527f8075f599388073d04550222731e9c7e00c284a4f858d8a0ffc0657164981c76e92506080019050610ff6565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124f2573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061251691906145be565b6001600160a01b0316336001600160a01b0316146125485760405162f0630960e01b815233600482015260240161071e565b610b94565b612555613fab565b6108f76136c1565b5f80516020614c15833981519152546001600160a01b031690565b5f612581612ccc565b546001600160a01b0316919050565b5f61259a33610abb565b5f6125a3612ccc565b600381015460405163153d412560e31b81526001600160601b03881660048201529192505f916001600160a01b039091169063a9ea092890602401608060405180830381865afa1580156125f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061261d9190614911565b602001516003830154604051637b21556160e01b8152600481018390526001600160a01b0388811660248301529293505f9290911690637b21556190604401602060405180830381865afa158015612677573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061269b91906148fa565b6002840154604051633ece552760e21b81529192506001600160a01b03169063fb39549c906126d4908a9085908b908b9060040161492b565b6020604051808303815f875af11580156126f0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127149190614606565b979650505050505050565b5f61272933610abb565b5f612732612ccc565b600281015460405163d7537c3760e01b81526001600160601b038088166004830152861660248201529192506001600160a01b03169063d7537c37906044015b6020604051808303815f875af115801561278e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127b29190614606565b949350505050565b5f806127c533610abb565b826127ce612ccc565b60020154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa15801561281e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128429190614668565b61286a57604051632ab4595b60e11b81526001600160601b038216600482015260240161071e565b5f612873612ccc565b600381015460405163b3eff9e160e01b81526001600160a01b0390911660048201526001600160601b038716602482015290915073__$dbe4bf03c942dc0574f54ee579c90d56ef$__9063b3eff9e190604401602060405180830381865af41580156128e1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129059190614756565b50600381015460028201545f91612929916001600160a01b03918216911688612dee565b9050816002015f9054906101000a90046001600160a01b03166001600160a01b031663eb98e8a0878373__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015612999573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129bd9190614606565b73__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015612a04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a289190614606565b60405160e086901b6001600160e01b03191681526001600160601b03948516600482015292841660248401529083166044830152909116606482015260840160408051808303815f875af1158015612a82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612aa6919061495f565b600284015460405163136cfef760e01b81526001600160601b038086166004830152831660248201529297509095506001600160a01b03169063136cfef7906044016020604051808303815f875af1158015612b04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b289190614606565b50505050915091565b5f612b3b33610abb565b5f612b44612ccc565b600281015460405163136cfef760e01b81526001600160601b038088166004830152861660248201529192506001600160a01b03169063136cfef790604401612772565b5f612b9233610abb565b5f612b9b612ccc565b600381015460405163153d412560e31b81526001600160601b03881660048201529192505f916001600160a01b039091169063a9ea092890602401608060405180830381865afa158015612bf1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c159190614911565b602001516003830154604051637b21556160e01b8152600481018390526001600160a01b0388811660248301529293505f9290911690637b21556190604401602060405180830381865afa158015612c6f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c9391906148fa565b60028401546040516377f9185160e01b81529192506001600160a01b0316906377f91851906126d4908a9085908b908b9060040161492b565b7fafe8d4462b2ed26a47154f4b8f6d1497d2f772496965791d25bd456e342b7f0090565b5f80516020614c158339815191525f80612d28612d0b61255d565b8730612d1a60045f8a8c61498c565b612d23916149b3565b6137b3565b9150915081612de65763ffffffff811615612dc357825460ff60a01b1916600160a01b178355612d5661255d565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612d85939291906149eb565b5f604051808303815f87803b158015612d9c575f80fd5b505af1158015612dae573d5f803e3d5ffd5b5050845460ff60a01b1916855550612de69050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161071e565b505050505050565b6040516312b9a5c960e01b81526001600160601b03821660048201525f9081906001600160a01b038616906312b9a5c9906024016040805180830381865afa158015612e3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e609190614a2a565b60405163e048754d60e01b81526001600160a01b03881660048201526001600160601b03861660248201526044810182905291935091505f9073__$dbe4bf03c942dc0574f54ee579c90d56ef$__9063e048754d906064016040805180830381865af4158015612ed2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ef6919061495f565b50604051634a2101d160e01b81526001600160601b0380871660048301528086166024830152821660448201529091506001600160a01b03861690634a2101d1906064015f604051808303815f87803b158015612f51575f80fd5b505af1158015612f63573d5f803e3d5ffd5b5050505050509392505050565b5f805f80516020614bf583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612fdc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130009190614668565b1561302c5780546040516301ab8b6760e21b81526001600160601b03909116600482015260240161071e565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561307e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130a29190614668565b6130ca5760405163b9304b0d60e01b81526001600160a01b038416600482015260240161071e565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa15801561311c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131409190614606565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b6102cb6138bb565b61317b60036138f3565b6040516320c8cbff60e11b81526001600160a01b0384811660048301526001600160601b0384166024830152919091169063419197fe906044015f604051808303815f87803b1580156131cc575f80fd5b505af1158015612de6573d5f803e3d5ffd5b5f80516020614c358339815191528054600160401b810460ff1615906001600160401b03165f8115801561320f5750825b90505f826001600160401b0316600114801561322a5750303b155b905081158015613238575080155b156132565760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561328057845460ff60401b1916600160401b1785555b5f805f80898060200190518101906132989190614a56565b93509350935093505f8490505f816001600160a01b031663e2b178a06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132e1573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061330591906145be565b90505f8590505f816001600160a01b031663b201f7096040518163ffffffff1660e01b8152600401602060405180830381865afa158015613348573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061336c91906145be565b90505f613377612ccc565b9050846001600160a01b031663fff74f6c6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133d99190614606565b6003820180546001600160601b0392909216600160a01b026001600160a01b039283161790556002820180549189166001600160a01b0319929092168217905560408051633148a11d60e11b81529051636291423a916004808201926020929091908290030181865afa158015613452573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061347691906145be565b6003820180546001600160a01b03199081166001600160a01b039384161790915582541689821617825560408051630322622f60e51b8152905161354f9287928d92918a169163644c45e0916004808201926020929091908290030181865afa1580156134e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135099190614606565b6040805180820190915260078152665374616b696e6760c81b60208201528660035f8d60405180602001604052805f81525060405180602001604052805f81525061398a565b61355f637641aba360e01b613c0c565b505050505050505050831561149e57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611495565b6001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa15801561360c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136309190614668565b61133e5760405163d711af7560e01b81526001600160601b038316600482015260ff8216602482015260440161071e565b5f80516020614c1583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6136c9613fab565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060800160405280825f01805461370690614621565b80601f016020809104026020016040519081016040528092919081815260200182805461373290614621565b801561377d5780601f106137545761010080835404028352916020019161377d565b820191905f5260205f20905b81548152906001019060200180831161376057829003601f168201915b505050918352505060018301546001600160a01b031660208201525f6040820152600283018054606090920191610a3190614621565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516138219190614aa7565b5f60405180830381855afa9150503d805f8114613859576040519150601f19603f3d011682016040523d82523d5f602084013e61385e565b606091505b509150915081156138b057604081511061389057808060200190518101906138869190614abd565b90945092506138b0565b60208151106138b057808060200190518101906138ad9190614668565b93505b505094509492505050565b5f80516020614c3583398151915254600160401b900460ff166138f157604051631afcd79f60e31b815260040160405180910390fd5b565b5f6139066001546001600160a01b031690565b6001600160a01b031663d39e60438361391d611fb0565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613960573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061398491906145be565b92915050565b6139926138bb565b5f896001600160a01b031663caed98976040518163ffffffff1660e01b8152600401602060405180830381865afa1580156139cf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139f391906145be565b90505f8b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a32573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a5691906148df565b905060ff8716600314613b1c57604051637d482da160e01b81526001600160a01b0380841660048301528916602482015246604482015260ff8216606482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90637d482da190608401602060405180830381865af4158015613ad0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613af49190614668565b613b1c57604051638071294b60e01b81526001600160a01b038916600482015260240161071e565b88515f03613b3d5760405163591eebf360e11b815260040160405180910390fd5b613b4c8c8c8c8a8a8a8a613c38565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0080613b788b82614b3a565b50600181018054881515600160a01b026001600160a81b03199091166001600160a01b038c161717905560028101613bb08582614b3a565b50613bbb600b6138f3565b6003820180546001600160a01b0319166001600160a01b0392909216919091179055613bed634a531f3360e01b613c0c565b613bfd6306e9e5ff60e31b613c0c565b50505050505050505050505050565b613c146138bb565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b613c406138bb565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015613c96573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cba9190614668565b613ce25760405163cf6935e560e01b81526001600160a01b038816600482015260240161071e565b613ceb87613dff565b613cf58683613e13565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff871602178155604080516376b707b760e01b815290516001600160a01b038a16916376b707b79160048083019260209291908290030181865afa158015613d85573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613da991906148df565b815461ffff60681b1916600160681b60ff929092169190910260ff60701b191617600160701b8515150217815560018101613de48382614b3a565b50613df5634a531f3360e01b613c0c565b5050505050505050565b613e076138bb565b613e1081613e89565b50565b613e1b6138bb565b613e2482613e9a565b613e2c613f66565b6001600160a01b038116613e535760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020614bf583398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b613e916138bb565b613e1081613661565b613ea26138bb565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015613ef8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f1c9190614668565b613f445760405163fdeac91f60e01b81526001600160a01b038216600482015260240161071e565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b613f6e6138bb565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040518060800160405280606081526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f60208284031215613ff3575f80fd5b81356001600160e01b03198116811461400a575f80fd5b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614087608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526127b2610100840182614011565b6001600160601b0381168114613e10575f80fd5b5f602082840312156140ef575f80fd5b813561400a816140cb565b602081525f61400a6020830184614011565b5f806040838503121561411d575f80fd5b8235614128816140cb565b946020939093013593505050565b5f805f60608486031215614148575f80fd5b8335614153816140cb565b92506020840135614163816140cb565b91506040840135614173816140cb565b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b604051608081016001600160401b03811182821017156141b4576141b461417e565b60405290565b60405160e081016001600160401b03811182821017156141b4576141b461417e565b604051601f8201601f191681016001600160401b03811182821017156142045761420461417e565b604052919050565b5f6001600160401b038211156142245761422461417e565b50601f01601f191660200190565b5f82601f830112614241575f80fd5b813561425461424f8261420c565b6141dc565b818152846020838601011115614268575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614294575f80fd5b81356001600160401b038111156142a9575f80fd5b6127b284828501614232565b60ff81168114613e10575f80fd5b64ffffffffff81168114613e10575f80fd5b5f8082840360a08112156142e7575f80fd5b83356142f2816140cb565b92506080601f1982011215614305575f80fd5b5061430e614192565b602084013561431c816142b5565b8152604084013560208201526060840135614336816142c3565b60408201526080939093013560608401525092909150565b6001600160a01b0381168114613e10575f80fd5b5f8060408385031215614373575f80fd5b823561437e8161434e565b9150602083013561438e816140cb565b809150509250929050565b5f80604083850312156143aa575f80fd5b82356143b58161434e565b915060208301356001600160401b038111156143cf575f80fd5b6143db85828601614232565b9150509250929050565b5f805f805f60a086880312156143f9575f80fd5b8535614404816140cb565b94506020860135614414816142b5565b935060408601359250606086013561442b816142c3565b949793965091946080013592915050565b5f806040838503121561444d575f80fd5b823561437e816140cb565b5f8060408385031215614469575f80fd5b8235614474816140cb565b9150602083013561438e816142c3565b5f60208284031215614494575f80fd5b813561400a8161434e565b602081525f8251608060208401526144ba60a0840182614011565b60208501516001600160a01b0390811660408681019190915286015116606080860191909152850151848203601f190160808601529091506118038282614011565b5f805f6060848603121561450e575f80fd5b8335614519816140cb565b925060208401356141638161434e565b5f805f6060848603121561453b575f80fd5b83359250602084013561454d8161434e565b929592945050506040919091013590565b5f805f8060808587031215614571575f80fd5b843561457c8161434e565b9350602085013561458c8161434e565b92506040850135915060608501356145a38161434e565b939692955090935050565b80516145b98161434e565b919050565b5f602082840312156145ce575f80fd5b815161400a8161434e565b5f602082840312156145e9575f80fd5b815162ffffff8116811461400a575f80fd5b80516145b9816140cb565b5f60208284031215614616575f80fd5b815161400a816140cb565b600181811c9082168061463557607f821691505b60208210810361465357634e487b7160e01b5f52602260045260245ffd5b50919050565b805180151581146145b9575f80fd5b5f60208284031215614678575f80fd5b61400a82614659565b80516145b9816142b5565b5f6080828403121561469c575f80fd5b6146a4614192565b905081516146b1816142b5565b81526020828101519082015260408201516146cb816142c3565b604082015260609182015191810191909152919050565b5f8060a083850312156146f3575f80fd5b82519150614704846020850161468c565b90509250929050565b5f60a0820190506001600160601b038416825260ff83511660208301526020830151604083015264ffffffffff6040840151166060830152606083015160808301529392505050565b5f60208284031215614766575f80fd5b815161400a816142c3565b5f60208284031215614781575f80fd5b81516001600160401b038116811461400a575f80fd5b5f82601f8301126147a6575f80fd5b81516147b461424f8261420c565b8181528460208386010111156147c8575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f602082840312156147f4575f80fd5b81516001600160401b03811115614809575f80fd5b820160e0818503121561481a575f80fd5b6148226141ba565b61482b826145fb565b8152614839602083016145fb565b602082015261484a60408301614681565b604082015261485b60608301614659565b606082015261486c608083016145ae565b608082015261487d60a083016145ae565b60a082015260c08201516001600160401b0381111561489a575f80fd5b6148a686828501614797565b60c083015250949350505050565b5f8060a083850312156148c5575f80fd5b82516148d0816142c3565b9150614704846020850161468c565b5f602082840312156148ef575f80fd5b815161400a816142b5565b5f6020828403121561490a575f80fd5b5051919050565b5f60808284031215614921575f80fd5b61400a838361468c565b6001600160601b03948516815260208101939093526001600160a01b03919091166040830152909116606082015260800190565b5f8060408385031215614970575f80fd5b825161497b816140cb565b602084015190925061438e816140cb565b5f808585111561499a575f80fd5b838611156149a6575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156149e4576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f8060408385031215614a3b575f80fd5b8251614a46816140cb565b6020939093015192949293505050565b5f805f8060808587031215614a69575f80fd5b8451614a748161434e565b6020860151909450614a858161434e565b6040860151909350614a968161434e565b60608601519092506145a38161434e565b5f82518060208501845e5f920191825250919050565b5f8060408385031215614ace575f80fd5b614ad783614659565b9150602083015163ffffffff8116811461438e575f80fd5b601f82111561229057805f5260205f20601f840160051c81016020851015614b145750805b601f840160051c820191505b81811015614b33575f8155600101614b20565b5050505050565b81516001600160401b03811115614b5357614b5361417e565b614b6781614b618454614621565b84614aef565b6020601f821160018114614b99575f8315614b825750848201515b5f19600385901b1c1916600184901b178455614b33565b5f84815260208120601f198516915b82811015614bc85787850151825560209485019460019092019101614ba8565b5084821015614be557868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212203c2bb205ecc6367af5107282dc66d5240f07c60bfc0e9e034808bfa4e8decd6964736f6c634300081a0033",
1606
+ "linkReferences": {
1607
+ "contracts/shared/ContractLib.sol": {
1608
+ "ContractLib": [
1609
+ {
1610
+ "length": 20,
1611
+ "start": 15214
1612
+ },
1613
+ {
1614
+ "length": 20,
1615
+ "start": 15668
1616
+ },
1617
+ {
1618
+ "length": 20,
1619
+ "start": 16278
1620
+ }
1621
+ ]
1622
+ },
1623
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
1624
+ "TokenHandlerDeployerLib": [
1625
+ {
1626
+ "length": 20,
1627
+ "start": 2058
1628
+ }
1629
+ ]
1630
+ },
1631
+ "contracts/staking/StakeManagerLib.sol": {
1632
+ "StakeManagerLib": [
1633
+ {
1634
+ "length": 20,
1635
+ "start": 4397
1636
+ },
1637
+ {
1638
+ "length": 20,
1639
+ "start": 6268
1640
+ },
1641
+ {
1642
+ "length": 20,
1643
+ "start": 7565
1644
+ },
1645
+ {
1646
+ "length": 20,
1647
+ "start": 10623
1648
+ },
1649
+ {
1650
+ "length": 20,
1651
+ "start": 12145
1652
+ }
1653
+ ]
1654
+ },
1655
+ "contracts/staking/TargetManagerLib.sol": {
1656
+ "TargetManagerLib": [
1657
+ {
1658
+ "length": 20,
1659
+ "start": 4032
1660
+ },
1661
+ {
1662
+ "length": 20,
1663
+ "start": 5512
1664
+ },
1665
+ {
1666
+ "length": 20,
1667
+ "start": 6711
1668
+ }
1669
+ ]
1670
+ },
1671
+ "contracts/type/Amount.sol": {
1672
+ "AmountLib": [
1673
+ {
1674
+ "length": 20,
1675
+ "start": 7966
1676
+ },
1677
+ {
1678
+ "length": 20,
1679
+ "start": 10794
1680
+ },
1681
+ {
1682
+ "length": 20,
1683
+ "start": 10901
1684
+ }
1685
+ ]
1686
+ },
1687
+ "contracts/type/NftId.sol": {
1688
+ "NftIdLib": [
1689
+ {
1690
+ "length": 20,
1691
+ "start": 2617
1692
+ },
1693
+ {
1694
+ "length": 20,
1695
+ "start": 3486
1696
+ },
1697
+ {
1698
+ "length": 20,
1699
+ "start": 8651
1700
+ },
1701
+ {
1702
+ "length": 20,
1703
+ "start": 12410
1704
+ }
1705
+ ]
1706
+ },
1707
+ "contracts/type/Version.sol": {
1708
+ "VersionLib": [
1709
+ {
1710
+ "length": 20,
1711
+ "start": 2417
1712
+ },
1713
+ {
1714
+ "length": 20,
1715
+ "start": 4744
1716
+ }
1717
+ ],
1718
+ "VersionPartLib": [
1719
+ {
1720
+ "length": 20,
1721
+ "start": 8350
1722
+ }
1723
+ ]
1724
+ }
1725
+ },
1726
+ "deployedLinkReferences": {
1727
+ "contracts/shared/ContractLib.sol": {
1728
+ "ContractLib": [
1729
+ {
1730
+ "length": 20,
1731
+ "start": 15000
1732
+ },
1733
+ {
1734
+ "length": 20,
1735
+ "start": 15454
1736
+ },
1737
+ {
1738
+ "length": 20,
1739
+ "start": 16064
1740
+ }
1741
+ ]
1742
+ },
1743
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
1744
+ "TokenHandlerDeployerLib": [
1745
+ {
1746
+ "length": 20,
1747
+ "start": 1844
1748
+ }
1749
+ ]
1750
+ },
1751
+ "contracts/staking/StakeManagerLib.sol": {
1752
+ "StakeManagerLib": [
1753
+ {
1754
+ "length": 20,
1755
+ "start": 4183
1756
+ },
1757
+ {
1758
+ "length": 20,
1759
+ "start": 6054
1760
+ },
1761
+ {
1762
+ "length": 20,
1763
+ "start": 7351
1764
+ },
1765
+ {
1766
+ "length": 20,
1767
+ "start": 10409
1768
+ },
1769
+ {
1770
+ "length": 20,
1771
+ "start": 11931
1772
+ }
1773
+ ]
1774
+ },
1775
+ "contracts/staking/TargetManagerLib.sol": {
1776
+ "TargetManagerLib": [
1777
+ {
1778
+ "length": 20,
1779
+ "start": 3818
1780
+ },
1781
+ {
1782
+ "length": 20,
1783
+ "start": 5298
1784
+ },
1785
+ {
1786
+ "length": 20,
1787
+ "start": 6497
1788
+ }
1789
+ ]
1790
+ },
1791
+ "contracts/type/Amount.sol": {
1792
+ "AmountLib": [
1793
+ {
1794
+ "length": 20,
1795
+ "start": 7752
1796
+ },
1797
+ {
1798
+ "length": 20,
1799
+ "start": 10580
1800
+ },
1801
+ {
1802
+ "length": 20,
1803
+ "start": 10687
1804
+ }
1805
+ ]
1806
+ },
1807
+ "contracts/type/NftId.sol": {
1808
+ "NftIdLib": [
1809
+ {
1810
+ "length": 20,
1811
+ "start": 2403
1812
+ },
1813
+ {
1814
+ "length": 20,
1815
+ "start": 3272
1816
+ },
1817
+ {
1818
+ "length": 20,
1819
+ "start": 8437
1820
+ },
1821
+ {
1822
+ "length": 20,
1823
+ "start": 12196
1824
+ }
1825
+ ]
1826
+ },
1827
+ "contracts/type/Version.sol": {
1828
+ "VersionLib": [
1829
+ {
1830
+ "length": 20,
1831
+ "start": 2203
1832
+ },
1833
+ {
1834
+ "length": 20,
1835
+ "start": 4530
1836
+ }
1837
+ ],
1838
+ "VersionPartLib": [
1839
+ {
1840
+ "length": 20,
1841
+ "start": 8136
1842
+ }
1843
+ ]
1844
+ }
1845
+ }
1846
+ }