@etherisc/gif-next 0.0.2-f398177-971 → 0.0.2-f3b4c66-505

Sign up to get free protection for your applications and to get access to all the features.
Files changed (725) hide show
  1. package/README.md +77 -10
  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/{components/IDistributionComponent.sol/IDistributionComponent.json → distribution/Distribution.sol/Distribution.json} +334 -318
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1580 -0
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +868 -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/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +341 -110
  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 +2032 -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 +1523 -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 +2432 -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 +201 -101
  70. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  71. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +234 -91
  72. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  73. package/artifacts/contracts/instance/Instance.sol/Instance.json +227 -220
  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 +1411 -517
  80. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  81. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +288 -242
  82. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  83. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +178 -90
  84. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
  85. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +1509 -559
  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 -54
  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 +1 -1
  102. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  103. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  104. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  105. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  106. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  107. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  108. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +959 -0
  109. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  110. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +569 -0
  111. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  112. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  113. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  114. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +774 -0
  115. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  116. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +733 -0
  117. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  118. package/artifacts/contracts/{components/Component.sol/Component.json → oracle/Oracle.sol/Oracle.json} +243 -241
  119. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  120. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
  121. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  122. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +764 -0
  123. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  124. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +295 -450
  125. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  126. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +589 -0
  127. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  128. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1261 -0
  129. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  130. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +800 -0
  131. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  132. package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +216 -71
  133. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  134. package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → pool/IPoolComponent.sol/IPoolComponent.json} +336 -290
  135. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  136. package/artifacts/contracts/{instance/service → pool}/IPoolService.sol/IPoolService.json +511 -358
  137. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  138. package/artifacts/contracts/{components/IPoolComponent.sol/IPoolComponent.json → pool/Pool.sol/Pool.json} +350 -418
  139. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  140. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +456 -0
  141. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  142. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1574 -0
  143. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  144. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +808 -0
  145. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  146. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +879 -0
  147. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  148. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +740 -0
  149. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  150. package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +422 -459
  151. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  152. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +589 -0
  153. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  154. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1496 -0
  155. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  156. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +848 -0
  157. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  158. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → product/IApplicationService.sol/IApplicationService.json} +203 -215
  159. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  160. package/artifacts/contracts/{instance/service → product}/IClaimService.sol/IClaimService.json +338 -17
  161. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  162. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +981 -0
  163. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  164. package/artifacts/contracts/{instance/service → product}/IPricingService.sol/IPricingService.json +196 -83
  165. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  166. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +1018 -0
  167. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  168. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +100 -62
  169. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  170. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1333 -0
  171. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  172. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +293 -0
  173. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  174. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +808 -0
  175. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  176. package/artifacts/contracts/product/PricingService.sol/PricingService.json +951 -0
  177. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  178. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +784 -0
  179. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  180. package/artifacts/contracts/product/Product.sol/Product.json +1119 -0
  181. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  182. package/artifacts/contracts/product/RiskService.sol/RiskService.json +688 -0
  183. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  184. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +736 -0
  185. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  186. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
  187. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  188. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +483 -29
  189. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  190. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +291 -106
  191. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  192. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  193. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  194. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -18
  195. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  196. package/artifacts/contracts/registry/Registry.sol/Registry.json +982 -137
  197. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  198. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1928 -0
  199. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  200. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +362 -243
  201. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  202. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +164 -86
  203. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  204. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +1849 -0
  205. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  206. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  207. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  208. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1333 -0
  209. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  210. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
  211. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  212. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +317 -141
  213. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  214. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/Component.sol/Component.json} +277 -201
  215. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  216. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1571 -0
  217. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  218. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +820 -0
  219. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  220. package/artifacts/contracts/{instance/service/IApplicationService.sol/IApplicationService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +123 -131
  221. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  222. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +541 -0
  223. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  224. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  225. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  226. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  227. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  228. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  229. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  230. package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +130 -134
  231. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  232. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1203 -0
  233. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  234. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +709 -0
  235. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  236. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -14
  237. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  238. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  239. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  240. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +23 -1
  241. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  242. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +16 -30
  243. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  244. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +154 -0
  245. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  246. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  247. package/artifacts/contracts/shared/IService.sol/IService.json +74 -2
  248. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  249. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  250. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  251. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +797 -0
  252. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  253. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
  254. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  255. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  256. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  257. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  258. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  259. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +28 -57
  260. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  261. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +20 -124
  262. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  263. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +129 -90
  264. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  265. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
  266. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  267. package/artifacts/contracts/shared/Service.sol/Service.json +67 -102
  268. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  269. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +617 -8
  270. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  271. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  272. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  273. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  274. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  275. package/artifacts/contracts/{components/Distribution.sol/Distribution.json → staking/IStaking.sol/IStaking.json} +682 -611
  276. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  277. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1096 -0
  278. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  279. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
  280. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  281. package/artifacts/contracts/staking/Staking.sol/Staking.json +1849 -0
  282. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  283. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  284. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  285. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +788 -0
  286. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  287. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +587 -0
  288. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  289. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1301 -0
  290. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  291. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +732 -0
  292. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  293. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2283 -0
  294. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  295. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
  296. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  297. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  298. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  299. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  300. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  301. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  302. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  303. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  304. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  305. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  306. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  307. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  308. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  309. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  310. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  311. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  312. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  313. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  314. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  315. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  316. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  317. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  318. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  319. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  320. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  321. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  322. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  323. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  324. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  325. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +204 -0
  326. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  327. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +433 -0
  328. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  329. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
  330. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  331. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  332. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  333. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  334. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  335. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  336. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  337. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  338. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  339. package/artifacts/contracts/{types → type}/Timestamp.sol/TimestampLib.json +39 -7
  340. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  341. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -0
  342. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  343. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  344. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  345. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +113 -0
  346. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  347. package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
  348. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  349. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
  350. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  351. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  352. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  353. package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
  354. package/contracts/accounting/AccountingService.sol +262 -0
  355. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  356. package/contracts/accounting/IAccountingService.sol +45 -0
  357. package/contracts/authorization/AccessAdmin.sol +689 -0
  358. package/contracts/authorization/AccessManagerCloneable.sol +149 -0
  359. package/contracts/authorization/Authorization.sol +337 -0
  360. package/contracts/authorization/IAccess.sol +49 -0
  361. package/contracts/authorization/IAccessAdmin.sol +143 -0
  362. package/contracts/authorization/IAuthorization.sol +74 -0
  363. package/contracts/authorization/IServiceAuthorization.sol +40 -0
  364. package/contracts/authorization/ServiceAuthorization.sol +106 -0
  365. package/contracts/distribution/BasicDistribution.sol +141 -0
  366. package/contracts/distribution/BasicDistributionAuthorization.sol +60 -0
  367. package/contracts/{components → distribution}/Distribution.sol +171 -167
  368. package/contracts/distribution/DistributionService.sol +385 -0
  369. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  370. package/contracts/distribution/IDistributionComponent.sol +52 -0
  371. package/contracts/distribution/IDistributionService.sol +103 -0
  372. package/contracts/examples/fire/DamageLevel.sol +59 -0
  373. package/contracts/examples/fire/FirePool.sol +90 -0
  374. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  375. package/contracts/examples/fire/FireProduct.sol +437 -0
  376. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  377. package/contracts/examples/fire/FireUSD.sol +26 -0
  378. package/contracts/examples/unpermissioned/SimpleDistribution.sol +85 -0
  379. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  380. package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
  381. package/contracts/examples/unpermissioned/SimplePool.sol +106 -0
  382. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  383. package/contracts/examples/unpermissioned/SimpleProduct.sol +377 -0
  384. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  385. package/contracts/instance/BundleSet.sol +130 -0
  386. package/contracts/instance/IInstance.sol +43 -50
  387. package/contracts/instance/IInstanceService.sol +37 -38
  388. package/contracts/instance/Instance.sol +147 -129
  389. package/contracts/instance/InstanceAdmin.sol +437 -0
  390. package/contracts/instance/InstanceAuthorizationV3.sol +213 -0
  391. package/contracts/instance/InstanceReader.sol +359 -77
  392. package/contracts/instance/InstanceService.sol +263 -167
  393. package/contracts/instance/InstanceServiceManager.sol +14 -29
  394. package/contracts/instance/InstanceStore.sol +157 -71
  395. package/contracts/instance/RiskSet.sol +118 -0
  396. package/contracts/instance/base/BalanceStore.sol +123 -0
  397. package/contracts/instance/base/Cloneable.sol +28 -0
  398. package/contracts/instance/base/ObjectCounter.sol +20 -0
  399. package/contracts/instance/base/ObjectLifecycle.sol +113 -0
  400. package/contracts/instance/base/ObjectSet.sol +77 -0
  401. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  402. package/contracts/instance/module/IBundle.sol +6 -9
  403. package/contracts/instance/module/IComponents.sol +28 -18
  404. package/contracts/instance/module/IDistribution.sol +10 -8
  405. package/contracts/instance/module/IPolicy.sol +41 -33
  406. package/contracts/instance/module/IRisk.sol +4 -1
  407. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  408. package/contracts/oracle/BasicOracle.sol +47 -0
  409. package/contracts/oracle/BasicOracleAuthorization.sol +37 -0
  410. package/contracts/oracle/IOracle.sol +36 -0
  411. package/contracts/oracle/IOracleComponent.sol +33 -0
  412. package/contracts/oracle/IOracleService.sol +66 -0
  413. package/contracts/oracle/Oracle.sol +156 -0
  414. package/contracts/oracle/OracleService.sol +310 -0
  415. package/contracts/oracle/OracleServiceManager.sol +39 -0
  416. package/contracts/pool/BasicPool.sol +175 -0
  417. package/contracts/pool/BasicPoolAuthorization.sol +76 -0
  418. package/contracts/pool/BundleService.sol +395 -0
  419. package/contracts/pool/BundleServiceManager.sol +39 -0
  420. package/contracts/{instance/service → pool}/IBundleService.sol +42 -45
  421. package/contracts/pool/IPoolComponent.sol +62 -0
  422. package/contracts/pool/IPoolService.sol +165 -0
  423. package/contracts/pool/Pool.sol +345 -0
  424. package/contracts/pool/PoolLib.sol +216 -0
  425. package/contracts/pool/PoolService.sol +757 -0
  426. package/contracts/pool/PoolServiceManager.sol +39 -0
  427. package/contracts/product/ApplicationService.sol +274 -0
  428. package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
  429. package/contracts/product/BasicProduct.sol +51 -0
  430. package/contracts/product/BasicProductAuthorization.sol +56 -0
  431. package/contracts/product/ClaimService.sol +632 -0
  432. package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
  433. package/contracts/{instance/service → product}/IApplicationService.sol +18 -11
  434. package/contracts/{instance/service → product}/IClaimService.sol +64 -19
  435. package/contracts/product/IPolicyService.sol +95 -0
  436. package/contracts/product/IPricingService.sol +40 -0
  437. package/contracts/product/IProductComponent.sol +62 -0
  438. package/contracts/product/IRiskService.sol +33 -0
  439. package/contracts/product/PolicyService.sol +682 -0
  440. package/contracts/product/PolicyServiceLib.sol +65 -0
  441. package/contracts/product/PolicyServiceManager.sol +39 -0
  442. package/contracts/product/PricingService.sol +309 -0
  443. package/contracts/product/PricingServiceManager.sol +39 -0
  444. package/contracts/product/Product.sol +469 -0
  445. package/contracts/product/RiskService.sol +154 -0
  446. package/contracts/product/RiskServiceManager.sol +39 -0
  447. package/contracts/registry/ChainNft.sol +79 -40
  448. package/contracts/registry/IRegistry.sol +95 -30
  449. package/contracts/registry/IRegistryService.sol +34 -38
  450. package/contracts/registry/IRelease.sol +26 -0
  451. package/contracts/registry/ITransferInterceptor.sol +1 -2
  452. package/contracts/registry/Registry.sol +460 -197
  453. package/contracts/registry/RegistryAdmin.sol +354 -0
  454. package/contracts/registry/RegistryService.sol +89 -134
  455. package/contracts/registry/RegistryServiceManager.sol +23 -32
  456. package/contracts/registry/ReleaseAdmin.sol +245 -0
  457. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  458. package/contracts/registry/ReleaseRegistry.sol +511 -0
  459. package/contracts/registry/ServiceAuthorizationV3.sol +247 -0
  460. package/contracts/registry/TokenRegistry.sol +261 -64
  461. package/contracts/shared/Component.sol +227 -0
  462. package/contracts/shared/ComponentService.sol +692 -0
  463. package/contracts/shared/ComponentServiceManager.sol +38 -0
  464. package/contracts/shared/ComponentVerifyingService.sol +128 -0
  465. package/contracts/shared/ContractLib.sol +253 -0
  466. package/contracts/shared/IComponent.sol +61 -0
  467. package/contracts/shared/IComponentService.sol +112 -0
  468. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  469. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  470. package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
  471. package/contracts/shared/INftOwnable.sol +4 -2
  472. package/contracts/shared/IPolicyHolder.sol +16 -21
  473. package/contracts/shared/IRegisterable.sol +23 -1
  474. package/contracts/shared/IService.sol +12 -7
  475. package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +4 -4
  476. package/contracts/shared/InstanceLinkedComponent.sol +197 -0
  477. package/contracts/shared/KeyValueStore.sol +131 -0
  478. package/contracts/shared/Lifecycle.sol +88 -0
  479. package/contracts/shared/NftIdSet.sol +65 -0
  480. package/contracts/shared/NftOwnable.sol +34 -25
  481. package/contracts/shared/PolicyHolder.sol +20 -52
  482. package/contracts/shared/Registerable.sol +58 -24
  483. package/contracts/shared/RegistryLinked.sol +9 -14
  484. package/contracts/shared/Service.sol +33 -40
  485. package/contracts/shared/TokenHandler.sol +319 -13
  486. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  487. package/contracts/staking/IStaking.sol +165 -0
  488. package/contracts/staking/IStakingService.sol +165 -0
  489. package/contracts/staking/StakeManagerLib.sol +224 -0
  490. package/contracts/staking/Staking.sol +526 -0
  491. package/contracts/staking/StakingLifecycle.sol +23 -0
  492. package/contracts/staking/StakingManager.sol +52 -0
  493. package/contracts/staking/StakingReader.sol +190 -0
  494. package/contracts/staking/StakingService.sol +430 -0
  495. package/contracts/staking/StakingServiceManager.sol +45 -0
  496. package/contracts/staking/StakingStore.sol +605 -0
  497. package/contracts/staking/TargetManagerLib.sol +211 -0
  498. package/contracts/{types → type}/AddressSet.sol +1 -1
  499. package/contracts/{types → type}/Amount.sol +44 -3
  500. package/contracts/{types → type}/Blocknumber.sol +26 -3
  501. package/contracts/{types → type}/ClaimId.sol +6 -1
  502. package/contracts/{types → type}/Fee.sol +17 -16
  503. package/contracts/{types → type}/Key32.sol +2 -2
  504. package/contracts/type/Key32Set.sol +62 -0
  505. package/contracts/{types → type}/NftId.sol +21 -16
  506. package/contracts/{types → type}/NftIdSet.sol +2 -2
  507. package/contracts/type/ObjectType.sol +303 -0
  508. package/contracts/{types → type}/PayoutId.sol +10 -10
  509. package/contracts/{types → type}/Referral.sol +2 -1
  510. package/contracts/type/RequestId.sol +75 -0
  511. package/contracts/type/RiskId.sol +75 -0
  512. package/contracts/type/RoleId.sol +182 -0
  513. package/contracts/type/Seconds.sol +101 -0
  514. package/contracts/type/Selector.sol +107 -0
  515. package/contracts/{types → type}/StateId.sol +41 -2
  516. package/contracts/type/String.sol +53 -0
  517. package/contracts/{types → type}/Timestamp.sol +16 -7
  518. package/contracts/{types → type}/UFixed.sol +40 -121
  519. package/contracts/{types → type}/Version.sol +19 -7
  520. package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
  521. package/contracts/{shared → upgradeability}/ProxyManager.sol +93 -30
  522. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  523. package/contracts/{shared → upgradeability}/Versionable.sol +3 -3
  524. package/package.json +12 -8
  525. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  526. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  527. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  528. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  529. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  530. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  531. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  532. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  533. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  534. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -778
  535. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  536. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  537. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1348
  538. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +0 -4
  539. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +0 -124
  540. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  541. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -256
  542. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  543. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  544. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  545. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  546. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
  547. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  548. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
  549. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
  550. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -237
  551. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  552. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  553. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
  554. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
  555. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -918
  556. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
  557. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -648
  558. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  559. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1288
  560. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  561. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -696
  562. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
  563. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -1384
  564. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
  565. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -752
  566. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  567. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1556
  568. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  569. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -780
  570. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
  571. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  572. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
  573. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  574. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  575. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  576. package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.dbg.json +0 -4
  577. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  578. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  579. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1281
  580. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  581. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -740
  582. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  583. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -1622
  584. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  585. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -708
  586. package/artifacts/contracts/instance/service/PricingService.sol/PricingService.dbg.json +0 -4
  587. package/artifacts/contracts/instance/service/PricingService.sol/PricingService.json +0 -1004
  588. package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.dbg.json +0 -4
  589. package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.json +0 -688
  590. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  591. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -864
  592. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  593. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -640
  594. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  595. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  596. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  597. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -559
  598. package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
  599. package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
  600. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  601. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  602. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  603. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
  604. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  605. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  606. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -569
  607. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  608. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  609. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  610. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  611. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  612. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  613. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -370
  614. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  615. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  616. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  617. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -588
  618. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  619. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  620. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  621. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  622. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  623. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
  624. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  625. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  626. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  627. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  628. package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +0 -4
  629. package/artifacts/contracts/types/Amount.sol/AmountLib.json +0 -281
  630. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  631. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  632. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  633. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  634. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
  635. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -179
  636. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  637. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  638. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  639. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -312
  640. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  641. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  642. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  643. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
  644. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  645. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  646. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  647. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  648. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  649. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  650. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
  651. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -209
  652. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  653. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
  654. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  655. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  656. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  657. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  658. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
  659. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
  660. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  661. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  662. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  663. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  664. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  665. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  666. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  667. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  668. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  669. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  670. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  671. package/contracts/components/Component.sol +0 -272
  672. package/contracts/components/IComponent.sol +0 -90
  673. package/contracts/components/IDistributionComponent.sol +0 -71
  674. package/contracts/components/IPoolComponent.sol +0 -114
  675. package/contracts/components/IProductComponent.sol +0 -41
  676. package/contracts/components/Pool.sol +0 -302
  677. package/contracts/components/Product.sol +0 -375
  678. package/contracts/instance/BundleManager.sol +0 -126
  679. package/contracts/instance/Cloneable.sol +0 -51
  680. package/contracts/instance/InstanceAccessManager.sol +0 -541
  681. package/contracts/instance/InstanceAuthorizationsLib.sol +0 -308
  682. package/contracts/instance/ObjectManager.sol +0 -82
  683. package/contracts/instance/base/ComponentService.sol +0 -148
  684. package/contracts/instance/base/KeyValueStore.sol +0 -149
  685. package/contracts/instance/base/Lifecycle.sol +0 -120
  686. package/contracts/instance/module/IAccess.sol +0 -54
  687. package/contracts/instance/module/ISetup.sol +0 -33
  688. package/contracts/instance/module/ITreasury.sol +0 -23
  689. package/contracts/instance/service/ApplicationService.sol +0 -186
  690. package/contracts/instance/service/BundleService.sol +0 -382
  691. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  692. package/contracts/instance/service/ClaimService.sol +0 -437
  693. package/contracts/instance/service/DistributionService.sol +0 -348
  694. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  695. package/contracts/instance/service/IDistributionService.sol +0 -87
  696. package/contracts/instance/service/IPolicyService.sol +0 -80
  697. package/contracts/instance/service/IPoolService.sol +0 -114
  698. package/contracts/instance/service/IPricingService.sol +0 -37
  699. package/contracts/instance/service/IProductService.sol +0 -40
  700. package/contracts/instance/service/PolicyService.sol +0 -376
  701. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  702. package/contracts/instance/service/PoolService.sol +0 -403
  703. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  704. package/contracts/instance/service/PricingService.sol +0 -275
  705. package/contracts/instance/service/PricingServiceManager.sol +0 -51
  706. package/contracts/instance/service/ProductService.sol +0 -210
  707. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  708. package/contracts/registry/RegistryAccessManager.sol +0 -216
  709. package/contracts/registry/ReleaseManager.sol +0 -324
  710. package/contracts/shared/AccessManagerUpgradeableInitializeable.sol +0 -13
  711. package/contracts/shared/ContractDeployerLib.sol +0 -72
  712. package/contracts/test/TestFee.sol +0 -25
  713. package/contracts/test/TestRegisterable.sol +0 -18
  714. package/contracts/test/TestRoleId.sol +0 -14
  715. package/contracts/test/TestService.sol +0 -25
  716. package/contracts/test/TestToken.sol +0 -26
  717. package/contracts/test/TestVersion.sol +0 -44
  718. package/contracts/test/TestVersionable.sol +0 -17
  719. package/contracts/types/ChainId.sol +0 -38
  720. package/contracts/types/NumberId.sol +0 -52
  721. package/contracts/types/ObjectType.sol +0 -161
  722. package/contracts/types/RiskId.sol +0 -43
  723. package/contracts/types/RoleId.sol +0 -97
  724. package/contracts/types/Seconds.sol +0 -54
  725. /package/contracts/{types → type}/DistributorType.sol +0 -0
@@ -46,19 +46,46 @@
46
46
  "name": "ERC1167FailedCreateClone",
47
47
  "type": "error"
48
48
  },
