@etherisc/gif-next 0.0.2-b28f7c7-340 → 0.0.2-b312c9a-831

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