@etherisc/gif-next 0.0.2-e9a637d-547 → 0.0.2-e9c25ee-730

Sign up to get free protection for your applications and to get access to all the features.
Files changed (728) hide show
  1. package/README.md +136 -22
  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 +1672 -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 +1255 -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 +790 -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 +1322 -0
  22. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +455 -0
  24. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +397 -0
  26. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  27. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +646 -0
  28. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1209 -0
  30. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +805 -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} +285 -324
  34. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1633 -0
  36. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +896 -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} +274 -275
  40. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  41. package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +339 -329
  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 +1445 -0
  46. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +805 -0
  48. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2002 -0
  50. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  51. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +805 -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 +1388 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +805 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1152 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1612 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +805 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  65. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2389 -0
  66. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  67. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +805 -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 +596 -94
  72. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  73. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +367 -106
  74. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  75. package/artifacts/contracts/instance/Instance.sol/Instance.json +585 -207
  76. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2366 -0
  78. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  79. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +902 -0
  80. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  81. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1985 -576
  82. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  83. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +378 -425
  84. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  85. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +163 -174
  86. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
  87. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +1927 -876
  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 +938 -0
  111. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  112. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +810 -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 +753 -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} +253 -241
  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} +320 -465
  127. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  128. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +805 -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 +289 -68
  135. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  136. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +886 -0
  137. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  138. package/artifacts/contracts/{instance/service → pool}/IPoolService.sol/IPoolService.json +609 -223
  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} +368 -426
  141. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  142. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -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} +455 -482
  153. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  154. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +805 -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 +997 -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 +349 -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 +911 -0
  179. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  180. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +764 -0
  181. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  182. package/artifacts/contracts/product/Product.sol/Product.json +1098 -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 +2195 -0
  201. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  202. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1053 -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 +174 -109
  207. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  208. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2160 -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 +1393 -0
  213. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  214. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +683 -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} +265 -186
  219. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  220. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1556 -0
  221. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  222. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +816 -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 +616 -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 +137 -131
  235. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  236. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1196 -0
  237. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  238. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +688 -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 +776 -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} +749 -587
  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 +1888 -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 +792 -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 +373 -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 +254 -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 +572 -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 +875 -0
  363. package/contracts/authorization/AccessAdminLib.sol +379 -0
  364. package/contracts/authorization/AccessManagerCloneable.sol +158 -0
  365. package/contracts/authorization/Authorization.sol +261 -0
  366. package/contracts/authorization/IAccess.sol +67 -0
  367. package/contracts/authorization/IAccessAdmin.sol +136 -0
  368. package/contracts/authorization/IAuthorization.sol +27 -0
  369. package/contracts/authorization/IServiceAuthorization.sol +78 -0
  370. package/contracts/authorization/ServiceAuthorization.sol +320 -0
  371. package/contracts/distribution/BasicDistribution.sol +141 -0
  372. package/contracts/distribution/BasicDistributionAuthorization.sol +67 -0
  373. package/contracts/distribution/Distribution.sol +245 -0
  374. package/contracts/distribution/DistributionService.sol +440 -0
  375. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  376. package/contracts/distribution/IDistributionComponent.sol +50 -0
  377. package/contracts/distribution/IDistributionService.sol +109 -0
  378. package/contracts/examples/fire/DamageLevel.sol +59 -0
  379. package/contracts/examples/fire/FirePool.sol +86 -0
  380. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  381. package/contracts/examples/fire/FireProduct.sol +433 -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 +81 -0
  385. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  386. package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
  387. package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
  388. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  389. package/contracts/examples/unpermissioned/SimpleProduct.sol +373 -0
  390. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  391. package/contracts/instance/BundleSet.sol +130 -0
  392. package/contracts/instance/IInstance.sol +117 -38
  393. package/contracts/instance/IInstanceService.sol +71 -50
  394. package/contracts/instance/Instance.sol +252 -110
  395. package/contracts/instance/InstanceAdmin.sol +569 -0
  396. package/contracts/instance/InstanceAuthorizationV3.sol +262 -0
  397. package/contracts/instance/InstanceReader.sol +528 -82
  398. package/contracts/instance/InstanceService.sol +385 -391
  399. package/contracts/instance/InstanceServiceManager.sol +14 -29
  400. package/contracts/instance/InstanceStore.sol +174 -95
  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 +9 -11
  409. package/contracts/instance/module/IComponents.sol +44 -23
  410. package/contracts/instance/module/IDistribution.sol +25 -12
  411. package/contracts/instance/module/IPolicy.sol +71 -38
  412. package/contracts/instance/module/IRisk.sol +6 -1
  413. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  414. package/contracts/oracle/BasicOracle.sol +45 -0
  415. package/contracts/oracle/BasicOracleAuthorization.sol +53 -0
  416. package/contracts/oracle/IOracle.sol +41 -0
  417. package/contracts/oracle/IOracleComponent.sol +33 -0
  418. package/contracts/oracle/IOracleService.sol +66 -0
  419. package/contracts/oracle/Oracle.sol +154 -0
  420. package/contracts/oracle/OracleService.sol +310 -0
  421. package/contracts/oracle/OracleServiceManager.sol +39 -0
  422. package/contracts/pool/BasicPool.sol +173 -0
  423. package/contracts/pool/BasicPoolAuthorization.sol +82 -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 +343 -0
  430. package/contracts/pool/PoolLib.sol +260 -0
  431. package/contracts/pool/PoolService.sol +733 -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 +49 -0
  436. package/contracts/product/BasicProductAuthorization.sol +61 -0
  437. package/contracts/product/ClaimService.sol +630 -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 +86 -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 +467 -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 +99 -30
  455. package/contracts/registry/IRegistryService.sol +34 -40
  456. package/contracts/registry/IRelease.sol +29 -0
  457. package/contracts/registry/ITransferInterceptor.sol +1 -2
  458. package/contracts/registry/Registry.sol +460 -197
  459. package/contracts/registry/RegistryAdmin.sol +291 -0
  460. package/contracts/registry/RegistryAuthorization.sol +277 -0
  461. package/contracts/registry/RegistryService.sol +89 -130
  462. package/contracts/registry/RegistryServiceManager.sol +23 -32
  463. package/contracts/registry/ReleaseAdmin.sol +268 -0
  464. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  465. package/contracts/registry/ReleaseRegistry.sol +517 -0
  466. package/contracts/registry/ServiceAuthorizationV3.sol +341 -0
  467. package/contracts/registry/TokenRegistry.sol +264 -64
  468. package/contracts/shared/Component.sol +210 -0
  469. package/contracts/shared/ComponentService.sol +708 -0
  470. package/contracts/shared/ComponentServiceManager.sol +38 -0
  471. package/contracts/shared/ComponentVerifyingService.sol +128 -0
  472. package/contracts/shared/ContractLib.sol +292 -0
  473. package/contracts/shared/IComponent.sol +58 -0
  474. package/contracts/shared/IComponentService.sol +112 -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 +13 -5
  483. package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +12 -4
  484. package/contracts/shared/InstanceLinkedComponent.sol +195 -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 +34 -40
  493. package/contracts/shared/TokenHandler.sol +322 -13
  494. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  495. package/contracts/staking/IStaking.sol +179 -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 +28 -26
  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 +307 -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 +180 -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/type/UFixed.sol +262 -0
  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 +104 -39
  530. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  531. package/contracts/{shared → upgradeability}/Versionable.sol +7 -4
  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 -1348
  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 -540
  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 -351
  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 -437
  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 -209
  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/UFixed.sol +0 -326
  728. /package/contracts/{types → type}/DistributorType.sol +0 -0
