@etherisc/gif-next 0.0.2-b28f7c7-340 → 0.0.2-b2910e7-757

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