@etherisc/gif-next 0.0.2-b16cd64-952 → 0.0.2-b1a32e7-488

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (727) 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 +1494 -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/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +673 -0
  14. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1403 -0
  16. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  17. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +615 -0
  18. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  19. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  20. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1224 -0
  22. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +382 -0
  24. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +167 -0
  26. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  27. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +253 -0
  28. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1230 -0
  30. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +644 -0
  32. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  33. package/artifacts/contracts/{components/IDistributionComponent.sol/IDistributionComponent.json → distribution/Distribution.sol/Distribution.json} +299 -317
  34. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1580 -0
  36. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +868 -0
  38. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  39. package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → distribution/IDistributionComponent.sol/IDistributionComponent.json} +289 -269
  40. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  41. package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +306 -325
  42. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  44. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1475 -0
  46. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +644 -0
  48. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2032 -0
  50. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  51. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +644 -0
  52. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  53. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1431 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +644 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1195 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1655 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +644 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  65. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2432 -0
  66. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  67. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +644 -0
  68. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  69. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
  70. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  71. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +372 -1908
  72. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  73. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +278 -109
  74. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  75. package/artifacts/contracts/instance/Instance.sol/Instance.json +530 -2805
  76. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2036 -0
  78. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  79. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +716 -0
  80. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  81. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1633 -459
  82. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  83. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +304 -435
  84. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  85. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +153 -160
  86. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  87. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3738 -0
  88. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  89. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -0
  90. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  91. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  92. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  93. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -54
  94. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  95. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  96. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  97. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  98. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  99. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
  100. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  101. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  102. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  103. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  104. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  105. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  106. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  107. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  108. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  109. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  110. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +959 -0
  111. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  112. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +632 -0
  113. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  114. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  115. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  116. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +774 -0
  117. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  118. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → oracle/IOracleService.sol/IOracleService.json} +302 -175
  119. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  120. package/artifacts/contracts/{components/Component.sol/Component.json → oracle/Oracle.sol/Oracle.json} +262 -229
  121. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  122. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
  123. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  124. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +764 -0
  125. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  126. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +318 -442
  127. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  128. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +644 -0
  129. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  130. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1261 -0
  131. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  132. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +800 -0
  133. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  134. package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +283 -62
  135. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  136. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +907 -0
  137. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  138. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1230 -0
  139. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  140. package/artifacts/contracts/{components/IPoolComponent.sol/IPoolComponent.json → pool/Pool.sol/Pool.json} +377 -414
  141. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  142. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +456 -0
  143. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  144. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1574 -0
  145. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  146. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +808 -0
  147. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  148. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +879 -0
  149. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  150. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +740 -0
  151. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  152. package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +451 -457
  153. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  154. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +644 -0
  155. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  156. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1496 -0
  157. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  158. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +848 -0
  159. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  160. package/artifacts/contracts/{instance/service → product}/IApplicationService.sol/IApplicationService.json +180 -163
  161. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  162. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1064 -0
  163. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  164. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +981 -0
  165. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  166. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +623 -0
  167. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  168. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +1018 -0
  169. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  170. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +95 -65
  171. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  172. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1333 -0
  173. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  174. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +293 -0
  175. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  176. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +808 -0
  177. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  178. package/artifacts/contracts/product/PricingService.sol/PricingService.json +951 -0
  179. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  180. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +784 -0
  181. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  182. package/artifacts/contracts/product/Product.sol/Product.json +1119 -0
  183. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  184. package/artifacts/contracts/product/RiskService.sol/RiskService.json +688 -0
  185. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  186. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +736 -0
  187. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  188. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
  189. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  190. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +483 -29
  191. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  192. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +286 -109
  193. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  194. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  195. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  196. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -18
  197. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  198. package/artifacts/contracts/registry/Registry.sol/Registry.json +982 -137
  199. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  200. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2018 -0
  201. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  202. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +878 -0
  203. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  204. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +361 -250
  205. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  206. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +164 -99
  207. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  208. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +1954 -0
  209. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  210. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  211. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  212. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1337 -0
  213. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  214. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
  215. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  216. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +317 -154
  217. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  218. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/Component.sol/Component.json} +280 -180
  219. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  220. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1405 -0
  221. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  222. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +808 -0
  223. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  224. package/artifacts/contracts/{instance/service/IClaimService.sol/IClaimService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +142 -132
  225. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  226. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +597 -0
  227. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  228. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  229. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  230. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  231. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  232. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  233. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  234. package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +152 -125
  235. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  236. package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → shared/IComponentService.sol/IComponentService.json} +502 -285
  237. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  238. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +709 -0
  239. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  240. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -14
  241. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  242. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  243. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  244. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +19 -10
  245. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  246. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
  247. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  248. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +144 -3
  249. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  250. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
  251. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  252. package/artifacts/contracts/shared/IService.sol/IService.json +69 -5
  253. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  254. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  255. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  256. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +797 -0
  257. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  258. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
  259. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  260. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  261. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  262. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  263. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  264. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +28 -70
  265. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  266. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
  267. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  268. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +126 -100
  269. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  270. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
  271. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  272. package/artifacts/contracts/shared/Service.sol/Service.json +66 -109
  273. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  274. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +635 -8
  275. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  276. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  277. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  278. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  279. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  280. package/artifacts/contracts/{components/Distribution.sol/Distribution.json → staking/IStaking.sol/IStaking.json} +762 -579
  281. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  282. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1167 -0
  283. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  284. package/artifacts/contracts/staking/Staking.sol/Staking.json +1917 -0
  285. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  286. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +469 -0
  287. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  288. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  289. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  290. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +796 -0
  291. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  292. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +560 -0
  293. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  294. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1380 -0
  295. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  296. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +736 -0
  297. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  298. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2297 -0
  299. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  300. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +617 -0
  301. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  302. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  303. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  304. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  305. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  306. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  307. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  308. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  309. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  310. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  311. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  312. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  313. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  314. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  315. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  316. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  317. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  318. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  319. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  320. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  321. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  322. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +241 -0
  323. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  324. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  325. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  326. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  327. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  328. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  329. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  330. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +204 -0
  331. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  332. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +433 -0
  333. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  334. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
  335. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  336. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  337. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  338. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  339. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  340. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  341. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  342. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  343. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  344. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  345. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  346. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -0
  347. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  348. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  349. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  350. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
  351. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  352. package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
  353. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  354. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
  355. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  356. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  357. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  358. package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
  359. package/contracts/accounting/AccountingService.sol +262 -0
  360. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  361. package/contracts/accounting/IAccountingService.sol +45 -0
  362. package/contracts/authorization/AccessAdmin.sol +704 -0
  363. package/contracts/authorization/AccessAdminLib.sol +183 -0
  364. package/contracts/authorization/AccessManagerCloneable.sol +158 -0
  365. package/contracts/authorization/Authorization.sol +365 -0
  366. package/contracts/authorization/IAccess.sol +49 -0
  367. package/contracts/authorization/IAccessAdmin.sol +170 -0
  368. package/contracts/authorization/IAuthorization.sol +80 -0
  369. package/contracts/authorization/IServiceAuthorization.sol +40 -0
  370. package/contracts/authorization/ServiceAuthorization.sol +106 -0
  371. package/contracts/distribution/BasicDistribution.sol +143 -0
  372. package/contracts/distribution/BasicDistributionAuthorization.sol +60 -0
  373. package/contracts/distribution/Distribution.sol +246 -0
  374. package/contracts/distribution/DistributionService.sol +385 -0
  375. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  376. package/contracts/distribution/IDistributionComponent.sol +43 -0
  377. package/contracts/distribution/IDistributionService.sol +103 -0
  378. package/contracts/examples/fire/DamageLevel.sol +59 -0
  379. package/contracts/examples/fire/FirePool.sol +90 -0
  380. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  381. package/contracts/examples/fire/FireProduct.sol +437 -0
  382. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  383. package/contracts/examples/fire/FireUSD.sol +26 -0
  384. package/contracts/examples/unpermissioned/SimpleDistribution.sol +85 -0
  385. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  386. package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
  387. package/contracts/examples/unpermissioned/SimplePool.sol +106 -0
  388. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  389. package/contracts/examples/unpermissioned/SimpleProduct.sol +377 -0
  390. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  391. package/contracts/instance/BundleSet.sol +130 -0
  392. package/contracts/instance/IInstance.sol +80 -73
  393. package/contracts/instance/IInstanceService.sol +51 -39
  394. package/contracts/instance/Instance.sol +205 -236
  395. package/contracts/instance/InstanceAdmin.sol +450 -0
  396. package/contracts/instance/InstanceAuthorizationV3.sol +235 -0
  397. package/contracts/instance/InstanceReader.sol +422 -63
  398. package/contracts/instance/InstanceService.sol +326 -359
  399. package/contracts/instance/InstanceServiceManager.sol +14 -29
  400. package/contracts/instance/InstanceStore.sol +298 -0
  401. package/contracts/instance/RiskSet.sol +118 -0
  402. package/contracts/instance/base/BalanceStore.sol +123 -0
  403. package/contracts/instance/base/Cloneable.sol +28 -0
  404. package/contracts/instance/base/ObjectCounter.sol +20 -0
  405. package/contracts/instance/base/ObjectLifecycle.sol +113 -0
  406. package/contracts/instance/base/ObjectSet.sol +77 -0
  407. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  408. package/contracts/instance/module/IBundle.sol +6 -9
  409. package/contracts/instance/module/IComponents.sol +28 -18
  410. package/contracts/instance/module/IDistribution.sol +11 -8
  411. package/contracts/instance/module/IPolicy.sol +48 -35
  412. package/contracts/instance/module/IRisk.sol +4 -1
  413. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  414. package/contracts/oracle/BasicOracle.sol +47 -0
  415. package/contracts/oracle/BasicOracleAuthorization.sol +37 -0
  416. package/contracts/oracle/IOracle.sol +36 -0
  417. package/contracts/oracle/IOracleComponent.sol +33 -0
  418. package/contracts/oracle/IOracleService.sol +66 -0
  419. package/contracts/oracle/Oracle.sol +156 -0
  420. package/contracts/oracle/OracleService.sol +310 -0
  421. package/contracts/oracle/OracleServiceManager.sol +39 -0
  422. package/contracts/pool/BasicPool.sol +175 -0
  423. package/contracts/pool/BasicPoolAuthorization.sol +76 -0
  424. package/contracts/pool/BundleService.sol +395 -0
  425. package/contracts/pool/BundleServiceManager.sol +39 -0
  426. package/contracts/{instance/service → pool}/IBundleService.sol +52 -30
  427. package/contracts/pool/IPoolComponent.sol +62 -0
  428. package/contracts/pool/IPoolService.sol +165 -0
  429. package/contracts/pool/Pool.sol +345 -0
  430. package/contracts/pool/PoolLib.sol +216 -0
  431. package/contracts/pool/PoolService.sol +757 -0
  432. package/contracts/pool/PoolServiceManager.sol +39 -0
  433. package/contracts/product/ApplicationService.sol +274 -0
  434. package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
  435. package/contracts/product/BasicProduct.sol +51 -0
  436. package/contracts/product/BasicProductAuthorization.sol +56 -0
  437. package/contracts/product/ClaimService.sol +632 -0
  438. package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
  439. package/contracts/{instance/service → product}/IApplicationService.sol +22 -35
  440. package/contracts/product/IClaimService.sol +135 -0
  441. package/contracts/product/IPolicyService.sol +95 -0
  442. package/contracts/product/IPricingService.sol +40 -0
  443. package/contracts/product/IProductComponent.sol +62 -0
  444. package/contracts/product/IRiskService.sol +33 -0
  445. package/contracts/product/PolicyService.sol +664 -0
  446. package/contracts/product/PolicyServiceLib.sol +65 -0
  447. package/contracts/product/PolicyServiceManager.sol +39 -0
  448. package/contracts/product/PricingService.sol +309 -0
  449. package/contracts/product/PricingServiceManager.sol +39 -0
  450. package/contracts/product/Product.sol +469 -0
  451. package/contracts/product/RiskService.sol +154 -0
  452. package/contracts/product/RiskServiceManager.sol +39 -0
  453. package/contracts/registry/ChainNft.sol +79 -40
  454. package/contracts/registry/IRegistry.sol +95 -30
  455. package/contracts/registry/IRegistryService.sol +34 -40
  456. package/contracts/registry/IRelease.sol +26 -0
  457. package/contracts/registry/ITransferInterceptor.sol +1 -2
  458. package/contracts/registry/Registry.sol +460 -197
  459. package/contracts/registry/RegistryAdmin.sol +258 -0
  460. package/contracts/registry/RegistryAuthorization.sol +267 -0
  461. package/contracts/registry/RegistryService.sol +89 -130
  462. package/contracts/registry/RegistryServiceManager.sol +23 -32
  463. package/contracts/registry/ReleaseAdmin.sol +253 -0
  464. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  465. package/contracts/registry/ReleaseRegistry.sol +517 -0
  466. package/contracts/registry/ServiceAuthorizationV3.sol +331 -0
  467. package/contracts/registry/TokenRegistry.sol +261 -64
  468. package/contracts/shared/Component.sol +227 -0
  469. package/contracts/shared/ComponentService.sol +623 -0
  470. package/contracts/shared/ComponentServiceManager.sol +38 -0
  471. package/contracts/shared/ComponentVerifyingService.sol +128 -0
  472. package/contracts/shared/ContractLib.sol +281 -0
  473. package/contracts/shared/IComponent.sol +61 -0
  474. package/contracts/shared/IComponentService.sol +101 -0
  475. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  476. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  477. package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
  478. package/contracts/shared/INftOwnable.sol +4 -2
  479. package/contracts/shared/IPolicyHolder.sol +23 -14
  480. package/contracts/shared/IRegisterable.sol +23 -1
  481. package/contracts/shared/IRegistryLinked.sol +0 -1
  482. package/contracts/shared/IService.sol +12 -5
  483. package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +12 -4
  484. package/contracts/shared/InstanceLinkedComponent.sol +197 -0
  485. package/contracts/shared/KeyValueStore.sol +131 -0
  486. package/contracts/shared/Lifecycle.sol +88 -0
  487. package/contracts/shared/NftIdSet.sol +65 -0
  488. package/contracts/shared/NftOwnable.sol +34 -27
  489. package/contracts/shared/PolicyHolder.sol +22 -41
  490. package/contracts/shared/Registerable.sol +52 -20
  491. package/contracts/shared/RegistryLinked.sol +9 -19
  492. package/contracts/shared/Service.sol +33 -40
  493. package/contracts/shared/TokenHandler.sol +322 -13
  494. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  495. package/contracts/staking/IStaking.sol +175 -0
  496. package/contracts/staking/IStakingService.sol +172 -0
  497. package/contracts/staking/Staking.sol +546 -0
  498. package/contracts/staking/StakingLib.sol +281 -0
  499. package/contracts/staking/StakingLifecycle.sol +23 -0
  500. package/contracts/staking/StakingManager.sol +52 -0
  501. package/contracts/staking/StakingReader.sol +180 -0
  502. package/contracts/staking/StakingService.sol +464 -0
  503. package/contracts/staking/StakingServiceManager.sol +45 -0
  504. package/contracts/staking/StakingStore.sol +606 -0
  505. package/contracts/staking/TargetManagerLib.sol +211 -0
  506. package/contracts/{types → type}/AddressSet.sol +1 -1
  507. package/contracts/type/Amount.sol +150 -0
  508. package/contracts/{types → type}/Blocknumber.sol +26 -3
  509. package/contracts/{types → type}/ClaimId.sol +31 -3
  510. package/contracts/{types → type}/Fee.sol +24 -22
  511. package/contracts/{types → type}/Key32.sol +2 -2
  512. package/contracts/type/Key32Set.sol +62 -0
  513. package/contracts/{types → type}/NftId.sol +21 -16
  514. package/contracts/{types → type}/NftIdSet.sol +2 -2
  515. package/contracts/type/ObjectType.sol +294 -0
  516. package/contracts/type/PayoutId.sol +82 -0
  517. package/contracts/{types → type}/Referral.sol +2 -1
  518. package/contracts/type/RequestId.sol +75 -0
  519. package/contracts/type/RiskId.sol +75 -0
  520. package/contracts/type/RoleId.sol +182 -0
  521. package/contracts/type/Seconds.sol +101 -0
  522. package/contracts/type/Selector.sol +107 -0
  523. package/contracts/{types → type}/StateId.sol +47 -4
  524. package/contracts/type/String.sol +53 -0
  525. package/contracts/{types → type}/Timestamp.sol +20 -6
  526. package/contracts/{types → type}/UFixed.sol +40 -121
  527. package/contracts/{types → type}/Version.sol +58 -7
  528. package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
  529. package/contracts/{shared → upgradeability}/ProxyManager.sol +93 -30
  530. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  531. package/contracts/{shared → upgradeability}/Versionable.sol +3 -3
  532. package/package.json +12 -8
  533. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  534. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  535. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  536. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  537. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  538. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  539. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  540. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  541. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
  542. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
  543. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  544. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -778
  545. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  546. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  547. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1330
  548. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  549. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -256
  550. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  551. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  552. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  553. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  554. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
  555. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  556. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
  557. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
  558. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -237
  559. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  560. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  561. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
  562. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
  563. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -1039
  564. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
  565. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -673
  566. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  567. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1231
  568. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  569. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -721
  570. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
  571. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -817
  572. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
  573. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -641
  574. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  575. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1798
  576. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  577. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -805
  578. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
  579. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  580. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
  581. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  582. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  583. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  584. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  585. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  586. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1092
  587. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  588. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -697
  589. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  590. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -1237
  591. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  592. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -661
  593. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  594. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -840
  595. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  596. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -653
  597. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  598. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  599. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  600. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -559
  601. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  602. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  603. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  604. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
  605. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  606. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  607. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
  608. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  609. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  610. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  611. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  612. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  613. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  614. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
  615. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  616. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  617. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  618. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -596
  619. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  620. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  621. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  622. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  623. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  624. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
  625. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  626. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  627. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  628. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  629. package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +0 -4
  630. package/artifacts/contracts/types/Amount.sol/AmountLib.json +0 -161
  631. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  632. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  633. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  634. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  635. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
  636. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
  637. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  638. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  639. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  640. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -288
  641. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  642. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  643. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  644. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
  645. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  646. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  647. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  648. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  649. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  650. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  651. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
  652. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
  653. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  654. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
  655. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  656. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  657. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  658. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  659. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
  660. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
  661. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  662. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  663. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  664. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -267
  665. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  666. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  667. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  668. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  669. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  670. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  671. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  672. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  673. package/contracts/components/Component.sol +0 -253
  674. package/contracts/components/Distribution.sol +0 -280
  675. package/contracts/components/IComponent.sol +0 -76
  676. package/contracts/components/IDistributionComponent.sol +0 -71
  677. package/contracts/components/IPoolComponent.sol +0 -113
  678. package/contracts/components/IProductComponent.sol +0 -40
  679. package/contracts/components/Pool.sol +0 -303
  680. package/contracts/components/Product.sol +0 -293
  681. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -13
  682. package/contracts/instance/BundleManager.sol +0 -127
  683. package/contracts/instance/Cloneable.sol +0 -51
  684. package/contracts/instance/InstanceAccessManager.sol +0 -527
  685. package/contracts/instance/ObjectManager.sol +0 -82
  686. package/contracts/instance/base/ComponentService.sol +0 -121
  687. package/contracts/instance/base/KeyValueStore.sol +0 -180
  688. package/contracts/instance/base/Lifecycle.sol +0 -109
  689. package/contracts/instance/module/IAccess.sol +0 -54
  690. package/contracts/instance/module/ISetup.sol +0 -33
  691. package/contracts/instance/module/ITreasury.sol +0 -23
  692. package/contracts/instance/service/ApplicationService.sol +0 -350
  693. package/contracts/instance/service/BundleService.sol +0 -431
  694. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  695. package/contracts/instance/service/ClaimService.sol +0 -151
  696. package/contracts/instance/service/DistributionService.sol +0 -435
  697. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  698. package/contracts/instance/service/IClaimService.sol +0 -61
  699. package/contracts/instance/service/IDistributionService.sol +0 -99
  700. package/contracts/instance/service/IPolicyService.sol +0 -72
  701. package/contracts/instance/service/IPoolService.sol +0 -99
  702. package/contracts/instance/service/IProductService.sol +0 -40
  703. package/contracts/instance/service/PolicyService.sol +0 -362
  704. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  705. package/contracts/instance/service/PoolService.sol +0 -303
  706. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  707. package/contracts/instance/service/ProductService.sol +0 -210
  708. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  709. package/contracts/registry/RegistryAccessManager.sol +0 -216
  710. package/contracts/registry/ReleaseManager.sol +0 -324
  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/Amount.sol +0 -60
  720. package/contracts/types/ChainId.sol +0 -38
  721. package/contracts/types/NumberId.sol +0 -52
  722. package/contracts/types/ObjectType.sol +0 -157
  723. package/contracts/types/PayoutId.sol +0 -54
  724. package/contracts/types/RiskId.sol +0 -43
  725. package/contracts/types/RoleId.sol +0 -97
  726. package/contracts/types/Seconds.sol +0 -54
  727. /package/contracts/{types → type}/DistributorType.sol +0 -0