@@ -0,0 +1,1556 @@
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": "ErrorComponentServiceAlreadyRegistered",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "instanceAddress",
71
+ "type": "address"
72
+ },
73
+ {
74
+ "internalType": "VersionPart",
75
+ "name": "instanceVersion",
76
+ "type": "uint8"
77
+ }
78
+ ],
79
+ "name": "ErrorComponentServiceInstanceVersionMismatch",
80
+ "type": "error"
81
+ },
82
+ {
83
+ "inputs": [
84
+ {
85
+ "internalType": "address",
86
+ "name": "component",
87
+ "type": "address"
88
+ },
89
+ {
90
+ "internalType": "ObjectType",
91
+ "name": "requiredType",
92
+ "type": "uint8"
93
+ },
94
+ {
95
+ "internalType": "ObjectType",
96
+ "name": "componentType",
97
+ "type": "uint8"
98
+ }
99
+ ],
100
+ "name": "ErrorComponentServiceInvalidType",
101
+ "type": "error"
102
+ },
103
+ {
104
+ "inputs": [],
105
+ "name": "ErrorComponentServiceNewWalletAddressZero",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [
110
+ {
111
+ "internalType": "address",
112
+ "name": "component",
113
+ "type": "address"
114
+ }
115
+ ],
116
+ "name": "ErrorComponentServiceNotComponent",
117
+ "type": "error"
118
+ },
119
+ {
120
+ "inputs": [
121
+ {
122
+ "internalType": "address",
123
+ "name": "instanceAddress",
124
+ "type": "address"
125
+ },
126
+ {
127
+ "internalType": "ObjectType",
128
+ "name": "objectType",
129
+ "type": "uint8"
130
+ }
131
+ ],
132
+ "name": "ErrorComponentServiceNotInstance",
133
+ "type": "error"
134
+ },
135
+ {
136
+ "inputs": [
137
+ {
138
+ "internalType": "address",
139
+ "name": "component",
140
+ "type": "address"
141
+ }
142
+ ],
143
+ "name": "ErrorComponentServiceNotInstanceLinkedComponent",
144
+ "type": "error"
145
+ },
146
+ {
147
+ "inputs": [
148
+ {
149
+ "internalType": "address",
150
+ "name": "instanceAddress",
151
+ "type": "address"
152
+ }
153
+ ],
154
+ "name": "ErrorComponentServiceNotRegistered",
155
+ "type": "error"
156
+ },
157
+ {
158
+ "inputs": [
159
+ {
160
+ "internalType": "NftId",
161
+ "name": "nftId",
162
+ "type": "uint96"
163
+ },
164
+ {
165
+ "internalType": "ObjectType",
166
+ "name": "objectType",
167
+ "type": "uint8"
168
+ }
169
+ ],
170
+ "name": "ErrorComponentServiceParentNotInstance",
171
+ "type": "error"
172
+ },
173
+ {
174
+ "inputs": [
175
+ {
176
+ "internalType": "NftId",
177
+ "name": "nftId",
178
+ "type": "uint96"
179
+ },
180
+ {
181
+ "internalType": "ObjectType",
182
+ "name": "objectType",
183
+ "type": "uint8"
184
+ }
185
+ ],
186
+ "name": "ErrorComponentServiceParentNotProduct",
187
+ "type": "error"
188
+ },
189
+ {
190
+ "inputs": [
191
+ {
192
+ "internalType": "address",
193
+ "name": "component",
194
+ "type": "address"
195
+ },
196
+ {
197
+ "internalType": "VersionPart",
198
+ "name": "componentRelease",
199
+ "type": "uint8"
200
+ },
201
+ {
202
+ "internalType": "VersionPart",
203
+ "name": "parentRelease",
204
+ "type": "uint8"
205
+ }
206
+ ],
207
+ "name": "ErrorComponentServiceReleaseMismatch",
208
+ "type": "error"
209
+ },
210
+ {
211
+ "inputs": [
212
+ {
213
+ "internalType": "NftId",
214
+ "name": "senderNftId",
215
+ "type": "uint96"
216
+ },
217
+ {
218
+ "internalType": "NftId",
219
+ "name": "compnentParentNftId",
220
+ "type": "uint96"
221
+ }
222
+ ],
223
+ "name": "ErrorComponentServiceSenderNotComponentParent",
224
+ "type": "error"
225
+ },
226
+ {
227
+ "inputs": [
228
+ {
229
+ "internalType": "address",
230
+ "name": "sender",
231
+ "type": "address"
232
+ }
233
+ ],
234
+ "name": "ErrorComponentServiceSenderNotRegistered",
235
+ "type": "error"
236
+ },
237
+ {
238
+ "inputs": [
239
+ {
240
+ "internalType": "address",
241
+ "name": "token",
242
+ "type": "address"
243
+ }
244
+ ],
245
+ "name": "ErrorComponentServiceTokenInvalid",
246
+ "type": "error"
247
+ },
248
+ {
249
+ "inputs": [
250
+ {
251
+ "internalType": "address",
252
+ "name": "component",
253
+ "type": "address"
254
+ },
255
+ {
256
+ "internalType": "ObjectType",
257
+ "name": "invalidType",
258
+ "type": "uint8"
259
+ }
260
+ ],
261
+ "name": "ErrorComponentServiceTypeNotSupported",
262
+ "type": "error"
263
+ },
264
+ {
265
+ "inputs": [],
266
+ "name": "ErrorComponentServiceWalletAddressIsSameAsCurrent",
267
+ "type": "error"
268
+ },
269
+ {
270
+ "inputs": [],
271
+ "name": "ErrorComponentServiceWalletAddressZero",
272
+ "type": "error"
273
+ },
274
+ {
275
+ "inputs": [
276
+ {
277
+ "internalType": "address",
278
+ "name": "wallet",
279
+ "type": "address"
280
+ },
281
+ {
282
+ "internalType": "address",
283
+ "name": "spender",
284
+ "type": "address"
285
+ },
286
+ {
287
+ "internalType": "uint256",
288
+ "name": "allowance",
289
+ "type": "uint256"
290
+ },
291
+ {
292
+ "internalType": "uint256",
293
+ "name": "amount",
294
+ "type": "uint256"
295
+ }
296
+ ],
297
+ "name": "ErrorComponentServiceWalletAllowanceTooSmall",
298
+ "type": "error"
299
+ },
300
+ {
301
+ "inputs": [
302
+ {
303
+ "internalType": "Amount",
304
+ "name": "withdrawnAmount",
305
+ "type": "uint96"
306
+ },
307
+ {
308
+ "internalType": "Amount",
309
+ "name": "withdrawLimit",
310
+ "type": "uint96"
311
+ }
312
+ ],
313
+ "name": "ErrorComponentServiceWithdrawAmountExceedsLimit",
314
+ "type": "error"
315
+ },
316
+ {
317
+ "inputs": [],
318
+ "name": "ErrorComponentServiceWithdrawAmountIsZero",
319
+ "type": "error"
320
+ },
321
+ {
322
+ "inputs": [
323
+ {
324
+ "internalType": "NftId",
325
+ "name": "nftId",
326
+ "type": "uint96"
327
+ }
328
+ ],
329
+ "name": "ErrorNftOwnableAlreadyLinked",
330
+ "type": "error"
331
+ },
332
+ {
333
+ "inputs": [
334
+ {
335
+ "internalType": "address",
336
+ "name": "contractAddress",
337
+ "type": "address"
338
+ }
339
+ ],
340
+ "name": "ErrorNftOwnableContractNotRegistered",
341
+ "type": "error"
342
+ },
343
+ {
344
+ "inputs": [],
345
+ "name": "ErrorNftOwnableInitialOwnerZero",
346
+ "type": "error"
347
+ },
348
+ {
349
+ "inputs": [
350
+ {
351
+ "internalType": "NftId",
352
+ "name": "nftId",
353
+ "type": "uint96"
354
+ },
355
+ {
356
+ "internalType": "ObjectType",
357
+ "name": "expectedObjectType",
358
+ "type": "uint8"
359
+ }
360
+ ],
361
+ "name": "ErrorNftOwnableInvalidType",
362
+ "type": "error"
363
+ },
364
+ {
365
+ "inputs": [
366
+ {
367
+ "internalType": "address",
368
+ "name": "account",
369
+ "type": "address"
370
+ }
371
+ ],
372
+ "name": "ErrorNftOwnableNotOwner",
373
+ "type": "error"
374
+ },
375
+ {
376
+ "inputs": [
377
+ {
378
+ "internalType": "address",
379
+ "name": "registryAddress",
380
+ "type": "address"
381
+ }
382
+ ],
383
+ "name": "ErrorNotRegistry",
384
+ "type": "error"
385
+ },
386
+ {
387
+ "inputs": [
388
+ {
389
+ "internalType": "NftId",
390
+ "name": "productNftId",
391
+ "type": "uint96"
392
+ },
393
+ {
394
+ "internalType": "NftId",
395
+ "name": "distributionNftId",
396
+ "type": "uint96"
397
+ }
398
+ ],
399
+ "name": "ErrorProductServiceDistributionAlreadyRegistered",
400
+ "type": "error"
401
+ },
402
+ {
403
+ "inputs": [
404
+ {
405
+ "internalType": "NftId",
406
+ "name": "productNftId",
407
+ "type": "uint96"
408
+ }
409
+ ],
410
+ "name": "ErrorProductServiceNoDistributionExpected",
411
+ "type": "error"
412
+ },
413
+ {
414
+ "inputs": [
415
+ {
416
+ "internalType": "NftId",
417
+ "name": "productNftId",
418
+ "type": "uint96"
419
+ }
420
+ ],
421
+ "name": "ErrorProductServiceNoOraclesExpected",
422
+ "type": "error"
423
+ },
424
+ {
425
+ "inputs": [
426
+ {
427
+ "internalType": "NftId",
428
+ "name": "productNftId",
429
+ "type": "uint96"
430
+ },
431
+ {
432
+ "internalType": "uint8",
433
+ "name": "expectedOracles",
434
+ "type": "uint8"
435
+ }
436
+ ],
437
+ "name": "ErrorProductServiceOraclesAlreadyRegistered",
438
+ "type": "error"
439
+ },
440
+ {
441
+ "inputs": [
442
+ {
443
+ "internalType": "NftId",
444
+ "name": "productNftId",
445
+ "type": "uint96"
446
+ },
447
+ {
448
+ "internalType": "NftId",
449
+ "name": "poolNftId",
450
+ "type": "uint96"
451
+ }
452
+ ],
453
+ "name": "ErrorProductServicePoolAlreadyRegistered",
454
+ "type": "error"
455
+ },
456
+ {
457
+ "inputs": [],
458
+ "name": "ErrorRegisterableNotActive",
459
+ "type": "error"
460
+ },
461
+ {
462
+ "inputs": [],
463
+ "name": "InvalidInitialization",
464
+ "type": "error"
465
+ },
466
+ {
467
+ "inputs": [],
468
+ "name": "NotInitializing",
469
+ "type": "error"
470
+ },
471
+ {
472
+ "inputs": [],
473
+ "name": "ReentrancyGuardReentrantCall",
474
+ "type": "error"
475
+ },
476
+ {
477
+ "anonymous": false,
478
+ "inputs": [
479
+ {
480
+ "indexed": false,
481
+ "internalType": "address",
482
+ "name": "authority",
483
+ "type": "address"
484
+ }
485
+ ],
486
+ "name": "AuthorityUpdated",
487
+ "type": "event"
488
+ },
489
+ {
490
+ "anonymous": false,
491
+ "inputs": [
492
+ {
493
+ "indexed": false,
494
+ "internalType": "uint64",
495
+ "name": "version",
496
+ "type": "uint64"
497
+ }
498
+ ],
499
+ "name": "Initialized",
500
+ "type": "event"
501
+ },
502
+ {
503
+ "anonymous": false,
504
+ "inputs": [
505
+ {
506
+ "indexed": false,
507
+ "internalType": "NftId",
508
+ "name": "componentNftId",
509
+ "type": "uint96"
510
+ },
511
+ {
512
+ "indexed": false,
513
+ "internalType": "address",
514
+ "name": "recipient",
515
+ "type": "address"
516
+ },
517
+ {
518
+ "indexed": false,
519
+ "internalType": "address",
520
+ "name": "token",
521
+ "type": "address"
522
+ },
523
+ {
524
+ "indexed": false,
525
+ "internalType": "Amount",
526
+ "name": "withdrawnAmount",
527
+ "type": "uint96"
528
+ }
529
+ ],
530
+ "name": "LogComponentServiceComponentFeesWithdrawn",
531
+ "type": "event"
532
+ },
533
+ {
534
+ "anonymous": false,
535
+ "inputs": [
536
+ {
537
+ "indexed": false,
538
+ "internalType": "NftId",
539
+ "name": "distributionNftId",
540
+ "type": "uint96"
541
+ }
542
+ ],
543
+ "name": "LogComponentServiceDistributionFeesUpdated",
544
+ "type": "event"
545
+ },
546
+ {
547
+ "anonymous": false,
548
+ "inputs": [
549
+ {
550
+ "indexed": false,
551
+ "internalType": "NftId",
552
+ "name": "poolNftId",
553
+ "type": "uint96"
554
+ }
555
+ ],
556
+ "name": "LogComponentServicePoolFeesUpdated",
557
+ "type": "event"
558
+ },
559
+ {
560
+ "anonymous": false,
561
+ "inputs": [
562
+ {
563
+ "indexed": false,
564
+ "internalType": "NftId",
565
+ "name": "productNftId",
566
+ "type": "uint96"
567
+ }
568
+ ],
569
+ "name": "LogComponentServiceProductFeesUpdated",
570
+ "type": "event"
571
+ },
572
+ {
573
+ "anonymous": false,
574
+ "inputs": [
575
+ {
576
+ "indexed": false,
577
+ "internalType": "NftId",
578
+ "name": "instanceNftId",
579
+ "type": "uint96"
580
+ },
581
+ {
582
+ "indexed": false,
583
+ "internalType": "NftId",
584
+ "name": "componentNftId",
585
+ "type": "uint96"
586
+ },
587
+ {
588
+ "indexed": false,
589
+ "internalType": "ObjectType",
590
+ "name": "componentType",
591
+ "type": "uint8"
592
+ },
593
+ {
594
+ "indexed": false,
595
+ "internalType": "address",
596
+ "name": "component",
597
+ "type": "address"
598
+ },
599
+ {
600
+ "indexed": false,
601
+ "internalType": "address",
602
+ "name": "token",
603
+ "type": "address"
604
+ },
605
+ {
606
+ "indexed": false,
607
+ "internalType": "address",
608
+ "name": "initialOwner",
609
+ "type": "address"
610
+ }
611
+ ],
612
+ "name": "LogComponentServiceRegistered",
613
+ "type": "event"
614
+ },
615
+ {
616
+ "anonymous": false,
617
+ "inputs": [
618
+ {
619
+ "indexed": false,
620
+ "internalType": "NftId",
621
+ "name": "nftId",
622
+ "type": "uint96"
623
+ },
624
+ {
625
+ "indexed": false,
626
+ "internalType": "string",
627
+ "name": "feeName",
628
+ "type": "string"
629
+ },
630
+ {
631
+ "indexed": false,
632
+ "internalType": "UFixed",
633
+ "name": "previousFractionalFee",
634
+ "type": "uint160"
635
+ },
636
+ {
637
+ "indexed": false,
638
+ "internalType": "Amount",
639
+ "name": "previousFixedFee",
640
+ "type": "uint96"
641
+ },
642
+ {
643
+ "indexed": false,
644
+ "internalType": "UFixed",
645
+ "name": "newFractionalFee",
646
+ "type": "uint160"
647
+ },
648
+ {
649
+ "indexed": false,
650
+ "internalType": "Amount",
651
+ "name": "newFixedFee",
652
+ "type": "uint96"
653
+ }
654
+ ],
655
+ "name": "LogComponentServiceUpdateFee",
656
+ "type": "event"
657
+ },
658
+ {
659
+ "anonymous": false,
660
+ "inputs": [
661
+ {
662
+ "indexed": false,
663
+ "internalType": "NftId",
664
+ "name": "componentNftId",
665
+ "type": "uint96"
666
+ },
667
+ {
668
+ "indexed": false,
669
+ "internalType": "address",
670
+ "name": "currentWallet",
671
+ "type": "address"
672
+ },
673
+ {
674
+ "indexed": false,
675
+ "internalType": "address",
676
+ "name": "newWallet",
677
+ "type": "address"
678
+ }
679
+ ],
680
+ "name": "LogComponentServiceWalletAddressChanged",
681
+ "type": "event"
682
+ },
683
+ {
684
+ "anonymous": false,
685
+ "inputs": [
686
+ {
687
+ "indexed": false,
688
+ "internalType": "NftId",
689
+ "name": "componentNftId",
690
+ "type": "uint96"
691
+ },
692
+ {
693
+ "indexed": false,
694
+ "internalType": "address",
695
+ "name": "currentWallet",
696
+ "type": "address"
697
+ },
698
+ {
699
+ "indexed": false,
700
+ "internalType": "address",
701
+ "name": "newWallet",
702
+ "type": "address"
703
+ },
704
+ {
705
+ "indexed": false,
706
+ "internalType": "uint256",
707
+ "name": "currentBalance",
708
+ "type": "uint256"
709
+ }
710
+ ],
711
+ "name": "LogComponentServiceWalletTokensTransferred",
712
+ "type": "event"
713
+ },
714
+ {
715
+ "inputs": [],
716
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
717
+ "outputs": [
718
+ {
719
+ "internalType": "bytes32",
720
+ "name": "",
721
+ "type": "bytes32"
722
+ }
723
+ ],
724
+ "stateMutability": "view",
725
+ "type": "function"
726
+ },
727
+ {
728
+ "inputs": [],
729
+ "name": "REGISTERABLE_LOCATION_V1",
730
+ "outputs": [
731
+ {
732
+ "internalType": "bytes32",
733
+ "name": "",
734
+ "type": "bytes32"
735
+ }
736
+ ],
737
+ "stateMutability": "view",
738
+ "type": "function"
739
+ },
740
+ {
741
+ "inputs": [
742
+ {
743
+ "internalType": "contract IERC20Metadata",
744
+ "name": "token",
745
+ "type": "address"
746
+ },
747
+ {
748
+ "internalType": "Amount",
749
+ "name": "amount",
750
+ "type": "uint96"
751
+ }
752
+ ],
753
+ "name": "approveTokenHandler",
754
+ "outputs": [],
755
+ "stateMutability": "nonpayable",
756
+ "type": "function"
757
+ },
758
+ {
759
+ "inputs": [],
760
+ "name": "authority",
761
+ "outputs": [
762
+ {
763
+ "internalType": "address",
764
+ "name": "",
765
+ "type": "address"
766
+ }
767
+ ],
768
+ "stateMutability": "view",
769
+ "type": "function"
770
+ },
771
+ {
772
+ "inputs": [],
773
+ "name": "getDomain",
774
+ "outputs": [
775
+ {
776
+ "internalType": "ObjectType",
777
+ "name": "serviceDomain",
778
+ "type": "uint8"
779
+ }
780
+ ],
781
+ "stateMutability": "pure",
782
+ "type": "function"
783
+ },
784
+ {
785
+ "inputs": [],
786
+ "name": "getInitialInfo",
787
+ "outputs": [
788
+ {
789
+ "components": [
790
+ {
791
+ "internalType": "NftId",
792
+ "name": "nftId",
793
+ "type": "uint96"
794
+ },
795
+ {
796
+ "internalType": "NftId",
797
+ "name": "parentNftId",
798
+ "type": "uint96"
799
+ },
800
+ {
801
+ "internalType": "ObjectType",
802
+ "name": "objectType",
803
+ "type": "uint8"
804
+ },
805
+ {
806
+ "internalType": "bool",
807
+ "name": "isInterceptor",
808
+ "type": "bool"
809
+ },
810
+ {
811
+ "internalType": "address",
812
+ "name": "objectAddress",
813
+ "type": "address"
814
+ },
815
+ {
816
+ "internalType": "address",
817
+ "name": "initialOwner",
818
+ "type": "address"
819
+ },
820
+ {
821
+ "internalType": "bytes",
822
+ "name": "data",
823
+ "type": "bytes"
824
+ }
825
+ ],
826
+ "internalType": "struct IRegistry.ObjectInfo",
827
+ "name": "info",
828
+ "type": "tuple"
829
+ }
830
+ ],
831
+ "stateMutability": "view",
832
+ "type": "function"
833
+ },
834
+ {
835
+ "inputs": [],
836
+ "name": "getNftId",
837
+ "outputs": [
838
+ {
839
+ "internalType": "NftId",
840
+ "name": "",
841
+ "type": "uint96"
842
+ }
843
+ ],
844
+ "stateMutability": "view",
845
+ "type": "function"
846
+ },
847
+ {
848
+ "inputs": [],
849
+ "name": "getOwner",
850
+ "outputs": [
851
+ {
852
+ "internalType": "address",
853
+ "name": "",
854
+ "type": "address"
855
+ }
856
+ ],
857
+ "stateMutability": "view",
858
+ "type": "function"
859
+ },
860
+ {
861
+ "inputs": [],
862
+ "name": "getRegistry",
863
+ "outputs": [
864
+ {
865
+ "internalType": "contract IRegistry",
866
+ "name": "",
867
+ "type": "address"
868
+ }
869
+ ],
870
+ "stateMutability": "view",
871
+ "type": "function"
872
+ },
873
+ {
874
+ "inputs": [],
875
+ "name": "getRelease",
876
+ "outputs": [
877
+ {
878
+ "internalType": "VersionPart",
879
+ "name": "release",
880
+ "type": "uint8"
881
+ }
882
+ ],
883
+ "stateMutability": "view",
884
+ "type": "function"
885
+ },
886
+ {
887
+ "inputs": [],
888
+ "name": "getRoleId",
889
+ "outputs": [
890
+ {
891
+ "internalType": "RoleId",
892
+ "name": "serviceRoleId",
893
+ "type": "uint64"
894
+ }
895
+ ],
896
+ "stateMutability": "view",
897
+ "type": "function"
898
+ },
899
+ {
900
+ "inputs": [],
901
+ "name": "getVersion",
902
+ "outputs": [
903
+ {
904
+ "internalType": "Version",
905
+ "name": "",
906
+ "type": "uint24"
907
+ }
908
+ ],
909
+ "stateMutability": "pure",
910
+ "type": "function"
911
+ },
912
+ {
913
+ "inputs": [
914
+ {
915
+ "internalType": "address",
916
+ "name": "activatedBy",
917
+ "type": "address"
918
+ },
919
+ {
920
+ "internalType": "bytes",
921
+ "name": "data",
922
+ "type": "bytes"
923
+ }
924
+ ],
925
+ "name": "initializeVersionable",
926
+ "outputs": [],
927
+ "stateMutability": "nonpayable",
928
+ "type": "function"
929
+ },
930
+ {
931
+ "inputs": [],
932
+ "name": "isActive",
933
+ "outputs": [
934
+ {
935
+ "internalType": "bool",
936
+ "name": "active",
937
+ "type": "bool"
938
+ }
939
+ ],
940
+ "stateMutability": "view",
941
+ "type": "function"
942
+ },
943
+ {
944
+ "inputs": [],
945
+ "name": "isConsumingScheduledOp",
946
+ "outputs": [
947
+ {
948
+ "internalType": "bytes4",
949
+ "name": "",
950
+ "type": "bytes4"
951
+ }
952
+ ],
953
+ "stateMutability": "view",
954
+ "type": "function"
955
+ },
956
+ {
957
+ "inputs": [],
958
+ "name": "linkToRegisteredNftId",
959
+ "outputs": [
960
+ {
961
+ "internalType": "NftId",
962
+ "name": "nftId",
963
+ "type": "uint96"
964
+ }
965
+ ],
966
+ "stateMutability": "nonpayable",
967
+ "type": "function"
968
+ },
969
+ {
970
+ "inputs": [
971
+ {
972
+ "internalType": "address",
973
+ "name": "component",
974
+ "type": "address"
975
+ }
976
+ ],
977
+ "name": "registerComponent",
978
+ "outputs": [
979
+ {
980
+ "internalType": "NftId",
981
+ "name": "componentNftId",
982
+ "type": "uint96"
983
+ }
984
+ ],
985
+ "stateMutability": "nonpayable",
986
+ "type": "function"
987
+ },
988
+ {
989
+ "inputs": [
990
+ {
991
+ "internalType": "address",
992
+ "name": "productAddress",
993
+ "type": "address"
994
+ },
995
+ {
996
+ "internalType": "address",
997
+ "name": "token",
998
+ "type": "address"
999
+ }
1000
+ ],
1001
+ "name": "registerProduct",
1002
+ "outputs": [
1003
+ {
1004
+ "internalType": "NftId",
1005
+ "name": "productNftId",
1006
+ "type": "uint96"
1007
+ }
1008
+ ],
1009
+ "stateMutability": "nonpayable",
1010
+ "type": "function"
1011
+ },
1012
+ {
1013
+ "inputs": [
1014
+ {
1015
+ "internalType": "address",
1016
+ "name": "newAuthority",
1017
+ "type": "address"
1018
+ }
1019
+ ],
1020
+ "name": "setAuthority",
1021
+ "outputs": [],
1022
+ "stateMutability": "nonpayable",
1023
+ "type": "function"
1024
+ },
1025
+ {
1026
+ "inputs": [
1027
+ {
1028
+ "components": [
1029
+ {
1030
+ "internalType": "UFixed",
1031
+ "name": "fractionalFee",
1032
+ "type": "uint160"
1033
+ },
1034
+ {
1035
+ "internalType": "Amount",
1036
+ "name": "fixedFee",
1037
+ "type": "uint96"
1038
+ }
1039
+ ],
1040
+ "internalType": "struct Fee",
1041
+ "name": "distributionFee",
1042
+ "type": "tuple"
1043
+ },
1044
+ {
1045
+ "components": [
1046
+ {
1047
+ "internalType": "UFixed",
1048
+ "name": "fractionalFee",
1049
+ "type": "uint160"
1050
+ },
1051
+ {
1052
+ "internalType": "Amount",
1053
+ "name": "fixedFee",
1054
+ "type": "uint96"
1055
+ }
1056
+ ],
1057
+ "internalType": "struct Fee",
1058
+ "name": "minDistributionOwnerFee",
1059
+ "type": "tuple"
1060
+ }
1061
+ ],
1062
+ "name": "setDistributionFees",
1063
+ "outputs": [],
1064
+ "stateMutability": "nonpayable",
1065
+ "type": "function"
1066
+ },
1067
+ {
1068
+ "inputs": [
1069
+ {
1070
+ "internalType": "bool",
1071
+ "name": "locked",
1072
+ "type": "bool"
1073
+ }
1074
+ ],
1075
+ "name": "setLocked",
1076
+ "outputs": [],
1077
+ "stateMutability": "nonpayable",
1078
+ "type": "function"
1079
+ },
1080
+ {
1081
+ "inputs": [
1082
+ {
1083
+ "components": [
1084
+ {
1085
+ "internalType": "UFixed",
1086
+ "name": "fractionalFee",
1087
+ "type": "uint160"
1088
+ },
1089
+ {
1090
+ "internalType": "Amount",
1091
+ "name": "fixedFee",
1092
+ "type": "uint96"
1093
+ }
1094
+ ],
1095
+ "internalType": "struct Fee",
1096
+ "name": "poolFee",
1097
+ "type": "tuple"
1098
+ },
1099
+ {
1100
+ "components": [
1101
+ {
1102
+ "internalType": "UFixed",
1103
+ "name": "fractionalFee",
1104
+ "type": "uint160"
1105
+ },
1106
+ {
1107
+ "internalType": "Amount",
1108
+ "name": "fixedFee",
1109
+ "type": "uint96"
1110
+ }
1111
+ ],
1112
+ "internalType": "struct Fee",
1113
+ "name": "stakingFee",
1114
+ "type": "tuple"
1115
+ },
1116
+ {
1117
+ "components": [
1118
+ {
1119
+ "internalType": "UFixed",
1120
+ "name": "fractionalFee",
1121
+ "type": "uint160"
1122
+ },
1123
+ {
1124
+ "internalType": "Amount",
1125
+ "name": "fixedFee",
1126
+ "type": "uint96"
1127
+ }
1128
+ ],
1129
+ "internalType": "struct Fee",
1130
+ "name": "performanceFee",
1131
+ "type": "tuple"
1132
+ }
1133
+ ],
1134
+ "name": "setPoolFees",
1135
+ "outputs": [],
1136
+ "stateMutability": "nonpayable",
1137
+ "type": "function"
1138
+ },
1139
+ {
1140
+ "inputs": [
1141
+ {
1142
+ "components": [
1143
+ {
1144
+ "internalType": "UFixed",
1145
+ "name": "fractionalFee",
1146
+ "type": "uint160"
1147
+ },
1148
+ {
1149
+ "internalType": "Amount",
1150
+ "name": "fixedFee",
1151
+ "type": "uint96"
1152
+ }
1153
+ ],
1154
+ "internalType": "struct Fee",
1155
+ "name": "productFee",
1156
+ "type": "tuple"
1157
+ },
1158
+ {
1159
+ "components": [
1160
+ {
1161
+ "internalType": "UFixed",
1162
+ "name": "fractionalFee",
1163
+ "type": "uint160"
1164
+ },
1165
+ {
1166
+ "internalType": "Amount",
1167
+ "name": "fixedFee",
1168
+ "type": "uint96"
1169
+ }
1170
+ ],
1171
+ "internalType": "struct Fee",
1172
+ "name": "processingFee",
1173
+ "type": "tuple"
1174
+ }
1175
+ ],
1176
+ "name": "setProductFees",
1177
+ "outputs": [],
1178
+ "stateMutability": "nonpayable",
1179
+ "type": "function"
1180
+ },
1181
+ {
1182
+ "inputs": [
1183
+ {
1184
+ "internalType": "address",
1185
+ "name": "newWallet",
1186
+ "type": "address"
1187
+ }
1188
+ ],
1189
+ "name": "setWallet",
1190
+ "outputs": [],
1191
+ "stateMutability": "nonpayable",
1192
+ "type": "function"
1193
+ },
1194
+ {
1195
+ "inputs": [
1196
+ {
1197
+ "internalType": "bytes4",
1198
+ "name": "interfaceId",
1199
+ "type": "bytes4"
1200
+ }
1201
+ ],
1202
+ "name": "supportsInterface",
1203
+ "outputs": [
1204
+ {
1205
+ "internalType": "bool",
1206
+ "name": "",
1207
+ "type": "bool"
1208
+ }
1209
+ ],
1210
+ "stateMutability": "view",
1211
+ "type": "function"
1212
+ },
1213
+ {
1214
+ "inputs": [
1215
+ {
1216
+ "internalType": "bytes",
1217
+ "name": "data",
1218
+ "type": "bytes"
1219
+ }
1220
+ ],
1221
+ "name": "upgradeVersionable",
1222
+ "outputs": [],
1223
+ "stateMutability": "nonpayable",
1224
+ "type": "function"
1225
+ },
1226
+ {
1227
+ "inputs": [
1228
+ {
1229
+ "internalType": "Amount",
1230
+ "name": "amount",
1231
+ "type": "uint96"
1232
+ }
1233
+ ],
1234
+ "name": "withdrawFees",
1235
+ "outputs": [
1236
+ {
1237
+ "internalType": "Amount",
1238
+ "name": "withdrawnAmount",
1239
+ "type": "uint96"
1240
+ }
1241
+ ],
1242
+ "stateMutability": "nonpayable",
1243
+ "type": "function"
1244
+ }
1245
+ ],
1246
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615b64806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80635d966289116100f35780638fb3603711610093578063bf7e214f1161006e578063bf7e214f146103e1578063cf2f3365146103e9578063deaa59df146103fc578063feff0c911461040f575f80fd5b80638fb36037146103a5578063ada9652e146103c6578063b68d1809146103da575f80fd5b80636c741e78116100ce5780636c741e781461035057806376b707b7146103705780637a9e5e4b1461038a578063893d20e81461039d575f80fd5b80635d9662891461030d5780636078a3b214610320578063644c45e014610333575f80fd5b8063211e28b61161015e578063419197fe11610139578063419197fe146102af5780634698bf11146102c257806349bb9e4b146102d55780635ab1bd53146102e8575f80fd5b8063211e28b61461027f57806322f3e2d414610294578063329d6e741461029c575f80fd5b806301ffc9a7146101a55780630d8e6e2c146101e65780630fec111c14610202578063138461e0146102175780631c6b2190146102375780631eff4b221461024a575b5f80fd5b6101d16101b3366004614a97565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101ee610422565b60405162ffffff90911681526020016101dd565b61020a6104a9565b6040516101dd9190614aec565b61021f610667565b6040516001600160601b0390911681526020016101dd565b61021f610245366004614b94565b610671565b6102717f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b61029261028d366004614bbc565b610bd4565b005b6101d1610cb5565b6102926102aa366004614d22565b610d2c565b6102926102bd366004614d67565b610e76565b6102926102d0366004614dde565b610fce565b6102926102e3366004614e08565b61134d565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61021f61031b366004614e54565b611448565b61021f61032e366004614e80565b611761565b5f80516020615aaf833981519152546001600160601b031661021f565b6103586119fc565b6040516001600160401b0390911681526020016101dd565b610378611a88565b60405160ff90911681526020016101dd565b610292610398366004614e80565b611af0565b6102f5611b72565b6103ad611ca3565b6040516001600160e01b031990911681526020016101dd565b6102715f80516020615aaf83398151915281565b600b610378565b6102f5611cd8565b6102926103f7366004614e9b565b611cf3565b61029261040a366004614e80565b6120b1565b61029261041d366004614dde565b6121ef565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610480573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614ede565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610559573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061057d9190614f10565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016105c5611b72565b6001600160a01b031681526020018260010180546105e290614f2b565b80601f016020809104026020016040519081016040528092919081815260200182805461060e90614f2b565b80156106595780601f1061063057610100808354040283529160200191610659565b820191905f5260205f20905b81548152906001019060200180831161063c57829003601f168201915b505050505081525091505090565b5f6104a4306124d0565b5f61067e335b5f366126c9565b5f8061068a600b6127c7565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106ef9190614f5d565b604051630232ca4960e01b81526001600160601b03851660048201529091505f906001600160a01b03831690630232ca4990602401602060405180830381865afa15801561073f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107639190614f10565b90508594506107dc8673__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156107b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d79190614f10565b6127dd565b156107e5578094505b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af415801561083b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061085f9190614f83565b1561087d5760405163b079ec2b60e01b815260040160405180910390fd5b6108878582612869565b156108bd5760405163151dbb3f60e01b81526001600160601b038087166004830152821660248201526044015b60405180910390fd5b60025f9054906101000a90046001600160a01b03166001600160a01b031663346696cc846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561091c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109409190614f5d565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526001600160601b038088166024830152881660448201526064015f604051808303815f87803b158015610995575f80fd5b505af11580156109a7573d5f803e3d5ffd5b505050505f6109be6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a2f9190614f5d565b60405163a310e2a360e01b81526001600160601b03871660048201529091505f906001600160a01b0385169063a310e2a390602401602060405180830381865afa158015610a7f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa39190614f5d565b90507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde98683836001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b289190614f5d565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908916606082015260800160405180910390a1604051633fd3433360e01b81526001600160a01b0383811660048301526001600160601b0389166024830152821690633fd34333906044015f604051808303815f87803b158015610bb3575f80fd5b505af1158015610bc5573d5f803e3d5ffd5b50505050505050505050919050565b610bdd33610677565b5f610be9600b5f6128b3565b9150505f339050816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c509190614f5d565b604051630d99633160e01b81526001600160a01b03838116600483015285151560248301529190911690630d996331906044015f604051808303815f87803b158015610c9a575f80fd5b505af1158015610cac573d5f803e3d5ffd5b50505050505050565b5f610cbe611cd8565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610d02573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d269190614f83565b15905090565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610d4e610422565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610d8c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610db09190614fbd565b5f80516020615b0f8339815191528054600160401b900460ff1680610de2575080546001600160401b03808416911610155b15610e005760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610e2a83612a6d565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f80610e82600b6127c7565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ec3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ee79190614f5d565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015610f33573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610f5a919081019061502c565b6020015160405163ea0b3c7360e01b81526001600160a01b0387811660048301526001600160601b03871660248301529192509082169063ea0b3c73906044015f604051808303815f87803b158015610fb1575f80fd5b505af1158015610fc3573d5f803e3d5ffd5b505050505050505050565b610fd6612a75565b5f80610fe2600c6127c7565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611023573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110479190614f5d565b604051636a05a41360e01b81526001600160601b03851660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa158015611095573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110b9919061511b565b805160405162acc93760e61b81529192505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916110f791908a906004016151d9565b602060405180830381865af4158015611112573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111369190614f83565b6111725761116b846040518060400160405280600a81526020016950726f6475637446656560b01b815250845f015189612aac565b5084815260015b602082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916111ae919089906004016151d9565b602060405180830381865af41580156111c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ed9190614f83565b61123157611226846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846020015188612aac565b506020810184905260015b801561132f57826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611273573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112979190614f5d565b6001600160a01b031663ebb41c0c85846040518363ffffffff1660e01b81526004016112c49291906151f4565b5f604051808303815f87803b1580156112db575f80fd5b505af11580156112ed573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b5050505061134960015f80516020615aef83398151915255565b5050565b5f80516020615b0f8339815191528054600160401b810460ff1615906001600160401b03165f8115801561137e5750825b90505f826001600160401b031660011480156113995750303b155b9050811580156113a7575080155b156113c55760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113ef57845460ff60401b1916600160401b1785555b6113f98787612b12565b8315610cac57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a150505050505050565b5f611451612a75565b8261145b81612caa565b5f8061146986600c87612d5c565b604080516330422f5360e21b815290519199509396509194508993505f926001600160a01b0385169263c108bd4c9250600480830192869291908290030181865afa1580156114ba573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526114e19190810190615333565b905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561152a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061154e9190614f10565b6001600160601b031660a08201526040805163bc1b392d60e01b8152905173__$94a2c899be079b00d952d0d84fffaa5c34$__9163bc1b392d9160048083019260209291908290030181865af41580156115aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115ce9190614f10565b6001600160601b031660c0820152606081015160ff166001600160401b038111156115fb576115fb614bd7565b604051908082528060200260200182016040528015611624578160200160208202803683370190505b5060e0820152604051637f1773c960e11b81526001600160a01b0384169063fe2ee7929061165890899085906004016154fa565b5f604051808303815f87803b15801561166f575f80fd5b505af1158015611681573d5f803e3d5ffd5b50505050826001600160a01b0316631aa4116387846001600160a01b031663844e0f206040518163ffffffff1660e01b81526004016101c060405180830381865afa1580156116d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116f6919061511b565b6040518363ffffffff1660e01b81526004016117139291906151f4565b5f604051808303815f87803b15801561172a575f80fd5b505af115801561173c573d5f803e3d5ffd5b50505050505050505061175b60015f80516020615aef83398151915255565b92915050565b5f8161176c81612caa565b5f836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa1580156117a8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526117cf91908101906155c5565b60408101519091505f6117ea6001546001600160a01b031690565b602084015160405163bf8e179760e01b81526001600160601b0390911660048201526001600160a01b03919091169063bf8e179790602401602060405180830381865afa15801561183d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118619190614f5d565b905060ff8216600f036118e1576118d786826001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118d29190614f5d565b6134ef565b94505050506119f6565b60ff8216600e03611955576118d786826001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561192c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119509190614f5d565b613772565b60ff8216600d036119c9576118d786826001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119c49190614f5d565b613930565b604051630de61afd60e41b81526001600160a01b038716600482015260ff831660248201526044016108b4565b50919050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe600b611a21611a88565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611a64573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614fbd565b5f611a91611cd8565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611acc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a491906155f6565b33611af9611cd8565b6001600160a01b0316816001600160a01b031614611b345760405162d1953b60e31b81526001600160a01b03821660048201526024016108b4565b816001600160a01b03163b5f03611b69576040516361798f2f60e11b81526001600160a01b03831660048201526024016108b4565b61134982613af7565b5f805f80516020615aaf83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611bde573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c029190614f83565b15611c8d576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611c63573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c879190614f5d565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020615acf83398151915280545f9190600160a01b900460ff16611cca575f611c87565b638fb3603760e01b91505090565b5f80516020615acf833981519152546001600160a01b031690565b5f80611cff600f6127c7565b915091505f80611d6e836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d44573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d689190614f5d565b85613b57565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc083608001518a6040518363ffffffff1660e01b8152600401611db09291906151d9565b602060405180830381865af4158015611dcb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611def9190614f83565b611e2d57611e228360405180604001604052806007815260200166506f6f6c46656560c81b81525084608001518b612aac565b506080810187905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611e6991908b906004016151d9565b602060405180830381865af4158015611e84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ea89190614f83565b611ee957611ede836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460a001518a612aac565b5060a0810186905260015b60c082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611f2591908a906004016151d9565b602060405180830381865af4158015611f40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f649190614f83565b611fa957611f9e836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508460c0015189612aac565b5060c0810185905260015b80156120a757836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611feb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061200f9190614f5d565b6001600160a01b031663ebb41c0c84846040518363ffffffff1660e01b815260040161203c9291906151f4565b5f604051808303815f87803b158015612053575f80fd5b505af1158015612065573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15b5050505050505050565b5f806120bd600b6127c7565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120fe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121229190614f5d565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa15801561216e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612195919081019061502c565b6020015160405163deaa59df60e01b81526001600160a01b0386811660048301529192509082169063deaa59df906024015f604051808303815f87803b1580156121dd575f80fd5b505af11580156120a7573d5f803e3d5ffd5b5f806121fb600e6127c7565b915091505f80612240836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d44573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151896040518363ffffffff1660e01b81526004016122829291906151d9565b602060405180830381865af415801561229d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122c19190614f83565b612307576122fc836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084604001518a612aac565b506040810186905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161234391908a906004016151d9565b602060405180830381865af415801561235e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123829190614f83565b6123d6576123cb836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e6572466565000000000000000000815250846060015189612aac565b506060810185905260015b8015610cac57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612418573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061243c9190614f5d565b6001600160a01b031663ebb41c0c84846040518363ffffffff1660e01b81526004016124699291906151f4565b5f604051808303815f87803b158015612480575f80fd5b505af1158015612492573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b92506020019050611437565b5f805f80516020615aaf83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561253c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125609190614f83565b1561258c5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016108b4565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156125de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126029190614f83565b61262a5760405163b9304b0d60e01b81526001600160a01b03841660048201526024016108b4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa15801561267c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126a09190614f10565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f80516020615acf8339815191525f806127016126e4611cd8565b87306126f360045f8a8c615611565b6126fc91615638565b613c59565b91509150816127bf5763ffffffff81161561279c57825460ff60a01b1916600160a01b17835561272f611cd8565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161275e93929190615670565b5f604051808303815f87803b158015612775575f80fd5b505af1158015612787573d5f803e3d5ffd5b5050845460ff60a01b19168555506127bf9050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016108b4565b505050505050565b5f806127d48360016128b3565b91509150915091565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af415801561283e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128629190614f83565b9392505050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401612823565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015281905f6128ff86600b5b60ff9081169116141590565b156129b95773__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed36129306001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260ff8916604482015287151560648201526084015f60405180830381865af4158015612988573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526129af91908101906156af565b9092509050612a61565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__63aa13a9886129e56001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015287151560448201526064015f60405180830381865af4158015612a34573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a5b91908101906156af565b90925090505b90519590945092505050565b6101a1613d61565b5f80516020615aef833981519152805460011901612aa657604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b81516020808401518351918401516040517f17326f60f251bc425d57bf37b0630491536a1e7231c46d08b25915a90c59ee7c94612af1948a948a9492939092906156f2565b60405180910390a150505050565b60015f80516020615aef83398151915255565b5f80516020615b0f8339815191528054600160401b810460ff1615906001600160401b03165f81158015612b435750825b90505f826001600160401b03166001148015612b5e5750303b155b905081158015612b6c575080155b15612b8a5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612bb457845460ff60401b1916600160401b1785555b5f8087806020019051810190612bca919061574e565b91509150612bd982828b613d99565b612be36028613e3b565b600280546001600160a01b0319166001600160a01b0392909216919091178155612c0c90613e3b565b600380546001600160a01b0319166001600160a01b0392909216919091179055612c36600a613e3b565b600480546001600160a01b0319166001600160a01b0392909216919091179055612c6663e8e886d960e01b613ecc565b50508315610cac57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611437565b60405163d905700760e01b81526001600160a01b038216600482015263a9c1bc6f60e01b602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d905700790604401602060405180830381865af4158015612d0d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d319190614f83565b612d595760405163b03d8c4360e01b81526001600160a01b03821660048201526024016108b4565b50565b5f805f805f805f805f612d81612d7a6001546001600160a01b031690565b8d8d613efc565b809550819650829a508397508498505050505050826001600160a01b031663398e3d4c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612dd1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612df59190614f83565b612f915773__$fb599632d08395912d9d70eb2f0f93b5e2$__637d482da1612e256001546001600160a01b031690565b6001600160a01b031663caed98976040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e849190614f5d565b8c46612e8e611cd8565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ec9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612eed91906155f6565b6040516001600160e01b031960e087901b1681526001600160a01b039485166004820152939092166024840152604483015260ff166064820152608401602060405180830381865af4158015612f45573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f699190614f83565b612f9157604051633acbdd6160e01b81526001600160a01b038b1660048201526024016108b4565b826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fcd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ff19190614f5d565b9850826001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa15801561302f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130539190614f5d565b9750826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613091573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130b59190614f5d565b965060ff8b16600c0361314157600354604051635d96628960e01b81526001600160a01b038481166004830152838116602483015290911690635d966289906044015f604051808303815f875af1158015613112573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261313991908101906155c5565b5194506131c5565b600354604051631fa14e4960e11b81526001600160a01b03848116600483015260ff8e166024830152838116604483015290911690633f429c92906064015f604051808303815f875af115801561319a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526131c191908101906155c5565b5194505b5f826001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613201573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613228919081019061502c565b905073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d6132566001546001600160a01b031690565b8f8e8d6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613294573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132b89190614f5d565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af4158015613312573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133369190614f5d565b6001600160a01b039081166020830152604051631c4b0d8b60e31b81529089169063e2586c589061336d908990859060040161577b565b5f604051808303815f87803b158015613384575f80fd5b505af1158015613396573d5f803e3d5ffd5b5050505050816001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af11580156133d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133fc9190614f10565b506040516366704a7d60e01b81526001600160a01b038d8116600483015260ff8d1660248301528916906366704a7d906044015f604051808303815f87803b158015613446575f80fd5b505af1158015613458573d5f803e3d5ffd5b505050507f269a46dac9ba8227194b6513fdb68da07796b42aa1d111f1eaec8f2126aed6c684868d8f8e866040516134d8969594939291906001600160601b03968716815294909516602085015260ff9290921660408401526001600160a01b03908116606084015290811660808301529190911660a082015260c00190565b60405180910390a150505050939792965093509350565b5f8080808061350187600f5b88612d5c565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa15801561355a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526135819190810190615333565b60a08101516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156135e0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136049190614f83565b1561363b5760a08101516040516397f129bf60e01b81526001600160601b03808516600483015290911660248201526044016108b4565b5f889050836001600160a01b031663490840b488836001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa15801561368b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136af91906157d6565b6040518363ffffffff1660e01b81526004016136cc929190615864565b5f604051808303815f87803b1580156136e3575f80fd5b505af11580156136f5573d5f803e3d5ffd5b505050506001600160601b03871660a083015260405163659743e960e11b81526001600160a01b0385169063cb2e87d290613739908690869060ff906004016158ec565b5f604051808303815f87803b158015613750575f80fd5b505af1158015613762573d5f803e3d5ffd5b5050505050505050505092915050565b5f61377b612a75565b5f80808061378a87600e6134fb565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa1580156137e3573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261380a9190810190615333565b905080604001516138395760405163931d421760e01b81526001600160601b03831660048201526024016108b4565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613895573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138b99190614f83565b156138f05760c08101516040516323a0cc7160e11b81526001600160601b03808516600483015290911660248201526044016108b4565b6001600160601b03861660c082015260405163659743e960e11b81526001600160a01b0384169063cb2e87d290611713908590859060ff906004016158ec565b5f8080808061394087600d6134fb565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa158015613999573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526139c09190810190615333565b9050806060015160ff165f036139f457604051634435e56b60e01b81526001600160601b03831660048201526024016108b4565b806060015160ff16816080015160ff1603613a3c5760608101516040516379060d1360e11b81526001600160601b038416600482015260ff90911660248201526044016108b4565b858160e00151826080015160ff1681518110613a5a57613a5a615920565b6001600160601b039092166020928302919091019091015260808101805190613a8282615934565b60ff169052506001600160a01b03831663cb2e87d28383613aa160ff90565b6040518463ffffffff1660e01b8152600401613abf939291906158ec565b5f604051808303815f87803b158015613ad6575f80fd5b505af1158015613ae8573d5f803e3d5ffd5b50505050505050505092915050565b5f80516020615acf83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f613b606149bf565b6001546001600160a01b031660405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015613bb9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bdd9190614f10565b604051636a05a41360e01b81526001600160601b03821660048201529092506001600160a01b03851690636a05a413906024016101c060405180830381865afa158015613c2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c50919061511b565b90509250929050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613cc7919061595e565b5f60405180830381855afa9150503d805f8114613cff576040519150601f19603f3d011682016040523d82523d5f602084013e613d04565b606091505b50915091508115613d56576040815110613d365780806020019051810190613d2c9190615974565b9094509250613d56565b6020815110613d565780806020019051810190613d539190614f83565b93505b505094509492505050565b5f80516020615b0f83398151915254600160401b900460ff16613d9757604051631afcd79f60e31b815260040160405180910390fd5b565b613da1613d61565b613da9614674565b613e268383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613dea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e0e9190614f10565b60085f8660405180602001604052805f815250614684565b613e3663daf9067160e01b613ecc565b505050565b5f613e4e6001546001600160a01b031690565b6001600160a01b031663d39e604383613e65611a88565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613ea8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061175b9190614f5d565b613ed4613d61565b612d59816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6040516308b09a5f60e41b81523360048201525f90819081908190819081906001600160a01b038a1690638b09a5f0906024015f60405180830381865afa158015613f49573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613f7091908101906155c5565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015613fcc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ff09190614f83565b156140105760405163f75940a160e01b81523360048201526024016108b4565b805f015193508792505f836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015614055573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261407c91908101906155c5565b905061409381604001518960ff9081169116141590565b156140d3576040808201519051634a2e948760e11b81526001600160a01b038b16600482015260ff808b16602483015290911660448201526064016108b4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b038b811660048301529190911690635e546bee90602401602060405180830381865afa158015614125573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141499190614f10565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156141a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141c49190614f83565b156141ed576040516322e6526160e11b81526001600160a01b038a1660048201526024016108b4565b60405163bf8e179760e01b81526001600160601b03861660048201525f906001600160a01b038c169063bf8e179790602401602060405180830381865afa15801561423a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061425e9190614f5d565b90506142cb856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561429f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142c391906155f6565b6128f3611a88565b1561436e5789856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561430d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061433191906155f6565b614339611a88565b6040516381ce428760e01b81526001600160a01b03909316600484015260ff91821660248401521660448201526064016108b4565b614431856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143d191906155f6565b826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561440d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128f391906155f6565b156144f75789856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015614473573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061449791906155f6565b826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156144d3573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061433991906155f6565b6145088260200151845f01516147c1565b156145405782516020830151604051633e22765160e11b81526001600160601b039283166004820152911660248201526044016108b4565b60ff8916600c0361459d5761455b83604001516128f3600a90565b15614594578251604080850151905163179bdfb960e01b81526001600160601b03909216600483015260ff1660248201526044016108b4565b825197506145ed565b6145ad83604001516128f3600c90565b156145e5578251604080850151905162d4546160e11b81526001600160601b03909216600483015260ff1660248201526044016108b4565b826020015197505b60a082015160405163bf8e179760e01b81526001600160601b038a1660048201529094506001600160a01b038c169063bf8e179790602401602060405180830381865afa158015614640573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146649190614f5d565b9650505050939792965093509350565b61467c613d61565b613d9761480b565b61468c613d61565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af41580156146e2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906147069190614f83565b61472e5760405163cf6935e560e01b81526001600160a01b03881660048201526024016108b4565b61473787614813565b6147418683614824565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016147b083826159f4565b506120a7634a531f3360e01b613ecc565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401612823565b612aff613d61565b61481b613d61565b612d598161489a565b61482c613d61565b6148346148ab565b61483d826148f3565b6001600160a01b0381166148645760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020615aaf83398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b6148a2613d61565b612d5981613af7565b6148b3613d61565b613d976301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6148fb613d61565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015614951573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906149759190614f83565b61499d5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016108b4565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6040805161012081019091525f60e08201818152610100830191909152819081526020016149fc604080518082019091525f808252602082015290565b8152602001614a1a604080518082019091525f808252602082015290565b8152602001614a38604080518082019091525f808252602082015290565b8152602001614a56604080518082019091525f808252602082015290565b8152602001614a74604080518082019091525f808252602082015290565b8152602001614a92604080518082019091525f808252602082015290565b905290565b5f60208284031215614aa7575f80fd5b81356001600160e01b031981168114612862575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614b34608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614b78610100840182614abe565b949350505050565b6001600160601b0381168114612d59575f80fd5b5f60208284031215614ba4575f80fd5b813561286281614b80565b8015158114612d59575f80fd5b5f60208284031215614bcc575f80fd5b813561286281614baf565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b0381118282101715614c0d57614c0d614bd7565b60405290565b604051606081016001600160401b0381118282101715614c0d57614c0d614bd7565b60405160e081016001600160401b0381118282101715614c0d57614c0d614bd7565b60405161010081016001600160401b0381118282101715614c0d57614c0d614bd7565b604051601f8201601f191681016001600160401b0381118282101715614ca257614ca2614bd7565b604052919050565b5f6001600160401b03821115614cc257614cc2614bd7565b50601f01601f191660200190565b5f82601f830112614cdf575f80fd5b8135614cf2614ced82614caa565b614c7a565b818152846020838601011115614d06575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614d32575f80fd5b81356001600160401b03811115614d47575f80fd5b614b7884828501614cd0565b6001600160a01b0381168114612d59575f80fd5b5f8060408385031215614d78575f80fd5b8235614d8381614d53565b91506020830135614d9381614b80565b809150509250929050565b5f60408284031215614dae575f80fd5b614db6614beb565b90508135614dc381614d53565b81526020820135614dd381614b80565b602082015292915050565b5f8060808385031215614def575f80fd5b614df98484614d9e565b9150613c508460408501614d9e565b5f8060408385031215614e19575f80fd5b8235614e2481614d53565b915060208301356001600160401b03811115614e3e575f80fd5b614e4a85828601614cd0565b9150509250929050565b5f8060408385031215614e65575f80fd5b8235614e7081614d53565b91506020830135614d9381614d53565b5f60208284031215614e90575f80fd5b813561286281614d53565b5f805f60c08486031215614ead575f80fd5b614eb78585614d9e565b9250614ec68560408601614d9e565b9150614ed58560808601614d9e565b90509250925092565b5f60208284031215614eee575f80fd5b815162ffffff81168114612862575f80fd5b8051614f0b81614b80565b919050565b5f60208284031215614f20575f80fd5b815161286281614b80565b600181811c90821680614f3f57607f821691505b6020821081036119f657634e487b7160e01b5f52602260045260245ffd5b5f60208284031215614f6d575f80fd5b815161286281614d53565b8051614f0b81614baf565b5f60208284031215614f93575f80fd5b815161286281614baf565b8051614f0b81614d53565b6001600160401b0381168114612d59575f80fd5b5f60208284031215614fcd575f80fd5b815161286281614fa9565b5f614fe5614ced84614caa565b9050828152838383011115614ff8575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f83011261501d575f80fd5b61286283835160208501614fd8565b5f6020828403121561503c575f80fd5b81516001600160401b03811115615051575f80fd5b820160608185031215615062575f80fd5b61506a614c13565b81516001600160401b0381111561507f575f80fd5b8201601f8101861361508f575f80fd5b61509e86825160208401614fd8565b82525060208201516150af81614d53565b602082015260408201516001600160401b038111156150cc575f80fd5b6150d88682850161500e565b604083015250949350505050565b5f604082840312156150f6575f80fd5b6150fe614beb565b9050815161510b81614d53565b81526020820151614dd381614b80565b5f6101c082840312801561512d575f80fd5b50615136614c35565b61514084846150e6565b815261514f84604085016150e6565b602082015261516184608085016150e6565b60408201526151738460c085016150e6565b60608201526151868461010085016150e6565b60808201526151998461014085016150e6565b60a08201526151ac8461018085016150e6565b60c08201529392505050565b80516001600160a01b031682526020908101516001600160601b0316910152565b608081016151e782856151b8565b61286260408301846151b8565b5f6101e0820190506001600160601b03841682526152166020830184516151b8565b602083015161522860608401826151b8565b50604083015161523b60a08401826151b8565b50606083015161524e60e08401826151b8565b5060808301516152626101208401826151b8565b5060a08301516152766101608401826151b8565b5060c083015161528a6101a08401826151b8565b509392505050565b60ff81168114612d59575f80fd5b8051614f0b81615292565b5f82601f8301126152ba575f80fd5b81516001600160401b038111156152d3576152d3614bd7565b8060051b6152e360208201614c7a565b918252602081850181019290810190868411156152fe575f80fd5b6020860192505b8383101561532957825161531881614b80565b825260209283019290910190615305565b9695505050505050565b5f60208284031215615343575f80fd5b81516001600160401b03811115615358575f80fd5b8201610100818503121561536a575f80fd5b615372614c57565b61537b82614f78565b815261538960208301614f78565b602082015261539a60408301614f78565b60408201526153ab606083016152a0565b60608201526153bc608083016152a0565b60808201526153cd60a08301614f00565b60a08201526153de60c08301614f00565b60c082015260e08201516001600160401b038111156153fb575f80fd5b615407868285016152ab565b60e083015250949350505050565b5f8151808452602084019350602083015f5b8281101561544e5781516001600160601b0316865260209586019590910190600101615427565b5093949350505050565b8051151582526020810151151560208301525f604082015161547e604085018215159052565b506060820151615493606085018260ff169052565b5060808201516154a8608085018260ff169052565b5060a08201516154c360a08501826001600160601b03169052565b5060c08201516154de60c08501826001600160601b03169052565b5060e082015161010060e0850152614b78610100850182615415565b6001600160601b0383168152604060208201525f614b786040830184615458565b5f60e0828403121561552b575f80fd5b615533614c35565b905061553e82614f00565b815261554c60208301614f00565b602082015261555d604083016152a0565b604082015261556e60608301614f78565b606082015261557f60808301614f9e565b608082015261559060a08301614f9e565b60a082015260c08201516001600160401b038111156155ad575f80fd5b6155b98482850161500e565b60c08301525092915050565b5f602082840312156155d5575f80fd5b81516001600160401b038111156155ea575f80fd5b614b788482850161551b565b5f60208284031215615606575f80fd5b815161286281615292565b5f808585111561561f575f80fd5b8386111561562b575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015615669576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f80604083850312156156c0575f80fd5b82516001600160401b038111156156d5575f80fd5b6156e18582860161551b565b9250506020830151614d9381614d53565b6001600160601b038716815260c060208201525f61571360c0830188614abe565b6001600160a01b0396871660408401526001600160601b039586166060840152939095166080820152921660a0909201919091529392505050565b5f806040838503121561575f575f80fd5b825161576a81614d53565b6020840151909250614d9381614d53565b6001600160601b0383168152604060208201525f8251606060408401526157a560a0840182614abe565b60208501516001600160a01b031660608501526040850151848203603f190160808601529091506153298282614abe565b5f60e08284031280156157e7575f80fd5b506157f0614c35565b82516157fb81614b80565b8152602083015161580b81614d53565b6020820152604083015161581e81614d53565b6040820152606083015161583181614baf565b606082015261584260808401614f78565b608082015261585360a08401614f78565b60a08201526151ac60c08401614f78565b5f610100820190506001600160601b03841682526001600160601b03835116602083015260018060a01b03602084015116604083015260018060a01b03604084015116606083015260608301511515608083015260808301516158cb60a084018215159052565b5060a083015180151560c08401525060c083015180151560e084015261528a565b6001600160601b0384168152606060208201525f61590d6060830185615458565b905060ff83166040830152949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f60ff821660ff810361595557634e487b7160e01b5f52601160045260245ffd5b60010192915050565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615985575f80fd5b825161599081614baf565b602084015190925063ffffffff81168114614d93575f80fd5b601f821115613e3657805f5260205f20601f840160051c810160208510156159ce5750805b601f840160051c820191505b818110156159ed575f81556001016159da565b5050505050565b81516001600160401b03811115615a0d57615a0d614bd7565b615a2181615a1b8454614f2b565b846159a9565b6020601f821160018114615a53575f8315615a3c5750848201515b5f19600385901b1c1916600184901b1784556159ed565b5f84815260208120601f198516915b82811015615a825787850151825560209485019460019092019101615a62565b5084821015615a9f57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122099e4b6e5b5db4119f76b3bc91171ebab7206a418bb5a072bc4ac5566f7f9595f64736f6c634300081a0033",
1247
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80635d966289116100f35780638fb3603711610093578063bf7e214f1161006e578063bf7e214f146103e1578063cf2f3365146103e9578063deaa59df146103fc578063feff0c911461040f575f80fd5b80638fb36037146103a5578063ada9652e146103c6578063b68d1809146103da575f80fd5b80636c741e78116100ce5780636c741e781461035057806376b707b7146103705780637a9e5e4b1461038a578063893d20e81461039d575f80fd5b80635d9662891461030d5780636078a3b214610320578063644c45e014610333575f80fd5b8063211e28b61161015e578063419197fe11610139578063419197fe146102af5780634698bf11146102c257806349bb9e4b146102d55780635ab1bd53146102e8575f80fd5b8063211e28b61461027f57806322f3e2d414610294578063329d6e741461029c575f80fd5b806301ffc9a7146101a55780630d8e6e2c146101e65780630fec111c14610202578063138461e0146102175780631c6b2190146102375780631eff4b221461024a575b5f80fd5b6101d16101b3366004614a97565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101ee610422565b60405162ffffff90911681526020016101dd565b61020a6104a9565b6040516101dd9190614aec565b61021f610667565b6040516001600160601b0390911681526020016101dd565b61021f610245366004614b94565b610671565b6102717f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b61029261028d366004614bbc565b610bd4565b005b6101d1610cb5565b6102926102aa366004614d22565b610d2c565b6102926102bd366004614d67565b610e76565b6102926102d0366004614dde565b610fce565b6102926102e3366004614e08565b61134d565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61021f61031b366004614e54565b611448565b61021f61032e366004614e80565b611761565b5f80516020615aaf833981519152546001600160601b031661021f565b6103586119fc565b6040516001600160401b0390911681526020016101dd565b610378611a88565b60405160ff90911681526020016101dd565b610292610398366004614e80565b611af0565b6102f5611b72565b6103ad611ca3565b6040516001600160e01b031990911681526020016101dd565b6102715f80516020615aaf83398151915281565b600b610378565b6102f5611cd8565b6102926103f7366004614e9b565b611cf3565b61029261040a366004614e80565b6120b1565b61029261041d366004614dde565b6121ef565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610480573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614ede565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610559573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061057d9190614f10565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016105c5611b72565b6001600160a01b031681526020018260010180546105e290614f2b565b80601f016020809104026020016040519081016040528092919081815260200182805461060e90614f2b565b80156106595780601f1061063057610100808354040283529160200191610659565b820191905f5260205f20905b81548152906001019060200180831161063c57829003601f168201915b505050505081525091505090565b5f6104a4306124d0565b5f61067e335b5f366126c9565b5f8061068a600b6127c7565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106ef9190614f5d565b604051630232ca4960e01b81526001600160601b03851660048201529091505f906001600160a01b03831690630232ca4990602401602060405180830381865afa15801561073f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107639190614f10565b90508594506107dc8673__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156107b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d79190614f10565b6127dd565b156107e5578094505b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af415801561083b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061085f9190614f83565b1561087d5760405163b079ec2b60e01b815260040160405180910390fd5b6108878582612869565b156108bd5760405163151dbb3f60e01b81526001600160601b038087166004830152821660248201526044015b60405180910390fd5b60025f9054906101000a90046001600160a01b03166001600160a01b031663346696cc846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561091c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109409190614f5d565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526001600160601b038088166024830152881660448201526064015f604051808303815f87803b158015610995575f80fd5b505af11580156109a7573d5f803e3d5ffd5b505050505f6109be6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a2f9190614f5d565b60405163a310e2a360e01b81526001600160601b03871660048201529091505f906001600160a01b0385169063a310e2a390602401602060405180830381865afa158015610a7f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa39190614f5d565b90507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde98683836001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b289190614f5d565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908916606082015260800160405180910390a1604051633fd3433360e01b81526001600160a01b0383811660048301526001600160601b0389166024830152821690633fd34333906044015f604051808303815f87803b158015610bb3575f80fd5b505af1158015610bc5573d5f803e3d5ffd5b50505050505050505050919050565b610bdd33610677565b5f610be9600b5f6128b3565b9150505f339050816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c509190614f5d565b604051630d99633160e01b81526001600160a01b03838116600483015285151560248301529190911690630d996331906044015f604051808303815f87803b158015610c9a575f80fd5b505af1158015610cac573d5f803e3d5ffd5b50505050505050565b5f610cbe611cd8565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610d02573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d269190614f83565b15905090565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610d4e610422565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610d8c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610db09190614fbd565b5f80516020615b0f8339815191528054600160401b900460ff1680610de2575080546001600160401b03808416911610155b15610e005760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610e2a83612a6d565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f80610e82600b6127c7565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ec3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ee79190614f5d565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015610f33573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610f5a919081019061502c565b6020015160405163ea0b3c7360e01b81526001600160a01b0387811660048301526001600160601b03871660248301529192509082169063ea0b3c73906044015f604051808303815f87803b158015610fb1575f80fd5b505af1158015610fc3573d5f803e3d5ffd5b505050505050505050565b610fd6612a75565b5f80610fe2600c6127c7565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611023573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110479190614f5d565b604051636a05a41360e01b81526001600160601b03851660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa158015611095573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110b9919061511b565b805160405162acc93760e61b81529192505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916110f791908a906004016151d9565b602060405180830381865af4158015611112573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111369190614f83565b6111725761116b846040518060400160405280600a81526020016950726f6475637446656560b01b815250845f015189612aac565b5084815260015b602082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916111ae919089906004016151d9565b602060405180830381865af41580156111c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ed9190614f83565b61123157611226846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846020015188612aac565b506020810184905260015b801561132f57826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611273573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112979190614f5d565b6001600160a01b031663ebb41c0c85846040518363ffffffff1660e01b81526004016112c49291906151f4565b5f604051808303815f87803b1580156112db575f80fd5b505af11580156112ed573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b5050505061134960015f80516020615aef83398151915255565b5050565b5f80516020615b0f8339815191528054600160401b810460ff1615906001600160401b03165f8115801561137e5750825b90505f826001600160401b031660011480156113995750303b155b9050811580156113a7575080155b156113c55760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113ef57845460ff60401b1916600160401b1785555b6113f98787612b12565b8315610cac57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a150505050505050565b5f611451612a75565b8261145b81612caa565b5f8061146986600c87612d5c565b604080516330422f5360e21b815290519199509396509194508993505f926001600160a01b0385169263c108bd4c9250600480830192869291908290030181865afa1580156114ba573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526114e19190810190615333565b905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561152a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061154e9190614f10565b6001600160601b031660a08201526040805163bc1b392d60e01b8152905173__$94a2c899be079b00d952d0d84fffaa5c34$__9163bc1b392d9160048083019260209291908290030181865af41580156115aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115ce9190614f10565b6001600160601b031660c0820152606081015160ff166001600160401b038111156115fb576115fb614bd7565b604051908082528060200260200182016040528015611624578160200160208202803683370190505b5060e0820152604051637f1773c960e11b81526001600160a01b0384169063fe2ee7929061165890899085906004016154fa565b5f604051808303815f87803b15801561166f575f80fd5b505af1158015611681573d5f803e3d5ffd5b50505050826001600160a01b0316631aa4116387846001600160a01b031663844e0f206040518163ffffffff1660e01b81526004016101c060405180830381865afa1580156116d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116f6919061511b565b6040518363ffffffff1660e01b81526004016117139291906151f4565b5f604051808303815f87803b15801561172a575f80fd5b505af115801561173c573d5f803e3d5ffd5b50505050505050505061175b60015f80516020615aef83398151915255565b92915050565b5f8161176c81612caa565b5f836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa1580156117a8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526117cf91908101906155c5565b60408101519091505f6117ea6001546001600160a01b031690565b602084015160405163bf8e179760e01b81526001600160601b0390911660048201526001600160a01b03919091169063bf8e179790602401602060405180830381865afa15801561183d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118619190614f5d565b905060ff8216600f036118e1576118d786826001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118d29190614f5d565b6134ef565b94505050506119f6565b60ff8216600e03611955576118d786826001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561192c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119509190614f5d565b613772565b60ff8216600d036119c9576118d786826001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119c49190614f5d565b613930565b604051630de61afd60e41b81526001600160a01b038716600482015260ff831660248201526044016108b4565b50919050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe600b611a21611a88565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611a64573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614fbd565b5f611a91611cd8565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611acc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a491906155f6565b33611af9611cd8565b6001600160a01b0316816001600160a01b031614611b345760405162d1953b60e31b81526001600160a01b03821660048201526024016108b4565b816001600160a01b03163b5f03611b69576040516361798f2f60e11b81526001600160a01b03831660048201526024016108b4565b61134982613af7565b5f805f80516020615aaf83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611bde573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c029190614f83565b15611c8d576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611c63573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c879190614f5d565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020615acf83398151915280545f9190600160a01b900460ff16611cca575f611c87565b638fb3603760e01b91505090565b5f80516020615acf833981519152546001600160a01b031690565b5f80611cff600f6127c7565b915091505f80611d6e836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d44573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d689190614f5d565b85613b57565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc083608001518a6040518363ffffffff1660e01b8152600401611db09291906151d9565b602060405180830381865af4158015611dcb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611def9190614f83565b611e2d57611e228360405180604001604052806007815260200166506f6f6c46656560c81b81525084608001518b612aac565b506080810187905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611e6991908b906004016151d9565b602060405180830381865af4158015611e84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ea89190614f83565b611ee957611ede836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460a001518a612aac565b5060a0810186905260015b60c082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611f2591908a906004016151d9565b602060405180830381865af4158015611f40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f649190614f83565b611fa957611f9e836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508460c0015189612aac565b5060c0810185905260015b80156120a757836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611feb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061200f9190614f5d565b6001600160a01b031663ebb41c0c84846040518363ffffffff1660e01b815260040161203c9291906151f4565b5f604051808303815f87803b158015612053575f80fd5b505af1158015612065573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15b5050505050505050565b5f806120bd600b6127c7565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120fe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121229190614f5d565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa15801561216e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612195919081019061502c565b6020015160405163deaa59df60e01b81526001600160a01b0386811660048301529192509082169063deaa59df906024015f604051808303815f87803b1580156121dd575f80fd5b505af11580156120a7573d5f803e3d5ffd5b5f806121fb600e6127c7565b915091505f80612240836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d44573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151896040518363ffffffff1660e01b81526004016122829291906151d9565b602060405180830381865af415801561229d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122c19190614f83565b612307576122fc836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084604001518a612aac565b506040810186905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161234391908a906004016151d9565b602060405180830381865af415801561235e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123829190614f83565b6123d6576123cb836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e6572466565000000000000000000815250846060015189612aac565b506060810185905260015b8015610cac57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612418573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061243c9190614f5d565b6001600160a01b031663ebb41c0c84846040518363ffffffff1660e01b81526004016124699291906151f4565b5f604051808303815f87803b158015612480575f80fd5b505af1158015612492573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b92506020019050611437565b5f805f80516020615aaf83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561253c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125609190614f83565b1561258c5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016108b4565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156125de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126029190614f83565b61262a5760405163b9304b0d60e01b81526001600160a01b03841660048201526024016108b4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa15801561267c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126a09190614f10565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f80516020615acf8339815191525f806127016126e4611cd8565b87306126f360045f8a8c615611565b6126fc91615638565b613c59565b91509150816127bf5763ffffffff81161561279c57825460ff60a01b1916600160a01b17835561272f611cd8565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161275e93929190615670565b5f604051808303815f87803b158015612775575f80fd5b505af1158015612787573d5f803e3d5ffd5b5050845460ff60a01b19168555506127bf9050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016108b4565b505050505050565b5f806127d48360016128b3565b91509150915091565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af415801561283e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128629190614f83565b9392505050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401612823565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015281905f6128ff86600b5b60ff9081169116141590565b156129b95773__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed36129306001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260ff8916604482015287151560648201526084015f60405180830381865af4158015612988573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526129af91908101906156af565b9092509050612a61565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__63aa13a9886129e56001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015287151560448201526064015f60405180830381865af4158015612a34573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a5b91908101906156af565b90925090505b90519590945092505050565b6101a1613d61565b5f80516020615aef833981519152805460011901612aa657604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b81516020808401518351918401516040517f17326f60f251bc425d57bf37b0630491536a1e7231c46d08b25915a90c59ee7c94612af1948a948a9492939092906156f2565b60405180910390a150505050565b60015f80516020615aef83398151915255565b5f80516020615b0f8339815191528054600160401b810460ff1615906001600160401b03165f81158015612b435750825b90505f826001600160401b03166001148015612b5e5750303b155b905081158015612b6c575080155b15612b8a5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612bb457845460ff60401b1916600160401b1785555b5f8087806020019051810190612bca919061574e565b91509150612bd982828b613d99565b612be36028613e3b565b600280546001600160a01b0319166001600160a01b0392909216919091178155612c0c90613e3b565b600380546001600160a01b0319166001600160a01b0392909216919091179055612c36600a613e3b565b600480546001600160a01b0319166001600160a01b0392909216919091179055612c6663e8e886d960e01b613ecc565b50508315610cac57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611437565b60405163d905700760e01b81526001600160a01b038216600482015263a9c1bc6f60e01b602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d905700790604401602060405180830381865af4158015612d0d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d319190614f83565b612d595760405163b03d8c4360e01b81526001600160a01b03821660048201526024016108b4565b50565b5f805f805f805f805f612d81612d7a6001546001600160a01b031690565b8d8d613efc565b809550819650829a508397508498505050505050826001600160a01b031663398e3d4c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612dd1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612df59190614f83565b612f915773__$fb599632d08395912d9d70eb2f0f93b5e2$__637d482da1612e256001546001600160a01b031690565b6001600160a01b031663caed98976040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e849190614f5d565b8c46612e8e611cd8565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ec9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612eed91906155f6565b6040516001600160e01b031960e087901b1681526001600160a01b039485166004820152939092166024840152604483015260ff166064820152608401602060405180830381865af4158015612f45573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f699190614f83565b612f9157604051633acbdd6160e01b81526001600160a01b038b1660048201526024016108b4565b826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fcd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ff19190614f5d565b9850826001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa15801561302f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130539190614f5d565b9750826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613091573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130b59190614f5d565b965060ff8b16600c0361314157600354604051635d96628960e01b81526001600160a01b038481166004830152838116602483015290911690635d966289906044015f604051808303815f875af1158015613112573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261313991908101906155c5565b5194506131c5565b600354604051631fa14e4960e11b81526001600160a01b03848116600483015260ff8e166024830152838116604483015290911690633f429c92906064015f604051808303815f875af115801561319a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526131c191908101906155c5565b5194505b5f826001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613201573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613228919081019061502c565b905073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d6132566001546001600160a01b031690565b8f8e8d6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613294573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132b89190614f5d565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af4158015613312573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133369190614f5d565b6001600160a01b039081166020830152604051631c4b0d8b60e31b81529089169063e2586c589061336d908990859060040161577b565b5f604051808303815f87803b158015613384575f80fd5b505af1158015613396573d5f803e3d5ffd5b5050505050816001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af11580156133d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133fc9190614f10565b506040516366704a7d60e01b81526001600160a01b038d8116600483015260ff8d1660248301528916906366704a7d906044015f604051808303815f87803b158015613446575f80fd5b505af1158015613458573d5f803e3d5ffd5b505050507f269a46dac9ba8227194b6513fdb68da07796b42aa1d111f1eaec8f2126aed6c684868d8f8e866040516134d8969594939291906001600160601b03968716815294909516602085015260ff9290921660408401526001600160a01b03908116606084015290811660808301529190911660a082015260c00190565b60405180910390a150505050939792965093509350565b5f8080808061350187600f5b88612d5c565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa15801561355a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526135819190810190615333565b60a08101516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156135e0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136049190614f83565b1561363b5760a08101516040516397f129bf60e01b81526001600160601b03808516600483015290911660248201526044016108b4565b5f889050836001600160a01b031663490840b488836001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa15801561368b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136af91906157d6565b6040518363ffffffff1660e01b81526004016136cc929190615864565b5f604051808303815f87803b1580156136e3575f80fd5b505af11580156136f5573d5f803e3d5ffd5b505050506001600160601b03871660a083015260405163659743e960e11b81526001600160a01b0385169063cb2e87d290613739908690869060ff906004016158ec565b5f604051808303815f87803b158015613750575f80fd5b505af1158015613762573d5f803e3d5ffd5b5050505050505050505092915050565b5f61377b612a75565b5f80808061378a87600e6134fb565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa1580156137e3573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261380a9190810190615333565b905080604001516138395760405163931d421760e01b81526001600160601b03831660048201526024016108b4565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613895573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138b99190614f83565b156138f05760c08101516040516323a0cc7160e11b81526001600160601b03808516600483015290911660248201526044016108b4565b6001600160601b03861660c082015260405163659743e960e11b81526001600160a01b0384169063cb2e87d290611713908590859060ff906004016158ec565b5f8080808061394087600d6134fb565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa158015613999573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526139c09190810190615333565b9050806060015160ff165f036139f457604051634435e56b60e01b81526001600160601b03831660048201526024016108b4565b806060015160ff16816080015160ff1603613a3c5760608101516040516379060d1360e11b81526001600160601b038416600482015260ff90911660248201526044016108b4565b858160e00151826080015160ff1681518110613a5a57613a5a615920565b6001600160601b039092166020928302919091019091015260808101805190613a8282615934565b60ff169052506001600160a01b03831663cb2e87d28383613aa160ff90565b6040518463ffffffff1660e01b8152600401613abf939291906158ec565b5f604051808303815f87803b158015613ad6575f80fd5b505af1158015613ae8573d5f803e3d5ffd5b50505050505050505092915050565b5f80516020615acf83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f613b606149bf565b6001546001600160a01b031660405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015613bb9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bdd9190614f10565b604051636a05a41360e01b81526001600160601b03821660048201529092506001600160a01b03851690636a05a413906024016101c060405180830381865afa158015613c2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c50919061511b565b90509250929050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613cc7919061595e565b5f60405180830381855afa9150503d805f8114613cff576040519150601f19603f3d011682016040523d82523d5f602084013e613d04565b606091505b50915091508115613d56576040815110613d365780806020019051810190613d2c9190615974565b9094509250613d56565b6020815110613d565780806020019051810190613d539190614f83565b93505b505094509492505050565b5f80516020615b0f83398151915254600160401b900460ff16613d9757604051631afcd79f60e31b815260040160405180910390fd5b565b613da1613d61565b613da9614674565b613e268383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613dea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e0e9190614f10565b60085f8660405180602001604052805f815250614684565b613e3663daf9067160e01b613ecc565b505050565b5f613e4e6001546001600160a01b031690565b6001600160a01b031663d39e604383613e65611a88565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613ea8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061175b9190614f5d565b613ed4613d61565b612d59816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6040516308b09a5f60e41b81523360048201525f90819081908190819081906001600160a01b038a1690638b09a5f0906024015f60405180830381865afa158015613f49573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613f7091908101906155c5565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015613fcc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ff09190614f83565b156140105760405163f75940a160e01b81523360048201526024016108b4565b805f015193508792505f836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015614055573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261407c91908101906155c5565b905061409381604001518960ff9081169116141590565b156140d3576040808201519051634a2e948760e11b81526001600160a01b038b16600482015260ff808b16602483015290911660448201526064016108b4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b038b811660048301529190911690635e546bee90602401602060405180830381865afa158015614125573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141499190614f10565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156141a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141c49190614f83565b156141ed576040516322e6526160e11b81526001600160a01b038a1660048201526024016108b4565b60405163bf8e179760e01b81526001600160601b03861660048201525f906001600160a01b038c169063bf8e179790602401602060405180830381865afa15801561423a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061425e9190614f5d565b90506142cb856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561429f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142c391906155f6565b6128f3611a88565b1561436e5789856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561430d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061433191906155f6565b614339611a88565b6040516381ce428760e01b81526001600160a01b03909316600484015260ff91821660248401521660448201526064016108b4565b614431856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143d191906155f6565b826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561440d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128f391906155f6565b156144f75789856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015614473573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061449791906155f6565b826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156144d3573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061433991906155f6565b6145088260200151845f01516147c1565b156145405782516020830151604051633e22765160e11b81526001600160601b039283166004820152911660248201526044016108b4565b60ff8916600c0361459d5761455b83604001516128f3600a90565b15614594578251604080850151905163179bdfb960e01b81526001600160601b03909216600483015260ff1660248201526044016108b4565b825197506145ed565b6145ad83604001516128f3600c90565b156145e5578251604080850151905162d4546160e11b81526001600160601b03909216600483015260ff1660248201526044016108b4565b826020015197505b60a082015160405163bf8e179760e01b81526001600160601b038a1660048201529094506001600160a01b038c169063bf8e179790602401602060405180830381865afa158015614640573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146649190614f5d565b9650505050939792965093509350565b61467c613d61565b613d9761480b565b61468c613d61565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af41580156146e2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906147069190614f83565b61472e5760405163cf6935e560e01b81526001600160a01b03881660048201526024016108b4565b61473787614813565b6147418683614824565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016147b083826159f4565b506120a7634a531f3360e01b613ecc565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401612823565b612aff613d61565b61481b613d61565b612d598161489a565b61482c613d61565b6148346148ab565b61483d826148f3565b6001600160a01b0381166148645760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020615aaf83398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b6148a2613d61565b612d5981613af7565b6148b3613d61565b613d976301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6148fb613d61565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015614951573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906149759190614f83565b61499d5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016108b4565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6040805161012081019091525f60e08201818152610100830191909152819081526020016149fc604080518082019091525f808252602082015290565b8152602001614a1a604080518082019091525f808252602082015290565b8152602001614a38604080518082019091525f808252602082015290565b8152602001614a56604080518082019091525f808252602082015290565b8152602001614a74604080518082019091525f808252602082015290565b8152602001614a92604080518082019091525f808252602082015290565b905290565b5f60208284031215614aa7575f80fd5b81356001600160e01b031981168114612862575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614b34608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614b78610100840182614abe565b949350505050565b6001600160601b0381168114612d59575f80fd5b5f60208284031215614ba4575f80fd5b813561286281614b80565b8015158114612d59575f80fd5b5f60208284031215614bcc575f80fd5b813561286281614baf565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b0381118282101715614c0d57614c0d614bd7565b60405290565b604051606081016001600160401b0381118282101715614c0d57614c0d614bd7565b60405160e081016001600160401b0381118282101715614c0d57614c0d614bd7565b60405161010081016001600160401b0381118282101715614c0d57614c0d614bd7565b604051601f8201601f191681016001600160401b0381118282101715614ca257614ca2614bd7565b604052919050565b5f6001600160401b03821115614cc257614cc2614bd7565b50601f01601f191660200190565b5f82601f830112614cdf575f80fd5b8135614cf2614ced82614caa565b614c7a565b818152846020838601011115614d06575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614d32575f80fd5b81356001600160401b03811115614d47575f80fd5b614b7884828501614cd0565b6001600160a01b0381168114612d59575f80fd5b5f8060408385031215614d78575f80fd5b8235614d8381614d53565b91506020830135614d9381614b80565b809150509250929050565b5f60408284031215614dae575f80fd5b614db6614beb565b90508135614dc381614d53565b81526020820135614dd381614b80565b602082015292915050565b5f8060808385031215614def575f80fd5b614df98484614d9e565b9150613c508460408501614d9e565b5f8060408385031215614e19575f80fd5b8235614e2481614d53565b915060208301356001600160401b03811115614e3e575f80fd5b614e4a85828601614cd0565b9150509250929050565b5f8060408385031215614e65575f80fd5b8235614e7081614d53565b91506020830135614d9381614d53565b5f60208284031215614e90575f80fd5b813561286281614d53565b5f805f60c08486031215614ead575f80fd5b614eb78585614d9e565b9250614ec68560408601614d9e565b9150614ed58560808601614d9e565b90509250925092565b5f60208284031215614eee575f80fd5b815162ffffff81168114612862575f80fd5b8051614f0b81614b80565b919050565b5f60208284031215614f20575f80fd5b815161286281614b80565b600181811c90821680614f3f57607f821691505b6020821081036119f657634e487b7160e01b5f52602260045260245ffd5b5f60208284031215614f6d575f80fd5b815161286281614d53565b8051614f0b81614baf565b5f60208284031215614f93575f80fd5b815161286281614baf565b8051614f0b81614d53565b6001600160401b0381168114612d59575f80fd5b5f60208284031215614fcd575f80fd5b815161286281614fa9565b5f614fe5614ced84614caa565b9050828152838383011115614ff8575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f83011261501d575f80fd5b61286283835160208501614fd8565b5f6020828403121561503c575f80fd5b81516001600160401b03811115615051575f80fd5b820160608185031215615062575f80fd5b61506a614c13565b81516001600160401b0381111561507f575f80fd5b8201601f8101861361508f575f80fd5b61509e86825160208401614fd8565b82525060208201516150af81614d53565b602082015260408201516001600160401b038111156150cc575f80fd5b6150d88682850161500e565b604083015250949350505050565b5f604082840312156150f6575f80fd5b6150fe614beb565b9050815161510b81614d53565b81526020820151614dd381614b80565b5f6101c082840312801561512d575f80fd5b50615136614c35565b61514084846150e6565b815261514f84604085016150e6565b602082015261516184608085016150e6565b60408201526151738460c085016150e6565b60608201526151868461010085016150e6565b60808201526151998461014085016150e6565b60a08201526151ac8461018085016150e6565b60c08201529392505050565b80516001600160a01b031682526020908101516001600160601b0316910152565b608081016151e782856151b8565b61286260408301846151b8565b5f6101e0820190506001600160601b03841682526152166020830184516151b8565b602083015161522860608401826151b8565b50604083015161523b60a08401826151b8565b50606083015161524e60e08401826151b8565b5060808301516152626101208401826151b8565b5060a08301516152766101608401826151b8565b5060c083015161528a6101a08401826151b8565b509392505050565b60ff81168114612d59575f80fd5b8051614f0b81615292565b5f82601f8301126152ba575f80fd5b81516001600160401b038111156152d3576152d3614bd7565b8060051b6152e360208201614c7a565b918252602081850181019290810190868411156152fe575f80fd5b6020860192505b8383101561532957825161531881614b80565b825260209283019290910190615305565b9695505050505050565b5f60208284031215615343575f80fd5b81516001600160401b03811115615358575f80fd5b8201610100818503121561536a575f80fd5b615372614c57565b61537b82614f78565b815261538960208301614f78565b602082015261539a60408301614f78565b60408201526153ab606083016152a0565b60608201526153bc608083016152a0565b60808201526153cd60a08301614f00565b60a08201526153de60c08301614f00565b60c082015260e08201516001600160401b038111156153fb575f80fd5b615407868285016152ab565b60e083015250949350505050565b5f8151808452602084019350602083015f5b8281101561544e5781516001600160601b0316865260209586019590910190600101615427565b5093949350505050565b8051151582526020810151151560208301525f604082015161547e604085018215159052565b506060820151615493606085018260ff169052565b5060808201516154a8608085018260ff169052565b5060a08201516154c360a08501826001600160601b03169052565b5060c08201516154de60c08501826001600160601b03169052565b5060e082015161010060e0850152614b78610100850182615415565b6001600160601b0383168152604060208201525f614b786040830184615458565b5f60e0828403121561552b575f80fd5b615533614c35565b905061553e82614f00565b815261554c60208301614f00565b602082015261555d604083016152a0565b604082015261556e60608301614f78565b606082015261557f60808301614f9e565b608082015261559060a08301614f9e565b60a082015260c08201516001600160401b038111156155ad575f80fd5b6155b98482850161500e565b60c08301525092915050565b5f602082840312156155d5575f80fd5b81516001600160401b038111156155ea575f80fd5b614b788482850161551b565b5f60208284031215615606575f80fd5b815161286281615292565b5f808585111561561f575f80fd5b8386111561562b575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015615669576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f80604083850312156156c0575f80fd5b82516001600160401b038111156156d5575f80fd5b6156e18582860161551b565b9250506020830151614d9381614d53565b6001600160601b038716815260c060208201525f61571360c0830188614abe565b6001600160a01b0396871660408401526001600160601b039586166060840152939095166080820152921660a0909201919091529392505050565b5f806040838503121561575f575f80fd5b825161576a81614d53565b6020840151909250614d9381614d53565b6001600160601b0383168152604060208201525f8251606060408401526157a560a0840182614abe565b60208501516001600160a01b031660608501526040850151848203603f190160808601529091506153298282614abe565b5f60e08284031280156157e7575f80fd5b506157f0614c35565b82516157fb81614b80565b8152602083015161580b81614d53565b6020820152604083015161581e81614d53565b6040820152606083015161583181614baf565b606082015261584260808401614f78565b608082015261585360a08401614f78565b60a08201526151ac60c08401614f78565b5f610100820190506001600160601b03841682526001600160601b03835116602083015260018060a01b03602084015116604083015260018060a01b03604084015116606083015260608301511515608083015260808301516158cb60a084018215159052565b5060a083015180151560c08401525060c083015180151560e084015261528a565b6001600160601b0384168152606060208201525f61590d6060830185615458565b905060ff83166040830152949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f60ff821660ff810361595557634e487b7160e01b5f52601160045260245ffd5b60010192915050565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615985575f80fd5b825161599081614baf565b602084015190925063ffffffff81168114614d93575f80fd5b601f821115613e3657805f5260205f20601f840160051c810160208510156159ce5750805b601f840160051c820191505b818110156159ed575f81556001016159da565b5050505050565b81516001600160401b03811115615a0d57615a0d614bd7565b615a2181615a1b8454614f2b565b846159a9565b6020601f821160018114615a53575f8315615a3c5750848201515b5f19600385901b1c1916600184901b1784556159ed565b5f84815260208120601f198516915b82811015615a825787850151825560209485019460019092019101615a62565b5084821015615a9f57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122099e4b6e5b5db4119f76b3bc91171ebab7206a418bb5a072bc4ac5566f7f9595f64736f6c634300081a0033",
1248
+ "linkReferences": {
1249
+ "contracts/shared/ContractLib.sol": {
1250
+ "ContractLib": [
1251
+ {
1252
+ "length": 20,
1253
+ "start": 10716
1254
+ },
1255
+ {
1256
+ "length": 20,
1257
+ "start": 10897
1258
+ },
1259
+ {
1260
+ "length": 20,
1261
+ "start": 11691
1262
+ },
1263
+ {
1264
+ "length": 20,
1265
+ "start": 11985
1266
+ },
1267
+ {
1268
+ "length": 20,
1269
+ "start": 18304
1270
+ },
1271
+ {
1272
+ "length": 20,
1273
+ "start": 18927
1274
+ }
1275
+ ]
1276
+ },
1277
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
1278
+ "TokenHandlerDeployerLib": [
1279
+ {
1280
+ "length": 20,
1281
+ "start": 13058
1282
+ }
1283
+ ]
1284
+ },
1285
+ "contracts/type/Amount.sol": {
1286
+ "AmountLib": [
1287
+ {
1288
+ "length": 20,
1289
+ "start": 2116
1290
+ },
1291
+ {
1292
+ "length": 20,
1293
+ "start": 2265
1294
+ },
1295
+ {
1296
+ "length": 20,
1297
+ "start": 10459
1298
+ },
1299
+ {
1300
+ "length": 20,
1301
+ "start": 10599
1302
+ }
1303
+ ]
1304
+ },
1305
+ "contracts/type/Fee.sol": {
1306
+ "FeeLib": [
1307
+ {
1308
+ "length": 20,
1309
+ "start": 4516
1310
+ },
1311
+ {
1312
+ "length": 20,
1313
+ "start": 4699
1314
+ },
1315
+ {
1316
+ "length": 20,
1317
+ "start": 7755
1318
+ },
1319
+ {
1320
+ "length": 20,
1321
+ "start": 7958
1322
+ },
1323
+ {
1324
+ "length": 20,
1325
+ "start": 8146
1326
+ },
1327
+ {
1328
+ "length": 20,
1329
+ "start": 8989
1330
+ },
1331
+ {
1332
+ "length": 20,
1333
+ "start": 9200
1334
+ }
1335
+ ]
1336
+ },
1337
+ "contracts/type/NftId.sol": {
1338
+ "NftIdLib": [
1339
+ {
1340
+ "length": 20,
1341
+ "start": 1514
1342
+ },
1343
+ {
1344
+ "length": 20,
1345
+ "start": 5563
1346
+ },
1347
+ {
1348
+ "length": 20,
1349
+ "start": 5700
1350
+ },
1351
+ {
1352
+ "length": 20,
1353
+ "start": 7292
1354
+ },
1355
+ {
1356
+ "length": 20,
1357
+ "start": 9690
1358
+ },
1359
+ {
1360
+ "length": 20,
1361
+ "start": 13950
1362
+ },
1363
+ {
1364
+ "length": 20,
1365
+ "start": 14643
1366
+ },
1367
+ {
1368
+ "length": 20,
1369
+ "start": 16490
1370
+ },
1371
+ {
1372
+ "length": 20,
1373
+ "start": 16958
1374
+ },
1375
+ {
1376
+ "length": 20,
1377
+ "start": 18623
1378
+ }
1379
+ ]
1380
+ },
1381
+ "contracts/type/RoleId.sol": {
1382
+ "RoleIdLib": [
1383
+ {
1384
+ "length": 20,
1385
+ "start": 6869
1386
+ }
1387
+ ]
1388
+ },
1389
+ "contracts/type/Version.sol": {
1390
+ "VersionLib": [
1391
+ {
1392
+ "length": 20,
1393
+ "start": 1310
1394
+ },
1395
+ {
1396
+ "length": 20,
1397
+ "start": 3588
1398
+ }
1399
+ ]
1400
+ }
1401
+ },
1402
+ "deployedLinkReferences": {
1403
+ "contracts/shared/ContractLib.sol": {
1404
+ "ContractLib": [
1405
+ {
1406
+ "length": 20,
1407
+ "start": 10502
1408
+ },
1409
+ {
1410
+ "length": 20,
1411
+ "start": 10683
1412
+ },
1413
+ {
1414
+ "length": 20,
1415
+ "start": 11477
1416
+ },
1417
+ {
1418
+ "length": 20,
1419
+ "start": 11771
1420
+ },
1421
+ {
1422
+ "length": 20,
1423
+ "start": 18090
1424
+ },
1425
+ {
1426
+ "length": 20,
1427
+ "start": 18713
1428
+ }
1429
+ ]
1430
+ },
1431
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
1432
+ "TokenHandlerDeployerLib": [
1433
+ {
1434
+ "length": 20,
1435
+ "start": 12844
1436
+ }
1437
+ ]
1438
+ },
1439
+ "contracts/type/Amount.sol": {
1440
+ "AmountLib": [
1441
+ {
1442
+ "length": 20,
1443
+ "start": 1902
1444
+ },
1445
+ {
1446
+ "length": 20,
1447
+ "start": 2051
1448
+ },
1449
+ {
1450
+ "length": 20,
1451
+ "start": 10245
1452
+ },
1453
+ {
1454
+ "length": 20,
1455
+ "start": 10385
1456
+ }
1457
+ ]
1458
+ },
1459
+ "contracts/type/Fee.sol": {
1460
+ "FeeLib": [
1461
+ {
1462
+ "length": 20,
1463
+ "start": 4302
1464
+ },
1465
+ {
1466
+ "length": 20,
1467
+ "start": 4485
1468
+ },
1469
+ {
1470
+ "length": 20,
1471
+ "start": 7541
1472
+ },
1473
+ {
1474
+ "length": 20,
1475
+ "start": 7744
1476
+ },
1477
+ {
1478
+ "length": 20,
1479
+ "start": 7932
1480
+ },
1481
+ {
1482
+ "length": 20,
1483
+ "start": 8775
1484
+ },
1485
+ {
1486
+ "length": 20,
1487
+ "start": 8986
1488
+ }
1489
+ ]
1490
+ },
1491
+ "contracts/type/NftId.sol": {
1492
+ "NftIdLib": [
1493
+ {
1494
+ "length": 20,
1495
+ "start": 1300
1496
+ },
1497
+ {
1498
+ "length": 20,
1499
+ "start": 5349
1500
+ },
1501
+ {
1502
+ "length": 20,
1503
+ "start": 5486
1504
+ },
1505
+ {
1506
+ "length": 20,
1507
+ "start": 7078
1508
+ },
1509
+ {
1510
+ "length": 20,
1511
+ "start": 9476
1512
+ },
1513
+ {
1514
+ "length": 20,
1515
+ "start": 13736
1516
+ },
1517
+ {
1518
+ "length": 20,
1519
+ "start": 14429
1520
+ },
1521
+ {
1522
+ "length": 20,
1523
+ "start": 16276
1524
+ },
1525
+ {
1526
+ "length": 20,
1527
+ "start": 16744
1528
+ },
1529
+ {
1530
+ "length": 20,
1531
+ "start": 18409
1532
+ }
1533
+ ]
1534
+ },
1535
+ "contracts/type/RoleId.sol": {
1536
+ "RoleIdLib": [
1537
+ {
1538
+ "length": 20,
1539
+ "start": 6655
1540
+ }
1541
+ ]
1542
+ },
1543
+ "contracts/type/Version.sol": {
1544
+ "VersionLib": [
1545
+ {
1546
+ "length": 20,
1547
+ "start": 1096
1548
+ },
1549
+ {
1550
+ "length": 20,
1551
+ "start": 3374
1552
+ }
1553
+ ]
1554
+ }
1555
+ }
1556
+ }