49
+ {
50
+ "inputs": [
51
+ {
52
+ "internalType": "address",
53
+ "name": "authority",
54
+ "type": "address"
55
+ }
56
+ ],
57
+ "name": "ErrorAuthorityInvalid",
58
+ "type": "error"
59
+ },
60
+ {
61
+ "inputs": [],
62
+ "name": "ErrorInstanceServiceAccessManagerZero",
63
+ "type": "error"
64
+ },
49
65
  {
50
66
  "inputs": [],
51
- "name": "ErrorInstanceServiceBundleManagerAuthorityMismatch",
67
+ "name": "ErrorInstanceServiceBundleSetAuthorityMismatch",
52
68
  "type": "error"
53
69
  },
54
70
  {
55
71
  "inputs": [],
56
- "name": "ErrorInstanceServiceBundleManagerZero",
72
+ "name": "ErrorInstanceServiceBundleSetInstanceMismatch",
57
73
  "type": "error"
58
74
  },
59
75
  {
60
76
  "inputs": [],
61
- "name": "ErrorInstanceServiceBundleMangerInstanceMismatch",
77
+ "name": "ErrorInstanceServiceBundleSetZero",
78
+ "type": "error"
79
+ },
80
+ {
81
+ "inputs": [
82
+ {
83
+ "internalType": "address",
84
+ "name": "component",
85
+ "type": "address"
86
+ }
87
+ ],
88
+ "name": "ErrorInstanceServiceComponentNotInstanceLinked",
62
89
  "type": "error"
63
90
  },
64
91
  {
@@ -74,12 +101,12 @@
74
101
  },
75
102
  {
76
103
  "inputs": [],
77
- "name": "ErrorInstanceServiceInstanceAccessManagerZero",
104
+ "name": "ErrorInstanceServiceInstanceAddressZero",
78
105
  "type": "error"
79
106
  },
80
107
  {
81
108
  "inputs": [],
82
- "name": "ErrorInstanceServiceInstanceAddressZero",
109
+ "name": "ErrorInstanceServiceInstanceAdminZero",
83
110
  "type": "error"
84
111
  },
85
112
  {
@@ -138,6 +165,22 @@
138
165
  "name": "ErrorInstanceServiceInstanceStoreZero",
139
166
  "type": "error"
140
167
  },
168
+ {
169
+ "inputs": [
170
+ {
171
+ "internalType": "address",
172
+ "name": "instance",
173
+ "type": "address"
174
+ },
175
+ {
176
+ "internalType": "VersionPart",
177
+ "name": "instanceVersion",
178
+ "type": "uint8"
179
+ }
180
+ ],
181
+ "name": "ErrorInstanceServiceInstanceVersionMismatch",
182
+ "type": "error"
183
+ },
141
184
  {
142
185
  "inputs": [
143
186
  {
@@ -161,12 +204,12 @@
161
204
  },
162
205
  {
163
206
  "inputs": [],
164
- "name": "ErrorInstanceServiceMasterBundleManagerAlreadySet",
207
+ "name": "ErrorInstanceServiceMasterBundleSetAlreadySet",
165
208
  "type": "error"
166
209
  },
167
210
  {
168
211
  "inputs": [],
169
- "name": "ErrorInstanceServiceMasterInstanceAccessManagerAlreadySet",
212
+ "name": "ErrorInstanceServiceMasterInstanceAdminAlreadySet",
170
213
  "type": "error"
171
214
  },
172
215
  {
@@ -181,7 +224,23 @@
181
224
  },
182
225
  {
183
226
  "inputs": [],
184
- "name": "ErrorInstanceServiceMasterOzAccessManagerAlreadySet",
227
+ "name": "ErrorInstanceServiceMasterRiskSetAlreadySet",
228
+ "type": "error"
229
+ },
230
+ {
231
+ "inputs": [
232
+ {
233
+ "internalType": "address",
234
+ "name": "instance",
235
+ "type": "address"
236
+ },
237
+ {
238
+ "internalType": "ObjectType",
239
+ "name": "objectType",
240
+ "type": "uint8"
241
+ }
242
+ ],
243
+ "name": "ErrorInstanceServiceNotInstance",
185
244
  "type": "error"
186
245
  },
187
246
  {
@@ -192,23 +251,18 @@
192
251
  "type": "uint96"
193
252
  }
194
253
  ],
195
- "name": "ErrorInstanceServiceNotInstance",
254
+ "name": "ErrorInstanceServiceNotInstanceNftId",
196
255
  "type": "error"
197
256
  },
198
257
  {
199
258
  "inputs": [
200
259
  {
201
260
  "internalType": "address",
202
- "name": "caller",
261
+ "name": "instance",
203
262
  "type": "address"
204
- },
205
- {
206
- "internalType": "NftId",
207
- "name": "instanceNftId",
208
- "type": "uint96"
209
263
  }
210
264
  ],
211
- "name": "ErrorInstanceServiceNotInstanceOwner",
265
+ "name": "ErrorInstanceServiceNotRegistered",
212
266
  "type": "error"
213
267
  },
214
268
  {
@@ -222,6 +276,21 @@
222
276
  "name": "ErrorInstanceServiceRequestUnauhorized",
223
277
  "type": "error"
224
278
  },