@@ -0,0 +1,1405 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ComponentService",
4
+ "sourceName": "contracts/shared/ComponentService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "authority",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorAuthorityInvalid",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "component",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "ErrorComponentServiceComponentAlreadyRegistered",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "component",
71
+ "type": "address"
72
+ },
73
+ {
74
+ "internalType": "NftId",
75
+ "name": "required",
76
+ "type": "uint96"
77
+ },
78
+ {
79
+ "internalType": "NftId",
80
+ "name": "actual",
81
+ "type": "uint96"
82
+ }
83
+ ],
84
+ "name": "ErrorComponentServiceComponentParentInvalid",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "internalType": "address",
91
+ "name": "component",
92
+ "type": "address"
93
+ },
94
+ {
95
+ "internalType": "VersionPart",
96
+ "name": "serviceRelease",
97
+ "type": "uint8"
98
+ },
99
+ {
100
+ "internalType": "VersionPart",
101
+ "name": "componentRelease",
102
+ "type": "uint8"
103
+ }
104
+ ],
105
+ "name": "ErrorComponentServiceComponentReleaseMismatch",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [
110
+ {
111
+ "internalType": "address",
112
+ "name": "component",
113
+ "type": "address"
114
+ },
115
+ {
116
+ "internalType": "ObjectType",
117
+ "name": "invalid",
118
+ "type": "uint8"
119
+ }
120
+ ],
121
+ "name": "ErrorComponentServiceComponentTypeNotSupported",
122
+ "type": "error"
123
+ },
124
+ {
125
+ "inputs": [],
126
+ "name": "ErrorComponentServiceNewWalletAddressZero",
127
+ "type": "error"
128
+ },
129
+ {
130
+ "inputs": [
131
+ {
132
+ "internalType": "address",
133
+ "name": "component",
134
+ "type": "address"
135
+ }
136
+ ],
137
+ "name": "ErrorComponentServiceNotInstanceLinkedComponent",
138
+ "type": "error"
139
+ },
140
+ {
141
+ "inputs": [],
142
+ "name": "ErrorComponentServiceWalletAddressIsSameAsCurrent",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [],
147
+ "name": "ErrorComponentServiceWalletAddressZero",
148
+ "type": "error"
149
+ },
150
+ {
151
+ "inputs": [
152
+ {
153
+ "internalType": "address",
154
+ "name": "wallet",
155
+ "type": "address"
156
+ },
157
+ {
158
+ "internalType": "address",
159
+ "name": "spender",
160
+ "type": "address"
161
+ },
162
+ {
163
+ "internalType": "uint256",
164
+ "name": "allowance",
165
+ "type": "uint256"
166
+ },
167
+ {
168
+ "internalType": "uint256",
169
+ "name": "amount",
170
+ "type": "uint256"
171
+ }
172
+ ],
173
+ "name": "ErrorComponentServiceWalletAllowanceTooSmall",
174
+ "type": "error"
175
+ },
176
+ {
177
+ "inputs": [
178
+ {
179
+ "internalType": "Amount",
180
+ "name": "withdrawnAmount",
181
+ "type": "uint96"
182
+ },
183
+ {
184
+ "internalType": "Amount",
185
+ "name": "withdrawLimit",
186
+ "type": "uint96"
187
+ }
188
+ ],
189
+ "name": "ErrorComponentServiceWithdrawAmountExceedsLimit",
190
+ "type": "error"
191
+ },
192
+ {
193
+ "inputs": [],
194
+ "name": "ErrorComponentServiceWithdrawAmountIsZero",
195
+ "type": "error"
196
+ },
197
+ {
198
+ "inputs": [
199
+ {
200
+ "internalType": "NftId",
201
+ "name": "nftId",
202
+ "type": "uint96"
203
+ }
204
+ ],
205
+ "name": "ErrorNftOwnableAlreadyLinked",
206
+ "type": "error"
207
+ },
208
+ {
209
+ "inputs": [
210
+ {
211
+ "internalType": "address",
212
+ "name": "contractAddress",
213
+ "type": "address"
214
+ }
215
+ ],
216
+ "name": "ErrorNftOwnableContractNotRegistered",
217
+ "type": "error"
218
+ },
219
+ {
220
+ "inputs": [],
221
+ "name": "ErrorNftOwnableInitialOwnerZero",
222
+ "type": "error"
223
+ },
224
+ {
225
+ "inputs": [
226
+ {
227
+ "internalType": "NftId",
228
+ "name": "nftId",
229
+ "type": "uint96"
230
+ },
231
+ {
232
+ "internalType": "ObjectType",
233
+ "name": "expectedObjectType",
234
+ "type": "uint8"
235
+ }
236
+ ],
237
+ "name": "ErrorNftOwnableInvalidType",
238
+ "type": "error"
239
+ },
240
+ {
241
+ "inputs": [
242
+ {
243
+ "internalType": "address",
244
+ "name": "account",
245
+ "type": "address"
246
+ }
247
+ ],
248
+ "name": "ErrorNftOwnableNotOwner",
249
+ "type": "error"
250
+ },
251
+ {
252
+ "inputs": [
253
+ {
254
+ "internalType": "address",
255
+ "name": "registryAddress",
256
+ "type": "address"
257
+ }
258
+ ],
259
+ "name": "ErrorNotRegistry",
260
+ "type": "error"
261
+ },
262
+ {
263
+ "inputs": [
264
+ {
265
+ "internalType": "NftId",
266
+ "name": "productNftId",
267
+ "type": "uint96"
268
+ },
269
+ {
270
+ "internalType": "NftId",
271
+ "name": "distributionNftId",
272
+ "type": "uint96"
273
+ }
274
+ ],
275
+ "name": "ErrorProductServiceDistributionAlreadyRegistered",
276
+ "type": "error"
277
+ },
278
+ {
279
+ "inputs": [
280
+ {
281
+ "internalType": "NftId",
282
+ "name": "productNftId",
283
+ "type": "uint96"
284
+ }
285
+ ],
286
+ "name": "ErrorProductServiceNoDistributionExpected",
287
+ "type": "error"
288
+ },
289
+ {
290
+ "inputs": [
291
+ {
292
+ "internalType": "NftId",
293
+ "name": "productNftId",
294
+ "type": "uint96"
295
+ }
296
+ ],
297
+ "name": "ErrorProductServiceNoOraclesExpected",
298
+ "type": "error"
299
+ },
300
+ {
301
+ "inputs": [
302
+ {
303
+ "internalType": "NftId",
304
+ "name": "productNftId",
305
+ "type": "uint96"
306
+ },
307
+ {
308
+ "internalType": "uint8",
309
+ "name": "expectedOracles",
310
+ "type": "uint8"
311
+ }
312
+ ],
313
+ "name": "ErrorProductServiceOraclesAlreadyRegistered",
314
+ "type": "error"
315
+ },
316
+ {
317
+ "inputs": [
318
+ {
319
+ "internalType": "NftId",
320
+ "name": "productNftId",
321
+ "type": "uint96"
322
+ },
323
+ {
324
+ "internalType": "NftId",
325
+ "name": "poolNftId",
326
+ "type": "uint96"
327
+ }
328
+ ],
329
+ "name": "ErrorProductServicePoolAlreadyRegistered",
330
+ "type": "error"
331
+ },
332
+ {
333
+ "inputs": [],
334
+ "name": "ErrorRegisterableNotActive",
335
+ "type": "error"
336
+ },
337
+ {
338
+ "inputs": [],
339
+ "name": "InvalidInitialization",
340
+ "type": "error"
341
+ },
342
+ {
343
+ "inputs": [],
344
+ "name": "NotInitializing",
345
+ "type": "error"
346
+ },
347
+ {
348
+ "inputs": [],
349
+ "name": "ReentrancyGuardReentrantCall",
350
+ "type": "error"
351
+ },
352
+ {
353
+ "anonymous": false,
354
+ "inputs": [
355
+ {
356
+ "indexed": false,
357
+ "internalType": "address",
358
+ "name": "authority",
359
+ "type": "address"
360
+ }
361
+ ],
362
+ "name": "AuthorityUpdated",
363
+ "type": "event"
364
+ },
365
+ {
366
+ "anonymous": false,
367
+ "inputs": [
368
+ {
369
+ "indexed": false,
370
+ "internalType": "uint64",
371
+ "name": "version",
372
+ "type": "uint64"
373
+ }
374
+ ],
375
+ "name": "Initialized",
376
+ "type": "event"
377
+ },
378
+ {
379
+ "anonymous": false,
380
+ "inputs": [
381
+ {
382
+ "indexed": false,
383
+ "internalType": "NftId",
384
+ "name": "componentNftId",
385
+ "type": "uint96"
386
+ },
387
+ {
388
+ "indexed": false,
389
+ "internalType": "address",
390
+ "name": "recipient",
391
+ "type": "address"
392
+ },
393
+ {
394
+ "indexed": false,
395
+ "internalType": "address",
396
+ "name": "token",
397
+ "type": "address"
398
+ },
399
+ {
400
+ "indexed": false,
401
+ "internalType": "Amount",
402
+ "name": "withdrawnAmount",
403
+ "type": "uint96"
404
+ }
405
+ ],
406
+ "name": "LogComponentServiceComponentFeesWithdrawn",
407
+ "type": "event"
408
+ },
409
+ {
410
+ "anonymous": false,
411
+ "inputs": [
412
+ {
413
+ "indexed": false,
414
+ "internalType": "NftId",
415
+ "name": "distributionNftId",
416
+ "type": "uint96"
417
+ }
418
+ ],
419
+ "name": "LogComponentServiceDistributionFeesUpdated",
420
+ "type": "event"
421
+ },
422
+ {
423
+ "anonymous": false,
424
+ "inputs": [
425
+ {
426
+ "indexed": false,
427
+ "internalType": "NftId",
428
+ "name": "poolNftId",
429
+ "type": "uint96"
430
+ }
431
+ ],
432
+ "name": "LogComponentServicePoolFeesUpdated",
433
+ "type": "event"
434
+ },
435
+ {
436
+ "anonymous": false,
437
+ "inputs": [
438
+ {
439
+ "indexed": false,
440
+ "internalType": "NftId",
441
+ "name": "productNftId",
442
+ "type": "uint96"
443
+ }
444
+ ],
445
+ "name": "LogComponentServiceProductFeesUpdated",
446
+ "type": "event"
447
+ },
448
+ {
449
+ "anonymous": false,
450
+ "inputs": [
451
+ {
452
+ "indexed": false,
453
+ "internalType": "NftId",
454
+ "name": "componentNftId",
455
+ "type": "uint96"
456
+ },
457
+ {
458
+ "indexed": false,
459
+ "internalType": "ObjectType",
460
+ "name": "componentType",
461
+ "type": "uint8"
462
+ },
463
+ {
464
+ "indexed": false,
465
+ "internalType": "address",
466
+ "name": "component",
467
+ "type": "address"
468
+ },
469
+ {
470
+ "indexed": false,
471
+ "internalType": "address",
472
+ "name": "token",
473
+ "type": "address"
474
+ },
475
+ {
476
+ "indexed": false,
477
+ "internalType": "address",
478
+ "name": "initialOwner",
479
+ "type": "address"
480
+ }
481
+ ],
482
+ "name": "LogComponentServiceRegistered",
483
+ "type": "event"
484
+ },
485
+ {
486
+ "anonymous": false,
487
+ "inputs": [
488
+ {
489
+ "indexed": false,
490
+ "internalType": "NftId",
491
+ "name": "nftId",
492
+ "type": "uint96"
493
+ },
494
+ {
495
+ "indexed": false,
496
+ "internalType": "string",
497
+ "name": "feeName",
498
+ "type": "string"
499
+ },
500
+ {
501
+ "indexed": false,
502
+ "internalType": "UFixed",
503
+ "name": "previousFractionalFee",
504
+ "type": "uint256"
505
+ },
506
+ {
507
+ "indexed": false,
508
+ "internalType": "uint256",
509
+ "name": "previousFixedFee",
510
+ "type": "uint256"
511
+ },
512
+ {
513
+ "indexed": false,
514
+ "internalType": "UFixed",
515
+ "name": "newFractionalFee",
516
+ "type": "uint256"
517
+ },
518
+ {
519
+ "indexed": false,
520
+ "internalType": "uint256",
521
+ "name": "newFixedFee",
522
+ "type": "uint256"
523
+ }
524
+ ],
525
+ "name": "LogComponentServiceUpdateFee",
526
+ "type": "event"
527
+ },
528
+ {
529
+ "anonymous": false,
530
+ "inputs": [
531
+ {
532
+ "indexed": false,
533
+ "internalType": "NftId",
534
+ "name": "componentNftId",
535
+ "type": "uint96"
536
+ },
537
+ {
538
+ "indexed": false,
539
+ "internalType": "address",
540
+ "name": "currentWallet",
541
+ "type": "address"
542
+ },
543
+ {
544
+ "indexed": false,
545
+ "internalType": "address",
546
+ "name": "newWallet",
547
+ "type": "address"
548
+ }
549
+ ],
550
+ "name": "LogComponentServiceWalletAddressChanged",
551
+ "type": "event"
552
+ },
553
+ {
554
+ "anonymous": false,
555
+ "inputs": [
556
+ {
557
+ "indexed": false,
558
+ "internalType": "NftId",
559
+ "name": "componentNftId",
560
+ "type": "uint96"
561
+ },
562
+ {
563
+ "indexed": false,
564
+ "internalType": "address",
565
+ "name": "currentWallet",
566
+ "type": "address"
567
+ },
568
+ {
569
+ "indexed": false,
570
+ "internalType": "address",
571
+ "name": "newWallet",
572
+ "type": "address"
573
+ },
574
+ {
575
+ "indexed": false,
576
+ "internalType": "uint256",
577
+ "name": "currentBalance",
578
+ "type": "uint256"
579
+ }
580
+ ],
581
+ "name": "LogComponentServiceWalletTokensTransferred",
582
+ "type": "event"
583
+ },
584
+ {
585
+ "inputs": [],
586
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
587
+ "outputs": [
588
+ {
589
+ "internalType": "bytes32",
590
+ "name": "",
591
+ "type": "bytes32"
592
+ }
593
+ ],
594
+ "stateMutability": "view",
595
+ "type": "function"
596
+ },
597
+ {
598
+ "inputs": [],
599
+ "name": "REGISTERABLE_LOCATION_V1",
600
+ "outputs": [
601
+ {
602
+ "internalType": "bytes32",
603
+ "name": "",
604
+ "type": "bytes32"
605
+ }
606
+ ],
607
+ "stateMutability": "view",
608
+ "type": "function"
609
+ },
610
+ {
611
+ "inputs": [
612
+ {
613
+ "internalType": "contract IERC20Metadata",
614
+ "name": "token",
615
+ "type": "address"
616
+ },
617
+ {
618
+ "internalType": "Amount",
619
+ "name": "amount",
620
+ "type": "uint96"
621
+ }
622
+ ],
623
+ "name": "approveTokenHandler",
624
+ "outputs": [],
625
+ "stateMutability": "nonpayable",
626
+ "type": "function"
627
+ },
628
+ {
629
+ "inputs": [],
630
+ "name": "authority",
631
+ "outputs": [
632
+ {
633
+ "internalType": "address",
634
+ "name": "",
635
+ "type": "address"
636
+ }
637
+ ],
638
+ "stateMutability": "view",
639
+ "type": "function"
640
+ },
641
+ {
642
+ "inputs": [],
643
+ "name": "getDomain",
644
+ "outputs": [
645
+ {
646
+ "internalType": "ObjectType",
647
+ "name": "serviceDomain",
648
+ "type": "uint8"
649
+ }
650
+ ],
651
+ "stateMutability": "pure",
652
+ "type": "function"
653
+ },
654
+ {
655
+ "inputs": [],
656
+ "name": "getInitialInfo",
657
+ "outputs": [
658
+ {
659
+ "components": [
660
+ {
661
+ "internalType": "NftId",
662
+ "name": "nftId",
663
+ "type": "uint96"
664
+ },
665
+ {
666
+ "internalType": "NftId",
667
+ "name": "parentNftId",
668
+ "type": "uint96"
669
+ },
670
+ {
671
+ "internalType": "ObjectType",
672
+ "name": "objectType",
673
+ "type": "uint8"
674
+ },
675
+ {
676
+ "internalType": "bool",
677
+ "name": "isInterceptor",
678
+ "type": "bool"
679
+ },
680
+ {
681
+ "internalType": "address",
682
+ "name": "objectAddress",
683
+ "type": "address"
684
+ },
685
+ {
686
+ "internalType": "address",
687
+ "name": "initialOwner",
688
+ "type": "address"
689
+ },
690
+ {
691
+ "internalType": "bytes",
692
+ "name": "data",
693
+ "type": "bytes"
694
+ }
695
+ ],
696
+ "internalType": "struct IRegistry.ObjectInfo",
697
+ "name": "info",
698
+ "type": "tuple"
699
+ }
700
+ ],
701
+ "stateMutability": "view",
702
+ "type": "function"
703
+ },
704
+ {
705
+ "inputs": [],
706
+ "name": "getNftId",
707
+ "outputs": [
708
+ {
709
+ "internalType": "NftId",
710
+ "name": "",
711
+ "type": "uint96"
712
+ }
713
+ ],
714
+ "stateMutability": "view",
715
+ "type": "function"
716
+ },
717
+ {
718
+ "inputs": [],
719
+ "name": "getOwner",
720
+ "outputs": [
721
+ {
722
+ "internalType": "address",
723
+ "name": "",
724
+ "type": "address"
725
+ }
726
+ ],
727
+ "stateMutability": "view",
728
+ "type": "function"
729
+ },
730
+ {
731
+ "inputs": [],
732
+ "name": "getRegistry",
733
+ "outputs": [
734
+ {
735
+ "internalType": "contract IRegistry",
736
+ "name": "",
737
+ "type": "address"
738
+ }
739
+ ],
740
+ "stateMutability": "view",
741
+ "type": "function"
742
+ },
743
+ {
744
+ "inputs": [],
745
+ "name": "getRelease",
746
+ "outputs": [
747
+ {
748
+ "internalType": "VersionPart",
749
+ "name": "release",
750
+ "type": "uint8"
751
+ }
752
+ ],
753
+ "stateMutability": "view",
754
+ "type": "function"
755
+ },
756
+ {
757
+ "inputs": [],
758
+ "name": "getRoleId",
759
+ "outputs": [
760
+ {
761
+ "internalType": "RoleId",
762
+ "name": "serviceRoleId",
763
+ "type": "uint64"
764
+ }
765
+ ],
766
+ "stateMutability": "view",
767
+ "type": "function"
768
+ },
769
+ {
770
+ "inputs": [],
771
+ "name": "getVersion",
772
+ "outputs": [
773
+ {
774
+ "internalType": "Version",
775
+ "name": "",
776
+ "type": "uint24"
777
+ }
778
+ ],
779
+ "stateMutability": "pure",
780
+ "type": "function"
781
+ },
782
+ {
783
+ "inputs": [
784
+ {
785
+ "internalType": "address",
786
+ "name": "activatedBy",
787
+ "type": "address"
788
+ },
789
+ {
790
+ "internalType": "bytes",
791
+ "name": "data",
792
+ "type": "bytes"
793
+ }
794
+ ],
795
+ "name": "initializeVersionable",
796
+ "outputs": [],
797
+ "stateMutability": "nonpayable",
798
+ "type": "function"
799
+ },
800
+ {
801
+ "inputs": [],
802
+ "name": "isActive",
803
+ "outputs": [
804
+ {
805
+ "internalType": "bool",
806
+ "name": "active",
807
+ "type": "bool"
808
+ }
809
+ ],
810
+ "stateMutability": "view",
811
+ "type": "function"
812
+ },
813
+ {
814
+ "inputs": [],
815
+ "name": "isConsumingScheduledOp",
816
+ "outputs": [
817
+ {
818
+ "internalType": "bytes4",
819
+ "name": "",
820
+ "type": "bytes4"
821
+ }
822
+ ],
823
+ "stateMutability": "view",
824
+ "type": "function"
825
+ },
826
+ {
827
+ "inputs": [],
828
+ "name": "linkToRegisteredNftId",
829
+ "outputs": [
830
+ {
831
+ "internalType": "NftId",
832
+ "name": "nftId",
833
+ "type": "uint96"
834
+ }
835
+ ],
836
+ "stateMutability": "nonpayable",
837
+ "type": "function"
838
+ },
839
+ {
840
+ "inputs": [
841
+ {
842
+ "internalType": "address",
843
+ "name": "componentAddress",
844
+ "type": "address"
845
+ }
846
+ ],
847
+ "name": "registerComponent",
848
+ "outputs": [
849
+ {
850
+ "internalType": "NftId",
851
+ "name": "componentNftId",
852
+ "type": "uint96"
853
+ }
854
+ ],
855
+ "stateMutability": "nonpayable",
856
+ "type": "function"
857
+ },
858
+ {
859
+ "inputs": [
860
+ {
861
+ "internalType": "address",
862
+ "name": "productAddress",
863
+ "type": "address"
864
+ }
865
+ ],
866
+ "name": "registerProduct",
867
+ "outputs": [
868
+ {
869
+ "internalType": "NftId",
870
+ "name": "productNftId",
871
+ "type": "uint96"
872
+ }
873
+ ],
874
+ "stateMutability": "nonpayable",
875
+ "type": "function"
876
+ },
877
+ {
878
+ "inputs": [
879
+ {
880
+ "internalType": "address",
881
+ "name": "newAuthority",
882
+ "type": "address"
883
+ }
884
+ ],
885
+ "name": "setAuthority",
886
+ "outputs": [],
887
+ "stateMutability": "nonpayable",
888
+ "type": "function"
889
+ },
890
+ {
891
+ "inputs": [
892
+ {
893
+ "components": [
894
+ {
895
+ "internalType": "UFixed",
896
+ "name": "fractionalFee",
897
+ "type": "uint256"
898
+ },
899
+ {
900
+ "internalType": "uint256",
901
+ "name": "fixedFee",
902
+ "type": "uint256"
903
+ }
904
+ ],
905
+ "internalType": "struct Fee",
906
+ "name": "distributionFee",
907
+ "type": "tuple"
908
+ },
909
+ {
910
+ "components": [
911
+ {
912
+ "internalType": "UFixed",
913
+ "name": "fractionalFee",
914
+ "type": "uint256"
915
+ },
916
+ {
917
+ "internalType": "uint256",
918
+ "name": "fixedFee",
919
+ "type": "uint256"
920
+ }
921
+ ],
922
+ "internalType": "struct Fee",
923
+ "name": "minDistributionOwnerFee",
924
+ "type": "tuple"
925
+ }
926
+ ],
927
+ "name": "setDistributionFees",
928
+ "outputs": [],
929
+ "stateMutability": "nonpayable",
930
+ "type": "function"
931
+ },
932
+ {
933
+ "inputs": [
934
+ {
935
+ "internalType": "bool",
936
+ "name": "locked",
937
+ "type": "bool"
938
+ }
939
+ ],
940
+ "name": "setLocked",
941
+ "outputs": [],
942
+ "stateMutability": "nonpayable",
943
+ "type": "function"
944
+ },
945
+ {
946
+ "inputs": [
947
+ {
948
+ "components": [
949
+ {
950
+ "internalType": "UFixed",
951
+ "name": "fractionalFee",
952
+ "type": "uint256"
953
+ },
954
+ {
955
+ "internalType": "uint256",
956
+ "name": "fixedFee",
957
+ "type": "uint256"
958
+ }
959
+ ],
960
+ "internalType": "struct Fee",
961
+ "name": "poolFee",
962
+ "type": "tuple"
963
+ },
964
+ {
965
+ "components": [
966
+ {
967
+ "internalType": "UFixed",
968
+ "name": "fractionalFee",
969
+ "type": "uint256"
970
+ },
971
+ {
972
+ "internalType": "uint256",
973
+ "name": "fixedFee",
974
+ "type": "uint256"
975
+ }
976
+ ],
977
+ "internalType": "struct Fee",
978
+ "name": "stakingFee",
979
+ "type": "tuple"
980
+ },
981
+ {
982
+ "components": [
983
+ {
984
+ "internalType": "UFixed",
985
+ "name": "fractionalFee",
986
+ "type": "uint256"
987
+ },
988
+ {
989
+ "internalType": "uint256",
990
+ "name": "fixedFee",
991
+ "type": "uint256"
992
+ }
993
+ ],
994
+ "internalType": "struct Fee",
995
+ "name": "performanceFee",
996
+ "type": "tuple"
997
+ }
998
+ ],
999
+ "name": "setPoolFees",
1000
+ "outputs": [],
1001
+ "stateMutability": "nonpayable",
1002
+ "type": "function"
1003
+ },
1004
+ {
1005
+ "inputs": [
1006
+ {
1007
+ "components": [
1008
+ {
1009
+ "internalType": "UFixed",
1010
+ "name": "fractionalFee",
1011
+ "type": "uint256"
1012
+ },
1013
+ {
1014
+ "internalType": "uint256",
1015
+ "name": "fixedFee",
1016
+ "type": "uint256"
1017
+ }
1018
+ ],
1019
+ "internalType": "struct Fee",
1020
+ "name": "productFee",
1021
+ "type": "tuple"
1022
+ },
1023
+ {
1024
+ "components": [
1025
+ {
1026
+ "internalType": "UFixed",
1027
+ "name": "fractionalFee",
1028
+ "type": "uint256"
1029
+ },
1030
+ {
1031
+ "internalType": "uint256",
1032
+ "name": "fixedFee",
1033
+ "type": "uint256"
1034
+ }
1035
+ ],
1036
+ "internalType": "struct Fee",
1037
+ "name": "processingFee",
1038
+ "type": "tuple"
1039
+ }
1040
+ ],
1041
+ "name": "setProductFees",
1042
+ "outputs": [],
1043
+ "stateMutability": "nonpayable",
1044
+ "type": "function"
1045
+ },
1046
+ {
1047
+ "inputs": [
1048
+ {
1049
+ "internalType": "address",
1050
+ "name": "newWallet",
1051
+ "type": "address"
1052
+ }
1053
+ ],
1054
+ "name": "setWallet",
1055
+ "outputs": [],
1056
+ "stateMutability": "nonpayable",
1057
+ "type": "function"
1058
+ },
1059
+ {
1060
+ "inputs": [
1061
+ {
1062
+ "internalType": "bytes4",
1063
+ "name": "interfaceId",
1064
+ "type": "bytes4"
1065
+ }
1066
+ ],
1067
+ "name": "supportsInterface",
1068
+ "outputs": [
1069
+ {
1070
+ "internalType": "bool",
1071
+ "name": "",
1072
+ "type": "bool"
1073
+ }
1074
+ ],
1075
+ "stateMutability": "view",
1076
+ "type": "function"
1077
+ },
1078
+ {
1079
+ "inputs": [
1080
+ {
1081
+ "internalType": "bytes",
1082
+ "name": "data",
1083
+ "type": "bytes"
1084
+ }
1085
+ ],
1086
+ "name": "upgradeVersionable",
1087
+ "outputs": [],
1088
+ "stateMutability": "nonpayable",
1089
+ "type": "function"
1090
+ },
1091
+ {
1092
+ "inputs": [
1093
+ {
1094
+ "internalType": "Amount",
1095
+ "name": "amount",
1096
+ "type": "uint96"
1097
+ }
1098
+ ],
1099
+ "name": "withdrawFees",
1100
+ "outputs": [
1101
+ {
1102
+ "internalType": "Amount",
1103
+ "name": "withdrawnAmount",
1104
+ "type": "uint96"
1105
+ }
1106
+ ],
1107
+ "stateMutability": "nonpayable",
1108
+ "type": "function"
1109
+ }
1110
+ ],
1111
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b61560c806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80635ab1bd53116100f3578063893d20e811610093578063b68d18091161006e578063b68d1809146103ed578063bf7e214f146103f4578063c142a303146103fc578063deaa59df1461040f575f80fd5b8063893d20e8146103b05780638fb36037146103b8578063ada9652e146103d9575f80fd5b806367ba1c10116100ce57806367ba1c10146103505780636c741e781461036357806376b707b7146103835780637a9e5e4b1461039d575f80fd5b80635ab1bd53146102fb5780636078a3b214610320578063644c45e014610333575f80fd5b8063211e28b61161015e578063329d6e7411610139578063329d6e74146102af57806337a897ee146102c2578063419197fe146102d557806349bb9e4b146102e8575f80fd5b8063211e28b61461027f57806322f3e2d4146102945780632d46f5df1461029c575f80fd5b806301ffc9a7146101a55780630d8e6e2c146101e65780630fec111c14610202578063138461e0146102175780631c6b2190146102375780631eff4b221461024a575b5f80fd5b6101d16101b33660046145fe565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101ee610422565b60405162ffffff90911681526020016101dd565b61020a6104a9565b6040516101dd9190614653565b61021f610635565b6040516001600160601b0390911681526020016101dd565b61021f6102453660046146f3565b61063f565b6102717f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b61029261028d36600461471b565b610ba2565b005b6101d1610c83565b61021f6102aa36600461474a565b610cfa565b6102926102bd3660046148b0565b61119c565b6102926102d0366004614910565b6112e6565b6102926102e336600461493a565b6115fe565b6102926102f6366004614971565b611757565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61021f61032e36600461474a565b611845565b5f80516020615557833981519152546001600160601b031661021f565b61029261035e366004614910565b61190c565b61036b611c8b565b6040516001600160401b0390911681526020016101dd565b61038b611d17565b60405160ff90911681526020016101dd565b6102926103ab36600461474a565b611d7f565b610308611e01565b6103c0611f32565b6040516001600160e01b031990911681526020016101dd565b6102715f8051602061555783398151915281565b600b61038b565b610308611f67565b61029261040a3660046149bd565b611f82565b61029261041d36600461474a565b612316565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610480573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614a00565b905090565b6104b16144dd565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610527573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061054b9190614a2d565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610593611e01565b6001600160a01b031681526020018260010180546105b090614a48565b80601f01602080910402602001604051908101604052809291908181526020018280546105dc90614a48565b80156106275780601f106105fe57610100808354040283529160200191610627565b820191905f5260205f20905b81548152906001019060200180831161060a57829003601f168201915b505050505081525091505090565b5f6104a430612455565b5f61064c335b5f3661264e565b5f80610658600b61274c565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610699573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106bd9190614a80565b604051630232ca4960e01b81526001600160601b03851660048201529091505f906001600160a01b03831690630232ca4990602401602060405180830381865afa15801561070d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107319190614a2d565b90508594506107aa8673__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015610781573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107a59190614a2d565b612762565b156107b3578094505b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af4158015610809573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061082d9190614aa6565b1561084b5760405163b079ec2b60e01b815260040160405180910390fd5b61085585826127ee565b1561088b5760405163151dbb3f60e01b81526001600160601b038087166004830152821660248201526044015b60405180910390fd5b60025f9054906101000a90046001600160a01b03166001600160a01b031663346696cc846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061090e9190614a80565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526001600160601b038088166024830152881660448201526064015f604051808303815f87803b158015610963575f80fd5b505af1158015610975573d5f803e3d5ffd5b505050505f61098c6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156109d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109fd9190614a80565b60405163a310e2a360e01b81526001600160601b03871660048201529091505f906001600160a01b0385169063a310e2a390602401602060405180830381865afa158015610a4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a719190614a80565b90507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde98683836001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ad2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610af69190614a80565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908916606082015260800160405180910390a1604051633fd3433360e01b81526001600160a01b0383811660048301526001600160601b0389166024830152821690633fd34333906044015f604051808303815f87803b158015610b81575f80fd5b505af1158015610b93573d5f803e3d5ffd5b50505050505050505050919050565b610bab33610645565b5f610bb7600b5f612838565b9150505f339050816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bfa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c1e9190614a80565b604051630d99633160e01b81526001600160a01b03838116600483015285151560248301529190911690630d996331906044015f604051808303815f87803b158015610c68575f80fd5b505af1158015610c7a573d5f803e3d5ffd5b50505050505050565b5f610c8c611f67565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610cd0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cf49190614aa6565b15905090565b5f610d036129bc565b5f610d166001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610d5a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d7e9190614a2d565b9050335f610d8c85846129f3565b915050610dab8160400151610d9f600c90565b60ff9081169116141590565b15610de357604080820151905163f0b751ab60e01b81526001600160a01b038716600482015260ff9091166024820152604401610882565b5f826001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e20573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e449190614a80565b90505f836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e83573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ea79190614a80565b905086610eb683838387612d95565b96505f816001600160a01b031663c108bd4c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015610ef4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610f1b9190810190614b6d565b905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610f64573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f889190614a2d565b6001600160601b031660a08201526040805163bc1b392d60e01b8152905173__$94a2c899be079b00d952d0d84fffaa5c34$__9163bc1b392d9160048083019260209291908290030181865af4158015610fe4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110089190614a2d565b6001600160601b031660c0820152606081015160ff166001600160401b0381111561103557611035614765565b60405190808252806020026020018201604052801561105e578160200160208202803683370190505b5060e0820152604051637f1773c960e11b81526001600160a01b0384169063fe2ee79290611092908b908590600401614d34565b5f604051808303815f87803b1580156110a9575f80fd5b505af11580156110bb573d5f803e3d5ffd5b50505050826001600160a01b031663bedaa84689846001600160a01b031663844e0f206040518163ffffffff1660e01b81526004016101c060405180830381865afa15801561110c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111309190614d84565b6040518363ffffffff1660e01b815260040161114d929190614e21565b5f604051808303815f87803b158015611164575f80fd5b505af1158015611176573d5f803e3d5ffd5b505050505050505050505061119760015f8051602061559783398151915255565b919050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6111be610422565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156111fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112209190614ef2565b5f805160206155b78339815191528054600160401b900460ff1680611252575080546001600160401b03808416911610155b156112705760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561129a836131ea565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f806112f2600e61274c565b915091505f80611361836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611337573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061135b9190614a80565b856131f2565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151896040518363ffffffff1660e01b81526004016113a3929190614f0d565b602060405180830381865af41580156113be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113e29190614aa6565b6114285761141d836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084604001518a6132f4565b506040810186905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161146491908a90600401614f0d565b602060405180830381865af415801561147f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114a39190614aa6565b6114f7576114ec836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460600151896132f4565b506060810185905260015b8015610c7a57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611539573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061155d9190614a80565b6001600160a01b031663462d5a8484846040518363ffffffff1660e01b815260040161158a929190614e21565b5f604051808303815f87803b1580156115a1575f80fd5b505af11580156115b3573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a150505050505050565b5f8061160a600b61274c565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561164b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061166f9190614a80565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa1580156116bb573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526116e29190810190614f87565b604090810151905163ea0b3c7360e01b81526001600160a01b0387811660048301526001600160601b03871660248301529192509082169063ea0b3c73906044015f604051808303815f87803b15801561173a575f80fd5b505af115801561174c573d5f803e3d5ffd5b505050505050505050565b5f805160206155b78339815191528054600160401b810460ff1615906001600160401b03165f811580156117885750825b90505f826001600160401b031660011480156117a35750303b155b9050811580156117b1575080155b156117cf5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156117f957845460ff60401b1916600160401b1785555b6118038787613347565b8315610c7a57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016115ed565b5f8080611852600b61274c565b915091505f8061186286856129f3565b6040810151919350915061187e81600f5b60ff90811691161490565b1561189c5786611890858783866134df565b98975050505050505050565b6118a781600e611873565b156118c3576118b8848685856138d0565b979650505050505050565b6118ce81600d611873565b156118df576118b884868585613bf9565b60405163f0b751ab60e01b81526001600160a01b038816600482015260ff82166024820152604401610882565b6119146129bc565b5f80611920600c61274c565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611961573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119859190614a80565b604051636a05a41360e01b81526001600160601b03851660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa1580156119d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119f79190614d84565b805160405162acc93760e61b81529192505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611a3591908a90600401614f0d565b602060405180830381865af4158015611a50573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a749190614aa6565b611ab057611aa9846040518060400160405280600a81526020016950726f6475637446656560b01b815250845f0151896132f4565b5084815260015b602082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611aec91908990600401614f0d565b602060405180830381865af4158015611b07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b2b9190614aa6565b611b6f57611b64846040518060400160405280600d81526020016c50726f63657373696e6746656560981b8152508460200151886132f4565b506020810184905260015b8015611c6d57826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bb1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bd59190614a80565b6001600160a01b031663462d5a8485846040518363ffffffff1660e01b8152600401611c02929190614e21565b5f604051808303815f87803b158015611c19575f80fd5b505af1158015611c2b573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b50505050611c8760015f8051602061559783398151915255565b5050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b611cb0611d17565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611cf3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614ef2565b5f611d20611f67565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d5b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190615050565b33611d88611f67565b6001600160a01b0316816001600160a01b031614611dc35760405162d1953b60e31b81526001600160a01b0382166004820152602401610882565b816001600160a01b03163b5f03611df8576040516361798f2f60e11b81526001600160a01b0383166004820152602401610882565b611c8782613e86565b5f805f8051602061555783398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611e6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e919190614aa6565b15611f1c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611ef2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f169190614a80565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061557783398151915280545f9190600160a01b900460ff16611f59575f611f16565b638fb3603760e01b91505090565b5f80516020615577833981519152546001600160a01b031690565b5f80611f8e600f61274c565b915091505f80611fd3836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611337573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc083608001518a6040518363ffffffff1660e01b8152600401612015929190614f0d565b602060405180830381865af4158015612030573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120549190614aa6565b612092576120878360405180604001604052806007815260200166506f6f6c46656560c81b81525084608001518b6132f4565b506080810187905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916120ce91908b90600401614f0d565b602060405180830381865af41580156120e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061210d9190614aa6565b61214e57612143836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460a001518a6132f4565b5060a0810186905260015b60c082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161218a91908a90600401614f0d565b602060405180830381865af41580156121a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121c99190614aa6565b61220e57612203836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508460c00151896132f4565b5060c0810185905260015b801561230c57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612250573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122749190614a80565b6001600160a01b031663462d5a8484846040518363ffffffff1660e01b81526004016122a1929190614e21565b5f604051808303815f87803b1580156122b8575f80fd5b505af11580156122ca573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15b5050505050505050565b5f80612322600b61274c565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612363573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123879190614a80565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa1580156123d3573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526123fa9190810190614f87565b604090810151905163deaa59df60e01b81526001600160a01b0386811660048301529192509082169063deaa59df906024015f604051808303815f87803b158015612443575f80fd5b505af115801561230c573d5f803e3d5ffd5b5f805f8051602061555783398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156124c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124e59190614aa6565b156125115780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610882565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612563573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125879190614aa6565b6125af5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610882565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612601573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126259190614a2d565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f805160206155778339815191525f80612686612669611f67565b873061267860045f8a8c61506b565b61268191615092565b613ee6565b91509150816127445763ffffffff81161561272157825460ff60a01b1916600160a01b1783556126b4611f67565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016126e3939291906150ca565b5f604051808303815f87803b1580156126fa575f80fd5b505af115801561270c573d5f803e3d5ffd5b5050845460ff60a01b19168555506127449050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610882565b505050505050565b5f80612759836001612838565b91509150915091565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af41580156127c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127e79190614aa6565b9392505050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c906044016127a8565b5f806128426144dd565b5f61284e86600b610d9f565b156129085773__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed361287f6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260ff8916604482015287151560648201526084015f60405180830381865af41580156128d7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526128fe91908101906151b3565b90925090506129b0565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__63aa13a9886129346001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015287151560448201526064015f60405180830381865af4158015612983573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526129aa91908101906151b3565b90925090505b90519590945092505050565b5f805160206155978339815191528054600119016129ed57604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b5f6129fc6144dd565b60405163d905700760e01b81526001600160a01b038516600482015263a9c1bc6f60e01b602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d905700790604401602060405180830381865af4158015612a5f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a839190614aa6565b612aab5760405163b03d8c4360e01b81526001600160a01b0385166004820152602401610882565b839150816001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612ae9573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612b1091908101906151f6565b9050612b20816020015184613fee565b15612b6657602081015160405163953133f160e01b81526001600160a01b03861660048201526001600160601b0380861660248301529091166044820152606401610882565b612bd1826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ba5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bc99190615050565b610d9f611d17565b15612c745783612bdf611d17565b836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c1b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c3f9190615050565b60405163459d07b760e11b81526001600160a01b03909316600484015260ff9182166024840152166044820152606401610882565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0386811660048301529190911690635e546bee90602401602060405180830381865afa158015612cc6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cea9190614a2d565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612d41573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d659190614aa6565b15612d8e57604051632176772160e11b81526001600160a01b0385166004820152602401610882565b9250929050565b5f612da68260400151611873600c90565b612e3b5760035460408381015160a08501519151631fa14e4960e11b81526001600160a01b03878116600483015260ff9092166024820152918116604483015290911690633f429c92906064015f604051808303815f875af1158015612e0e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612e3591908101906151f6565b51612eb8565b60035460a0830151604051635d96628960e01b81526001600160a01b0386811660048301529182166024820152911690635d966289906044015f604051808303815f875af1158015612e8f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612eb691908101906151f6565b515b90505f836001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612ef6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612f1d9190810190614f87565b602081015190915073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d612f516001546001600160a01b031690565b87848b6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f8f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fb39190614a80565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af415801561300d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130319190614a80565b6001600160a01b03908116604080850191909152516328f72e8760e01b8152908716906328f72e879061306a9086908690600401615227565b5f604051808303815f87803b158015613081575f80fd5b505af1158015613093573d5f803e3d5ffd5b50505050846001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af11580156130d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130f89190614a2d565b5060408481015190516366704a7d60e01b81526001600160a01b03878116600483015260ff9092166024820152908816906366704a7d906044015f604051808303815f87803b158015613149575f80fd5b505af115801561315b573d5f803e3d5ffd5b5050505060408481015160a08087015183516001600160601b038816815260ff90931660208401526001600160a01b0389811684860152858116606085015216608083015291517f51007d5babab22cf2beac27f1d50bb63f052eb2948904e9afee33fde1f2c5d46929181900390910190a15050949350505050565b60015f8051602061559783398151915255565b6101a1614038565b5f6131fb61451a565b6001546001600160a01b031660405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015613254573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132789190614a2d565b604051636a05a41360e01b81526001600160601b03821660048201529092506001600160a01b03851690636a05a413906024016101c060405180830381865afa1580156132c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132eb9190614d84565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db94613339948a948a949293909290615293565b60405180910390a150505050565b5f805160206155b78339815191528054600160401b810460ff1615906001600160401b03165f811580156133785750825b90505f826001600160401b031660011480156133935750303b155b9050811580156133a1575080155b156133bf5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156133e957845460ff60401b1916600160401b1785555b5f80878060200190518101906133ff91906152d9565b9150915061340e82828b614070565b6134186028614112565b600280546001600160a01b0319166001600160a01b039290921691909117815561344190614112565b600380546001600160a01b0319166001600160a01b039290921691909117905561346b600a614112565b600480546001600160a01b0319166001600160a01b039290921691909117905561349b637e20b99760e01b6141a9565b50508315610c7a57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016115ed565b5f80856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561351d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135419190614a80565b90505f866001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613580573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135a49190614a80565b90505f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136079190614a80565b905061361582828888612d95565b6040516302d764c760e21b81526001600160601b03891660048201529094505f906001600160a01b03851690630b5d931c906024015f60405180830381865afa158015613664573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261368b9190810190614b6d565b60a08101516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156136ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061370e9190614aa6565b156137455760a08101516040516397f129bf60e01b81526001600160601b03808b1660048301529091166024820152604401610882565b816001600160a01b031663fe7fc94186896001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa158015613791573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137b59190615306565b604080516001600160e01b031960e086901b1681526001600160601b03938416600482015282519093166024840152602082015115156044840152810151151560648301526060810151151560848301526080810151151560a483015260a081015160c483015260c0015160e4820152610104015f604051808303815f87803b158015613840575f80fd5b505af1158015613852573d5f803e3d5ffd5b505050506001600160601b03851660a08201526001600160a01b03821663cb2e87d2898360ff5b6040518463ffffffff1660e01b815260040161389793929190615394565b5f604051808303815f87803b1580156138ae575f80fd5b505af11580156138c0573d5f803e3d5ffd5b5050505050505050949350505050565b5f6138d96129bc565b5f856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613916573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061393a9190614a80565b90505f866001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613979573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061399d9190614a80565b90505f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156139dc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a009190614a80565b9050613a0e82828888612d95565b6040516302d764c760e21b81526001600160601b03891660048201529094505f906001600160a01b03851690630b5d931c906024015f60405180830381865afa158015613a5d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613a849190810190614b6d565b90508060400151613ab35760405163931d421760e01b81526001600160601b0389166004820152602401610882565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613b0f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b339190614aa6565b15613b6a5760c08101516040516323a0cc7160e11b81526001600160601b03808b1660048301529091166024820152604401610882565b6001600160601b03851660c082015260405163659743e960e11b81526001600160a01b0383169063cb2e87d290613baa908b90859060ff90600401615394565b5f604051808303815f87803b158015613bc1575f80fd5b505af1158015613bd3573d5f803e3d5ffd5b5050505050505050613bf160015f8051602061559783398151915255565b949350505050565b5f80856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c37573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c5b9190614a80565b90505f866001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c9a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cbe9190614a80565b90505f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613cfd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d219190614a80565b9050613d2f82828888612d95565b6040516302d764c760e21b81526001600160601b03891660048201529094505f906001600160a01b03851690630b5d931c906024015f60405180830381865afa158015613d7e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613da59190810190614b6d565b9050806060015160ff165f03613dd957604051634435e56b60e01b81526001600160601b0389166004820152602401610882565b806060015160ff16816080015160ff1603613e215760608101516040516379060d1360e11b81526001600160601b038a16600482015260ff9091166024820152604401610882565b848160e00151826080015160ff1681518110613e3f57613e3f6153c8565b6001600160601b039092166020928302919091019091015260808101805190613e67826153dc565b60ff169052506001600160a01b03821663cb2e87d2898361387960ff90565b5f8051602061557783398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613f549190615406565b5f60405180830381855afa9150503d805f8114613f8c576040519150601f19603f3d011682016040523d82523d5f602084013e613f91565b606091505b50915091508115613fe3576040815110613fc35780806020019051810190613fb9919061541c565b9094509250613fe3565b6020815110613fe35780806020019051810190613fe09190614aa6565b93505b505094509492505050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044016127a8565b5f805160206155b783398151915254600160401b900460ff1661406e57604051631afcd79f60e31b815260040160405180910390fd5b565b614078614038565b6140806141dc565b6140fd8383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156140c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140e59190614a2d565b60085f8660405180602001604052805f8152506141ec565b61410d63daf9067160e01b6141a9565b505050565b5f6141256001546001600160a01b031690565b6001600160a01b031663d39e60438361413c611d17565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561417f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141a39190614a80565b92915050565b6141b1614038565b6141d9816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b6141e4614038565b61406e614329565b6141f4614038565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af415801561424a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061426e9190614aa6565b6142965760405163cf6935e560e01b81526001600160a01b0388166004820152602401610882565b61429f87614331565b6142a98683614342565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101614318838261549c565b5061230c634a531f3360e01b6141a9565b6131d7614038565b614339614038565b6141d9816143b8565b61434a614038565b6143526143c9565b61435b82614411565b6001600160a01b0381166143825760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061555783398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b6143c0614038565b6141d981613e86565b6143d1614038565b61406e6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b614419614038565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af415801561446f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906144939190614aa6565b6144bb5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610882565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6040805161012081019091525f60e082018181526101008301919091528190815260200161455960405180604001604052805f81526020015f81525090565b815260200161457960405180604001604052805f81526020015f81525090565b815260200161459960405180604001604052805f81526020015f81525090565b81526020016145b960405180604001604052805f81526020015f81525090565b81526020016145d960405180604001604052805f81526020015f81525090565b81526020016145f960405180604001604052805f81526020015f81525090565b905290565b5f6020828403121561460e575f80fd5b81356001600160e01b0319811681146127e7575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f606083015161469b608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152613bf1610100840182614625565b6001600160601b03811681146141d9575f80fd5b5f60208284031215614703575f80fd5b81356127e7816146df565b80151581146141d9575f80fd5b5f6020828403121561472b575f80fd5b81356127e78161470e565b6001600160a01b03811681146141d9575f80fd5b5f6020828403121561475a575f80fd5b81356127e781614736565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b038111828210171561479b5761479b614765565b60405290565b60405161010081016001600160401b038111828210171561479b5761479b614765565b60405160e081016001600160401b038111828210171561479b5761479b614765565b604051608081016001600160401b038111828210171561479b5761479b614765565b604051601f8201601f191681016001600160401b038111828210171561483057614830614765565b604052919050565b5f6001600160401b0382111561485057614850614765565b50601f01601f191660200190565b5f82601f83011261486d575f80fd5b813561488061487b82614838565b614808565b818152846020838601011115614894575f80fd5b816020850160208301375f918101602001919091529392505050565b5f602082840312156148c0575f80fd5b81356001600160401b038111156148d5575f80fd5b613bf18482850161485e565b5f604082840312156148f1575f80fd5b6148f9614779565b823581526020928301359281019290925250919050565b5f8060808385031215614921575f80fd5b61492b84846148e1565b91506132eb84604085016148e1565b5f806040838503121561494b575f80fd5b823561495681614736565b91506020830135614966816146df565b809150509250929050565b5f8060408385031215614982575f80fd5b823561498d81614736565b915060208301356001600160401b038111156149a7575f80fd5b6149b38582860161485e565b9150509250929050565b5f805f60c084860312156149cf575f80fd5b6149d985856148e1565b92506149e885604086016148e1565b91506149f785608086016148e1565b90509250925092565b5f60208284031215614a10575f80fd5b815162ffffff811681146127e7575f80fd5b8051611197816146df565b5f60208284031215614a3d575f80fd5b81516127e7816146df565b600181811c90821680614a5c57607f821691505b602082108103614a7a57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215614a90575f80fd5b81516127e781614736565b80516111978161470e565b5f60208284031215614ab6575f80fd5b81516127e78161470e565b805161119781614736565b60ff811681146141d9575f80fd5b805161119781614acc565b5f82601f830112614af4575f80fd5b81516001600160401b03811115614b0d57614b0d614765565b8060051b614b1d60208201614808565b91825260208185018101929081019086841115614b38575f80fd5b6020860192505b83831015614b63578251614b52816146df565b825260209283019290910190614b3f565b9695505050505050565b5f60208284031215614b7d575f80fd5b81516001600160401b03811115614b92575f80fd5b82016101008185031215614ba4575f80fd5b614bac6147a1565b614bb582614a9b565b8152614bc360208301614a9b565b6020820152614bd460408301614a9b565b6040820152614be560608301614ada565b6060820152614bf660808301614ada565b6080820152614c0760a08301614a22565b60a0820152614c1860c08301614a22565b60c082015260e08201516001600160401b03811115614c35575f80fd5b614c4186828501614ae5565b60e083015250949350505050565b5f8151808452602084019350602083015f5b82811015614c885781516001600160601b0316865260209586019590910190600101614c61565b5093949350505050565b8051151582526020810151151560208301525f6040820151614cb8604085018215159052565b506060820151614ccd606085018260ff169052565b506080820151614ce2608085018260ff169052565b5060a0820151614cfd60a08501826001600160601b03169052565b5060c0820151614d1860c08501826001600160601b03169052565b5060e082015161010060e0850152613bf1610100850182614c4f565b6001600160601b0383168152604060208201525f613bf16040830184614c92565b5f60408284031215614d65575f80fd5b614d6d614779565b825181526020928301519281019290925250919050565b5f6101c0828403128015614d96575f80fd5b50614d9f6147c4565b614da98484614d55565b8152614db88460408501614d55565b6020820152614dca8460808501614d55565b6040820152614ddc8460c08501614d55565b6060820152614def846101008501614d55565b6080820152614e02846101408501614d55565b60a0820152614e15846101808501614d55565b60c08201529392505050565b6001600160601b038316815281518051602080840191909152015160408201526101e0810160208381015180516060850152908101516080840152506040830151805160a0840152602081015160c0840152506060830151805160e08401526020810151610100840152506080830151805161012084015260208101516101408401525060a0830151805161016084015260208101516101808401525060c083015180516101a084015260208101516101c0840152509392505050565b6001600160401b03811681146141d9575f80fd5b5f60208284031215614f02575f80fd5b81516127e781614ede565b8251815260208084015181830152825160408301528201516060820152608081016127e7565b5f614f4061487b84614838565b9050828152838383011115614f53575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f830112614f78575f80fd5b6127e783835160208501614f33565b5f60208284031215614f97575f80fd5b81516001600160401b03811115614fac575f80fd5b820160808185031215614fbd575f80fd5b614fc56147e6565b81516001600160401b03811115614fda575f80fd5b8201601f81018613614fea575f80fd5b614ff986825160208401614f33565b82525061500860208301614ac1565b602082015261501960408301614ac1565b604082015260608201516001600160401b03811115615036575f80fd5b61504286828501614f69565b606083015250949350505050565b5f60208284031215615060575f80fd5b81516127e781614acc565b5f8085851115615079575f80fd5b83861115615085575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156150c3576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60e08284031215615119575f80fd5b6151216147c4565b905061512c82614a22565b815261513a60208301614a22565b602082015261514b60408301614ada565b604082015261515c60608301614a9b565b606082015261516d60808301614ac1565b608082015261517e60a08301614ac1565b60a082015260c08201516001600160401b0381111561519b575f80fd5b6151a784828501614f69565b60c08301525092915050565b5f80604083850312156151c4575f80fd5b82516001600160401b038111156151d9575f80fd5b6151e585828601615109565b925050602083015161496681614736565b5f60208284031215615206575f80fd5b81516001600160401b0381111561521b575f80fd5b613bf184828501615109565b6001600160601b0383168152604060208201525f82516080604084015261525160c0840182614625565b60208501516001600160a01b0390811660608681019190915260408701519091166080860152850151848203603f190160a0860152909150614b638282614625565b6001600160601b038716815260c060208201525f6152b460c0830188614625565b90508560408301528460608301528360808301528260a0830152979650505050505050565b5f80604083850312156152ea575f80fd5b82516152f581614736565b602084015190925061496681614736565b5f60e0828403128015615317575f80fd5b506153206147c4565b825161532b816146df565b8152602083015161533b8161470e565b6020820152604083015161534e8161470e565b604082015260608301516153618161470e565b606082015261537260808401614a9b565b608082015260a0838101519082015260c0928301519281019290925250919050565b6001600160601b0384168152606060208201525f6153b56060830185614c92565b905060ff83166040830152949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f60ff821660ff81036153fd57634e487b7160e01b5f52601160045260245ffd5b60010192915050565b5f82518060208501845e5f920191825250919050565b5f806040838503121561542d575f80fd5b82516154388161470e565b602084015190925063ffffffff81168114614966575f80fd5b601f82111561410d57805f5260205f20601f840160051c810160208510156154765750805b601f840160051c820191505b81811015615495575f8155600101615482565b5050505050565b81516001600160401b038111156154b5576154b5614765565b6154c9816154c38454614a48565b84615451565b6020601f8211600181146154fb575f83156154e45750848201515b5f19600385901b1c1916600184901b178455615495565b5f84815260208120601f198516915b8281101561552a578785015182556020948501946001909201910161550a565b508482101561554757868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220b37c714b69802270f9d57354822b4bfaa5ed0ac1e10b42050e186b5287fd9fab64736f6c634300081a0033",
1112
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80635ab1bd53116100f3578063893d20e811610093578063b68d18091161006e578063b68d1809146103ed578063bf7e214f146103f4578063c142a303146103fc578063deaa59df1461040f575f80fd5b8063893d20e8146103b05780638fb36037146103b8578063ada9652e146103d9575f80fd5b806367ba1c10116100ce57806367ba1c10146103505780636c741e781461036357806376b707b7146103835780637a9e5e4b1461039d575f80fd5b80635ab1bd53146102fb5780636078a3b214610320578063644c45e014610333575f80fd5b8063211e28b61161015e578063329d6e7411610139578063329d6e74146102af57806337a897ee146102c2578063419197fe146102d557806349bb9e4b146102e8575f80fd5b8063211e28b61461027f57806322f3e2d4146102945780632d46f5df1461029c575f80fd5b806301ffc9a7146101a55780630d8e6e2c146101e65780630fec111c14610202578063138461e0146102175780631c6b2190146102375780631eff4b221461024a575b5f80fd5b6101d16101b33660046145fe565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101ee610422565b60405162ffffff90911681526020016101dd565b61020a6104a9565b6040516101dd9190614653565b61021f610635565b6040516001600160601b0390911681526020016101dd565b61021f6102453660046146f3565b61063f565b6102717f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b61029261028d36600461471b565b610ba2565b005b6101d1610c83565b61021f6102aa36600461474a565b610cfa565b6102926102bd3660046148b0565b61119c565b6102926102d0366004614910565b6112e6565b6102926102e336600461493a565b6115fe565b6102926102f6366004614971565b611757565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61021f61032e36600461474a565b611845565b5f80516020615557833981519152546001600160601b031661021f565b61029261035e366004614910565b61190c565b61036b611c8b565b6040516001600160401b0390911681526020016101dd565b61038b611d17565b60405160ff90911681526020016101dd565b6102926103ab36600461474a565b611d7f565b610308611e01565b6103c0611f32565b6040516001600160e01b031990911681526020016101dd565b6102715f8051602061555783398151915281565b600b61038b565b610308611f67565b61029261040a3660046149bd565b611f82565b61029261041d36600461474a565b612316565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610480573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614a00565b905090565b6104b16144dd565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610527573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061054b9190614a2d565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610593611e01565b6001600160a01b031681526020018260010180546105b090614a48565b80601f01602080910402602001604051908101604052809291908181526020018280546105dc90614a48565b80156106275780601f106105fe57610100808354040283529160200191610627565b820191905f5260205f20905b81548152906001019060200180831161060a57829003601f168201915b505050505081525091505090565b5f6104a430612455565b5f61064c335b5f3661264e565b5f80610658600b61274c565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610699573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106bd9190614a80565b604051630232ca4960e01b81526001600160601b03851660048201529091505f906001600160a01b03831690630232ca4990602401602060405180830381865afa15801561070d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107319190614a2d565b90508594506107aa8673__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015610781573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107a59190614a2d565b612762565b156107b3578094505b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af4158015610809573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061082d9190614aa6565b1561084b5760405163b079ec2b60e01b815260040160405180910390fd5b61085585826127ee565b1561088b5760405163151dbb3f60e01b81526001600160601b038087166004830152821660248201526044015b60405180910390fd5b60025f9054906101000a90046001600160a01b03166001600160a01b031663346696cc846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061090e9190614a80565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526001600160601b038088166024830152881660448201526064015f604051808303815f87803b158015610963575f80fd5b505af1158015610975573d5f803e3d5ffd5b505050505f61098c6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156109d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109fd9190614a80565b60405163a310e2a360e01b81526001600160601b03871660048201529091505f906001600160a01b0385169063a310e2a390602401602060405180830381865afa158015610a4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a719190614a80565b90507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde98683836001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ad2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610af69190614a80565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908916606082015260800160405180910390a1604051633fd3433360e01b81526001600160a01b0383811660048301526001600160601b0389166024830152821690633fd34333906044015f604051808303815f87803b158015610b81575f80fd5b505af1158015610b93573d5f803e3d5ffd5b50505050505050505050919050565b610bab33610645565b5f610bb7600b5f612838565b9150505f339050816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bfa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c1e9190614a80565b604051630d99633160e01b81526001600160a01b03838116600483015285151560248301529190911690630d996331906044015f604051808303815f87803b158015610c68575f80fd5b505af1158015610c7a573d5f803e3d5ffd5b50505050505050565b5f610c8c611f67565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610cd0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cf49190614aa6565b15905090565b5f610d036129bc565b5f610d166001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610d5a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d7e9190614a2d565b9050335f610d8c85846129f3565b915050610dab8160400151610d9f600c90565b60ff9081169116141590565b15610de357604080820151905163f0b751ab60e01b81526001600160a01b038716600482015260ff9091166024820152604401610882565b5f826001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e20573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e449190614a80565b90505f836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e83573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ea79190614a80565b905086610eb683838387612d95565b96505f816001600160a01b031663c108bd4c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015610ef4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610f1b9190810190614b6d565b905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610f64573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f889190614a2d565b6001600160601b031660a08201526040805163bc1b392d60e01b8152905173__$94a2c899be079b00d952d0d84fffaa5c34$__9163bc1b392d9160048083019260209291908290030181865af4158015610fe4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110089190614a2d565b6001600160601b031660c0820152606081015160ff166001600160401b0381111561103557611035614765565b60405190808252806020026020018201604052801561105e578160200160208202803683370190505b5060e0820152604051637f1773c960e11b81526001600160a01b0384169063fe2ee79290611092908b908590600401614d34565b5f604051808303815f87803b1580156110a9575f80fd5b505af11580156110bb573d5f803e3d5ffd5b50505050826001600160a01b031663bedaa84689846001600160a01b031663844e0f206040518163ffffffff1660e01b81526004016101c060405180830381865afa15801561110c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111309190614d84565b6040518363ffffffff1660e01b815260040161114d929190614e21565b5f604051808303815f87803b158015611164575f80fd5b505af1158015611176573d5f803e3d5ffd5b505050505050505050505061119760015f8051602061559783398151915255565b919050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6111be610422565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156111fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112209190614ef2565b5f805160206155b78339815191528054600160401b900460ff1680611252575080546001600160401b03808416911610155b156112705760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561129a836131ea565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f806112f2600e61274c565b915091505f80611361836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611337573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061135b9190614a80565b856131f2565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151896040518363ffffffff1660e01b81526004016113a3929190614f0d565b602060405180830381865af41580156113be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113e29190614aa6565b6114285761141d836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084604001518a6132f4565b506040810186905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161146491908a90600401614f0d565b602060405180830381865af415801561147f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114a39190614aa6565b6114f7576114ec836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460600151896132f4565b506060810185905260015b8015610c7a57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611539573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061155d9190614a80565b6001600160a01b031663462d5a8484846040518363ffffffff1660e01b815260040161158a929190614e21565b5f604051808303815f87803b1580156115a1575f80fd5b505af11580156115b3573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a150505050505050565b5f8061160a600b61274c565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561164b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061166f9190614a80565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa1580156116bb573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526116e29190810190614f87565b604090810151905163ea0b3c7360e01b81526001600160a01b0387811660048301526001600160601b03871660248301529192509082169063ea0b3c73906044015f604051808303815f87803b15801561173a575f80fd5b505af115801561174c573d5f803e3d5ffd5b505050505050505050565b5f805160206155b78339815191528054600160401b810460ff1615906001600160401b03165f811580156117885750825b90505f826001600160401b031660011480156117a35750303b155b9050811580156117b1575080155b156117cf5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156117f957845460ff60401b1916600160401b1785555b6118038787613347565b8315610c7a57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016115ed565b5f8080611852600b61274c565b915091505f8061186286856129f3565b6040810151919350915061187e81600f5b60ff90811691161490565b1561189c5786611890858783866134df565b98975050505050505050565b6118a781600e611873565b156118c3576118b8848685856138d0565b979650505050505050565b6118ce81600d611873565b156118df576118b884868585613bf9565b60405163f0b751ab60e01b81526001600160a01b038816600482015260ff82166024820152604401610882565b6119146129bc565b5f80611920600c61274c565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611961573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119859190614a80565b604051636a05a41360e01b81526001600160601b03851660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa1580156119d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119f79190614d84565b805160405162acc93760e61b81529192505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611a3591908a90600401614f0d565b602060405180830381865af4158015611a50573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a749190614aa6565b611ab057611aa9846040518060400160405280600a81526020016950726f6475637446656560b01b815250845f0151896132f4565b5084815260015b602082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611aec91908990600401614f0d565b602060405180830381865af4158015611b07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b2b9190614aa6565b611b6f57611b64846040518060400160405280600d81526020016c50726f63657373696e6746656560981b8152508460200151886132f4565b506020810184905260015b8015611c6d57826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bb1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bd59190614a80565b6001600160a01b031663462d5a8485846040518363ffffffff1660e01b8152600401611c02929190614e21565b5f604051808303815f87803b158015611c19575f80fd5b505af1158015611c2b573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b50505050611c8760015f8051602061559783398151915255565b5050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b611cb0611d17565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611cf3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614ef2565b5f611d20611f67565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d5b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190615050565b33611d88611f67565b6001600160a01b0316816001600160a01b031614611dc35760405162d1953b60e31b81526001600160a01b0382166004820152602401610882565b816001600160a01b03163b5f03611df8576040516361798f2f60e11b81526001600160a01b0383166004820152602401610882565b611c8782613e86565b5f805f8051602061555783398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611e6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e919190614aa6565b15611f1c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611ef2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f169190614a80565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061557783398151915280545f9190600160a01b900460ff16611f59575f611f16565b638fb3603760e01b91505090565b5f80516020615577833981519152546001600160a01b031690565b5f80611f8e600f61274c565b915091505f80611fd3836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611337573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc083608001518a6040518363ffffffff1660e01b8152600401612015929190614f0d565b602060405180830381865af4158015612030573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120549190614aa6565b612092576120878360405180604001604052806007815260200166506f6f6c46656560c81b81525084608001518b6132f4565b506080810187905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916120ce91908b90600401614f0d565b602060405180830381865af41580156120e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061210d9190614aa6565b61214e57612143836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460a001518a6132f4565b5060a0810186905260015b60c082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161218a91908a90600401614f0d565b602060405180830381865af41580156121a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121c99190614aa6565b61220e57612203836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508460c00151896132f4565b5060c0810185905260015b801561230c57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612250573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122749190614a80565b6001600160a01b031663462d5a8484846040518363ffffffff1660e01b81526004016122a1929190614e21565b5f604051808303815f87803b1580156122b8575f80fd5b505af11580156122ca573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15b5050505050505050565b5f80612322600b61274c565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612363573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123879190614a80565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa1580156123d3573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526123fa9190810190614f87565b604090810151905163deaa59df60e01b81526001600160a01b0386811660048301529192509082169063deaa59df906024015f604051808303815f87803b158015612443575f80fd5b505af115801561230c573d5f803e3d5ffd5b5f805f8051602061555783398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156124c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124e59190614aa6565b156125115780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610882565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612563573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125879190614aa6565b6125af5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610882565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612601573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126259190614a2d565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f805160206155778339815191525f80612686612669611f67565b873061267860045f8a8c61506b565b61268191615092565b613ee6565b91509150816127445763ffffffff81161561272157825460ff60a01b1916600160a01b1783556126b4611f67565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016126e3939291906150ca565b5f604051808303815f87803b1580156126fa575f80fd5b505af115801561270c573d5f803e3d5ffd5b5050845460ff60a01b19168555506127449050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610882565b505050505050565b5f80612759836001612838565b91509150915091565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af41580156127c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127e79190614aa6565b9392505050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c906044016127a8565b5f806128426144dd565b5f61284e86600b610d9f565b156129085773__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed361287f6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260ff8916604482015287151560648201526084015f60405180830381865af41580156128d7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526128fe91908101906151b3565b90925090506129b0565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__63aa13a9886129346001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015287151560448201526064015f60405180830381865af4158015612983573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526129aa91908101906151b3565b90925090505b90519590945092505050565b5f805160206155978339815191528054600119016129ed57604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b5f6129fc6144dd565b60405163d905700760e01b81526001600160a01b038516600482015263a9c1bc6f60e01b602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d905700790604401602060405180830381865af4158015612a5f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a839190614aa6565b612aab5760405163b03d8c4360e01b81526001600160a01b0385166004820152602401610882565b839150816001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612ae9573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612b1091908101906151f6565b9050612b20816020015184613fee565b15612b6657602081015160405163953133f160e01b81526001600160a01b03861660048201526001600160601b0380861660248301529091166044820152606401610882565b612bd1826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ba5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bc99190615050565b610d9f611d17565b15612c745783612bdf611d17565b836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c1b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c3f9190615050565b60405163459d07b760e11b81526001600160a01b03909316600484015260ff9182166024840152166044820152606401610882565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0386811660048301529190911690635e546bee90602401602060405180830381865afa158015612cc6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cea9190614a2d565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612d41573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d659190614aa6565b15612d8e57604051632176772160e11b81526001600160a01b0385166004820152602401610882565b9250929050565b5f612da68260400151611873600c90565b612e3b5760035460408381015160a08501519151631fa14e4960e11b81526001600160a01b03878116600483015260ff9092166024820152918116604483015290911690633f429c92906064015f604051808303815f875af1158015612e0e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612e3591908101906151f6565b51612eb8565b60035460a0830151604051635d96628960e01b81526001600160a01b0386811660048301529182166024820152911690635d966289906044015f604051808303815f875af1158015612e8f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612eb691908101906151f6565b515b90505f836001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612ef6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612f1d9190810190614f87565b602081015190915073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d612f516001546001600160a01b031690565b87848b6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f8f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fb39190614a80565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af415801561300d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130319190614a80565b6001600160a01b03908116604080850191909152516328f72e8760e01b8152908716906328f72e879061306a9086908690600401615227565b5f604051808303815f87803b158015613081575f80fd5b505af1158015613093573d5f803e3d5ffd5b50505050846001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af11580156130d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130f89190614a2d565b5060408481015190516366704a7d60e01b81526001600160a01b03878116600483015260ff9092166024820152908816906366704a7d906044015f604051808303815f87803b158015613149575f80fd5b505af115801561315b573d5f803e3d5ffd5b5050505060408481015160a08087015183516001600160601b038816815260ff90931660208401526001600160a01b0389811684860152858116606085015216608083015291517f51007d5babab22cf2beac27f1d50bb63f052eb2948904e9afee33fde1f2c5d46929181900390910190a15050949350505050565b60015f8051602061559783398151915255565b6101a1614038565b5f6131fb61451a565b6001546001600160a01b031660405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015613254573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132789190614a2d565b604051636a05a41360e01b81526001600160601b03821660048201529092506001600160a01b03851690636a05a413906024016101c060405180830381865afa1580156132c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132eb9190614d84565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db94613339948a948a949293909290615293565b60405180910390a150505050565b5f805160206155b78339815191528054600160401b810460ff1615906001600160401b03165f811580156133785750825b90505f826001600160401b031660011480156133935750303b155b9050811580156133a1575080155b156133bf5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156133e957845460ff60401b1916600160401b1785555b5f80878060200190518101906133ff91906152d9565b9150915061340e82828b614070565b6134186028614112565b600280546001600160a01b0319166001600160a01b039290921691909117815561344190614112565b600380546001600160a01b0319166001600160a01b039290921691909117905561346b600a614112565b600480546001600160a01b0319166001600160a01b039290921691909117905561349b637e20b99760e01b6141a9565b50508315610c7a57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016115ed565b5f80856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561351d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135419190614a80565b90505f866001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613580573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135a49190614a80565b90505f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136079190614a80565b905061361582828888612d95565b6040516302d764c760e21b81526001600160601b03891660048201529094505f906001600160a01b03851690630b5d931c906024015f60405180830381865afa158015613664573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261368b9190810190614b6d565b60a08101516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156136ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061370e9190614aa6565b156137455760a08101516040516397f129bf60e01b81526001600160601b03808b1660048301529091166024820152604401610882565b816001600160a01b031663fe7fc94186896001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa158015613791573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137b59190615306565b604080516001600160e01b031960e086901b1681526001600160601b03938416600482015282519093166024840152602082015115156044840152810151151560648301526060810151151560848301526080810151151560a483015260a081015160c483015260c0015160e4820152610104015f604051808303815f87803b158015613840575f80fd5b505af1158015613852573d5f803e3d5ffd5b505050506001600160601b03851660a08201526001600160a01b03821663cb2e87d2898360ff5b6040518463ffffffff1660e01b815260040161389793929190615394565b5f604051808303815f87803b1580156138ae575f80fd5b505af11580156138c0573d5f803e3d5ffd5b5050505050505050949350505050565b5f6138d96129bc565b5f856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613916573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061393a9190614a80565b90505f866001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613979573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061399d9190614a80565b90505f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156139dc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a009190614a80565b9050613a0e82828888612d95565b6040516302d764c760e21b81526001600160601b03891660048201529094505f906001600160a01b03851690630b5d931c906024015f60405180830381865afa158015613a5d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613a849190810190614b6d565b90508060400151613ab35760405163931d421760e01b81526001600160601b0389166004820152602401610882565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613b0f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b339190614aa6565b15613b6a5760c08101516040516323a0cc7160e11b81526001600160601b03808b1660048301529091166024820152604401610882565b6001600160601b03851660c082015260405163659743e960e11b81526001600160a01b0383169063cb2e87d290613baa908b90859060ff90600401615394565b5f604051808303815f87803b158015613bc1575f80fd5b505af1158015613bd3573d5f803e3d5ffd5b5050505050505050613bf160015f8051602061559783398151915255565b949350505050565b5f80856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c37573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c5b9190614a80565b90505f866001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c9a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cbe9190614a80565b90505f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613cfd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d219190614a80565b9050613d2f82828888612d95565b6040516302d764c760e21b81526001600160601b03891660048201529094505f906001600160a01b03851690630b5d931c906024015f60405180830381865afa158015613d7e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613da59190810190614b6d565b9050806060015160ff165f03613dd957604051634435e56b60e01b81526001600160601b0389166004820152602401610882565b806060015160ff16816080015160ff1603613e215760608101516040516379060d1360e11b81526001600160601b038a16600482015260ff9091166024820152604401610882565b848160e00151826080015160ff1681518110613e3f57613e3f6153c8565b6001600160601b039092166020928302919091019091015260808101805190613e67826153dc565b60ff169052506001600160a01b03821663cb2e87d2898361387960ff90565b5f8051602061557783398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613f549190615406565b5f60405180830381855afa9150503d805f8114613f8c576040519150601f19603f3d011682016040523d82523d5f602084013e613f91565b606091505b50915091508115613fe3576040815110613fc35780806020019051810190613fb9919061541c565b9094509250613fe3565b6020815110613fe35780806020019051810190613fe09190614aa6565b93505b505094509492505050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044016127a8565b5f805160206155b783398151915254600160401b900460ff1661406e57604051631afcd79f60e31b815260040160405180910390fd5b565b614078614038565b6140806141dc565b6140fd8383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156140c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140e59190614a2d565b60085f8660405180602001604052805f8152506141ec565b61410d63daf9067160e01b6141a9565b505050565b5f6141256001546001600160a01b031690565b6001600160a01b031663d39e60438361413c611d17565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561417f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141a39190614a80565b92915050565b6141b1614038565b6141d9816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b6141e4614038565b61406e614329565b6141f4614038565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af415801561424a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061426e9190614aa6565b6142965760405163cf6935e560e01b81526001600160a01b0388166004820152602401610882565b61429f87614331565b6142a98683614342565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101614318838261549c565b5061230c634a531f3360e01b6141a9565b6131d7614038565b614339614038565b6141d9816143b8565b61434a614038565b6143526143c9565b61435b82614411565b6001600160a01b0381166143825760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061555783398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b6143c0614038565b6141d981613e86565b6143d1614038565b61406e6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b614419614038565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af415801561446f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906144939190614aa6565b6144bb5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610882565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6040805161012081019091525f60e082018181526101008301919091528190815260200161455960405180604001604052805f81526020015f81525090565b815260200161457960405180604001604052805f81526020015f81525090565b815260200161459960405180604001604052805f81526020015f81525090565b81526020016145b960405180604001604052805f81526020015f81525090565b81526020016145d960405180604001604052805f81526020015f81525090565b81526020016145f960405180604001604052805f81526020015f81525090565b905290565b5f6020828403121561460e575f80fd5b81356001600160e01b0319811681146127e7575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f606083015161469b608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152613bf1610100840182614625565b6001600160601b03811681146141d9575f80fd5b5f60208284031215614703575f80fd5b81356127e7816146df565b80151581146141d9575f80fd5b5f6020828403121561472b575f80fd5b81356127e78161470e565b6001600160a01b03811681146141d9575f80fd5b5f6020828403121561475a575f80fd5b81356127e781614736565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b038111828210171561479b5761479b614765565b60405290565b60405161010081016001600160401b038111828210171561479b5761479b614765565b60405160e081016001600160401b038111828210171561479b5761479b614765565b604051608081016001600160401b038111828210171561479b5761479b614765565b604051601f8201601f191681016001600160401b038111828210171561483057614830614765565b604052919050565b5f6001600160401b0382111561485057614850614765565b50601f01601f191660200190565b5f82601f83011261486d575f80fd5b813561488061487b82614838565b614808565b818152846020838601011115614894575f80fd5b816020850160208301375f918101602001919091529392505050565b5f602082840312156148c0575f80fd5b81356001600160401b038111156148d5575f80fd5b613bf18482850161485e565b5f604082840312156148f1575f80fd5b6148f9614779565b823581526020928301359281019290925250919050565b5f8060808385031215614921575f80fd5b61492b84846148e1565b91506132eb84604085016148e1565b5f806040838503121561494b575f80fd5b823561495681614736565b91506020830135614966816146df565b809150509250929050565b5f8060408385031215614982575f80fd5b823561498d81614736565b915060208301356001600160401b038111156149a7575f80fd5b6149b38582860161485e565b9150509250929050565b5f805f60c084860312156149cf575f80fd5b6149d985856148e1565b92506149e885604086016148e1565b91506149f785608086016148e1565b90509250925092565b5f60208284031215614a10575f80fd5b815162ffffff811681146127e7575f80fd5b8051611197816146df565b5f60208284031215614a3d575f80fd5b81516127e7816146df565b600181811c90821680614a5c57607f821691505b602082108103614a7a57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215614a90575f80fd5b81516127e781614736565b80516111978161470e565b5f60208284031215614ab6575f80fd5b81516127e78161470e565b805161119781614736565b60ff811681146141d9575f80fd5b805161119781614acc565b5f82601f830112614af4575f80fd5b81516001600160401b03811115614b0d57614b0d614765565b8060051b614b1d60208201614808565b91825260208185018101929081019086841115614b38575f80fd5b6020860192505b83831015614b63578251614b52816146df565b825260209283019290910190614b3f565b9695505050505050565b5f60208284031215614b7d575f80fd5b81516001600160401b03811115614b92575f80fd5b82016101008185031215614ba4575f80fd5b614bac6147a1565b614bb582614a9b565b8152614bc360208301614a9b565b6020820152614bd460408301614a9b565b6040820152614be560608301614ada565b6060820152614bf660808301614ada565b6080820152614c0760a08301614a22565b60a0820152614c1860c08301614a22565b60c082015260e08201516001600160401b03811115614c35575f80fd5b614c4186828501614ae5565b60e083015250949350505050565b5f8151808452602084019350602083015f5b82811015614c885781516001600160601b0316865260209586019590910190600101614c61565b5093949350505050565b8051151582526020810151151560208301525f6040820151614cb8604085018215159052565b506060820151614ccd606085018260ff169052565b506080820151614ce2608085018260ff169052565b5060a0820151614cfd60a08501826001600160601b03169052565b5060c0820151614d1860c08501826001600160601b03169052565b5060e082015161010060e0850152613bf1610100850182614c4f565b6001600160601b0383168152604060208201525f613bf16040830184614c92565b5f60408284031215614d65575f80fd5b614d6d614779565b825181526020928301519281019290925250919050565b5f6101c0828403128015614d96575f80fd5b50614d9f6147c4565b614da98484614d55565b8152614db88460408501614d55565b6020820152614dca8460808501614d55565b6040820152614ddc8460c08501614d55565b6060820152614def846101008501614d55565b6080820152614e02846101408501614d55565b60a0820152614e15846101808501614d55565b60c08201529392505050565b6001600160601b038316815281518051602080840191909152015160408201526101e0810160208381015180516060850152908101516080840152506040830151805160a0840152602081015160c0840152506060830151805160e08401526020810151610100840152506080830151805161012084015260208101516101408401525060a0830151805161016084015260208101516101808401525060c083015180516101a084015260208101516101c0840152509392505050565b6001600160401b03811681146141d9575f80fd5b5f60208284031215614f02575f80fd5b81516127e781614ede565b8251815260208084015181830152825160408301528201516060820152608081016127e7565b5f614f4061487b84614838565b9050828152838383011115614f53575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f830112614f78575f80fd5b6127e783835160208501614f33565b5f60208284031215614f97575f80fd5b81516001600160401b03811115614fac575f80fd5b820160808185031215614fbd575f80fd5b614fc56147e6565b81516001600160401b03811115614fda575f80fd5b8201601f81018613614fea575f80fd5b614ff986825160208401614f33565b82525061500860208301614ac1565b602082015261501960408301614ac1565b604082015260608201516001600160401b03811115615036575f80fd5b61504286828501614f69565b606083015250949350505050565b5f60208284031215615060575f80fd5b81516127e781614acc565b5f8085851115615079575f80fd5b83861115615085575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156150c3576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60e08284031215615119575f80fd5b6151216147c4565b905061512c82614a22565b815261513a60208301614a22565b602082015261514b60408301614ada565b604082015261515c60608301614a9b565b606082015261516d60808301614ac1565b608082015261517e60a08301614ac1565b60a082015260c08201516001600160401b0381111561519b575f80fd5b6151a784828501614f69565b60c08301525092915050565b5f80604083850312156151c4575f80fd5b82516001600160401b038111156151d9575f80fd5b6151e585828601615109565b925050602083015161496681614736565b5f60208284031215615206575f80fd5b81516001600160401b0381111561521b575f80fd5b613bf184828501615109565b6001600160601b0383168152604060208201525f82516080604084015261525160c0840182614625565b60208501516001600160a01b0390811660608681019190915260408701519091166080860152850151848203603f190160a0860152909150614b638282614625565b6001600160601b038716815260c060208201525f6152b460c0830188614625565b90508560408301528460608301528360808301528260a0830152979650505050505050565b5f80604083850312156152ea575f80fd5b82516152f581614736565b602084015190925061496681614736565b5f60e0828403128015615317575f80fd5b506153206147c4565b825161532b816146df565b8152602083015161533b8161470e565b6020820152604083015161534e8161470e565b604082015260608301516153618161470e565b606082015261537260808401614a9b565b608082015260a0838101519082015260c0928301519281019290925250919050565b6001600160601b0384168152606060208201525f6153b56060830185614c92565b905060ff83166040830152949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f60ff821660ff81036153fd57634e487b7160e01b5f52601160045260245ffd5b60010192915050565b5f82518060208501845e5f920191825250919050565b5f806040838503121561542d575f80fd5b82516154388161470e565b602084015190925063ffffffff81168114614966575f80fd5b601f82111561410d57805f5260205f20601f840160051c810160208510156154765750805b601f840160051c820191505b81811015615495575f8155600101615482565b5050505050565b81516001600160401b038111156154b5576154b5614765565b6154c9816154c38454614a48565b84615451565b6020601f8211600181146154fb575f83156154e45750848201515b5f19600385901b1c1916600184901b178455615495565b5f84815260208120601f198516915b8281101561552a578785015182556020948501946001909201910161550a565b508482101561554757868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220b37c714b69802270f9d57354822b4bfaa5ed0ac1e10b42050e186b5287fd9fab64736f6c634300081a0033",
1113
+ "linkReferences": {
1114
+ "contracts/shared/ContractLib.sol": {
1115
+ "ContractLib": [
1116
+ {
1117
+ "length": 20,
1118
+ "start": 10539
1119
+ },
1120
+ {
1121
+ "length": 20,
1122
+ "start": 10720
1123
+ },
1124
+ {
1125
+ "length": 20,
1126
+ "start": 11005
1127
+ },
1128
+ {
1129
+ "length": 20,
1130
+ "start": 17128
1131
+ },
1132
+ {
1133
+ "length": 20,
1134
+ "start": 17677
1135
+ }
1136
+ ]
1137
+ },
1138
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
1139
+ "TokenHandlerDeployerLib": [
1140
+ {
1141
+ "length": 20,
1142
+ "start": 12285
1143
+ }
1144
+ ]
1145
+ },
1146
+ "contracts/type/Amount.sol": {
1147
+ "AmountLib": [
1148
+ {
1149
+ "length": 20,
1150
+ "start": 2066
1151
+ },
1152
+ {
1153
+ "length": 20,
1154
+ "start": 2215
1155
+ },
1156
+ {
1157
+ "length": 20,
1158
+ "start": 10336
1159
+ },
1160
+ {
1161
+ "length": 20,
1162
+ "start": 10476
1163
+ }
1164
+ ]
1165
+ },
1166
+ "contracts/type/Fee.sol": {
1167
+ "FeeLib": [
1168
+ {
1169
+ "length": 20,
1170
+ "start": 5182
1171
+ },
1172
+ {
1173
+ "length": 20,
1174
+ "start": 5393
1175
+ },
1176
+ {
1177
+ "length": 20,
1178
+ "start": 6882
1179
+ },
1180
+ {
1181
+ "length": 20,
1182
+ "start": 7065
1183
+ },
1184
+ {
1185
+ "length": 20,
1186
+ "start": 8368
1187
+ },
1188
+ {
1189
+ "length": 20,
1190
+ "start": 8571
1191
+ },
1192
+ {
1193
+ "length": 20,
1194
+ "start": 8759
1195
+ }
1196
+ ]
1197
+ },
1198
+ "contracts/type/NftId.sol": {
1199
+ "NftIdLib": [
1200
+ {
1201
+ "length": 20,
1202
+ "start": 1464
1203
+ },
1204
+ {
1205
+ "length": 20,
1206
+ "start": 4085
1207
+ },
1208
+ {
1209
+ "length": 20,
1210
+ "start": 4222
1211
+ },
1212
+ {
1213
+ "length": 20,
1214
+ "start": 7947
1215
+ },
1216
+ {
1217
+ "length": 20,
1218
+ "start": 9567
1219
+ },
1220
+ {
1221
+ "length": 20,
1222
+ "start": 11743
1223
+ },
1224
+ {
1225
+ "length": 20,
1226
+ "start": 14216
1227
+ },
1228
+ {
1229
+ "length": 20,
1230
+ "start": 15277
1231
+ },
1232
+ {
1233
+ "length": 20,
1234
+ "start": 16620
1235
+ }
1236
+ ]
1237
+ },
1238
+ "contracts/type/RoleId.sol": {
1239
+ "RoleIdLib": [
1240
+ {
1241
+ "length": 20,
1242
+ "start": 7524
1243
+ }
1244
+ ]
1245
+ },
1246
+ "contracts/type/Version.sol": {
1247
+ "VersionLib": [
1248
+ {
1249
+ "length": 20,
1250
+ "start": 1310
1251
+ },
1252
+ {
1253
+ "length": 20,
1254
+ "start": 4724
1255
+ }
1256
+ ]
1257
+ }
1258
+ },
1259
+ "deployedLinkReferences": {
1260
+ "contracts/shared/ContractLib.sol": {
1261
+ "ContractLib": [
1262
+ {
1263
+ "length": 20,
1264
+ "start": 10325
1265
+ },
1266
+ {
1267
+ "length": 20,
1268
+ "start": 10506
1269
+ },
1270
+ {
1271
+ "length": 20,
1272
+ "start": 10791
1273
+ },
1274
+ {
1275
+ "length": 20,
1276
+ "start": 16914
1277
+ },
1278
+ {
1279
+ "length": 20,
1280
+ "start": 17463
1281
+ }
1282
+ ]
1283
+ },
1284
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
1285
+ "TokenHandlerDeployerLib": [
1286
+ {
1287
+ "length": 20,
1288
+ "start": 12071
1289
+ }
1290
+ ]
1291
+ },
1292
+ "contracts/type/Amount.sol": {
1293
+ "AmountLib": [
1294
+ {
1295
+ "length": 20,
1296
+ "start": 1852
1297
+ },
1298
+ {
1299
+ "length": 20,
1300
+ "start": 2001
1301
+ },
1302
+ {
1303
+ "length": 20,
1304
+ "start": 10122
1305
+ },
1306
+ {
1307
+ "length": 20,
1308
+ "start": 10262
1309
+ }
1310
+ ]
1311
+ },
1312
+ "contracts/type/Fee.sol": {
1313
+ "FeeLib": [
1314
+ {
1315
+ "length": 20,
1316
+ "start": 4968
1317
+ },
1318
+ {
1319
+ "length": 20,
1320
+ "start": 5179
1321
+ },
1322
+ {
1323
+ "length": 20,
1324
+ "start": 6668
1325
+ },
1326
+ {
1327
+ "length": 20,
1328
+ "start": 6851
1329
+ },
1330
+ {
1331
+ "length": 20,
1332
+ "start": 8154
1333
+ },
1334
+ {
1335
+ "length": 20,
1336
+ "start": 8357
1337
+ },
1338
+ {
1339
+ "length": 20,
1340
+ "start": 8545
1341
+ }
1342
+ ]
1343
+ },
1344
+ "contracts/type/NftId.sol": {
1345
+ "NftIdLib": [
1346
+ {
1347
+ "length": 20,
1348
+ "start": 1250
1349
+ },
1350
+ {
1351
+ "length": 20,
1352
+ "start": 3871
1353
+ },
1354
+ {
1355
+ "length": 20,
1356
+ "start": 4008
1357
+ },
1358
+ {
1359
+ "length": 20,
1360
+ "start": 7733
1361
+ },
1362
+ {
1363
+ "length": 20,
1364
+ "start": 9353
1365
+ },
1366
+ {
1367
+ "length": 20,
1368
+ "start": 11529
1369
+ },
1370
+ {
1371
+ "length": 20,
1372
+ "start": 14002
1373
+ },
1374
+ {
1375
+ "length": 20,
1376
+ "start": 15063
1377
+ },
1378
+ {
1379
+ "length": 20,
1380
+ "start": 16406
1381
+ }
1382
+ ]
1383
+ },
1384
+ "contracts/type/RoleId.sol": {
1385
+ "RoleIdLib": [
1386
+ {
1387
+ "length": 20,
1388
+ "start": 7310
1389
+ }
1390
+ ]
1391
+ },
1392
+ "contracts/type/Version.sol": {
1393
+ "VersionLib": [
1394
+ {
1395
+ "length": 20,
1396
+ "start": 1096
1397
+ },
1398
+ {
1399
+ "length": 20,
1400
+ "start": 4510
1401
+ }
1402
+ ]
1403
+ }
1404
+ }
1405
+ }