279
+ {
280
+ "inputs": [],
281
+ "name": "ErrorInstanceServiceRiskSetAuthorityMismatch",
282
+ "type": "error"
283
+ },
284
+ {
285
+ "inputs": [],
286
+ "name": "ErrorInstanceServiceRiskSetInstanceMismatch",
287
+ "type": "error"
288
+ },
289
+ {
290
+ "inputs": [],
291
+ "name": "ErrorInstanceServiceRiskSetZero",
292
+ "type": "error"
293
+ },
225
294
  {
226
295
  "inputs": [
227
296
  {
@@ -249,6 +318,22 @@
249
318
  "name": "ErrorNftOwnableInitialOwnerZero",
250
319
  "type": "error"
251
320
  },
321
+ {
322
+ "inputs": [
323
+ {
324
+ "internalType": "NftId",
325
+ "name": "nftId",
326
+ "type": "uint96"
327
+ },
328
+ {
329
+ "internalType": "ObjectType",
330
+ "name": "expectedObjectType",
331
+ "type": "uint8"
332
+ }
333
+ ],
334
+ "name": "ErrorNftOwnableInvalidType",
335
+ "type": "error"
336
+ },
252
337
  {
253
338
  "inputs": [
254
339
  {
@@ -273,7 +358,7 @@
273
358
  },
274
359
  {
275
360
  "inputs": [],
276
- "name": "ErrorServiceNotImplemented",
361
+ "name": "ErrorRegisterableNotActive",
277
362
  "type": "error"
278
363
  },
279
364
  {
@@ -286,6 +371,11 @@
286
371
  "name": "NotInitializing",
287
372
  "type": "error"
288
373
  },
374
+ {
375
+ "inputs": [],
376
+ "name": "ReentrancyGuardReentrantCall",
377
+ "type": "error"
378
+ },
289
379
  {
290
380
  "anonymous": false,
291
381
  "inputs": [
@@ -317,45 +407,15 @@
317
407
  "inputs": [
318
408
  {
319
409
  "indexed": false,
320
- "internalType": "address",
321
- "name": "clonedOzAccessManager",
322
- "type": "address"
323
- },
324
- {
325
- "indexed": false,
326
- "internalType": "address",
327
- "name": "clonedInstanceAccessManager",
328
- "type": "address"
329
- },
330
- {
331
- "indexed": false,
332
- "internalType": "address",
333
- "name": "clonedInstance",
334
- "type": "address"
335
- },
336
- {
337
- "indexed": false,
338
- "internalType": "address",
339
- "name": "clonedInstanceStore",
340
- "type": "address"
341
- },
342
- {
343
- "indexed": false,
344
- "internalType": "address",
345
- "name": "clonedBundleManager",
346
- "type": "address"
410
+ "internalType": "NftId",
411
+ "name": "instanceNftId",
412
+ "type": "uint96"
347
413
  },
348
414
  {
349
415
  "indexed": false,
350
416
  "internalType": "address",
351
- "name": "clonedInstanceReader",
417
+ "name": "instance",
352
418
  "type": "address"
353
- },
354
- {
355
- "indexed": false,
356
- "internalType": "NftId",
357
- "name": "clonedInstanceNftId",
358
- "type": "uint96"
359
419
  }
360
420
  ],
361
421
  "name": "LogInstanceCloned",
@@ -413,51 +473,18 @@
413
473
  "stateMutability": "view",
414
474
  "type": "function"
415
475
  },
416
- {
417
- "inputs": [
418
- {
419
- "internalType": "NftId",
420
- "name": "instanceNftId",
421
- "type": "uint96"
422
- },
423
- {
424
- "internalType": "address",
425
- "name": "targetAddress",
426
- "type": "address"
427
- },
428
- {
429
- "internalType": "string",
430
- "name": "targetName",
431
- "type": "string"
432
- },
433
- {
434
- "internalType": "bytes4[][]",
435
- "name": "selectors",
436
- "type": "bytes4[][]"
437
- },
438
- {
439
- "internalType": "RoleId[]",
440
- "name": "roles",
441
- "type": "uint64[]"
442
- }
443
- ],
444
- "name": "createGifTarget",
445
- "outputs": [],
446
- "stateMutability": "nonpayable",
447
- "type": "function"
448
- },
449
476
  {
450
477
  "inputs": [],
451
- "name": "createInstanceClone",
478
+ "name": "createInstance",
452
479
  "outputs": [
453
480
  {
454
- "internalType": "contract Instance",
455
- "name": "clonedInstance",
481
+ "internalType": "contract IInstance",
482
+ "name": "instance",
456
483
  "type": "address"
457
484
  },
458
485
  {
459
486
  "internalType": "NftId",
460
- "name": "clonedInstanceNftId",
487
+ "name": "instanceNftId",
461
488
  "type": "uint96"
462
489
  }
463
490
  ],
@@ -470,7 +497,7 @@
470
497
  "outputs": [
471
498
  {
472
499
  "internalType": "ObjectType",
473
- "name": "",
500
+ "name": "serviceDomain",
474
501
  "type": "uint8"
475
502
  }
476
503
  ],
@@ -581,132 +608,72 @@
581
608
  },
582
609
  {
583
610
  "inputs": [],
584
- "name": "getVersion",
611
+ "name": "getRelease",
585
612
  "outputs": [
586
613
  {
587
- "internalType": "Version",
588
- "name": "",
589
- "type": "uint24"
614
+ "internalType": "VersionPart",
615
+ "name": "release",
616
+ "type": "uint8"
590
617
  }
591
618
  ],
592
- "stateMutability": "pure",
619
+ "stateMutability": "view",
593
620
  "type": "function"
594
621
  },
595
622
  {
596
623
  "inputs": [],
597
- "name": "initializeERC165",
598
- "outputs": [],
599
- "stateMutability": "nonpayable",
600
- "type": "function"
601
- },
602
- {
603
- "inputs": [
604
- {
605
- "internalType": "address",
606
- "name": "initialOwner",
607
- "type": "address"
608
- },
609
- {
610
- "internalType": "address",
611
- "name": "registryAddress",
612
- "type": "address"
613
- }
614
- ],
615
- "name": "initializeNftOwnable",
616
- "outputs": [],
617
- "stateMutability": "nonpayable",
618
- "type": "function"
619
- },
620
- {
621
- "inputs": [
622
- {
623
- "internalType": "address",
624
- "name": "registryAddress",
625
- "type": "address"
626
- },
627
- {
628
- "internalType": "NftId",
629
- "name": "parentNftId",
630
- "type": "uint96"
631
- },
632
- {
633
- "internalType": "ObjectType",
634
- "name": "objectType",
635
- "type": "uint8"
636
- },
637
- {
638
- "internalType": "bool",
639
- "name": "isInterceptor",
640
- "type": "bool"
641
- },
642
- {
643
- "internalType": "address",
644
- "name": "initialOwner",
645
- "type": "address"
646
- },
624
+ "name": "getRoleId",
625
+ "outputs": [
647
626
  {
648
- "internalType": "bytes",
649
- "name": "registryData",
650
- "type": "bytes"
627
+ "internalType": "RoleId",
628
+ "name": "serviceRoleId",
629
+ "type": "uint64"
651
630
  }
652
631
  ],
653
- "name": "initializeRegisterable",
654
- "outputs": [],
655
- "stateMutability": "nonpayable",
632
+ "stateMutability": "view",
656
633
  "type": "function"
657
634
  },
658
635
  {
659
- "inputs": [
636
+ "inputs": [],
637
+ "name": "getVersion",
638
+ "outputs": [
660
639
  {
661
- "internalType": "address",
662
- "name": "registryAddress",
663
- "type": "address"
640
+ "internalType": "Version",
641
+ "name": "",
642
+ "type": "uint24"
664
643
  }
665
644
  ],
666
- "name": "initializeRegistryLinked",
667
- "outputs": [],
668
- "stateMutability": "nonpayable",
645
+ "stateMutability": "pure",
669
646
  "type": "function"
670
647
  },
671
648
  {
672
649
  "inputs": [
673
650
  {
674
651
  "internalType": "address",
675
- "name": "registry",
676
- "type": "address"
677
- },
678
- {
679
- "internalType": "address",
680
- "name": "authority",
652
+ "name": "activatedBy",
681
653
  "type": "address"
682
654
  },
683
655
  {
684
- "internalType": "address",
685
- "name": "initialOwner",
686
- "type": "address"
656
+ "internalType": "bytes",
657
+ "name": "data",
658
+ "type": "bytes"
687
659
  }
688
660
  ],
689
- "name": "initializeService",
661
+ "name": "initializeVersionable",
690
662
  "outputs": [],
691
663
  "stateMutability": "nonpayable",
692
664
  "type": "function"
693
665
  },
694
666
  {
695
- "inputs": [
696
- {
697
- "internalType": "address",
698
- "name": "activatedBy",
699
- "type": "address"
700
- },
667
+ "inputs": [],
668
+ "name": "isActive",
669
+ "outputs": [
701
670
  {
702
- "internalType": "bytes",
703
- "name": "data",
704
- "type": "bytes"
671
+ "internalType": "bool",
672
+ "name": "active",
673
+ "type": "bool"
705
674
  }
706
675
  ],
707
- "name": "initializeVersionable",
708
- "outputs": [],
709
- "stateMutability": "nonpayable",
676
+ "stateMutability": "view",
710
677
  "type": "function"
711
678
  },
712
679
  {
@@ -725,19 +692,30 @@
725
692
  {
726
693
  "inputs": [],
727
694
  "name": "linkToRegisteredNftId",
728
- "outputs": [],
695
+ "outputs": [
696
+ {
697
+ "internalType": "NftId",
698
+ "name": "nftId",
699
+ "type": "uint96"
700
+ }
701
+ ],
729
702
  "stateMutability": "nonpayable",
730
703
  "type": "function"
731
704
  },
732
705
  {
733
706
  "inputs": [
734
707
  {
735
- "internalType": "bytes4",
736
- "name": "interfaceId",
737
- "type": "bytes4"
708
+ "internalType": "address",
709
+ "name": "rewardProvider",
710
+ "type": "address"
711
+ },
712
+ {
713
+ "internalType": "Amount",
714
+ "name": "dipAmount",
715
+ "type": "uint96"
738
716
  }
739
717
  ],
740
- "name": "registerInterface",
718
+ "name": "refillStakingRewardReserves",
741
719
  "outputs": [],
742
720
  "stateMutability": "nonpayable",
743
721
  "type": "function"
@@ -777,12 +755,12 @@
777
755
  {
778
756
  "inputs": [
779
757
  {
780
- "internalType": "bool",
781
- "name": "locked",
782
- "type": "bool"
758
+ "internalType": "Seconds",
759
+ "name": "stakeLockingPeriod",
760
+ "type": "uint40"
783
761
  }
784
762
  ],
785
- "name": "setComponentLocked",
763
+ "name": "setStakingLockingPeriod",
786
764
  "outputs": [],
787
765
  "stateMutability": "nonpayable",
788
766
  "type": "function"
@@ -790,12 +768,12 @@
790
768
  {
791
769
  "inputs": [
792
770
  {
793
- "internalType": "address",
794
- "name": "instanceReaderAddress",
795
- "type": "address"
771
+ "internalType": "UFixed",
772
+ "name": "rewardRate",
773
+ "type": "uint256"
796
774
  }
797
775
  ],
798
- "name": "setMasterInstanceReader",
776
+ "name": "setStakingRewardRate",
799
777
  "outputs": [],
800
778
  "stateMutability": "nonpayable",
801
779
  "type": "function"
@@ -832,6 +810,19 @@
832
810
  "stateMutability": "nonpayable",
833
811
  "type": "function"
834
812
  },
813
+ {
814
+ "inputs": [
815
+ {
816
+ "internalType": "address",
817
+ "name": "instanceReaderAddress",
818
+ "type": "address"
819
+ }
820
+ ],
821
+ "name": "upgradeMasterInstanceReader",
822
+ "outputs": [],
823
+ "stateMutability": "nonpayable",
824
+ "type": "function"
825
+ },
835
826
  {
836
827
  "inputs": [
837
828
  {
@@ -844,134 +835,189 @@
844
835
  "outputs": [],
845
836
  "stateMutability": "nonpayable",
846
837
  "type": "function"
838
+ },
839
+ {
840
+ "inputs": [
841
+ {
842
+ "internalType": "Amount",
843
+ "name": "dipAmount",
844
+ "type": "uint96"
845
+ }
846
+ ],
847
+ "name": "withdrawStakingRewardReserves",
848
+ "outputs": [
849
+ {
850
+ "internalType": "Amount",
851
+ "name": "newBalance",
852
+ "type": "uint96"
853
+ }
854
+ ],
855
+ "stateMutability": "nonpayable",
856
+ "type": "function"
847
857
  }
848
858
  ],
849
- "bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b613c2a80620000e66000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636c6fbb2811610104578063b03d2a8e116100a2578063edabac0311610071578063edabac0314610429578063eeff428e1461043a578063f7c34ee014610469578063feec11901461047c57600080fd5b8063b03d2a8e146103d6578063b68d1809146103e9578063bf7e214f146103f8578063c22f980d1461041657600080fd5b8063893d20e8116100de578063893d20e8146103855780638e32e9791461038d5780638fb36037146103a0578063ada9652e146103c157600080fd5b80636c6fbb28146103575780637a9e5e4b1461036a578063872309c71461037d57600080fd5b8063329d6e74116101715780635ab1bd531161014b5780635ab1bd53146102da578063644c45e0146102ff578063675393bf146103315780636a778e731461034457600080fd5b8063329d6e74146102ac57806336fc697e146102bf57806349bb9e4b146102c757600080fd5b8063138461e0116101ad578063138461e0146102475780631eff4b2214610251578063214cdb801461028657806327bb7a331461029957600080fd5b806301ffc9a7146101d45780630d8e6e2c146102165780630fec111c14610232575b600080fd5b6102016101e23660046130d2565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61021e61048f565b60405162ffffff909116815260200161020d565b61023a610519565b60405161020d9190613144565b61024f61066c565b005b6102787f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161020d565b61024f6102943660046130d2565b610873565b61024f6102a7366004613309565b6108a0565b61024f6102ba3660046133a1565b610945565b61024f610a92565b61024f6102d53660046133d5565b610ad8565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161020d565b600080516020613b95833981519152546001600160601b03165b6040516001600160601b03909116815260200161020d565b61024f61033f366004613424565b610bd7565b610319610352366004613424565b610ce5565b61024f6103653660046135cf565b61159c565b61024f610378366004613424565b6117ba565b610278600081565b6102e7611854565b61024f61039b366004613693565b61198b565b6103a8611bc4565b6040516001600160e01b0319909116815260200161020d565b610278600080516020613b9583398151915281565b61024f6103e43660046136de565b611bfc565b6040516046815260200161020d565b600080516020613bb5833981519152546001600160a01b03166102e7565b61024f6104243660046136fb565b611e6d565b6006546001600160a01b03166102e7565b610442612098565b604080516001600160a01b0390931683526001600160601b0390911660208301520161020d565b61024f610477366004613718565b61292d565b61024f61048a366004613424565b6129a4565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156104f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105149190613751565b905090565b6040805160e0808201835260008083526020830181905282840181905260608084018290526080840182905260a0840182905260c0840152835191820190935290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300919081906001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016105c8611854565b6001600160a01b031681526020018260010180546105e590613776565b80601f016020809104026020016040519081016040528092919081815260200182805461061190613776565b801561065e5780601f106106335761010080835404028352916020019161065e565b820191906000526020600020905b81548152906001019060200180831161064157829003601f168201915b505050505081525091505090565b6000600080516020613b9583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156106db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ff91906137bb565b156107305780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b306107436001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561078b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107af91906137bb565b6107d75760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610727565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa15801561082b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084f91906137e3565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b61087b612b1c565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6108a8612b1c565b6108b2828761292d565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30161093b838261384e565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c61096761048f565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156109a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cb919061390d565b600080516020613bd58339815191528054600160401b900460ff16806109fe575080546001600160401b03808416911610155b15610a1c5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a4683612b55565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610a9a612b1c565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080516020613bd58339815191528054600160401b810460ff1615906001600160401b0316600081158015610b0b5750825b90506000826001600160401b03166001148015610b275750303b155b905081158015610b35575080155b15610b535760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610b7d57845460ff60401b1916600160401b1785555b610b878787612b5d565b8315610bce57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610bdf612b1c565b806001600160a01b03163b600003610c155760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610727565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015610c8f575060408051601f3d908101601f19168201909252610c8c918101906137bb565b60015b610cb75760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610727565b80610ce05760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610727565b505b50565b6000610cef611854565b6001600160a01b0316336001600160a01b031614610d225760405163086391f760e31b8152336004820152602401610727565b6005546001600160a01b031615610d4c57604051632c237de760e11b815260040160405180910390fd5b6003546001600160a01b031615610d7657604051636519f6b960e01b815260040160405180910390fd5b6004546001600160a01b031615610da057604051630157f74960e01b815260040160405180910390fd5b6007546001600160a01b031615610dca57604051637f405a2960e01b815260040160405180910390fd5b6001600160a01b038216610df1576040516309353e4560e11b815260040160405180910390fd5b60008290506000816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5a919061392a565b905060008190506000836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ea1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec5919061392a565b905060008190506000856001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f30919061392a565b905060008190506000876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9b919061392a565b9050806001600160a01b038716610fc55760405163459e9b9760e01b815260040160405180910390fd5b6001600160a01b038516610fec5760405163e267254160e01b815260040160405180910390fd5b6001600160a01b03831661101357604051630ddeaef560e11b815260040160405180910390fd5b6001600160a01b03811661103a576040516301fa2a2b60e01b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611078573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109c919061392a565b6001600160a01b0316896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611107919061392a565b6001600160a01b03161461112e576040516334ddf1a760e21b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561116c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611190919061392a565b6001600160a01b0316846001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fb919061392a565b6001600160a01b031614611222576040516326c89a4160e01b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611260573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611284919061392a565b6001600160a01b0316826001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ef919061392a565b6001600160a01b03161461131657604051631129422760e31b815260040160405180910390fd5b886001600160a01b0316846001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa15801561135e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611382919061392a565b6001600160a01b0316146113a957604051631b25e96d60e31b815260040160405180910390fd5b886001600160a01b0316866001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611415919061392a565b6001600160a01b03161461143c576040516331783c7160e11b815260040160405180910390fd5b886001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561147a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149e919061392a565b600380546001600160a01b03199081166001600160a01b03938416179091556004805482168a84161790556005805482168e8416908117909155600680548316898516179055600780548316878516179055600880549092168484161790915560025490916000911663026bc43b83611515611854565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016000604051808303816000875af1158015611562573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261158a91908101906139a2565b519d9c50505050505050505050505050565b6001546001600160a01b0316604051632b91e0a960e01b81523360048201526001600160a01b039190911690632b91e0a990602401602060405180830381865afa1580156115ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161291906137bb565b611631576040516302613e9f60e51b8152336004820152602401610727565b600061163d8686612d9e565b5090506000816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015611680573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a4919061392a565b60405163044ec4c360e41b81529091506001600160a01b038216906344ec4c30906116d59089908990600401613a74565b600060405180830381600087803b1580156116ef57600080fd5b505af1158015611703573d6000803e3d6000fd5b5050505060005b835181101561093b57816001600160a01b0316630c8ae53e8787848151811061173557611735613a98565b602002602001015187858151811061174f5761174f613a98565b60200260200101516040518463ffffffff1660e01b815260040161177593929190613aae565b600060405180830381600087803b15801561178f57600080fd5b505af11580156117a3573d6000803e3d6000fd5b5050505080806117b290613b21565b91505061170a565b336117da600080516020613bb5833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146118155760405162d1953b60e31b81526001600160a01b0382166004820152602401610727565b816001600160a01b03163b60000361184b576040516361798f2f60e11b81526001600160a01b0383166004820152602401610727565b610ce082612f4e565b600080600080516020613b9583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156118c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e891906137bb565b15611975576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561194b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196f919061392a565b91505090565b54600160601b90046001600160a01b0316919050565b611993612b1c565b611a1383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f991906137e3565b603c600085604051806020016040528060008152506108a0565b6001600160a01b03821615611a3057611a2b82612faf565b611b9f565b6000611a446001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611aa4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac89190613b48565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015611b0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b31919061392a565b9050611b9d816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b98919061392a565b612faf565b505b611baf634a531f3360e01b610873565b611bbf63b68d180960e01b610873565b505050565b600080516020613bb5833981519152805460009190600160a01b900460ff16611bee57600061196f565b638fb3603760e01b91505090565b6001546001600160a01b0316604051630bee2f1560e11b81523360048201526001600160a01b0391909116906317dc5e2a90602401602060405180830381865afa158015611c4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7291906137bb565b611c91576040516302613e9f60e51b8152336004820152602401610727565b336000611ca66001546001600160a01b031690565b6040516308b09a5f60e41b81526001600160a01b038481166004830152919250600091831690638b09a5f090602401600060405180830381865afa158015611cf2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d1a91908101906139a2565b602001516040516305247a1760e51b81526001600160601b03821660048201529091506000906001600160a01b0384169063a48f42e090602401600060405180830381865afa158015611d71573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d9991908101906139a2565b608001519050806001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ddd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e01919061392a565b6040516313bfaf6360e31b81526001600160a01b03868116600483015287151560248301529190911690639dfd7b1890604401600060405180830381600087803b158015611e4e57600080fd5b505af1158015611e62573d6000803e3d6000fd5b505050505050505050565b80611e806001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611ecf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef3919061392a565b6001600160a01b0316336001600160a01b031614611f26576040516302613e9f60e51b8152336004820152602401610727565b6000611f3a6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611f8d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611fb591908101906139a2565b608081015160065491925090600090611fd6906001600160a01b0316612fc0565b60405163189acdbd60e31b81526001600160a01b0384811660048301529192509082169063c4d66de890602401600060405180830381600087803b15801561201d57600080fd5b505af1158015612031573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528516925063f7bc431c9150602401600060405180830381600087803b15801561207857600080fd5b505af115801561208c573d6000803e3d6000fd5b50505050505050505050565b6003546000908190339082906120b6906001600160a01b0316612fc0565b60405163189acdbd60e31b81523060048201529091506001600160a01b0382169063c4d66de890602401600060405180830381600087803b1580156120fa57600080fd5b505af115801561210e573d6000803e3d6000fd5b505060055461212892506001600160a01b03169050612fc0565b9350836001600160a01b031663c0c53b8b8261214c6001546001600160a01b031690565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015290821660248201529085166044820152606401600060405180830381600087803b15801561219d57600080fd5b505af11580156121b1573d6000803e3d6000fd5b5050600854600092506121cd91506001600160a01b0316612fc0565b60405163189acdbd60e31b81526001600160a01b0387811660048301529192509082169063c4d66de890602401600060405180830381600087803b15801561221457600080fd5b505af1158015612228573d6000803e3d6000fd5b505060405163048935d560e31b81526001600160a01b03848116600483015288169250632449aea89150602401600060405180830381600087803b15801561226f57600080fd5b505af1158015612283573d6000803e3d6000fd5b50506006546000925061229f91506001600160a01b0316612fc0565b60405163189acdbd60e31b81526001600160a01b0388811660048301529192509082169063c4d66de890602401600060405180830381600087803b1580156122e657600080fd5b505af11580156122fa573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528916925063f7bc431c9150602401600060405180830381600087803b15801561234157600080fd5b505af1158015612355573d6000803e3d6000fd5b50506007546000925061237191506001600160a01b0316612fc0565b60405163189acdbd60e31b81526001600160a01b0389811660048301529192509082169063c4d66de890602401600060405180830381600087803b1580156123b857600080fd5b505af11580156123cc573d6000803e3d6000fd5b505060405162422c9d60e81b81526001600160a01b0384811660048301528a16925063422c9d009150602401600060405180830381600087803b15801561241257600080fd5b505af1158015612426573d6000803e3d6000fd5b50506004546000925061244291506001600160a01b0316612fc0565b9050846001600160a01b03166325c471a061245b613032565b604051631517388760e21b81526001600160401b03909116600482015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156124b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124d8919061390d565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b038416602482015260006044820152606401600060405180830381600087803b15801561252f57600080fd5b505af1158015612543573d6000803e3d6000fd5b505060405163189acdbd60e31b81526001600160a01b038b811660048301528416925063c4d66de89150602401600060405180830381600087803b15801561258a57600080fd5b505af115801561259e573d6000803e3d6000fd5b5050604051630f749a8960e01b81526001600160a01b0384811660048301528b169250630f749a899150602401600060405180830381600087803b1580156125e557600080fd5b505af11580156125f9573d6000803e3d6000fd5b5050505073__$2a34b1f180a6bf22a62a9bc53ba8adfaf5$__63a1b61ad4828a85888b61262e6001546001600160a01b031690565b61263661048f565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561268b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126af9190613b48565b60405160e089901b6001600160e01b03191681526001600160a01b0397881660048201529587166024870152938616604486015291851660648501528416608484015290921660a482015260ff90911660c482015260e40160006040518083038186803b15801561271f57600080fd5b505af4158015612733573d6000803e3d6000fd5b50505050846001600160a01b031663fe0776f561274e613032565b604051631517388760e21b81526001600160401b03909116600482015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156127a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127cb919061390d565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152306024820152604401600060405180830381600087803b15801561281257600080fd5b505af1158015612826573d6000803e3d6000fd5b505060025460405163026bc43b60e01b81526001600160a01b038c811660048301528a8116602483015260009450909116915063026bc43b906044016000604051808303816000875af1158015612881573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526128a991908101906139a2565b8051604080516001600160a01b038a8116825286811660208301528d81168284015289811660608301528781166080830152881660a08201526001600160601b03831660c08201529051919a509192507eccc9e339dab7298ad32b43864beb3b1c0cf136971be26f1e67d90bf43ebd3d9181900360e00190a1505050505050509091565b612935612b1c565b61293e81610bd7565b612946610a92565b6001600160a01b03821661296d5760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020613b9583398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6129ac611854565b6001600160a01b0316336001600160a01b0316146129df5760405163086391f760e31b8152336004820152602401610727565b6006546001600160a01b0316612a08576040516358e5a4af60e01b815260040160405180910390fd5b6001600160a01b038116612a2f57604051631aa1808560e31b815260040160405180910390fd5b6006546001600160a01b0390811690821603612a5e57604051630666e2a560e01b815260040160405180910390fd5b6005546040805163379ed74560e21b8152905183926001600160a01b03908116929084169163de7b5d14916004808201926020929091908290030181865afa158015612aae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ad2919061392a565b6001600160a01b031614612af95760405163f026367160e01b815260040160405180910390fd5b50600680546001600160a01b0319166001600160a01b0392909216919091179055565b600080516020613bd583398151915254600160401b900460ff16612b5357604051631afcd79f60e31b815260040160405180910390fd5b565b6101cf612b1c565b600080516020613bd58339815191528054600160401b810460ff1615906001600160401b0316600081158015612b905750825b90506000826001600160401b03166001148015612bac5750303b155b905081158015612bba575080155b15612bd85760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612c0257845460ff60401b1916600160401b1785555b60008087806020019051810190612c199190613b65565b91509150816001600160a01b031663d39e6043612c34602890565b612c3c61048f565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015612c91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cb59190613b48565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015612cfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d1e919061392a565b600280546001600160a01b0319166001600160a01b0392909216919091179055612d4a8260008b61198b565b612d5a630655ba6560e31b610873565b50508315610bce57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610bc5565b6000806000612db56001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03871660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015612e08573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612e3091908101906139a2565b9050612e4e8160400151612e42604690565b60ff9081169116141590565b15612e775760405163e3c2794960e01b81526001600160601b0387166004820152602401610727565b6040516308b09a5f60e41b81526001600160a01b03868116600483015260009190841690638b09a5f090602401600060405180830381865afa158015612ec1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612ee991908101906139a2565b9050612f068160200151886001600160601b039081169116141590565b15612f3a57805160405163a811346560e01b81526001600160601b03808a1660048301529091166024820152604401610727565b608090910151905190969095509350505050565b600080516020613bb583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b612fb7612b1c565b610ce2816130a9565b6000763d602d80600a3d3981f3363d3d373d3d3d363d730000008260601b60e81c176000526e5af43d82803e903d91602b57fd5bf38260781b17602052603760096000f090506001600160a01b03811661302d576040516330be1a3d60e21b815260040160405180910390fd5b919050565b6040516368aebf7b60e01b81526000600482018190529073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015613085573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610514919061390d565b6130b1612b1c565b610ce281612f4e565b80356001600160e01b03198116811461302d57600080fd5b6000602082840312156130e457600080fd5b6130ed826130ba565b9392505050565b60005b8381101561310f5781810151838201526020016130f7565b50506000910152565b600081518084526131308160208601602086016130f4565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516131ad60c08401826001600160a01b03169052565b5060c083015160e0808401526131c7610100840182613118565b949350505050565b6001600160a01b0381168114610ce257600080fd5b6001600160601b0381168114610ce257600080fd5b60ff81168114610ce257600080fd5b8015158114610ce257600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b038111828210171561324e5761324e613216565b60405290565b604051601f8201601f191681016001600160401b038111828210171561327c5761327c613216565b604052919050565b60006001600160401b0382111561329d5761329d613216565b50601f01601f191660200190565b60006132be6132b984613284565b613254565b90508281528383830111156132d257600080fd5b828260208301376000602084830101529392505050565b600082601f8301126132fa57600080fd5b6130ed838335602085016132ab565b60008060008060008060c0878903121561332257600080fd5b863561332d816131cf565b9550602087013561333d816131e4565b9450604087013561334d816131f9565b9350606087013561335d81613208565b9250608087013561336d816131cf565b915060a08701356001600160401b0381111561338857600080fd5b61339489828a016132e9565b9150509295509295509295565b6000602082840312156133b357600080fd5b81356001600160401b038111156133c957600080fd5b6131c7848285016132e9565b600080604083850312156133e857600080fd5b82356133f3816131cf565b915060208301356001600160401b0381111561340e57600080fd5b61341a858286016132e9565b9150509250929050565b60006020828403121561343657600080fd5b81356130ed816131cf565b60006001600160401b0382111561345a5761345a613216565b5060051b60200190565b600082601f83011261347557600080fd5b813560206134856132b983613441565b828152600592831b85018201928282019190878511156134a457600080fd5b8387015b8581101561353e5780356001600160401b038111156134c75760008081fd5b8801603f81018a136134d95760008081fd5b8581013560406134eb6132b983613441565b82815291851b8301810191888101908d8411156135085760008081fd5b938201935b8385101561352d5761351e856130ba565b8252938901939089019061350d565b8852505050938501935084016134a8565b5090979650505050505050565b6001600160401b0381168114610ce257600080fd5b600082601f83011261357157600080fd5b813560206135816132b983613441565b82815260059290921b840181019181810190868411156135a057600080fd5b8286015b848110156135c45780356135b78161354b565b83529183019183016135a4565b509695505050505050565b600080600080600060a086880312156135e757600080fd5b85356135f2816131e4565b94506020860135613602816131cf565b935060408601356001600160401b038082111561361e57600080fd5b818801915088601f83011261363257600080fd5b613641898335602085016132ab565b9450606088013591508082111561365757600080fd5b61366389838a01613464565b9350608088013591508082111561367957600080fd5b5061368688828901613560565b9150509295509295909350565b6000806000606084860312156136a857600080fd5b83356136b3816131cf565b925060208401356136c3816131cf565b915060408401356136d3816131cf565b809150509250925092565b6000602082840312156136f057600080fd5b81356130ed81613208565b60006020828403121561370d57600080fd5b81356130ed816131e4565b6000806040838503121561372b57600080fd5b8235613736816131cf565b91506020830135613746816131cf565b809150509250929050565b60006020828403121561376357600080fd5b815162ffffff811681146130ed57600080fd5b600181811c9082168061378a57607f821691505b6020821081036137aa57634e487b7160e01b600052602260045260246000fd5b50919050565b805161302d81613208565b6000602082840312156137cd57600080fd5b81516130ed81613208565b805161302d816131e4565b6000602082840312156137f557600080fd5b81516130ed816131e4565b601f821115611bbf57600081815260208120601f850160051c810160208610156138275750805b601f850160051c820191505b8181101561384657828155600101613833565b505050505050565b81516001600160401b0381111561386757613867613216565b61387b816138758454613776565b84613800565b602080601f8311600181146138b057600084156138985750858301515b600019600386901b1c1916600185901b178555613846565b600085815260208120601f198616915b828110156138df578886015182559484019460019091019084016138c0565b50858210156138fd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561391f57600080fd5b81516130ed8161354b565b60006020828403121561393c57600080fd5b81516130ed816131cf565b805161302d816131cf565b805161302d816131f9565b600082601f83011261396e57600080fd5b815161397c6132b982613284565b81815284602083860101111561399157600080fd5b6131c78260208301602087016130f4565b6000602082840312156139b457600080fd5b81516001600160401b03808211156139cb57600080fd5b9083019060e082860312156139df57600080fd5b6139e761322c565b6139f0836137d8565b81526139fe602084016137d8565b6020820152613a0f60408401613952565b6040820152613a20606084016137b0565b6060820152613a3160808401613947565b6080820152613a4260a08401613947565b60a082015260c083015182811115613a5957600080fd5b613a658782860161395d565b60c08301525095945050505050565b6001600160a01b03831681526040602082018190526000906131c790830184613118565b634e487b7160e01b600052603260045260246000fd5b606081526000613ac16060830186613118565b82810360208481019190915285518083528682019282019060005b81811015613b025784516001600160e01b03191683529383019391830191600101613adc565b50508093505050506001600160401b0383166040830152949350505050565b600060018201613b4157634e487b7160e01b600052601160045260246000fd5b5060010190565b600060208284031215613b5a57600080fd5b81516130ed816131f9565b60008060408385031215613b7857600080fd5b8251613b83816131cf565b6020840151909250613746816131cf56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212201a401290ecbdea6ea6ea78456d5b9145c7212b70141183543948d2de93dfa14164736f6c63430008140033",
850
- "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636c6fbb2811610104578063b03d2a8e116100a2578063edabac0311610071578063edabac0314610429578063eeff428e1461043a578063f7c34ee014610469578063feec11901461047c57600080fd5b8063b03d2a8e146103d6578063b68d1809146103e9578063bf7e214f146103f8578063c22f980d1461041657600080fd5b8063893d20e8116100de578063893d20e8146103855780638e32e9791461038d5780638fb36037146103a0578063ada9652e146103c157600080fd5b80636c6fbb28146103575780637a9e5e4b1461036a578063872309c71461037d57600080fd5b8063329d6e74116101715780635ab1bd531161014b5780635ab1bd53146102da578063644c45e0146102ff578063675393bf146103315780636a778e731461034457600080fd5b8063329d6e74146102ac57806336fc697e146102bf57806349bb9e4b146102c757600080fd5b8063138461e0116101ad578063138461e0146102475780631eff4b2214610251578063214cdb801461028657806327bb7a331461029957600080fd5b806301ffc9a7146101d45780630d8e6e2c146102165780630fec111c14610232575b600080fd5b6102016101e23660046130d2565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61021e61048f565b60405162ffffff909116815260200161020d565b61023a610519565b60405161020d9190613144565b61024f61066c565b005b6102787f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161020d565b61024f6102943660046130d2565b610873565b61024f6102a7366004613309565b6108a0565b61024f6102ba3660046133a1565b610945565b61024f610a92565b61024f6102d53660046133d5565b610ad8565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161020d565b600080516020613b95833981519152546001600160601b03165b6040516001600160601b03909116815260200161020d565b61024f61033f366004613424565b610bd7565b610319610352366004613424565b610ce5565b61024f6103653660046135cf565b61159c565b61024f610378366004613424565b6117ba565b610278600081565b6102e7611854565b61024f61039b366004613693565b61198b565b6103a8611bc4565b6040516001600160e01b0319909116815260200161020d565b610278600080516020613b9583398151915281565b61024f6103e43660046136de565b611bfc565b6040516046815260200161020d565b600080516020613bb5833981519152546001600160a01b03166102e7565b61024f6104243660046136fb565b611e6d565b6006546001600160a01b03166102e7565b610442612098565b604080516001600160a01b0390931683526001600160601b0390911660208301520161020d565b61024f610477366004613718565b61292d565b61024f61048a366004613424565b6129a4565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156104f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105149190613751565b905090565b6040805160e0808201835260008083526020830181905282840181905260608084018290526080840182905260a0840182905260c0840152835191820190935290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300919081906001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016105c8611854565b6001600160a01b031681526020018260010180546105e590613776565b80601f016020809104026020016040519081016040528092919081815260200182805461061190613776565b801561065e5780601f106106335761010080835404028352916020019161065e565b820191906000526020600020905b81548152906001019060200180831161064157829003601f168201915b505050505081525091505090565b6000600080516020613b9583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156106db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ff91906137bb565b156107305780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b306107436001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561078b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107af91906137bb565b6107d75760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610727565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa15801561082b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084f91906137e3565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b61087b612b1c565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6108a8612b1c565b6108b2828761292d565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30161093b838261384e565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c61096761048f565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156109a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cb919061390d565b600080516020613bd58339815191528054600160401b900460ff16806109fe575080546001600160401b03808416911610155b15610a1c5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a4683612b55565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610a9a612b1c565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080516020613bd58339815191528054600160401b810460ff1615906001600160401b0316600081158015610b0b5750825b90506000826001600160401b03166001148015610b275750303b155b905081158015610b35575080155b15610b535760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610b7d57845460ff60401b1916600160401b1785555b610b878787612b5d565b8315610bce57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610bdf612b1c565b806001600160a01b03163b600003610c155760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610727565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015610c8f575060408051601f3d908101601f19168201909252610c8c918101906137bb565b60015b610cb75760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610727565b80610ce05760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610727565b505b50565b6000610cef611854565b6001600160a01b0316336001600160a01b031614610d225760405163086391f760e31b8152336004820152602401610727565b6005546001600160a01b031615610d4c57604051632c237de760e11b815260040160405180910390fd5b6003546001600160a01b031615610d7657604051636519f6b960e01b815260040160405180910390fd5b6004546001600160a01b031615610da057604051630157f74960e01b815260040160405180910390fd5b6007546001600160a01b031615610dca57604051637f405a2960e01b815260040160405180910390fd5b6001600160a01b038216610df1576040516309353e4560e11b815260040160405180910390fd5b60008290506000816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5a919061392a565b905060008190506000836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ea1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec5919061392a565b905060008190506000856001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f30919061392a565b905060008190506000876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9b919061392a565b9050806001600160a01b038716610fc55760405163459e9b9760e01b815260040160405180910390fd5b6001600160a01b038516610fec5760405163e267254160e01b815260040160405180910390fd5b6001600160a01b03831661101357604051630ddeaef560e11b815260040160405180910390fd5b6001600160a01b03811661103a576040516301fa2a2b60e01b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611078573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109c919061392a565b6001600160a01b0316896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611107919061392a565b6001600160a01b03161461112e576040516334ddf1a760e21b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561116c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611190919061392a565b6001600160a01b0316846001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fb919061392a565b6001600160a01b031614611222576040516326c89a4160e01b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611260573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611284919061392a565b6001600160a01b0316826001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ef919061392a565b6001600160a01b03161461131657604051631129422760e31b815260040160405180910390fd5b886001600160a01b0316846001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa15801561135e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611382919061392a565b6001600160a01b0316146113a957604051631b25e96d60e31b815260040160405180910390fd5b886001600160a01b0316866001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611415919061392a565b6001600160a01b03161461143c576040516331783c7160e11b815260040160405180910390fd5b886001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561147a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149e919061392a565b600380546001600160a01b03199081166001600160a01b03938416179091556004805482168a84161790556005805482168e8416908117909155600680548316898516179055600780548316878516179055600880549092168484161790915560025490916000911663026bc43b83611515611854565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016000604051808303816000875af1158015611562573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261158a91908101906139a2565b519d9c50505050505050505050505050565b6001546001600160a01b0316604051632b91e0a960e01b81523360048201526001600160a01b039190911690632b91e0a990602401602060405180830381865afa1580156115ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161291906137bb565b611631576040516302613e9f60e51b8152336004820152602401610727565b600061163d8686612d9e565b5090506000816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015611680573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a4919061392a565b60405163044ec4c360e41b81529091506001600160a01b038216906344ec4c30906116d59089908990600401613a74565b600060405180830381600087803b1580156116ef57600080fd5b505af1158015611703573d6000803e3d6000fd5b5050505060005b835181101561093b57816001600160a01b0316630c8ae53e8787848151811061173557611735613a98565b602002602001015187858151811061174f5761174f613a98565b60200260200101516040518463ffffffff1660e01b815260040161177593929190613aae565b600060405180830381600087803b15801561178f57600080fd5b505af11580156117a3573d6000803e3d6000fd5b5050505080806117b290613b21565b91505061170a565b336117da600080516020613bb5833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146118155760405162d1953b60e31b81526001600160a01b0382166004820152602401610727565b816001600160a01b03163b60000361184b576040516361798f2f60e11b81526001600160a01b0383166004820152602401610727565b610ce082612f4e565b600080600080516020613b9583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156118c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e891906137bb565b15611975576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561194b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196f919061392a565b91505090565b54600160601b90046001600160a01b0316919050565b611993612b1c565b611a1383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f991906137e3565b603c600085604051806020016040528060008152506108a0565b6001600160a01b03821615611a3057611a2b82612faf565b611b9f565b6000611a446001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611aa4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac89190613b48565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015611b0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b31919061392a565b9050611b9d816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b98919061392a565b612faf565b505b611baf634a531f3360e01b610873565b611bbf63b68d180960e01b610873565b505050565b600080516020613bb5833981519152805460009190600160a01b900460ff16611bee57600061196f565b638fb3603760e01b91505090565b6001546001600160a01b0316604051630bee2f1560e11b81523360048201526001600160a01b0391909116906317dc5e2a90602401602060405180830381865afa158015611c4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7291906137bb565b611c91576040516302613e9f60e51b8152336004820152602401610727565b336000611ca66001546001600160a01b031690565b6040516308b09a5f60e41b81526001600160a01b038481166004830152919250600091831690638b09a5f090602401600060405180830381865afa158015611cf2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d1a91908101906139a2565b602001516040516305247a1760e51b81526001600160601b03821660048201529091506000906001600160a01b0384169063a48f42e090602401600060405180830381865afa158015611d71573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d9991908101906139a2565b608001519050806001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ddd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e01919061392a565b6040516313bfaf6360e31b81526001600160a01b03868116600483015287151560248301529190911690639dfd7b1890604401600060405180830381600087803b158015611e4e57600080fd5b505af1158015611e62573d6000803e3d6000fd5b505050505050505050565b80611e806001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611ecf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef3919061392a565b6001600160a01b0316336001600160a01b031614611f26576040516302613e9f60e51b8152336004820152602401610727565b6000611f3a6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611f8d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611fb591908101906139a2565b608081015160065491925090600090611fd6906001600160a01b0316612fc0565b60405163189acdbd60e31b81526001600160a01b0384811660048301529192509082169063c4d66de890602401600060405180830381600087803b15801561201d57600080fd5b505af1158015612031573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528516925063f7bc431c9150602401600060405180830381600087803b15801561207857600080fd5b505af115801561208c573d6000803e3d6000fd5b50505050505050505050565b6003546000908190339082906120b6906001600160a01b0316612fc0565b60405163189acdbd60e31b81523060048201529091506001600160a01b0382169063c4d66de890602401600060405180830381600087803b1580156120fa57600080fd5b505af115801561210e573d6000803e3d6000fd5b505060055461212892506001600160a01b03169050612fc0565b9350836001600160a01b031663c0c53b8b8261214c6001546001600160a01b031690565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015290821660248201529085166044820152606401600060405180830381600087803b15801561219d57600080fd5b505af11580156121b1573d6000803e3d6000fd5b5050600854600092506121cd91506001600160a01b0316612fc0565b60405163189acdbd60e31b81526001600160a01b0387811660048301529192509082169063c4d66de890602401600060405180830381600087803b15801561221457600080fd5b505af1158015612228573d6000803e3d6000fd5b505060405163048935d560e31b81526001600160a01b03848116600483015288169250632449aea89150602401600060405180830381600087803b15801561226f57600080fd5b505af1158015612283573d6000803e3d6000fd5b50506006546000925061229f91506001600160a01b0316612fc0565b60405163189acdbd60e31b81526001600160a01b0388811660048301529192509082169063c4d66de890602401600060405180830381600087803b1580156122e657600080fd5b505af11580156122fa573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528916925063f7bc431c9150602401600060405180830381600087803b15801561234157600080fd5b505af1158015612355573d6000803e3d6000fd5b50506007546000925061237191506001600160a01b0316612fc0565b60405163189acdbd60e31b81526001600160a01b0389811660048301529192509082169063c4d66de890602401600060405180830381600087803b1580156123b857600080fd5b505af11580156123cc573d6000803e3d6000fd5b505060405162422c9d60e81b81526001600160a01b0384811660048301528a16925063422c9d009150602401600060405180830381600087803b15801561241257600080fd5b505af1158015612426573d6000803e3d6000fd5b50506004546000925061244291506001600160a01b0316612fc0565b9050846001600160a01b03166325c471a061245b613032565b604051631517388760e21b81526001600160401b03909116600482015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156124b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124d8919061390d565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b038416602482015260006044820152606401600060405180830381600087803b15801561252f57600080fd5b505af1158015612543573d6000803e3d6000fd5b505060405163189acdbd60e31b81526001600160a01b038b811660048301528416925063c4d66de89150602401600060405180830381600087803b15801561258a57600080fd5b505af115801561259e573d6000803e3d6000fd5b5050604051630f749a8960e01b81526001600160a01b0384811660048301528b169250630f749a899150602401600060405180830381600087803b1580156125e557600080fd5b505af11580156125f9573d6000803e3d6000fd5b5050505073__$2a34b1f180a6bf22a62a9bc53ba8adfaf5$__63a1b61ad4828a85888b61262e6001546001600160a01b031690565b61263661048f565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561268b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126af9190613b48565b60405160e089901b6001600160e01b03191681526001600160a01b0397881660048201529587166024870152938616604486015291851660648501528416608484015290921660a482015260ff90911660c482015260e40160006040518083038186803b15801561271f57600080fd5b505af4158015612733573d6000803e3d6000fd5b50505050846001600160a01b031663fe0776f561274e613032565b604051631517388760e21b81526001600160401b03909116600482015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156127a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127cb919061390d565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152306024820152604401600060405180830381600087803b15801561281257600080fd5b505af1158015612826573d6000803e3d6000fd5b505060025460405163026bc43b60e01b81526001600160a01b038c811660048301528a8116602483015260009450909116915063026bc43b906044016000604051808303816000875af1158015612881573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526128a991908101906139a2565b8051604080516001600160a01b038a8116825286811660208301528d81168284015289811660608301528781166080830152881660a08201526001600160601b03831660c08201529051919a509192507eccc9e339dab7298ad32b43864beb3b1c0cf136971be26f1e67d90bf43ebd3d9181900360e00190a1505050505050509091565b612935612b1c565b61293e81610bd7565b612946610a92565b6001600160a01b03821661296d5760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020613b9583398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6129ac611854565b6001600160a01b0316336001600160a01b0316146129df5760405163086391f760e31b8152336004820152602401610727565b6006546001600160a01b0316612a08576040516358e5a4af60e01b815260040160405180910390fd5b6001600160a01b038116612a2f57604051631aa1808560e31b815260040160405180910390fd5b6006546001600160a01b0390811690821603612a5e57604051630666e2a560e01b815260040160405180910390fd5b6005546040805163379ed74560e21b8152905183926001600160a01b03908116929084169163de7b5d14916004808201926020929091908290030181865afa158015612aae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ad2919061392a565b6001600160a01b031614612af95760405163f026367160e01b815260040160405180910390fd5b50600680546001600160a01b0319166001600160a01b0392909216919091179055565b600080516020613bd583398151915254600160401b900460ff16612b5357604051631afcd79f60e31b815260040160405180910390fd5b565b6101cf612b1c565b600080516020613bd58339815191528054600160401b810460ff1615906001600160401b0316600081158015612b905750825b90506000826001600160401b03166001148015612bac5750303b155b905081158015612bba575080155b15612bd85760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612c0257845460ff60401b1916600160401b1785555b60008087806020019051810190612c199190613b65565b91509150816001600160a01b031663d39e6043612c34602890565b612c3c61048f565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015612c91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cb59190613b48565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015612cfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d1e919061392a565b600280546001600160a01b0319166001600160a01b0392909216919091179055612d4a8260008b61198b565b612d5a630655ba6560e31b610873565b50508315610bce57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610bc5565b6000806000612db56001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03871660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015612e08573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612e3091908101906139a2565b9050612e4e8160400151612e42604690565b60ff9081169116141590565b15612e775760405163e3c2794960e01b81526001600160601b0387166004820152602401610727565b6040516308b09a5f60e41b81526001600160a01b03868116600483015260009190841690638b09a5f090602401600060405180830381865afa158015612ec1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612ee991908101906139a2565b9050612f068160200151886001600160601b039081169116141590565b15612f3a57805160405163a811346560e01b81526001600160601b03808a1660048301529091166024820152604401610727565b608090910151905190969095509350505050565b600080516020613bb583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b612fb7612b1c565b610ce2816130a9565b6000763d602d80600a3d3981f3363d3d373d3d3d363d730000008260601b60e81c176000526e5af43d82803e903d91602b57fd5bf38260781b17602052603760096000f090506001600160a01b03811661302d576040516330be1a3d60e21b815260040160405180910390fd5b919050565b6040516368aebf7b60e01b81526000600482018190529073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015613085573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610514919061390d565b6130b1612b1c565b610ce281612f4e565b80356001600160e01b03198116811461302d57600080fd5b6000602082840312156130e457600080fd5b6130ed826130ba565b9392505050565b60005b8381101561310f5781810151838201526020016130f7565b50506000910152565b600081518084526131308160208601602086016130f4565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516131ad60c08401826001600160a01b03169052565b5060c083015160e0808401526131c7610100840182613118565b949350505050565b6001600160a01b0381168114610ce257600080fd5b6001600160601b0381168114610ce257600080fd5b60ff81168114610ce257600080fd5b8015158114610ce257600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b038111828210171561324e5761324e613216565b60405290565b604051601f8201601f191681016001600160401b038111828210171561327c5761327c613216565b604052919050565b60006001600160401b0382111561329d5761329d613216565b50601f01601f191660200190565b60006132be6132b984613284565b613254565b90508281528383830111156132d257600080fd5b828260208301376000602084830101529392505050565b600082601f8301126132fa57600080fd5b6130ed838335602085016132ab565b60008060008060008060c0878903121561332257600080fd5b863561332d816131cf565b9550602087013561333d816131e4565b9450604087013561334d816131f9565b9350606087013561335d81613208565b9250608087013561336d816131cf565b915060a08701356001600160401b0381111561338857600080fd5b61339489828a016132e9565b9150509295509295509295565b6000602082840312156133b357600080fd5b81356001600160401b038111156133c957600080fd5b6131c7848285016132e9565b600080604083850312156133e857600080fd5b82356133f3816131cf565b915060208301356001600160401b0381111561340e57600080fd5b61341a858286016132e9565b9150509250929050565b60006020828403121561343657600080fd5b81356130ed816131cf565b60006001600160401b0382111561345a5761345a613216565b5060051b60200190565b600082601f83011261347557600080fd5b813560206134856132b983613441565b828152600592831b85018201928282019190878511156134a457600080fd5b8387015b8581101561353e5780356001600160401b038111156134c75760008081fd5b8801603f81018a136134d95760008081fd5b8581013560406134eb6132b983613441565b82815291851b8301810191888101908d8411156135085760008081fd5b938201935b8385101561352d5761351e856130ba565b8252938901939089019061350d565b8852505050938501935084016134a8565b5090979650505050505050565b6001600160401b0381168114610ce257600080fd5b600082601f83011261357157600080fd5b813560206135816132b983613441565b82815260059290921b840181019181810190868411156135a057600080fd5b8286015b848110156135c45780356135b78161354b565b83529183019183016135a4565b509695505050505050565b600080600080600060a086880312156135e757600080fd5b85356135f2816131e4565b94506020860135613602816131cf565b935060408601356001600160401b038082111561361e57600080fd5b818801915088601f83011261363257600080fd5b613641898335602085016132ab565b9450606088013591508082111561365757600080fd5b61366389838a01613464565b9350608088013591508082111561367957600080fd5b5061368688828901613560565b9150509295509295909350565b6000806000606084860312156136a857600080fd5b83356136b3816131cf565b925060208401356136c3816131cf565b915060408401356136d3816131cf565b809150509250925092565b6000602082840312156136f057600080fd5b81356130ed81613208565b60006020828403121561370d57600080fd5b81356130ed816131e4565b6000806040838503121561372b57600080fd5b8235613736816131cf565b91506020830135613746816131cf565b809150509250929050565b60006020828403121561376357600080fd5b815162ffffff811681146130ed57600080fd5b600181811c9082168061378a57607f821691505b6020821081036137aa57634e487b7160e01b600052602260045260246000fd5b50919050565b805161302d81613208565b6000602082840312156137cd57600080fd5b81516130ed81613208565b805161302d816131e4565b6000602082840312156137f557600080fd5b81516130ed816131e4565b601f821115611bbf57600081815260208120601f850160051c810160208610156138275750805b601f850160051c820191505b8181101561384657828155600101613833565b505050505050565b81516001600160401b0381111561386757613867613216565b61387b816138758454613776565b84613800565b602080601f8311600181146138b057600084156138985750858301515b600019600386901b1c1916600185901b178555613846565b600085815260208120601f198616915b828110156138df578886015182559484019460019091019084016138c0565b50858210156138fd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561391f57600080fd5b81516130ed8161354b565b60006020828403121561393c57600080fd5b81516130ed816131cf565b805161302d816131cf565b805161302d816131f9565b600082601f83011261396e57600080fd5b815161397c6132b982613284565b81815284602083860101111561399157600080fd5b6131c78260208301602087016130f4565b6000602082840312156139b457600080fd5b81516001600160401b03808211156139cb57600080fd5b9083019060e082860312156139df57600080fd5b6139e761322c565b6139f0836137d8565b81526139fe602084016137d8565b6020820152613a0f60408401613952565b6040820152613a20606084016137b0565b6060820152613a3160808401613947565b6080820152613a4260a08401613947565b60a082015260c083015182811115613a5957600080fd5b613a658782860161395d565b60c08301525095945050505050565b6001600160a01b03831681526040602082018190526000906131c790830184613118565b634e487b7160e01b600052603260045260246000fd5b606081526000613ac16060830186613118565b82810360208481019190915285518083528682019282019060005b81811015613b025784516001600160e01b03191683529383019391830191600101613adc565b50508093505050506001600160401b0383166040830152949350505050565b600060018201613b4157634e487b7160e01b600052601160045260246000fd5b5060010190565b600060208284031215613b5a57600080fd5b81516130ed816131f9565b60008060408385031215613b7857600080fd5b8251613b83816131cf565b6020840151909250613746816131cf56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212201a401290ecbdea6ea6ea78456d5b9145c7212b70141183543948d2de93dfa14164736f6c63430008140033",
859
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b61444a806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101bb575f3560e01c806376b707b7116100f3578063ada9652e11610093578063bf7e214f1161006e578063bf7e214f1461040b578063c22f980d14610413578063e52ba1cb14610426578063edabac0314610439575f80fd5b8063ada9652e146103dd578063b68d1809146103f1578063b7d68519146103f8575f80fd5b8063893d20e8116100ce578063893d20e8146103725780638fb360371461037a578063a2356b3a1461039b578063ad501467146103ae575f80fd5b806376b707b71461033e5780637a9e5e4b14610358578063872309c71461036b575f80fd5b80632d764ef81161015e5780635ab1bd53116101395780635ab1bd53146102c9578063644c45e0146102ee5780636a778e731461030b5780636c741e781461031e575f80fd5b80632d764ef814610290578063329d6e74146102a357806349bb9e4b146102b6575f80fd5b8063138461e011610199578063138461e0146102315780631eff4b221461025157806322f3e2d414610273578063254f68661461027b575f80fd5b806301ffc9a7146101bf5780630d8e6e2c146102005780630fec111c1461021c575b5f80fd5b6101eb6101cd366004613bb6565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61020861044a565b60405162ffffff90911681526020016101f7565b6102246104d1565b6040516101f79190613c12565b610239610678565b6040516001600160601b0390911681526020016101f7565b6102655f805160206143d583398151915281565b6040519081526020016101f7565b6101eb610682565b61028e610289366004613cba565b6106f9565b005b61028e61029e366004613ce7565b610874565b61028e6102b1366004613de6565b610c5e565b61028e6102c4366004613e17565b610da8565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101f7565b5f80516020614395833981519152546001600160601b0316610239565b610239610319366004613cba565b610ea4565b610326611a4c565b6040516001600160401b0390911681526020016101f7565b610346611ad8565b60405160ff90911681526020016101f7565b61028e610366366004613cba565b611af4565b6102655f81565b6102d6611b7a565b610382611cab565b6040516001600160e01b031990911681526020016101f7565b61028e6103a9366004613e77565b611ce0565b6103b6612061565b604080516001600160a01b0390931683526001600160601b039091166020830152016101f7565b6102655f8051602061439583398151915281565b600a610346565b61028e610406366004613eae565b6123f5565b6102d6612726565b61028e610421366004613ec5565b612741565b610239610434366004613ec5565b6129a2565b6008546001600160a01b03166102d6565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156104a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104cc9190613ee0565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152905f805160206143d583398151915290506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561056a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061058e9190613f0d565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160701b909104161515606082015230608082015260a0016105d6611b7a565b6001600160a01b031681526020018260010180546105f390613f28565b80601f016020809104026020016040519081016040528092919081815260200182805461061f90613f28565b801561066a5780601f106106415761010080835404028352916020019161066a565b820191905f5260205f20905b81548152906001019060200180831161064d57829003601f168201915b505050505081525091505090565b5f6104cc30612d1b565b5f61068b612726565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa1580156106cf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106f39190613f6f565b15905090565b610701611b7a565b6001600160a01b0316336001600160a01b0316146107395760405163086391f760e31b81523360048201526024015b60405180910390fd5b6008546001600160a01b0316610762576040516358e5a4af60e01b815260040160405180910390fd5b6001600160a01b03811661078957604051631aa1808560e31b815260040160405180910390fd5b6008546001600160a01b03908116908216036107b857604051630666e2a560e01b815260040160405180910390fd5b6007546040805163379ed74560e21b8152905183926001600160a01b03908116929084169163de7b5d14916004808201926020929091908290030181865afa158015610806573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061082a9190613f88565b6001600160a01b0316146108515760405163f026367160e01b815260040160405180910390fd5b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b610880335b5f36612f14565b335f6108946001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa1580156108d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108fc9190613f0d565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015610955573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109799190613f6f565b156109a2576040516308afbeb960e31b81526001600160a01b0383166004820152602401610730565b5f6109b56001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015610a01573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610a289190810190614014565b604001519050610a4181600a5b60ff9081169116141590565b15610a63578281604051632e87cd2360e11b81526004016107309291906140e4565b5f836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aa0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ac49190614100565b9050610b4981610ad261044a565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af4158015610b25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a359190614100565b15610b6b578381604051637f8084f960e01b81526004016107309291906140e4565b5f610b7e6001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610bc2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610be69190613f0d565b60035460405163db1e36e760e01b81526001600160601b038316600482015264ffffffffff891660248201529192506001600160a01b03169063db1e36e7906044015b5f604051808303815f87803b158015610c40575f80fd5b505af1158015610c52573d5f803e3d5ffd5b50505050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610c8061044a565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610cbe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ce2919061412f565b5f805160206143f58339815191528054600160401b900460ff1680610d14575080546001600160401b03808416911610155b15610d325760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610d5c83613012565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f805160206143f58339815191528054600160401b810460ff1615906001600160401b03165f81158015610dd95750825b90505f826001600160401b03166001148015610df45750303b155b905081158015610e02575080155b15610e205760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610e4a57845460ff60401b1916600160401b1785555b610e54878761301a565b8315610e9b57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f610ead611b7a565b6001600160a01b0316336001600160a01b031614610ee05760405163086391f760e31b8152336004820152602401610730565b6007546001600160a01b031615610f0a57604051632c237de760e11b815260040160405180910390fd5b6006546001600160a01b031615610f345760405163ab0cc43960e01b815260040160405180910390fd5b6009546001600160a01b031615610f5e5760405163558f4f7b60e11b815260040160405180910390fd5b600a546001600160a01b031615610f885760405163d518f81b60e01b815260040160405180910390fd5b6001600160a01b038216610faf576040516309353e4560e11b815260040160405180910390fd5b5f8290505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ff0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110149190613f88565b90505f826001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015611053573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110779190613f88565b90505f8190505f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110de9190613f88565b90505f8190505f866001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015611121573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111459190613f88565b90505f8190505f886001600160a01b0316630e0c586d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611188573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ac9190613f88565b90505f8190505f8a6001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111ef573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112139190613f88565b9050806001600160a01b038b1661123d576040516327ccc33d60e11b815260040160405180910390fd5b6001600160a01b038916611263576040516295661560e31b815260040160405180910390fd5b6001600160a01b03871661128a5760405163e267254160e01b815260040160405180910390fd5b6001600160a01b0385166112b15760405163bfebabd760e01b815260040160405180910390fd5b6001600160a01b0383166112d857604051634e336b1d60e11b815260040160405180910390fd5b6001600160a01b0381166112ff576040516301fa2a2b60e01b815260040160405180910390fd5b896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561133b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061135f9190613f88565b6001600160a01b03168c6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113c89190613f88565b6001600160a01b0316146113ef576040516334ddf1a760e21b815260040160405180910390fd5b896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561142b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061144f9190613f88565b6001600160a01b0316866001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611494573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114b89190613f88565b6001600160a01b0316146114df5760405163e168da3760e01b815260040160405180910390fd5b896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561151b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061153f9190613f88565b6001600160a01b0316846001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611584573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115a89190613f88565b6001600160a01b0316146115cf576040516303bc742960e01b815260040160405180910390fd5b896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561160b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061162f9190613f88565b6001600160a01b0316826001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611674573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116989190613f88565b6001600160a01b0316146116bf57604051631129422760e31b815260040160405180910390fd5b8b6001600160a01b0316866001600160a01b031663681e65f06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611705573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117299190613f88565b6001600160a01b03161461175057604051630bbd547960e01b815260040160405180910390fd5b8b6001600160a01b0316846001600160a01b031663681e65f06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611796573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117ba9190613f88565b6001600160a01b0316146117e157604051632b34b6d960e01b815260040160405180910390fd5b8b6001600160a01b0316886001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611827573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061184b9190613f88565b6001600160a01b031614611872576040516331783c7160e11b815260040160405180910390fd5b8a60055f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508860065f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508d60075f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508660085f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508460095f6101000a8154816001600160a01b0302191690836001600160a01b0316021790555082600a5f6101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600b5f6101000a8154816001600160a01b0302191690836001600160a01b031602179055505f60075f9054906101000a90046001600160a01b031690505f60025f9054906101000a90046001600160a01b03166001600160a01b031663026bc43b836119c1611b7a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044015f604051808303815f875af1158015611a0a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611a319190810190614014565b9050805f01519e505050505050505050505050505050919050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600a611a71611ad8565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611ab4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104cc919061412f565b5f805160206143d583398151915254600160681b900460ff1690565b33611afd612726565b6001600160a01b0316816001600160a01b031614611b385760405162d1953b60e31b81526001600160a01b0382166004820152602401610730565b816001600160a01b03163b5f03611b6d576040516361798f2f60e11b81526001600160a01b0383166004820152602401610730565b611b76826131b3565b5050565b5f805f8051602061439583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611be6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c0a9190613f6f565b15611c95576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611c6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c8f9190613f88565b91505090565b54600160601b90046001600160a01b0316919050565b5f805160206143b583398151915280545f9190600160a01b900460ff16611cd2575f611c8f565b638fb3603760e01b91505090565b611ce933610879565b335f611cfd6001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015611d41573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d659190613f0d565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015611dbe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611de29190613f6f565b15611e0b576040516308afbeb960e31b81526001600160a01b0383166004820152602401610730565b5f611e1e6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015611e6a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611e919190810190614014565b604001519050611ea281600a610a35565b15611ec4578281604051632e87cd2360e11b81526004016107309291906140e4565b5f836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f01573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f259190614100565b9050611f3381610ad261044a565b15611f55578381604051637f8084f960e01b81526004016107309291906140e4565b5f611f686001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015611fac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fd09190613f0d565b600354604051636f61deef60e11b81526001600160601b0380841660048301526001600160a01b038b81166024840152908a16604483015292935091169063dec3bdde906064016020604051808303815f875af1158015612033573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120579190613f0d565b5050505050505050565b5f8061206c33610879565b335f612076613213565b905061208281836132d9565b60025460405163026bc43b60e01b81526001600160a01b038084166004830152858116602483015292965091169063026bc43b906044015f604051808303815f875af11580156120d4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526120fb9190810190614014565b5f0151925060035f9054906101000a90046001600160a01b03166001600160a01b03166381d9b45f8473__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__63c6edc3dd6040518163ffffffff1660e01b8152600401602060405180830381865af415801561216b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061218f919061414a565b73__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__63f87bf3736040518163ffffffff1660e01b8152600401602060405180830381865af41580156121d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121fa9190614165565b6040516001600160e01b031960e086901b1681526001600160601b03909316600484015264ffffffffff909116602483015260448201526064015f604051808303815f87803b15801561224b575f80fd5b505af115801561225d573d5f803e3d5ffd5b505050505f60065f9054906101000a90046001600160a01b03166001600160a01b0316638e5bc2936040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122d69190613f88565b90505f6122e1612726565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561231c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123409190614100565b6040516348468b2f60e01b81526001600160a01b0388811660048301528481166024830152919250908416906348468b2f906044015f604051808303815f87803b15801561238c575f80fd5b505af115801561239e573d5f803e3d5ffd5b5050604080516001600160601b03891681526001600160a01b038a1660208201527f5f38ba73d945d51535b3c678f341052a70a580bed77c5db38464d02366c29fa8935001905060405180910390a1505050509091565b6123fe33610879565b335f6124126001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015612456573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061247a9190613f0d565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af41580156124d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124f79190613f6f565b15612520576040516308afbeb960e31b81526001600160a01b0383166004820152602401610730565b5f6125336001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa15801561257f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526125a69190810190614014565b6040015190506125b781600a610a35565b156125d9578281604051632e87cd2360e11b81526004016107309291906140e4565b5f836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612616573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061263a9190614100565b905061264881610ad261044a565b1561266a578381604051637f8084f960e01b81526004016107309291906140e4565b5f61267d6001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa1580156126c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126e59190613f0d565b60035460405163545c994560e11b81526001600160601b0383166004820152602481018990529192506001600160a01b03169063a8b9328a90604401610c29565b5f805160206143b5833981519152546001600160a01b031690565b612749613410565b61275233610879565b806127656001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156127b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127d69190613f88565b6001600160a01b0316336001600160a01b031614612809576040516302613e9f60e51b8152336004820152602401610730565b81600a612816828261345a565b5f6128296001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03871660048201529091505f906001600160a01b0383169063a48f42e0906024015f60405180830381865afa158015612878573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261289f9190810190614014565b6080810151600854919250905f906128bf906001600160a01b0316613511565b604051636791f7ab60e01b81526001600160a01b03848116600483015291925090821690636791f7ab906024015f604051808303815f87803b158015612903575f80fd5b505af1158015612915573d5f803e3d5ffd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528516925063f7bc431c91506024015f604051808303815f87803b158015612959575f80fd5b505af115801561296b573d5f803e3d5ffd5b505050505050505050505061299f60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b50565b5f6129ac33610879565b335f6129c06001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015612a04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a289190613f0d565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015612a81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612aa59190613f6f565b15612ace576040516308afbeb960e31b81526001600160a01b0383166004820152602401610730565b5f612ae16001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015612b2d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612b549190810190614014565b604001519050612b6581600a610a35565b15612b87578281604051632e87cd2360e11b81526004016107309291906140e4565b5f836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bc4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612be89190614100565b9050612bf681610ad261044a565b15612c18578381604051637f8084f960e01b81526004016107309291906140e4565b5f612c2b6001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015612c6f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c939190613f0d565b6003546040516321ece65760e01b81526001600160601b0380841660048301528a1660248201529192506001600160a01b0316906321ece657906044016020604051808303815f875af1158015612cec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d109190613f0d565b505050505050919050565b5f805f8051602061439583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612d87573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dab9190613f6f565b15612dd75780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610730565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612e29573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e4d9190613f6f565b612e755760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610730565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612ec7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612eeb9190613f0d565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f805160206143b58339815191525f80612f4c612f2f612726565b8730612f3e60045f8a8c61417c565b612f47916141a3565b6135a6565b915091508161300a5763ffffffff811615612fe757825460ff60a01b1916600160a01b178355612f7a612726565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612fa9939291906141db565b5f604051808303815f87803b158015612fc0575f80fd5b505af1158015612fd2573d5f803e3d5ffd5b5050845460ff60a01b191685555061300a9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610730565b505050505050565b6101bb6136ae565b5f805160206143f58339815191528054600160401b810460ff1615906001600160401b03165f8115801561304b5750825b90505f826001600160401b031660011480156130665750303b155b905081158015613074575080155b156130925760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156130bc57845460ff60401b1916600160401b1785555b5f80878060200190518101906130d2919061421a565b915091506130e182828b6136e6565b6130eb6002613788565b600280546001600160a01b0319166001600160a01b03929092169190911790556131156003613788565b600380546001600160a01b0319166001600160a01b039290921691909117905561313f600b613788565b600480546001600160a01b0319166001600160a01b039290921691909117905561316f6325e3b94760e21b61381f565b50508315610e9b57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610e92565b5f805160206143b583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6005545f90819061322c906001600160a01b0316613511565b600654909150613244906001600160a01b0316613511565b9150816001600160a01b03166389232a00826132686001546001600160a01b031690565b613270611ad8565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260ff1660448201526064015f604051808303815f87803b1580156132bf575f80fd5b505af11580156132d1573d5f803e3d5ffd5b505050505090565b600b545f9081906132f2906001600160a01b0316613511565b6009549091505f9061330c906001600160a01b0316613511565b600a549091505f90613326906001600160a01b0316613511565b6008549091505f90613340906001600160a01b0316613511565b6007549091505f9061335a906001600160a01b0316613511565b9050806001600160a01b0316633587647689878787876133826001546001600160a01b031690565b6040516001600160e01b031960e089901b1681526001600160a01b03968716600482015294861660248601529285166044850152908416606484015283166084830152821660a4820152908a1660c482015260e4015f604051808303815f87803b1580156133ee575f80fd5b505af1158015613400573d5f803e3d5ffd5b50929a9950505050505050505050565b7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0080546001190161345457604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b6001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa1580156134bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134e09190613f6f565b611b765760405163d711af7560e01b81526001600160601b038316600482015260ff82166024820152604401610730565b5f763d602d80600a3d3981f3363d3d373d3d3d363d730000008260601b60e81c175f526e5af43d82803e903d91602b57fd5bf38260781b17602052603760095ff090506001600160a01b03811661357b576040516330be1a3d60e21b815260040160405180910390fd5b919050565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516136149190614247565b5f60405180830381855afa9150503d805f811461364c576040519150601f19603f3d011682016040523d82523d5f602084013e613651565b606091505b509150915081156136a35760408151106136835780806020019051810190613679919061425d565b90945092506136a3565b60208151106136a357808060200190518101906136a09190613f6f565b93505b505094509492505050565b5f805160206143f583398151915254600160401b900460ff166136e457604051631afcd79f60e31b815260040160405180910390fd5b565b6136ee6136ae565b6136f661384b565b6137738383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613737573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061375b9190613f0d565b60085f8660405180602001604052805f81525061385b565b61378363daf9067160e01b61381f565b505050565b5f61379b6001546001600160a01b031690565b6001600160a01b031663d39e6043836137b2611ad8565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156137f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138199190613f88565b92915050565b6138276136ae565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6138536136ae565b6136e4613a05565b6138636136ae565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af41580156138b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138dd9190613f6f565b6139055760405163cf6935e560e01b81526001600160a01b0388166004820152602401610730565b61390e87613a0d565b6139188683613a1e565b5f805160206143d583398151915280546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff871602178155604080516376b707b760e01b815290516001600160a01b038a16916376b707b79160048083019260209291908290030181865afa158015613995573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139b99190614100565b815461ffff60681b1916600160681b60ff929092169190910260ff60701b191617600160701b85151502178155600181016139f483826142da565b50612057634a531f3360e01b61381f565b6135806136ae565b613a156136ae565b61299f81613a94565b613a266136ae565b613a2f82613aa5565b613a37613b71565b6001600160a01b038116613a5e5760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061439583398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b613a9c6136ae565b61299f816131b3565b613aad6136ae565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015613b03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b279190613f6f565b613b4f5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610730565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b613b796136ae565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f60208284031215613bc6575f80fd5b81356001600160e01b031981168114613bdd575f80fd5b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151613c5a608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152613c9e610100840182613be4565b949350505050565b6001600160a01b038116811461299f575f80fd5b5f60208284031215613cca575f80fd5b8135613bdd81613ca6565b64ffffffffff8116811461299f575f80fd5b5f60208284031215613cf7575f80fd5b8135613bdd81613cd5565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b0381118282101715613d3857613d38613d02565b60405290565b604051601f8201601f191681016001600160401b0381118282101715613d6657613d66613d02565b604052919050565b5f6001600160401b03821115613d8657613d86613d02565b50601f01601f191660200190565b5f82601f830112613da3575f80fd5b8135613db6613db182613d6e565b613d3e565b818152846020838601011115613dca575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215613df6575f80fd5b81356001600160401b03811115613e0b575f80fd5b613c9e84828501613d94565b5f8060408385031215613e28575f80fd5b8235613e3381613ca6565b915060208301356001600160401b03811115613e4d575f80fd5b613e5985828601613d94565b9150509250929050565b6001600160601b038116811461299f575f80fd5b5f8060408385031215613e88575f80fd5b8235613e9381613ca6565b91506020830135613ea381613e63565b809150509250929050565b5f60208284031215613ebe575f80fd5b5035919050565b5f60208284031215613ed5575f80fd5b8135613bdd81613e63565b5f60208284031215613ef0575f80fd5b815162ffffff81168114613bdd575f80fd5b805161357b81613e63565b5f60208284031215613f1d575f80fd5b8151613bdd81613e63565b600181811c90821680613f3c57607f821691505b602082108103613f5a57634e487b7160e01b5f52602260045260245ffd5b50919050565b8051801515811461357b575f80fd5b5f60208284031215613f7f575f80fd5b613bdd82613f60565b5f60208284031215613f98575f80fd5b8151613bdd81613ca6565b60ff8116811461299f575f80fd5b805161357b81613fa3565b805161357b81613ca6565b5f82601f830112613fd6575f80fd5b8151613fe4613db182613d6e565b818152846020838601011115613ff8575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215614024575f80fd5b81516001600160401b03811115614039575f80fd5b820160e0818503121561404a575f80fd5b614052613d16565b61405b82613f02565b815261406960208301613f02565b602082015261407a60408301613fb1565b604082015261408b60608301613f60565b606082015261409c60808301613fbc565b60808201526140ad60a08301613fbc565b60a082015260c08201516001600160401b038111156140ca575f80fd5b6140d686828501613fc7565b60c083015250949350505050565b6001600160a01b0392909216825260ff16602082015260400190565b5f60208284031215614110575f80fd5b8151613bdd81613fa3565b6001600160401b038116811461299f575f80fd5b5f6020828403121561413f575f80fd5b8151613bdd8161411b565b5f6020828403121561415a575f80fd5b8151613bdd81613cd5565b5f60208284031215614175575f80fd5b5051919050565b5f808585111561418a575f80fd5b83861115614196575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156141d4576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f806040838503121561422b575f80fd5b825161423681613ca6565b6020840151909250613ea381613ca6565b5f82518060208501845e5f920191825250919050565b5f806040838503121561426e575f80fd5b61427783613f60565b9150602083015163ffffffff81168114613ea3575f80fd5b601f82111561378357805f5260205f20601f840160051c810160208510156142b45750805b601f840160051c820191505b818110156142d3575f81556001016142c0565b5050505050565b81516001600160401b038111156142f3576142f3613d02565b614307816143018454613f28565b8461428f565b6020601f821160018114614339575f83156143225750848201515b5f19600385901b1c1916600184901b1784556142d3565b5f84815260208120601f198516915b828110156143685787850151825560209485019460019092019101614348565b508482101561438557868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a006548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220b9e1934a252a5195945fa78b9a6b0d2eec2f5d0980d4f6592f4e4174b796095164736f6c634300081a0033",
860
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101bb575f3560e01c806376b707b7116100f3578063ada9652e11610093578063bf7e214f1161006e578063bf7e214f1461040b578063c22f980d14610413578063e52ba1cb14610426578063edabac0314610439575f80fd5b8063ada9652e146103dd578063b68d1809146103f1578063b7d68519146103f8575f80fd5b8063893d20e8116100ce578063893d20e8146103725780638fb360371461037a578063a2356b3a1461039b578063ad501467146103ae575f80fd5b806376b707b71461033e5780637a9e5e4b14610358578063872309c71461036b575f80fd5b80632d764ef81161015e5780635ab1bd53116101395780635ab1bd53146102c9578063644c45e0146102ee5780636a778e731461030b5780636c741e781461031e575f80fd5b80632d764ef814610290578063329d6e74146102a357806349bb9e4b146102b6575f80fd5b8063138461e011610199578063138461e0146102315780631eff4b221461025157806322f3e2d414610273578063254f68661461027b575f80fd5b806301ffc9a7146101bf5780630d8e6e2c146102005780630fec111c1461021c575b5f80fd5b6101eb6101cd366004613bb6565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61020861044a565b60405162ffffff90911681526020016101f7565b6102246104d1565b6040516101f79190613c12565b610239610678565b6040516001600160601b0390911681526020016101f7565b6102655f805160206143d583398151915281565b6040519081526020016101f7565b6101eb610682565b61028e610289366004613cba565b6106f9565b005b61028e61029e366004613ce7565b610874565b61028e6102b1366004613de6565b610c5e565b61028e6102c4366004613e17565b610da8565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101f7565b5f80516020614395833981519152546001600160601b0316610239565b610239610319366004613cba565b610ea4565b610326611a4c565b6040516001600160401b0390911681526020016101f7565b610346611ad8565b60405160ff90911681526020016101f7565b61028e610366366004613cba565b611af4565b6102655f81565b6102d6611b7a565b610382611cab565b6040516001600160e01b031990911681526020016101f7565b61028e6103a9366004613e77565b611ce0565b6103b6612061565b604080516001600160a01b0390931683526001600160601b039091166020830152016101f7565b6102655f8051602061439583398151915281565b600a610346565b61028e610406366004613eae565b6123f5565b6102d6612726565b61028e610421366004613ec5565b612741565b610239610434366004613ec5565b6129a2565b6008546001600160a01b03166102d6565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156104a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104cc9190613ee0565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152905f805160206143d583398151915290506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561056a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061058e9190613f0d565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160701b909104161515606082015230608082015260a0016105d6611b7a565b6001600160a01b031681526020018260010180546105f390613f28565b80601f016020809104026020016040519081016040528092919081815260200182805461061f90613f28565b801561066a5780601f106106415761010080835404028352916020019161066a565b820191905f5260205f20905b81548152906001019060200180831161064d57829003601f168201915b505050505081525091505090565b5f6104cc30612d1b565b5f61068b612726565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa1580156106cf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106f39190613f6f565b15905090565b610701611b7a565b6001600160a01b0316336001600160a01b0316146107395760405163086391f760e31b81523360048201526024015b60405180910390fd5b6008546001600160a01b0316610762576040516358e5a4af60e01b815260040160405180910390fd5b6001600160a01b03811661078957604051631aa1808560e31b815260040160405180910390fd5b6008546001600160a01b03908116908216036107b857604051630666e2a560e01b815260040160405180910390fd5b6007546040805163379ed74560e21b8152905183926001600160a01b03908116929084169163de7b5d14916004808201926020929091908290030181865afa158015610806573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061082a9190613f88565b6001600160a01b0316146108515760405163f026367160e01b815260040160405180910390fd5b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b610880335b5f36612f14565b335f6108946001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa1580156108d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108fc9190613f0d565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015610955573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109799190613f6f565b156109a2576040516308afbeb960e31b81526001600160a01b0383166004820152602401610730565b5f6109b56001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015610a01573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610a289190810190614014565b604001519050610a4181600a5b60ff9081169116141590565b15610a63578281604051632e87cd2360e11b81526004016107309291906140e4565b5f836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aa0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ac49190614100565b9050610b4981610ad261044a565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af4158015610b25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a359190614100565b15610b6b578381604051637f8084f960e01b81526004016107309291906140e4565b5f610b7e6001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610bc2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610be69190613f0d565b60035460405163db1e36e760e01b81526001600160601b038316600482015264ffffffffff891660248201529192506001600160a01b03169063db1e36e7906044015b5f604051808303815f87803b158015610c40575f80fd5b505af1158015610c52573d5f803e3d5ffd5b50505050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610c8061044a565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610cbe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ce2919061412f565b5f805160206143f58339815191528054600160401b900460ff1680610d14575080546001600160401b03808416911610155b15610d325760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610d5c83613012565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f805160206143f58339815191528054600160401b810460ff1615906001600160401b03165f81158015610dd95750825b90505f826001600160401b03166001148015610df45750303b155b905081158015610e02575080155b15610e205760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610e4a57845460ff60401b1916600160401b1785555b610e54878761301a565b8315610e9b57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f610ead611b7a565b6001600160a01b0316336001600160a01b031614610ee05760405163086391f760e31b8152336004820152602401610730565b6007546001600160a01b031615610f0a57604051632c237de760e11b815260040160405180910390fd5b6006546001600160a01b031615610f345760405163ab0cc43960e01b815260040160405180910390fd5b6009546001600160a01b031615610f5e5760405163558f4f7b60e11b815260040160405180910390fd5b600a546001600160a01b031615610f885760405163d518f81b60e01b815260040160405180910390fd5b6001600160a01b038216610faf576040516309353e4560e11b815260040160405180910390fd5b5f8290505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ff0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110149190613f88565b90505f826001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015611053573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110779190613f88565b90505f8190505f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110de9190613f88565b90505f8190505f866001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015611121573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111459190613f88565b90505f8190505f886001600160a01b0316630e0c586d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611188573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ac9190613f88565b90505f8190505f8a6001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111ef573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112139190613f88565b9050806001600160a01b038b1661123d576040516327ccc33d60e11b815260040160405180910390fd5b6001600160a01b038916611263576040516295661560e31b815260040160405180910390fd5b6001600160a01b03871661128a5760405163e267254160e01b815260040160405180910390fd5b6001600160a01b0385166112b15760405163bfebabd760e01b815260040160405180910390fd5b6001600160a01b0383166112d857604051634e336b1d60e11b815260040160405180910390fd5b6001600160a01b0381166112ff576040516301fa2a2b60e01b815260040160405180910390fd5b896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561133b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061135f9190613f88565b6001600160a01b03168c6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113c89190613f88565b6001600160a01b0316146113ef576040516334ddf1a760e21b815260040160405180910390fd5b896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561142b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061144f9190613f88565b6001600160a01b0316866001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611494573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114b89190613f88565b6001600160a01b0316146114df5760405163e168da3760e01b815260040160405180910390fd5b896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561151b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061153f9190613f88565b6001600160a01b0316846001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611584573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115a89190613f88565b6001600160a01b0316146115cf576040516303bc742960e01b815260040160405180910390fd5b896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561160b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061162f9190613f88565b6001600160a01b0316826001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611674573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116989190613f88565b6001600160a01b0316146116bf57604051631129422760e31b815260040160405180910390fd5b8b6001600160a01b0316866001600160a01b031663681e65f06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611705573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117299190613f88565b6001600160a01b03161461175057604051630bbd547960e01b815260040160405180910390fd5b8b6001600160a01b0316846001600160a01b031663681e65f06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611796573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117ba9190613f88565b6001600160a01b0316146117e157604051632b34b6d960e01b815260040160405180910390fd5b8b6001600160a01b0316886001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611827573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061184b9190613f88565b6001600160a01b031614611872576040516331783c7160e11b815260040160405180910390fd5b8a60055f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508860065f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508d60075f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508660085f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508460095f6101000a8154816001600160a01b0302191690836001600160a01b0316021790555082600a5f6101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600b5f6101000a8154816001600160a01b0302191690836001600160a01b031602179055505f60075f9054906101000a90046001600160a01b031690505f60025f9054906101000a90046001600160a01b03166001600160a01b031663026bc43b836119c1611b7a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044015f604051808303815f875af1158015611a0a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611a319190810190614014565b9050805f01519e505050505050505050505050505050919050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600a611a71611ad8565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611ab4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104cc919061412f565b5f805160206143d583398151915254600160681b900460ff1690565b33611afd612726565b6001600160a01b0316816001600160a01b031614611b385760405162d1953b60e31b81526001600160a01b0382166004820152602401610730565b816001600160a01b03163b5f03611b6d576040516361798f2f60e11b81526001600160a01b0383166004820152602401610730565b611b76826131b3565b5050565b5f805f8051602061439583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611be6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c0a9190613f6f565b15611c95576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611c6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c8f9190613f88565b91505090565b54600160601b90046001600160a01b0316919050565b5f805160206143b583398151915280545f9190600160a01b900460ff16611cd2575f611c8f565b638fb3603760e01b91505090565b611ce933610879565b335f611cfd6001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015611d41573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d659190613f0d565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015611dbe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611de29190613f6f565b15611e0b576040516308afbeb960e31b81526001600160a01b0383166004820152602401610730565b5f611e1e6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015611e6a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611e919190810190614014565b604001519050611ea281600a610a35565b15611ec4578281604051632e87cd2360e11b81526004016107309291906140e4565b5f836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f01573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f259190614100565b9050611f3381610ad261044a565b15611f55578381604051637f8084f960e01b81526004016107309291906140e4565b5f611f686001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015611fac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fd09190613f0d565b600354604051636f61deef60e11b81526001600160601b0380841660048301526001600160a01b038b81166024840152908a16604483015292935091169063dec3bdde906064016020604051808303815f875af1158015612033573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120579190613f0d565b5050505050505050565b5f8061206c33610879565b335f612076613213565b905061208281836132d9565b60025460405163026bc43b60e01b81526001600160a01b038084166004830152858116602483015292965091169063026bc43b906044015f604051808303815f875af11580156120d4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526120fb9190810190614014565b5f0151925060035f9054906101000a90046001600160a01b03166001600160a01b03166381d9b45f8473__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__63c6edc3dd6040518163ffffffff1660e01b8152600401602060405180830381865af415801561216b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061218f919061414a565b73__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__63f87bf3736040518163ffffffff1660e01b8152600401602060405180830381865af41580156121d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121fa9190614165565b6040516001600160e01b031960e086901b1681526001600160601b03909316600484015264ffffffffff909116602483015260448201526064015f604051808303815f87803b15801561224b575f80fd5b505af115801561225d573d5f803e3d5ffd5b505050505f60065f9054906101000a90046001600160a01b03166001600160a01b0316638e5bc2936040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122d69190613f88565b90505f6122e1612726565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561231c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123409190614100565b6040516348468b2f60e01b81526001600160a01b0388811660048301528481166024830152919250908416906348468b2f906044015f604051808303815f87803b15801561238c575f80fd5b505af115801561239e573d5f803e3d5ffd5b5050604080516001600160601b03891681526001600160a01b038a1660208201527f5f38ba73d945d51535b3c678f341052a70a580bed77c5db38464d02366c29fa8935001905060405180910390a1505050509091565b6123fe33610879565b335f6124126001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015612456573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061247a9190613f0d565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af41580156124d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124f79190613f6f565b15612520576040516308afbeb960e31b81526001600160a01b0383166004820152602401610730565b5f6125336001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa15801561257f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526125a69190810190614014565b6040015190506125b781600a610a35565b156125d9578281604051632e87cd2360e11b81526004016107309291906140e4565b5f836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612616573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061263a9190614100565b905061264881610ad261044a565b1561266a578381604051637f8084f960e01b81526004016107309291906140e4565b5f61267d6001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa1580156126c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126e59190613f0d565b60035460405163545c994560e11b81526001600160601b0383166004820152602481018990529192506001600160a01b03169063a8b9328a90604401610c29565b5f805160206143b5833981519152546001600160a01b031690565b612749613410565b61275233610879565b806127656001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156127b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127d69190613f88565b6001600160a01b0316336001600160a01b031614612809576040516302613e9f60e51b8152336004820152602401610730565b81600a612816828261345a565b5f6128296001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03871660048201529091505f906001600160a01b0383169063a48f42e0906024015f60405180830381865afa158015612878573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261289f9190810190614014565b6080810151600854919250905f906128bf906001600160a01b0316613511565b604051636791f7ab60e01b81526001600160a01b03848116600483015291925090821690636791f7ab906024015f604051808303815f87803b158015612903575f80fd5b505af1158015612915573d5f803e3d5ffd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528516925063f7bc431c91506024015f604051808303815f87803b158015612959575f80fd5b505af115801561296b573d5f803e3d5ffd5b505050505050505050505061299f60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b50565b5f6129ac33610879565b335f6129c06001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015612a04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a289190613f0d565b604051630a4d29dd60e31b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015612a81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612aa59190613f6f565b15612ace576040516308afbeb960e31b81526001600160a01b0383166004820152602401610730565b5f612ae16001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015612b2d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612b549190810190614014565b604001519050612b6581600a610a35565b15612b87578281604051632e87cd2360e11b81526004016107309291906140e4565b5f836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bc4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612be89190614100565b9050612bf681610ad261044a565b15612c18578381604051637f8084f960e01b81526004016107309291906140e4565b5f612c2b6001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015612c6f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c939190613f0d565b6003546040516321ece65760e01b81526001600160601b0380841660048301528a1660248201529192506001600160a01b0316906321ece657906044016020604051808303815f875af1158015612cec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d109190613f0d565b505050505050919050565b5f805f8051602061439583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612d87573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dab9190613f6f565b15612dd75780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610730565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612e29573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e4d9190613f6f565b612e755760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610730565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612ec7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612eeb9190613f0d565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f805160206143b58339815191525f80612f4c612f2f612726565b8730612f3e60045f8a8c61417c565b612f47916141a3565b6135a6565b915091508161300a5763ffffffff811615612fe757825460ff60a01b1916600160a01b178355612f7a612726565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612fa9939291906141db565b5f604051808303815f87803b158015612fc0575f80fd5b505af1158015612fd2573d5f803e3d5ffd5b5050845460ff60a01b191685555061300a9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610730565b505050505050565b6101bb6136ae565b5f805160206143f58339815191528054600160401b810460ff1615906001600160401b03165f8115801561304b5750825b90505f826001600160401b031660011480156130665750303b155b905081158015613074575080155b156130925760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156130bc57845460ff60401b1916600160401b1785555b5f80878060200190518101906130d2919061421a565b915091506130e182828b6136e6565b6130eb6002613788565b600280546001600160a01b0319166001600160a01b03929092169190911790556131156003613788565b600380546001600160a01b0319166001600160a01b039290921691909117905561313f600b613788565b600480546001600160a01b0319166001600160a01b039290921691909117905561316f6325e3b94760e21b61381f565b50508315610e9b57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610e92565b5f805160206143b583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6005545f90819061322c906001600160a01b0316613511565b600654909150613244906001600160a01b0316613511565b9150816001600160a01b03166389232a00826132686001546001600160a01b031690565b613270611ad8565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260ff1660448201526064015f604051808303815f87803b1580156132bf575f80fd5b505af11580156132d1573d5f803e3d5ffd5b505050505090565b600b545f9081906132f2906001600160a01b0316613511565b6009549091505f9061330c906001600160a01b0316613511565b600a549091505f90613326906001600160a01b0316613511565b6008549091505f90613340906001600160a01b0316613511565b6007549091505f9061335a906001600160a01b0316613511565b9050806001600160a01b0316633587647689878787876133826001546001600160a01b031690565b6040516001600160e01b031960e089901b1681526001600160a01b03968716600482015294861660248601529285166044850152908416606484015283166084830152821660a4820152908a1660c482015260e4015f604051808303815f87803b1580156133ee575f80fd5b505af1158015613400573d5f803e3d5ffd5b50929a9950505050505050505050565b7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0080546001190161345457604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b6001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa1580156134bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134e09190613f6f565b611b765760405163d711af7560e01b81526001600160601b038316600482015260ff82166024820152604401610730565b5f763d602d80600a3d3981f3363d3d373d3d3d363d730000008260601b60e81c175f526e5af43d82803e903d91602b57fd5bf38260781b17602052603760095ff090506001600160a01b03811661357b576040516330be1a3d60e21b815260040160405180910390fd5b919050565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516136149190614247565b5f60405180830381855afa9150503d805f811461364c576040519150601f19603f3d011682016040523d82523d5f602084013e613651565b606091505b509150915081156136a35760408151106136835780806020019051810190613679919061425d565b90945092506136a3565b60208151106136a357808060200190518101906136a09190613f6f565b93505b505094509492505050565b5f805160206143f583398151915254600160401b900460ff166136e457604051631afcd79f60e31b815260040160405180910390fd5b565b6136ee6136ae565b6136f661384b565b6137738383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613737573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061375b9190613f0d565b60085f8660405180602001604052805f81525061385b565b61378363daf9067160e01b61381f565b505050565b5f61379b6001546001600160a01b031690565b6001600160a01b031663d39e6043836137b2611ad8565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156137f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138199190613f88565b92915050565b6138276136ae565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6138536136ae565b6136e4613a05565b6138636136ae565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af41580156138b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138dd9190613f6f565b6139055760405163cf6935e560e01b81526001600160a01b0388166004820152602401610730565b61390e87613a0d565b6139188683613a1e565b5f805160206143d583398151915280546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff871602178155604080516376b707b760e01b815290516001600160a01b038a16916376b707b79160048083019260209291908290030181865afa158015613995573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139b99190614100565b815461ffff60681b1916600160681b60ff929092169190910260ff60701b191617600160701b85151502178155600181016139f483826142da565b50612057634a531f3360e01b61381f565b6135806136ae565b613a156136ae565b61299f81613a94565b613a266136ae565b613a2f82613aa5565b613a37613b71565b6001600160a01b038116613a5e5760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061439583398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b613a9c6136ae565b61299f816131b3565b613aad6136ae565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015613b03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b279190613f6f565b613b4f5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610730565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b613b796136ae565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f60208284031215613bc6575f80fd5b81356001600160e01b031981168114613bdd575f80fd5b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151613c5a608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152613c9e610100840182613be4565b949350505050565b6001600160a01b038116811461299f575f80fd5b5f60208284031215613cca575f80fd5b8135613bdd81613ca6565b64ffffffffff8116811461299f575f80fd5b5f60208284031215613cf7575f80fd5b8135613bdd81613cd5565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b0381118282101715613d3857613d38613d02565b60405290565b604051601f8201601f191681016001600160401b0381118282101715613d6657613d66613d02565b604052919050565b5f6001600160401b03821115613d8657613d86613d02565b50601f01601f191660200190565b5f82601f830112613da3575f80fd5b8135613db6613db182613d6e565b613d3e565b818152846020838601011115613dca575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215613df6575f80fd5b81356001600160401b03811115613e0b575f80fd5b613c9e84828501613d94565b5f8060408385031215613e28575f80fd5b8235613e3381613ca6565b915060208301356001600160401b03811115613e4d575f80fd5b613e5985828601613d94565b9150509250929050565b6001600160601b038116811461299f575f80fd5b5f8060408385031215613e88575f80fd5b8235613e9381613ca6565b91506020830135613ea381613e63565b809150509250929050565b5f60208284031215613ebe575f80fd5b5035919050565b5f60208284031215613ed5575f80fd5b8135613bdd81613e63565b5f60208284031215613ef0575f80fd5b815162ffffff81168114613bdd575f80fd5b805161357b81613e63565b5f60208284031215613f1d575f80fd5b8151613bdd81613e63565b600181811c90821680613f3c57607f821691505b602082108103613f5a57634e487b7160e01b5f52602260045260245ffd5b50919050565b8051801515811461357b575f80fd5b5f60208284031215613f7f575f80fd5b613bdd82613f60565b5f60208284031215613f98575f80fd5b8151613bdd81613ca6565b60ff8116811461299f575f80fd5b805161357b81613fa3565b805161357b81613ca6565b5f82601f830112613fd6575f80fd5b8151613fe4613db182613d6e565b818152846020838601011115613ff8575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215614024575f80fd5b81516001600160401b03811115614039575f80fd5b820160e0818503121561404a575f80fd5b614052613d16565b61405b82613f02565b815261406960208301613f02565b602082015261407a60408301613fb1565b604082015261408b60608301613f60565b606082015261409c60808301613fbc565b60808201526140ad60a08301613fbc565b60a082015260c08201516001600160401b038111156140ca575f80fd5b6140d686828501613fc7565b60c083015250949350505050565b6001600160a01b0392909216825260ff16602082015260400190565b5f60208284031215614110575f80fd5b8151613bdd81613fa3565b6001600160401b038116811461299f575f80fd5b5f6020828403121561413f575f80fd5b8151613bdd8161411b565b5f6020828403121561415a575f80fd5b8151613bdd81613cd5565b5f60208284031215614175575f80fd5b5051919050565b5f808585111561418a575f80fd5b83861115614196575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156141d4576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f806040838503121561422b575f80fd5b825161423681613ca6565b6020840151909250613ea381613ca6565b5f82518060208501845e5f920191825250919050565b5f806040838503121561426e575f80fd5b61427783613f60565b9150602083015163ffffffff81168114613ea3575f80fd5b601f82111561378357805f5260205f20601f840160051c810160208510156142b45750805b601f840160051c820191505b818110156142d3575f81556001016142c0565b5050505050565b81516001600160401b038111156142f3576142f3613d02565b614307816143018454613f28565b8461428f565b6020601f821160018114614339575f83156143225750848201515b5f19600385901b1c1916600184901b1784556142d3565b5f84815260208120601f198516915b828110156143685787850151825560209485019460019092019101614348565b508482101561438557868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a006548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220b9e1934a252a5195945fa78b9a6b0d2eec2f5d0980d4f6592f4e4174b796095164736f6c634300081a0033",
851
861
  "linkReferences": {
852
- "contracts/instance/InstanceAuthorizationsLib.sol": {
853
- "InstanceAuthorizationsLib": [
862
+ "contracts/shared/ContractLib.sol": {
863
+ "ContractLib": [
854
864
  {
855
865
  "length": 20,
856
- "start": 9957
866
+ "start": 14679
867
+ },
868
+ {
869
+ "length": 20,
870
+ "start": 15265
857
871
  }
858
872
  ]
859
873
  },
860
- "contracts/types/NftId.sol": {
861
- "NftIdLib": [
874
+ "contracts/staking/TargetManagerLib.sol": {
875
+ "TargetManagerLib": [
862
876
  {
863
877
  "length": 20,
864
- "start": 1927
878
+ "start": 8700
865
879
  },
866
880
  {
867
881
  "length": 20,
868
- "start": 6512
882
+ "start": 8807
869
883
  }
870
884
  ]
871
885
  },
872
- "contracts/types/RoleId.sol": {
873
- "RoleIdLib": [
886
+ "contracts/type/NftId.sol": {
887
+ "NftIdLib": [
874
888
  {
875
889
  "length": 20,
876
- "start": 9568
890
+ "start": 1531
877
891
  },
878
892
  {
879
893
  "length": 20,
880
- "start": 10323
894
+ "start": 2547
881
895
  },
882
896
  {
883
897
  "length": 20,
884
- "start": 12593
885
- }
886
- ]
887
- },
888
- "contracts/types/Version.sol": {
889
- "VersionLib": [
898
+ "start": 7300
899
+ },
890
900
  {
891
901
  "length": 20,
892
- "start": 1436
902
+ "start": 7772
893
903
  },
894
904
  {
895
905
  "length": 20,
896
- "start": 2605
906
+ "start": 9585
897
907
  },
898
908
  {
899
909
  "length": 20,
900
- "start": 10039
910
+ "start": 11039
901
911
  },
902
912
  {
903
913
  "length": 20,
904
- "start": 11581
914
+ "start": 11813
905
915
  }
906
- ],
907
- "VersionPartLib": [
916
+ ]
917
+ },
918
+ "contracts/type/RoleId.sol": {
919
+ "RoleIdLib": [
920
+ {
921
+ "length": 20,
922
+ "start": 6949
923
+ }
924
+ ]
925
+ },
926
+ "contracts/type/Version.sol": {
927
+ "VersionLib": [
928
+ {
929
+ "length": 20,
930
+ "start": 1350
931
+ },
932
+ {
933
+ "length": 20,
934
+ "start": 3011
935
+ },
908
936
  {
909
937
  "length": 20,
910
- "start": 6992
938
+ "start": 3382
911
939
  }
912
940
  ]
913
941
  }
914
942
  },
915
943
  "deployedLinkReferences": {
916
- "contracts/instance/InstanceAuthorizationsLib.sol": {
917
- "InstanceAuthorizationsLib": [
944
+ "contracts/shared/ContractLib.sol": {
945
+ "ContractLib": [
918
946
  {
919
947
  "length": 20,
920
- "start": 9727
948
+ "start": 14465
949
+ },
950
+ {
951
+ "length": 20,
952
+ "start": 15051
921
953
  }
922
954
  ]
923
955
  },
924
- "contracts/types/NftId.sol": {
925
- "NftIdLib": [
956
+ "contracts/staking/TargetManagerLib.sol": {
957
+ "TargetManagerLib": [
926
958
  {
927
959
  "length": 20,
928
- "start": 1697
960
+ "start": 8486
929
961
  },
930
962
  {
931
963
  "length": 20,
932
- "start": 6282
964
+ "start": 8593
933
965
  }
934
966
  ]
935
967
  },
936
- "contracts/types/RoleId.sol": {
937
- "RoleIdLib": [
968
+ "contracts/type/NftId.sol": {
969
+ "NftIdLib": [
938
970
  {
939
971
  "length": 20,
940
- "start": 9338
972
+ "start": 1317
941
973
  },
942
974
  {
943
975
  "length": 20,
944
- "start": 10093
976
+ "start": 2333
945
977
  },
946
978
  {
947
979
  "length": 20,
948
- "start": 12363
949
- }
950
- ]
951
- },
952
- "contracts/types/Version.sol": {
953
- "VersionLib": [
980
+ "start": 7086
981
+ },
954
982
  {
955
983
  "length": 20,
956
- "start": 1206
984
+ "start": 7558
957
985
  },
958
986
  {
959
987
  "length": 20,
960
- "start": 2375
988
+ "start": 9371
961
989
  },
962
990
  {
963
991
  "length": 20,
964
- "start": 9809
992
+ "start": 10825
965
993
  },
966
994
  {
967
995
  "length": 20,
968
- "start": 11351
996
+ "start": 11599
969
997
  }
970
- ],
971
- "VersionPartLib": [
998
+ ]
999
+ },
1000
+ "contracts/type/RoleId.sol": {
1001
+ "RoleIdLib": [
1002
+ {
1003
+ "length": 20,
1004
+ "start": 6735
1005
+ }
1006
+ ]
1007
+ },
1008
+ "contracts/type/Version.sol": {
1009
+ "VersionLib": [
1010
+ {
1011
+ "length": 20,
1012
+ "start": 1136
1013
+ },
1014
+ {
1015
+ "length": 20,
1016
+ "start": 2797
1017
+ },
972
1018
  {
973
1019
  "length": 20,
974
- "start": 6762
1020
+ "start": 3168
975
1021
  }
976
1022
  ]
977
1023
  }