@etherisc/gif-next 0.0.2-9dd1984-554 → 0.0.2-9e62264-142

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 (692) hide show
  1. package/README.md +59 -18
  2. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  3. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1253 -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 +358 -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 +1032 -0
  12. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
  14. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
  16. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  17. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
  18. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
  20. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
  22. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  23. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1489 -0
  24. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
  26. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1159 -0
  28. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1520 -0
  30. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +842 -0
  32. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +906 -0
  34. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +932 -0
  36. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  37. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
  38. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  39. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +294 -1443
  40. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  41. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +389 -202
  42. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  43. package/artifacts/contracts/instance/Instance.sol/Instance.json +417 -2522
  44. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  45. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1626 -0
  46. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  47. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
  48. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  49. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +818 -409
  50. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  51. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +542 -345
  52. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  53. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +369 -95
  54. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  55. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3712 -0
  56. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  57. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  58. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  59. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
  60. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  61. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  62. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  63. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
  64. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  65. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
  66. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  67. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +25 -150
  68. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  69. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  70. package/artifacts/contracts/instance/module/{ITreasury.sol/ITreasury.json → IComponents.sol/IComponents.json} +2 -2
  71. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  72. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  73. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  74. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  75. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  76. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  77. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1126 -0
  78. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  79. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
  80. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  81. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  82. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  83. package/artifacts/contracts/{instance/service/IBundleService.sol/IBundleService.json → oracle/IOracleComponent.sol/IOracleComponent.json} +390 -345
  84. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  85. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +675 -0
  86. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  87. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1018 -0
  88. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  89. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
  90. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  91. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
  92. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  93. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1395 -0
  94. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  95. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
  96. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  97. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1474 -0
  98. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  99. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +822 -0
  100. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  101. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +907 -0
  102. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  103. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/IPoolComponent.sol/IPoolComponent.json} +398 -347
  104. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  105. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1208 -0
  106. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  107. package/artifacts/contracts/pool/Pool.sol/Pool.json +1181 -0
  108. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  109. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1615 -0
  110. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  111. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +758 -0
  112. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  113. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +852 -0
  114. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  115. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +722 -0
  116. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  117. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1243 -0
  118. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  119. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
  120. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  121. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1331 -0
  122. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  123. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
  124. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  125. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IApplicationService.sol/IApplicationService.json} +216 -235
  126. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  127. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +788 -0
  128. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  129. package/artifacts/contracts/{instance/service → product}/IPolicyService.sol/IPolicyService.json +337 -313
  130. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  131. package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → product/IPricingService.sol/IPricingService.json} +270 -220
  132. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  133. package/artifacts/contracts/{components/Product.sol/Product.json → product/IProductComponent.sol/IProductComponent.json} +433 -276
  134. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  135. package/artifacts/contracts/{components/IComponent.sol/IComponent.json → product/IRiskService.sol/IRiskService.json} +134 -147
  136. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  137. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1242 -0
  138. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  139. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +774 -0
  140. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  141. package/artifacts/contracts/product/PricingService.sol/PricingService.json +1017 -0
  142. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  143. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
  144. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  145. package/artifacts/contracts/product/Product.sol/Product.json +1201 -0
  146. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  147. package/artifacts/contracts/product/RiskService.sol/RiskService.json +695 -0
  148. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  149. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +702 -0
  150. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  151. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
  152. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  153. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +281 -15
  154. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  155. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +223 -259
  156. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  157. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
  158. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  159. package/artifacts/contracts/registry/Registry.sol/Registry.json +539 -35
  160. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  161. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1746 -0
  162. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  163. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +531 -274
  164. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  165. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +352 -82
  166. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  167. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
  168. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  169. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1159 -0
  170. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  171. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
  172. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  173. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +360 -96
  174. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  175. package/artifacts/contracts/shared/Component.sol/Component.json +832 -0
  176. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  177. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1680 -0
  178. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  179. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +804 -0
  180. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  181. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +181 -237
  182. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  183. package/artifacts/contracts/{components/Component.sol/Component.json → shared/IComponent.sol/IComponent.json} +259 -152
  184. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  185. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
  186. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  187. package/artifacts/contracts/{components/Distribution.sol/Distribution.json → shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json} +252 -243
  188. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  189. package/artifacts/contracts/{instance/IInstanceBase.sol/IInstanceBase.json → shared/IKeyValueStore.sol/IKeyValueStore.json} +60 -34
  190. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  191. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
  192. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  193. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +34 -30
  194. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  195. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
  196. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  197. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +15 -35
  198. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  199. package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +15 -17
  200. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  201. package/artifacts/contracts/shared/IService.sol/IService.json +84 -159
  202. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  203. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  204. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  205. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +73 -0
  206. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  207. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +940 -0
  208. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  209. package/artifacts/contracts/{instance/base/IKeyValueStore.sol/IKeyValueStore.json → shared/KeyValueStore.sol/KeyValueStore.json} +88 -20
  210. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  211. package/artifacts/contracts/{experiment/statemachine/ISM.sol/ISM.json → shared/Lifecycle.sol/Lifecycle.json} +54 -45
  212. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  213. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  214. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  215. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +115 -29
  216. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  217. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
  218. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  219. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +132 -53
  220. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  221. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
  222. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  223. package/artifacts/contracts/shared/Service.sol/Service.json +189 -150
  224. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  225. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +382 -9
  226. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  227. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
  228. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  229. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1412 -0
  230. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  231. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
  232. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  233. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +387 -0
  234. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  235. package/artifacts/contracts/staking/Staking.sol/Staking.json +1941 -0
  236. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  237. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
  238. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  239. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
  240. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  241. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
  242. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  243. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
  244. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  245. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
  246. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  247. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
  248. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  249. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +576 -0
  250. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  251. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  252. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  253. package/artifacts/contracts/type/Amount.sol/AmountLib.json +374 -0
  254. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  255. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  256. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  257. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
  258. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  259. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  260. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  261. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  262. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  263. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  264. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  265. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  266. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  267. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  268. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  269. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  270. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  271. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  272. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  273. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  274. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  275. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  276. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  277. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
  278. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  279. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
  280. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  281. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +222 -0
  282. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  283. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  284. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  285. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  286. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  287. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  288. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  289. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  290. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  291. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  292. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  293. package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
  294. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  295. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +535 -0
  296. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  297. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  298. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  299. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
  300. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  301. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +55 -0
  302. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  303. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +617 -0
  304. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  305. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  306. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  307. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +78 -0
  308. package/contracts/authorization/AccessAdmin.sol +591 -0
  309. package/contracts/authorization/AccessManagerCloneable.sol +16 -0
  310. package/contracts/authorization/Authorization.sol +217 -0
  311. package/contracts/authorization/IAccess.sol +48 -0
  312. package/contracts/authorization/IAccessAdmin.sol +136 -0
  313. package/contracts/authorization/IAuthorization.sol +54 -0
  314. package/contracts/authorization/IModuleAuthorization.sol +21 -0
  315. package/contracts/authorization/IServiceAuthorization.sol +38 -0
  316. package/contracts/authorization/ModuleAuthorization.sol +78 -0
  317. package/contracts/authorization/ServiceAuthorization.sol +90 -0
  318. package/contracts/distribution/BasicDistribution.sol +138 -0
  319. package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
  320. package/contracts/distribution/Distribution.sol +295 -0
  321. package/contracts/distribution/DistributionService.sol +336 -0
  322. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  323. package/contracts/distribution/IDistributionComponent.sol +52 -0
  324. package/contracts/distribution/IDistributionService.sol +101 -0
  325. package/contracts/instance/{BundleManager.sol → BundleSet.sol} +40 -43
  326. package/contracts/instance/IInstance.sol +55 -52
  327. package/contracts/instance/IInstanceService.sol +73 -21
  328. package/contracts/instance/Instance.sol +163 -196
  329. package/contracts/instance/InstanceAdmin.sol +285 -0
  330. package/contracts/instance/InstanceAuthorizationV3.sol +203 -0
  331. package/contracts/instance/InstanceReader.sol +194 -87
  332. package/contracts/instance/InstanceService.sol +364 -242
  333. package/contracts/instance/InstanceServiceManager.sol +13 -27
  334. package/contracts/instance/InstanceStore.sol +291 -0
  335. package/contracts/instance/base/BalanceStore.sol +123 -0
  336. package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
  337. package/contracts/instance/base/ObjectCounter.sol +21 -0
  338. package/contracts/instance/base/ObjectLifecycle.sol +110 -0
  339. package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +20 -42
  340. package/contracts/instance/module/IAccess.sol +19 -21
  341. package/contracts/instance/module/IBundle.sol +8 -8
  342. package/contracts/instance/module/IComponents.sol +46 -0
  343. package/contracts/instance/module/IDistribution.sol +6 -4
  344. package/contracts/instance/module/IPolicy.sol +58 -17
  345. package/contracts/instance/module/IRisk.sol +1 -1
  346. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  347. package/contracts/oracle/BasicOracle.sol +48 -0
  348. package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
  349. package/contracts/oracle/IOracle.sol +36 -0
  350. package/contracts/oracle/IOracleComponent.sol +33 -0
  351. package/contracts/oracle/IOracleService.sol +65 -0
  352. package/contracts/oracle/Oracle.sol +166 -0
  353. package/contracts/oracle/OracleService.sol +278 -0
  354. package/contracts/oracle/OracleServiceManager.sol +39 -0
  355. package/contracts/pool/BasicPool.sol +166 -0
  356. package/contracts/pool/BasicPoolAuthorization.sol +58 -0
  357. package/contracts/pool/BundleService.sol +438 -0
  358. package/contracts/pool/BundleServiceManager.sol +39 -0
  359. package/contracts/pool/IBundleService.sol +134 -0
  360. package/contracts/pool/IPoolComponent.sol +58 -0
  361. package/contracts/pool/IPoolService.sol +160 -0
  362. package/contracts/pool/Pool.sol +326 -0
  363. package/contracts/pool/PoolService.sol +509 -0
  364. package/contracts/pool/PoolServiceManager.sol +39 -0
  365. package/contracts/product/ApplicationService.sol +250 -0
  366. package/contracts/product/ApplicationServiceManager.sol +38 -0
  367. package/contracts/product/BasicProduct.sol +52 -0
  368. package/contracts/product/BasicProductAuthorization.sol +43 -0
  369. package/contracts/product/ClaimService.sol +416 -0
  370. package/contracts/product/ClaimServiceManager.sol +38 -0
  371. package/contracts/product/IApplicationService.sol +63 -0
  372. package/contracts/product/IClaimService.sol +100 -0
  373. package/contracts/product/IPolicyService.sol +73 -0
  374. package/contracts/product/IPricingService.sol +39 -0
  375. package/contracts/product/IProductComponent.sol +39 -0
  376. package/contracts/product/IRiskService.sol +33 -0
  377. package/contracts/product/PolicyService.sol +574 -0
  378. package/contracts/product/PolicyServiceManager.sol +39 -0
  379. package/contracts/product/PricingService.sol +304 -0
  380. package/contracts/product/PricingServiceManager.sol +39 -0
  381. package/contracts/product/Product.sol +406 -0
  382. package/contracts/product/RiskService.sol +97 -0
  383. package/contracts/product/RiskServiceManager.sol +39 -0
  384. package/contracts/registry/ChainNft.sol +16 -1
  385. package/contracts/registry/IRegistry.sol +67 -24
  386. package/contracts/registry/IRegistryService.sol +45 -34
  387. package/contracts/registry/ITransferInterceptor.sol +1 -0
  388. package/contracts/registry/Registry.sol +317 -137
  389. package/contracts/registry/RegistryAdmin.sol +374 -0
  390. package/contracts/registry/RegistryService.sol +111 -179
  391. package/contracts/registry/RegistryServiceManager.sol +24 -33
  392. package/contracts/registry/ReleaseLifecycle.sol +27 -0
  393. package/contracts/registry/ReleaseRegistry.sol +485 -0
  394. package/contracts/registry/ServiceAuthorizationV3.sol +199 -0
  395. package/contracts/registry/TokenRegistry.sol +263 -58
  396. package/contracts/shared/Component.sol +268 -0
  397. package/contracts/shared/ComponentService.sol +641 -0
  398. package/contracts/shared/ComponentServiceManager.sol +35 -0
  399. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  400. package/contracts/shared/IComponent.sol +70 -0
  401. package/contracts/shared/IComponentService.sol +108 -0
  402. package/contracts/shared/IInstanceLinkedComponent.sol +49 -0
  403. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  404. package/contracts/{instance/base → shared}/ILifecycle.sol +3 -4
  405. package/contracts/shared/INftOwnable.sol +13 -12
  406. package/contracts/shared/IPolicyHolder.sol +45 -0
  407. package/contracts/shared/IRegisterable.sol +4 -4
  408. package/contracts/shared/IRegistryLinked.sol +11 -0
  409. package/contracts/shared/IService.sol +15 -6
  410. package/contracts/shared/InitializableCustom.sol +177 -0
  411. package/contracts/shared/InitializableERC165.sol +27 -0
  412. package/contracts/shared/InstanceLinkedComponent.sol +172 -0
  413. package/contracts/shared/KeyValueStore.sol +131 -0
  414. package/contracts/shared/Lifecycle.sol +77 -0
  415. package/contracts/shared/NftIdSet.sol +65 -0
  416. package/contracts/shared/NftOwnable.sol +59 -88
  417. package/contracts/shared/PolicyHolder.sol +99 -0
  418. package/contracts/shared/Registerable.sol +26 -41
  419. package/contracts/shared/RegistryLinked.sol +43 -0
  420. package/contracts/shared/Service.sol +54 -32
  421. package/contracts/shared/TokenHandler.sol +122 -10
  422. package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
  423. package/contracts/staking/IStaking.sol +167 -0
  424. package/contracts/staking/IStakingService.sol +160 -0
  425. package/contracts/staking/StakeManagerLib.sol +206 -0
  426. package/contracts/staking/Staking.sol +497 -0
  427. package/contracts/staking/StakingLifecycle.sol +23 -0
  428. package/contracts/staking/StakingManager.sol +50 -0
  429. package/contracts/staking/StakingReader.sol +183 -0
  430. package/contracts/staking/StakingService.sol +407 -0
  431. package/contracts/staking/StakingServiceManager.sol +44 -0
  432. package/contracts/staking/StakingStore.sol +605 -0
  433. package/contracts/staking/TargetManagerLib.sol +207 -0
  434. package/contracts/{types → type}/AddressSet.sol +1 -1
  435. package/contracts/type/Amount.sol +135 -0
  436. package/contracts/{types → type}/Blocknumber.sol +27 -3
  437. package/contracts/type/ClaimId.sol +75 -0
  438. package/contracts/{types → type}/DistributorType.sol +2 -2
  439. package/contracts/{types → type}/Fee.sol +33 -23
  440. package/contracts/{types → type}/NftId.sol +21 -15
  441. package/contracts/{types → type}/NftIdSet.sol +2 -2
  442. package/contracts/type/ObjectType.sol +275 -0
  443. package/contracts/type/PayoutId.sol +82 -0
  444. package/contracts/{types → type}/Referral.sol +6 -1
  445. package/contracts/type/RequestId.sol +75 -0
  446. package/contracts/{types → type}/RiskId.sol +1 -1
  447. package/contracts/type/RoleId.sol +174 -0
  448. package/contracts/type/Seconds.sol +93 -0
  449. package/contracts/type/Selector.sol +102 -0
  450. package/contracts/{types → type}/StateId.sol +34 -4
  451. package/contracts/type/String.sol +53 -0
  452. package/contracts/{types → type}/Timestamp.sol +34 -15
  453. package/contracts/{types → type}/UFixed.sol +35 -9
  454. package/contracts/{types → type}/Version.sol +5 -2
  455. package/contracts/{shared → upgradeability}/IVersionable.sol +5 -48
  456. package/contracts/upgradeability/ProxyManager.sol +198 -0
  457. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  458. package/contracts/upgradeability/Versionable.sol +59 -0
  459. package/package.json +10 -7
  460. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  461. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  462. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  463. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  464. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -152
  465. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  466. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -275
  467. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  468. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -157
  469. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  470. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  471. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
  472. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
  473. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
  474. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
  475. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
  476. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
  477. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  478. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  479. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  480. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  481. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  482. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  483. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  484. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  485. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  486. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  487. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  488. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  489. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  490. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  491. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  492. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  493. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  494. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  495. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  496. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  497. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  498. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  499. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  500. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  501. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  502. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  503. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  504. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  505. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  506. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  507. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  508. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  509. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
  510. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
  511. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  512. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -788
  513. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  514. package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  515. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  516. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1047
  517. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  518. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +0 -763
  519. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  520. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -285
  521. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  522. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  523. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -100
  524. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  525. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  526. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  527. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
  528. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  529. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  530. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  531. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  532. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  533. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1094
  534. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  535. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -436
  536. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  537. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -764
  538. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  539. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -424
  540. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  541. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  542. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +0 -446
  543. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  544. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  545. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  546. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  547. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1219
  548. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  549. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -492
  550. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  551. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -798
  552. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  553. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -424
  554. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  555. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -848
  556. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  557. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -424
  558. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  559. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  560. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  561. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -530
  562. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  563. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  564. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  565. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
  566. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  567. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -205
  568. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  569. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -349
  570. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  571. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  572. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  573. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -228
  574. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  575. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  576. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  577. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -305
  578. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  579. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  580. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  581. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -600
  582. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  583. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  584. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  585. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  586. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  587. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -286
  588. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  589. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  590. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  591. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  592. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  593. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  594. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  595. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  596. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  597. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  598. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  599. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  600. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  601. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  602. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  603. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  604. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  605. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  606. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  607. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  608. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  609. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  610. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  611. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
  612. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  613. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  614. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  615. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  616. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  617. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  618. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -249
  619. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  620. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  621. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  622. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  623. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  624. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  625. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  626. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  627. package/contracts/components/Component.sol +0 -177
  628. package/contracts/components/Distribution.sol +0 -154
  629. package/contracts/components/IComponent.sol +0 -37
  630. package/contracts/components/IDistributionComponent.sol +0 -44
  631. package/contracts/components/IPoolComponent.sol +0 -66
  632. package/contracts/components/IProductComponent.sol +0 -35
  633. package/contracts/components/Pool.sol +0 -258
  634. package/contracts/components/Product.sol +0 -295
  635. package/contracts/experiment/cloning/Cloner.sol +0 -47
  636. package/contracts/experiment/errors/Require.sol +0 -38
  637. package/contracts/experiment/errors/Revert.sol +0 -44
  638. package/contracts/experiment/inheritance/A.sol +0 -53
  639. package/contracts/experiment/inheritance/B.sol +0 -28
  640. package/contracts/experiment/inheritance/C.sol +0 -34
  641. package/contracts/experiment/inheritance/IA.sol +0 -13
  642. package/contracts/experiment/inheritance/IB.sol +0 -10
  643. package/contracts/experiment/inheritance/IC.sol +0 -12
  644. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  645. package/contracts/experiment/statemachine/ISM.sol +0 -25
  646. package/contracts/experiment/statemachine/SM.sol +0 -57
  647. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  648. package/contracts/experiment/types/TypeA.sol +0 -47
  649. package/contracts/experiment/types/TypeB.sol +0 -29
  650. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -23
  651. package/contracts/instance/IInstanceBase.sol +0 -25
  652. package/contracts/instance/InstanceAccessManager.sol +0 -303
  653. package/contracts/instance/InstanceBase.sol +0 -39
  654. package/contracts/instance/base/ComponentService.sol +0 -133
  655. package/contracts/instance/base/IInstanceBase.sol +0 -21
  656. package/contracts/instance/base/KeyValueStore.sol +0 -172
  657. package/contracts/instance/base/Lifecycle.sol +0 -100
  658. package/contracts/instance/module/ISetup.sol +0 -46
  659. package/contracts/instance/module/ITreasury.sol +0 -23
  660. package/contracts/instance/service/BundleService.sol +0 -293
  661. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  662. package/contracts/instance/service/DistributionService.sol +0 -115
  663. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  664. package/contracts/instance/service/IBundleService.sol +0 -44
  665. package/contracts/instance/service/IDistributionService.sol +0 -12
  666. package/contracts/instance/service/IPolicyService.sol +0 -94
  667. package/contracts/instance/service/IPoolService.sol +0 -20
  668. package/contracts/instance/service/IProductService.sol +0 -40
  669. package/contracts/instance/service/PolicyService.sol +0 -538
  670. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  671. package/contracts/instance/service/PoolService.sol +0 -142
  672. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  673. package/contracts/instance/service/ProductService.sol +0 -241
  674. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  675. package/contracts/registry/RegistryAccessManager.sol +0 -210
  676. package/contracts/registry/ReleaseManager.sol +0 -342
  677. package/contracts/shared/ContractDeployerLib.sol +0 -72
  678. package/contracts/shared/ERC165.sol +0 -25
  679. package/contracts/shared/ProxyManager.sol +0 -94
  680. package/contracts/shared/Versionable.sol +0 -147
  681. package/contracts/test/TestFee.sol +0 -25
  682. package/contracts/test/TestRegisterable.sol +0 -18
  683. package/contracts/test/TestRoleId.sol +0 -14
  684. package/contracts/test/TestService.sol +0 -25
  685. package/contracts/test/TestToken.sol +0 -26
  686. package/contracts/test/TestVersion.sol +0 -44
  687. package/contracts/test/TestVersionable.sol +0 -17
  688. package/contracts/types/ChainId.sol +0 -38
  689. package/contracts/types/NumberId.sol +0 -52
  690. package/contracts/types/ObjectType.sol +0 -152
  691. package/contracts/types/RoleId.sol +0 -90
  692. /package/contracts/{types → type}/Key32.sol +0 -0
@@ -0,0 +1,1615 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "PoolService",
4
+ "sourceName": "contracts/pool/PoolService.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": "NftId",
48
+ "name": "componentNftId",
49
+ "type": "uint96"
50
+ }
51
+ ],
52
+ "name": "ErrorComponentVerifyingServiceComponentIsLocked",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "NftId",
59
+ "name": "componentNftId",
60
+ "type": "uint96"
61
+ },
62
+ {
63
+ "internalType": "ObjectType",
64
+ "name": "expectedType",
65
+ "type": "uint8"
66
+ },
67
+ {
68
+ "internalType": "ObjectType",
69
+ "name": "actualType",
70
+ "type": "uint8"
71
+ }
72
+ ],
73
+ "name": "ErrorComponentVerifyingServiceComponentTypeInvalid",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "inputs": [
78
+ {
79
+ "internalType": "NftId",
80
+ "name": "nftId",
81
+ "type": "uint96"
82
+ }
83
+ ],
84
+ "name": "ErrorNftOwnableAlreadyLinked",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "internalType": "address",
91
+ "name": "contractAddress",
92
+ "type": "address"
93
+ }
94
+ ],
95
+ "name": "ErrorNftOwnableContractNotRegistered",
96
+ "type": "error"
97
+ },
98
+ {
99
+ "inputs": [],
100
+ "name": "ErrorNftOwnableInitialOwnerZero",
101
+ "type": "error"
102
+ },
103
+ {
104
+ "inputs": [
105
+ {
106
+ "internalType": "address",
107
+ "name": "account",
108
+ "type": "address"
109
+ }
110
+ ],
111
+ "name": "ErrorNftOwnableNotOwner",
112
+ "type": "error"
113
+ },
114
+ {
115
+ "inputs": [
116
+ {
117
+ "internalType": "address",
118
+ "name": "registryAddress",
119
+ "type": "address"
120
+ }
121
+ ],
122
+ "name": "ErrorNotRegistry",
123
+ "type": "error"
124
+ },
125
+ {
126
+ "inputs": [
127
+ {
128
+ "internalType": "NftId",
129
+ "name": "poolNftId",
130
+ "type": "uint96"
131
+ }
132
+ ],
133
+ "name": "ErrorPoolServiceBundleOwnerRoleAlreadySet",
134
+ "type": "error"
135
+ },
136
+ {
137
+ "inputs": [
138
+ {
139
+ "internalType": "NftId",
140
+ "name": "bundleNftId",
141
+ "type": "uint96"
142
+ },
143
+ {
144
+ "internalType": "NftId",
145
+ "name": "poolNftId",
146
+ "type": "uint96"
147
+ }
148
+ ],
149
+ "name": "ErrorPoolServiceBundlePoolMismatch",
150
+ "type": "error"
151
+ },
152
+ {
153
+ "inputs": [
154
+ {
155
+ "internalType": "Amount",
156
+ "name": "expectedAmount",
157
+ "type": "uint96"
158
+ },
159
+ {
160
+ "internalType": "Amount",
161
+ "name": "actualAmount",
162
+ "type": "uint96"
163
+ }
164
+ ],
165
+ "name": "ErrorPoolServiceInvalidTransferAmount",
166
+ "type": "error"
167
+ },
168
+ {
169
+ "inputs": [
170
+ {
171
+ "internalType": "NftId",
172
+ "name": "poolNftId",
173
+ "type": "uint96"
174
+ },
175
+ {
176
+ "internalType": "Amount",
177
+ "name": "maxBalanceAmount",
178
+ "type": "uint96"
179
+ },
180
+ {
181
+ "internalType": "Amount",
182
+ "name": "currentBalanceAmount",
183
+ "type": "uint96"
184
+ },
185
+ {
186
+ "internalType": "Amount",
187
+ "name": "transferAmount",
188
+ "type": "uint96"
189
+ }
190
+ ],
191
+ "name": "ErrorPoolServiceMaxBalanceAmountExceeded",
192
+ "type": "error"
193
+ },
194
+ {
195
+ "inputs": [],
196
+ "name": "ErrorServiceNotImplemented",
197
+ "type": "error"
198
+ },
199
+ {
200
+ "inputs": [],
201
+ "name": "InvalidInitialization",
202
+ "type": "error"
203
+ },
204
+ {
205
+ "inputs": [],
206
+ "name": "NotInitializing",
207
+ "type": "error"
208
+ },
209
+ {
210
+ "anonymous": false,
211
+ "inputs": [
212
+ {
213
+ "indexed": false,
214
+ "internalType": "address",
215
+ "name": "authority",
216
+ "type": "address"
217
+ }
218
+ ],
219
+ "name": "AuthorityUpdated",
220
+ "type": "event"
221
+ },
222
+ {
223
+ "anonymous": false,
224
+ "inputs": [
225
+ {
226
+ "indexed": false,
227
+ "internalType": "uint64",
228
+ "name": "version",
229
+ "type": "uint64"
230
+ }
231
+ ],
232
+ "name": "Initialized",
233
+ "type": "event"
234
+ },
235
+ {
236
+ "anonymous": false,
237
+ "inputs": [
238
+ {
239
+ "indexed": false,
240
+ "internalType": "NftId",
241
+ "name": "instanceNftId",
242
+ "type": "uint96"
243
+ },
244
+ {
245
+ "indexed": false,
246
+ "internalType": "NftId",
247
+ "name": "poolNftId",
248
+ "type": "uint96"
249
+ },
250
+ {
251
+ "indexed": false,
252
+ "internalType": "NftId",
253
+ "name": "bundleNftId",
254
+ "type": "uint96"
255
+ }
256
+ ],
257
+ "name": "LogPoolServiceBundleClosed",
258
+ "type": "event"
259
+ },
260
+ {
261
+ "anonymous": false,
262
+ "inputs": [
263
+ {
264
+ "indexed": false,
265
+ "internalType": "NftId",
266
+ "name": "instanceNftId",
267
+ "type": "uint96"
268
+ },
269
+ {
270
+ "indexed": false,
271
+ "internalType": "NftId",
272
+ "name": "poolNftId",
273
+ "type": "uint96"
274
+ },
275
+ {
276
+ "indexed": false,
277
+ "internalType": "NftId",
278
+ "name": "bundleNftId",
279
+ "type": "uint96"
280
+ }
281
+ ],
282
+ "name": "LogPoolServiceBundleCreated",
283
+ "type": "event"
284
+ },
285
+ {
286
+ "anonymous": false,
287
+ "inputs": [
288
+ {
289
+ "indexed": false,
290
+ "internalType": "NftId",
291
+ "name": "poolNftId",
292
+ "type": "uint96"
293
+ },
294
+ {
295
+ "indexed": false,
296
+ "internalType": "RoleId",
297
+ "name": "bundleOwnerRole",
298
+ "type": "uint64"
299
+ }
300
+ ],
301
+ "name": "LogPoolServiceBundleOwnerRoleSet",
302
+ "type": "event"
303
+ },
304
+ {
305
+ "anonymous": false,
306
+ "inputs": [
307
+ {
308
+ "indexed": false,
309
+ "internalType": "NftId",
310
+ "name": "instanceNftId",
311
+ "type": "uint96"
312
+ },
313
+ {
314
+ "indexed": false,
315
+ "internalType": "NftId",
316
+ "name": "poolNftId",
317
+ "type": "uint96"
318
+ },
319
+ {
320
+ "indexed": false,
321
+ "internalType": "NftId",
322
+ "name": "bundleNftId",
323
+ "type": "uint96"
324
+ },
325
+ {
326
+ "indexed": false,
327
+ "internalType": "Amount",
328
+ "name": "amount",
329
+ "type": "uint96"
330
+ },
331
+ {
332
+ "indexed": false,
333
+ "internalType": "Amount",
334
+ "name": "netAmount",
335
+ "type": "uint96"
336
+ }
337
+ ],
338
+ "name": "LogPoolServiceBundleStaked",
339
+ "type": "event"
340
+ },
341
+ {
342
+ "anonymous": false,
343
+ "inputs": [
344
+ {
345
+ "indexed": false,
346
+ "internalType": "NftId",
347
+ "name": "instanceNftId",
348
+ "type": "uint96"
349
+ },
350
+ {
351
+ "indexed": false,
352
+ "internalType": "NftId",
353
+ "name": "poolNftId",
354
+ "type": "uint96"
355
+ },
356
+ {
357
+ "indexed": false,
358
+ "internalType": "NftId",
359
+ "name": "bundleNftId",
360
+ "type": "uint96"
361
+ },
362
+ {
363
+ "indexed": false,
364
+ "internalType": "Amount",
365
+ "name": "amount",
366
+ "type": "uint96"
367
+ }
368
+ ],
369
+ "name": "LogPoolServiceBundleUnstaked",
370
+ "type": "event"
371
+ },
372
+ {
373
+ "anonymous": false,
374
+ "inputs": [
375
+ {
376
+ "indexed": false,
377
+ "internalType": "NftId",
378
+ "name": "poolNftId",
379
+ "type": "uint96"
380
+ },
381
+ {
382
+ "indexed": false,
383
+ "internalType": "Amount",
384
+ "name": "previousMaxCapitalAmount",
385
+ "type": "uint96"
386
+ },
387
+ {
388
+ "indexed": false,
389
+ "internalType": "Amount",
390
+ "name": "currentMaxCapitalAmount",
391
+ "type": "uint96"
392
+ }
393
+ ],
394
+ "name": "LogPoolServiceMaxBalanceAmountUpdated",
395
+ "type": "event"
396
+ },
397
+ {
398
+ "inputs": [],
399
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
400
+ "outputs": [
401
+ {
402
+ "internalType": "bytes32",
403
+ "name": "",
404
+ "type": "bytes32"
405
+ }
406
+ ],
407
+ "stateMutability": "view",
408
+ "type": "function"
409
+ },
410
+ {
411
+ "inputs": [],
412
+ "name": "REGISTERABLE_LOCATION_V1",
413
+ "outputs": [
414
+ {
415
+ "internalType": "bytes32",
416
+ "name": "",
417
+ "type": "bytes32"
418
+ }
419
+ ],
420
+ "stateMutability": "view",
421
+ "type": "function"
422
+ },
423
+ {
424
+ "inputs": [],
425
+ "name": "authority",
426
+ "outputs": [
427
+ {
428
+ "internalType": "address",
429
+ "name": "",
430
+ "type": "address"
431
+ }
432
+ ],
433
+ "stateMutability": "view",
434
+ "type": "function"
435
+ },
436
+ {
437
+ "inputs": [
438
+ {
439
+ "internalType": "UFixed",
440
+ "name": "collateralizationLevel",
441
+ "type": "uint256"
442
+ },
443
+ {
444
+ "internalType": "UFixed",
445
+ "name": "retentionLevel",
446
+ "type": "uint256"
447
+ },
448
+ {
449
+ "internalType": "Amount",
450
+ "name": "sumInsuredAmount",
451
+ "type": "uint96"
452
+ }
453
+ ],
454
+ "name": "calculateRequiredCollateral",
455
+ "outputs": [
456
+ {
457
+ "internalType": "Amount",
458
+ "name": "localCollateralAmount",
459
+ "type": "uint96"
460
+ },
461
+ {
462
+ "internalType": "Amount",
463
+ "name": "totalCollateralAmount",
464
+ "type": "uint96"
465
+ }
466
+ ],
467
+ "stateMutability": "pure",
468
+ "type": "function"
469
+ },
470
+ {
471
+ "inputs": [
472
+ {
473
+ "internalType": "contract InstanceReader",
474
+ "name": "instanceReader",
475
+ "type": "address"
476
+ },
477
+ {
478
+ "internalType": "NftId",
479
+ "name": "productNftId",
480
+ "type": "uint96"
481
+ },
482
+ {
483
+ "internalType": "Amount",
484
+ "name": "sumInsuredAmount",
485
+ "type": "uint96"
486
+ }
487
+ ],
488
+ "name": "calculateRequiredCollateral",
489
+ "outputs": [
490
+ {
491
+ "internalType": "Amount",
492
+ "name": "localCollateralAmount",
493
+ "type": "uint96"
494
+ },
495
+ {
496
+ "internalType": "Amount",
497
+ "name": "totalCollateralAmount",
498
+ "type": "uint96"
499
+ }
500
+ ],
501
+ "stateMutability": "view",
502
+ "type": "function"
503
+ },
504
+ {
505
+ "inputs": [
506
+ {
507
+ "internalType": "NftId",
508
+ "name": "bundleNftId",
509
+ "type": "uint96"
510
+ }
511
+ ],
512
+ "name": "closeBundle",
513
+ "outputs": [],
514
+ "stateMutability": "nonpayable",
515
+ "type": "function"
516
+ },
517
+ {
518
+ "inputs": [
519
+ {
520
+ "internalType": "address",
521
+ "name": "bundleOwner",
522
+ "type": "address"
523
+ },
524
+ {
525
+ "components": [
526
+ {
527
+ "internalType": "UFixed",
528
+ "name": "fractionalFee",
529
+ "type": "uint256"
530
+ },
531
+ {
532
+ "internalType": "uint256",
533
+ "name": "fixedFee",
534
+ "type": "uint256"
535
+ }
536
+ ],
537
+ "internalType": "struct Fee",
538
+ "name": "fee",
539
+ "type": "tuple"
540
+ },
541
+ {
542
+ "internalType": "Seconds",
543
+ "name": "lifetime",
544
+ "type": "uint40"
545
+ },
546
+ {
547
+ "internalType": "bytes",
548
+ "name": "filter",
549
+ "type": "bytes"
550
+ }
551
+ ],
552
+ "name": "createBundle",
553
+ "outputs": [
554
+ {
555
+ "internalType": "NftId",
556
+ "name": "bundleNftId",
557
+ "type": "uint96"
558
+ }
559
+ ],
560
+ "stateMutability": "nonpayable",
561
+ "type": "function"
562
+ },
563
+ {
564
+ "inputs": [
565
+ {
566
+ "internalType": "NftId",
567
+ "name": "poolNftId",
568
+ "type": "uint96"
569
+ },
570
+ {
571
+ "internalType": "Amount",
572
+ "name": "amount",
573
+ "type": "uint96"
574
+ }
575
+ ],
576
+ "name": "defundPoolWallet",
577
+ "outputs": [],
578
+ "stateMutability": "nonpayable",
579
+ "type": "function"
580
+ },
581
+ {
582
+ "inputs": [
583
+ {
584
+ "internalType": "NftId",
585
+ "name": "poolNftId",
586
+ "type": "uint96"
587
+ },
588
+ {
589
+ "internalType": "Amount",
590
+ "name": "amount",
591
+ "type": "uint96"
592
+ }
593
+ ],
594
+ "name": "fundPoolWallet",
595
+ "outputs": [],
596
+ "stateMutability": "nonpayable",
597
+ "type": "function"
598
+ },
599
+ {
600
+ "inputs": [],
601
+ "name": "getDomain",
602
+ "outputs": [
603
+ {
604
+ "internalType": "ObjectType",
605
+ "name": "serviceDomain",
606
+ "type": "uint8"
607
+ }
608
+ ],
609
+ "stateMutability": "pure",
610
+ "type": "function"
611
+ },
612
+ {
613
+ "inputs": [],
614
+ "name": "getInitialInfo",
615
+ "outputs": [
616
+ {
617
+ "components": [
618
+ {
619
+ "internalType": "NftId",
620
+ "name": "nftId",
621
+ "type": "uint96"
622
+ },
623
+ {
624
+ "internalType": "NftId",
625
+ "name": "parentNftId",
626
+ "type": "uint96"
627
+ },
628
+ {
629
+ "internalType": "ObjectType",
630
+ "name": "objectType",
631
+ "type": "uint8"
632
+ },
633
+ {
634
+ "internalType": "bool",
635
+ "name": "isInterceptor",
636
+ "type": "bool"
637
+ },
638
+ {
639
+ "internalType": "address",
640
+ "name": "objectAddress",
641
+ "type": "address"
642
+ },
643
+ {
644
+ "internalType": "address",
645
+ "name": "initialOwner",
646
+ "type": "address"
647
+ },
648
+ {
649
+ "internalType": "bytes",
650
+ "name": "data",
651
+ "type": "bytes"
652
+ }
653
+ ],
654
+ "internalType": "struct IRegistry.ObjectInfo",
655
+ "name": "info",
656
+ "type": "tuple"
657
+ }
658
+ ],
659
+ "stateMutability": "view",
660
+ "type": "function"
661
+ },
662
+ {
663
+ "inputs": [],
664
+ "name": "getNftId",
665
+ "outputs": [
666
+ {
667
+ "internalType": "NftId",
668
+ "name": "",
669
+ "type": "uint96"
670
+ }
671
+ ],
672
+ "stateMutability": "view",
673
+ "type": "function"
674
+ },
675
+ {
676
+ "inputs": [],
677
+ "name": "getOwner",
678
+ "outputs": [
679
+ {
680
+ "internalType": "address",
681
+ "name": "",
682
+ "type": "address"
683
+ }
684
+ ],
685
+ "stateMutability": "view",
686
+ "type": "function"
687
+ },
688
+ {
689
+ "inputs": [],
690
+ "name": "getRegistry",
691
+ "outputs": [
692
+ {
693
+ "internalType": "contract IRegistry",
694
+ "name": "",
695
+ "type": "address"
696
+ }
697
+ ],
698
+ "stateMutability": "view",
699
+ "type": "function"
700
+ },
701
+ {
702
+ "inputs": [],
703
+ "name": "getRoleId",
704
+ "outputs": [
705
+ {
706
+ "internalType": "RoleId",
707
+ "name": "serviceRoleId",
708
+ "type": "uint64"
709
+ }
710
+ ],
711
+ "stateMutability": "pure",
712
+ "type": "function"
713
+ },
714
+ {
715
+ "inputs": [],
716
+ "name": "getVersion",
717
+ "outputs": [
718
+ {
719
+ "internalType": "Version",
720
+ "name": "",
721
+ "type": "uint24"
722
+ }
723
+ ],
724
+ "stateMutability": "pure",
725
+ "type": "function"
726
+ },
727
+ {
728
+ "inputs": [],
729
+ "name": "initializeERC165",
730
+ "outputs": [],
731
+ "stateMutability": "nonpayable",
732
+ "type": "function"
733
+ },
734
+ {
735
+ "inputs": [
736
+ {
737
+ "internalType": "address",
738
+ "name": "initialOwner",
739
+ "type": "address"
740
+ },
741
+ {
742
+ "internalType": "address",
743
+ "name": "registryAddress",
744
+ "type": "address"
745
+ }
746
+ ],
747
+ "name": "initializeNftOwnable",
748
+ "outputs": [],
749
+ "stateMutability": "nonpayable",
750
+ "type": "function"
751
+ },
752
+ {
753
+ "inputs": [
754
+ {
755
+ "internalType": "address",
756
+ "name": "registryAddress",
757
+ "type": "address"
758
+ },
759
+ {
760
+ "internalType": "NftId",
761
+ "name": "parentNftId",
762
+ "type": "uint96"
763
+ },
764
+ {
765
+ "internalType": "ObjectType",
766
+ "name": "objectType",
767
+ "type": "uint8"
768
+ },
769
+ {
770
+ "internalType": "bool",
771
+ "name": "isInterceptor",
772
+ "type": "bool"
773
+ },
774
+ {
775
+ "internalType": "address",
776
+ "name": "initialOwner",
777
+ "type": "address"
778
+ },
779
+ {
780
+ "internalType": "bytes",
781
+ "name": "registryData",
782
+ "type": "bytes"
783
+ }
784
+ ],
785
+ "name": "initializeRegisterable",
786
+ "outputs": [],
787
+ "stateMutability": "nonpayable",
788
+ "type": "function"
789
+ },
790
+ {
791
+ "inputs": [
792
+ {
793
+ "internalType": "address",
794
+ "name": "registryAddress",
795
+ "type": "address"
796
+ }
797
+ ],
798
+ "name": "initializeRegistryLinked",
799
+ "outputs": [],
800
+ "stateMutability": "nonpayable",
801
+ "type": "function"
802
+ },
803
+ {
804
+ "inputs": [
805
+ {
806
+ "internalType": "address",
807
+ "name": "registry",
808
+ "type": "address"
809
+ },
810
+ {
811
+ "internalType": "address",
812
+ "name": "authority",
813
+ "type": "address"
814
+ },
815
+ {
816
+ "internalType": "address",
817
+ "name": "initialOwner",
818
+ "type": "address"
819
+ }
820
+ ],
821
+ "name": "initializeService",
822
+ "outputs": [],
823
+ "stateMutability": "nonpayable",
824
+ "type": "function"
825
+ },
826
+ {
827
+ "inputs": [
828
+ {
829
+ "internalType": "address",
830
+ "name": "activatedBy",
831
+ "type": "address"
832
+ },
833
+ {
834
+ "internalType": "bytes",
835
+ "name": "data",
836
+ "type": "bytes"
837
+ }
838
+ ],
839
+ "name": "initializeVersionable",
840
+ "outputs": [],
841
+ "stateMutability": "nonpayable",
842
+ "type": "function"
843
+ },
844
+ {
845
+ "inputs": [],
846
+ "name": "isConsumingScheduledOp",
847
+ "outputs": [
848
+ {
849
+ "internalType": "bytes4",
850
+ "name": "",
851
+ "type": "bytes4"
852
+ }
853
+ ],
854
+ "stateMutability": "view",
855
+ "type": "function"
856
+ },
857
+ {
858
+ "inputs": [],
859
+ "name": "linkToRegisteredNftId",
860
+ "outputs": [
861
+ {
862
+ "internalType": "NftId",
863
+ "name": "nftId",
864
+ "type": "uint96"
865
+ }
866
+ ],
867
+ "stateMutability": "nonpayable",
868
+ "type": "function"
869
+ },
870
+ {
871
+ "inputs": [
872
+ {
873
+ "internalType": "contract IInstance",
874
+ "name": "instance",
875
+ "type": "address"
876
+ },
877
+ {
878
+ "internalType": "address",
879
+ "name": "token",
880
+ "type": "address"
881
+ },
882
+ {
883
+ "internalType": "NftId",
884
+ "name": "productNftId",
885
+ "type": "uint96"
886
+ },
887
+ {
888
+ "internalType": "NftId",
889
+ "name": "applicationNftId",
890
+ "type": "uint96"
891
+ },
892
+ {
893
+ "internalType": "NftId",
894
+ "name": "bundleNftId",
895
+ "type": "uint96"
896
+ },
897
+ {
898
+ "internalType": "Amount",
899
+ "name": "sumInsuredAmount",
900
+ "type": "uint96"
901
+ }
902
+ ],
903
+ "name": "lockCollateral",
904
+ "outputs": [
905
+ {
906
+ "internalType": "Amount",
907
+ "name": "localCollateralAmount",
908
+ "type": "uint96"
909
+ },
910
+ {
911
+ "internalType": "Amount",
912
+ "name": "totalCollateralAmount",
913
+ "type": "uint96"
914
+ }
915
+ ],
916
+ "stateMutability": "nonpayable",
917
+ "type": "function"
918
+ },
919
+ {
920
+ "inputs": [
921
+ {
922
+ "internalType": "NftId",
923
+ "name": "bundleNftId",
924
+ "type": "uint96"
925
+ },
926
+ {
927
+ "components": [
928
+ {
929
+ "internalType": "Amount",
930
+ "name": "productFeeAmount",
931
+ "type": "uint96"
932
+ },
933
+ {
934
+ "internalType": "Amount",
935
+ "name": "distributionFeeAndCommissionAmount",
936
+ "type": "uint96"
937
+ },
938
+ {
939
+ "internalType": "Amount",
940
+ "name": "poolPremiumAndFeeAmount",
941
+ "type": "uint96"
942
+ },
943
+ {
944
+ "internalType": "uint256",
945
+ "name": "netPremiumAmount",
946
+ "type": "uint256"
947
+ },
948
+ {
949
+ "internalType": "uint256",
950
+ "name": "fullPremiumAmount",
951
+ "type": "uint256"
952
+ },
953
+ {
954
+ "internalType": "uint256",
955
+ "name": "premiumAmount",
956
+ "type": "uint256"
957
+ },
958
+ {
959
+ "internalType": "uint256",
960
+ "name": "productFeeFixAmount",
961
+ "type": "uint256"
962
+ },
963
+ {
964
+ "internalType": "uint256",
965
+ "name": "poolFeeFixAmount",
966
+ "type": "uint256"
967
+ },
968
+ {
969
+ "internalType": "uint256",
970
+ "name": "bundleFeeFixAmount",
971
+ "type": "uint256"
972
+ },
973
+ {
974
+ "internalType": "uint256",
975
+ "name": "distributionFeeFixAmount",
976
+ "type": "uint256"
977
+ },
978
+ {
979
+ "internalType": "uint256",
980
+ "name": "productFeeVarAmount",
981
+ "type": "uint256"
982
+ },
983
+ {
984
+ "internalType": "uint256",
985
+ "name": "poolFeeVarAmount",
986
+ "type": "uint256"
987
+ },
988
+ {
989
+ "internalType": "uint256",
990
+ "name": "bundleFeeVarAmount",
991
+ "type": "uint256"
992
+ },
993
+ {
994
+ "internalType": "uint256",
995
+ "name": "distributionFeeVarAmount",
996
+ "type": "uint256"
997
+ },
998
+ {
999
+ "internalType": "uint256",
1000
+ "name": "distributionOwnerFeeFixAmount",
1001
+ "type": "uint256"
1002
+ },
1003
+ {
1004
+ "internalType": "uint256",
1005
+ "name": "distributionOwnerFeeVarAmount",
1006
+ "type": "uint256"
1007
+ },
1008
+ {
1009
+ "internalType": "uint256",
1010
+ "name": "commissionAmount",
1011
+ "type": "uint256"
1012
+ },
1013
+ {
1014
+ "internalType": "uint256",
1015
+ "name": "discountAmount",
1016
+ "type": "uint256"
1017
+ }
1018
+ ],
1019
+ "internalType": "struct IPolicy.Premium",
1020
+ "name": "premium",
1021
+ "type": "tuple"
1022
+ }
1023
+ ],
1024
+ "name": "processSale",
1025
+ "outputs": [],
1026
+ "stateMutability": "nonpayable",
1027
+ "type": "function"
1028
+ },
1029
+ {
1030
+ "inputs": [
1031
+ {
1032
+ "internalType": "contract IInstance",
1033
+ "name": "instance",
1034
+ "type": "address"
1035
+ },
1036
+ {
1037
+ "internalType": "address",
1038
+ "name": "token",
1039
+ "type": "address"
1040
+ },
1041
+ {
1042
+ "internalType": "NftId",
1043
+ "name": "policyNftId",
1044
+ "type": "uint96"
1045
+ },
1046
+ {
1047
+ "components": [
1048
+ {
1049
+ "internalType": "NftId",
1050
+ "name": "productNftId",
1051
+ "type": "uint96"
1052
+ },
1053
+ {
1054
+ "internalType": "NftId",
1055
+ "name": "bundleNftId",
1056
+ "type": "uint96"
1057
+ },
1058
+ {
1059
+ "internalType": "ReferralId",
1060
+ "name": "referralId",
1061
+ "type": "bytes8"
1062
+ },
1063
+ {
1064
+ "internalType": "RiskId",
1065
+ "name": "riskId",
1066
+ "type": "bytes8"
1067
+ },
1068
+ {
1069
+ "internalType": "Amount",
1070
+ "name": "sumInsuredAmount",
1071
+ "type": "uint96"
1072
+ },
1073
+ {
1074
+ "internalType": "Amount",
1075
+ "name": "premiumAmount",
1076
+ "type": "uint96"
1077
+ },
1078
+ {
1079
+ "internalType": "Amount",
1080
+ "name": "premiumPaidAmount",
1081
+ "type": "uint96"
1082
+ },
1083
+ {
1084
+ "internalType": "Seconds",
1085
+ "name": "lifetime",
1086
+ "type": "uint40"
1087
+ },
1088
+ {
1089
+ "internalType": "bytes",
1090
+ "name": "applicationData",
1091
+ "type": "bytes"
1092
+ },
1093
+ {
1094
+ "internalType": "bytes",
1095
+ "name": "processData",
1096
+ "type": "bytes"
1097
+ },
1098
+ {
1099
+ "internalType": "uint16",
1100
+ "name": "claimsCount",
1101
+ "type": "uint16"
1102
+ },
1103
+ {
1104
+ "internalType": "uint16",
1105
+ "name": "openClaimsCount",
1106
+ "type": "uint16"
1107
+ },
1108
+ {
1109
+ "internalType": "Amount",
1110
+ "name": "claimAmount",
1111
+ "type": "uint96"
1112
+ },
1113
+ {
1114
+ "internalType": "Amount",
1115
+ "name": "payoutAmount",
1116
+ "type": "uint96"
1117
+ },
1118
+ {
1119
+ "internalType": "Timestamp",
1120
+ "name": "activatedAt",
1121
+ "type": "uint40"
1122
+ },
1123
+ {
1124
+ "internalType": "Timestamp",
1125
+ "name": "expiredAt",
1126
+ "type": "uint40"
1127
+ },
1128
+ {
1129
+ "internalType": "Timestamp",
1130
+ "name": "closedAt",
1131
+ "type": "uint40"
1132
+ }
1133
+ ],
1134
+ "internalType": "struct IPolicy.PolicyInfo",
1135
+ "name": "policyInfo",
1136
+ "type": "tuple"
1137
+ },
1138
+ {
1139
+ "internalType": "Amount",
1140
+ "name": "payoutAmount",
1141
+ "type": "uint96"
1142
+ }
1143
+ ],
1144
+ "name": "reduceCollateral",
1145
+ "outputs": [],
1146
+ "stateMutability": "nonpayable",
1147
+ "type": "function"
1148
+ },
1149
+ {
1150
+ "inputs": [
1151
+ {
1152
+ "internalType": "bytes4",
1153
+ "name": "interfaceId",
1154
+ "type": "bytes4"
1155
+ }
1156
+ ],
1157
+ "name": "registerInterface",
1158
+ "outputs": [],
1159
+ "stateMutability": "nonpayable",
1160
+ "type": "function"
1161
+ },
1162
+ {
1163
+ "inputs": [
1164
+ {
1165
+ "internalType": "contract IInstance",
1166
+ "name": "instance",
1167
+ "type": "address"
1168
+ },
1169
+ {
1170
+ "internalType": "address",
1171
+ "name": "token",
1172
+ "type": "address"
1173
+ },
1174
+ {
1175
+ "internalType": "NftId",
1176
+ "name": "policyNftId",
1177
+ "type": "uint96"
1178
+ },
1179
+ {
1180
+ "components": [
1181
+ {
1182
+ "internalType": "NftId",
1183
+ "name": "productNftId",
1184
+ "type": "uint96"
1185
+ },
1186
+ {
1187
+ "internalType": "NftId",
1188
+ "name": "bundleNftId",
1189
+ "type": "uint96"
1190
+ },
1191
+ {
1192
+ "internalType": "ReferralId",
1193
+ "name": "referralId",
1194
+ "type": "bytes8"
1195
+ },
1196
+ {
1197
+ "internalType": "RiskId",
1198
+ "name": "riskId",
1199
+ "type": "bytes8"
1200
+ },
1201
+ {
1202
+ "internalType": "Amount",
1203
+ "name": "sumInsuredAmount",
1204
+ "type": "uint96"
1205
+ },
1206
+ {
1207
+ "internalType": "Amount",
1208
+ "name": "premiumAmount",
1209
+ "type": "uint96"
1210
+ },
1211
+ {
1212
+ "internalType": "Amount",
1213
+ "name": "premiumPaidAmount",
1214
+ "type": "uint96"
1215
+ },
1216
+ {
1217
+ "internalType": "Seconds",
1218
+ "name": "lifetime",
1219
+ "type": "uint40"
1220
+ },
1221
+ {
1222
+ "internalType": "bytes",
1223
+ "name": "applicationData",
1224
+ "type": "bytes"
1225
+ },
1226
+ {
1227
+ "internalType": "bytes",
1228
+ "name": "processData",
1229
+ "type": "bytes"
1230
+ },
1231
+ {
1232
+ "internalType": "uint16",
1233
+ "name": "claimsCount",
1234
+ "type": "uint16"
1235
+ },
1236
+ {
1237
+ "internalType": "uint16",
1238
+ "name": "openClaimsCount",
1239
+ "type": "uint16"
1240
+ },
1241
+ {
1242
+ "internalType": "Amount",
1243
+ "name": "claimAmount",
1244
+ "type": "uint96"
1245
+ },
1246
+ {
1247
+ "internalType": "Amount",
1248
+ "name": "payoutAmount",
1249
+ "type": "uint96"
1250
+ },
1251
+ {
1252
+ "internalType": "Timestamp",
1253
+ "name": "activatedAt",
1254
+ "type": "uint40"
1255
+ },
1256
+ {
1257
+ "internalType": "Timestamp",
1258
+ "name": "expiredAt",
1259
+ "type": "uint40"
1260
+ },
1261
+ {
1262
+ "internalType": "Timestamp",
1263
+ "name": "closedAt",
1264
+ "type": "uint40"
1265
+ }
1266
+ ],
1267
+ "internalType": "struct IPolicy.PolicyInfo",
1268
+ "name": "policyInfo",
1269
+ "type": "tuple"
1270
+ }
1271
+ ],
1272
+ "name": "releaseCollateral",
1273
+ "outputs": [],
1274
+ "stateMutability": "nonpayable",
1275
+ "type": "function"
1276
+ },
1277
+ {
1278
+ "inputs": [
1279
+ {
1280
+ "internalType": "address",
1281
+ "name": "newAuthority",
1282
+ "type": "address"
1283
+ }
1284
+ ],
1285
+ "name": "setAuthority",
1286
+ "outputs": [],
1287
+ "stateMutability": "nonpayable",
1288
+ "type": "function"
1289
+ },
1290
+ {
1291
+ "inputs": [
1292
+ {
1293
+ "internalType": "RoleId",
1294
+ "name": "bundleOwnerRole",
1295
+ "type": "uint64"
1296
+ }
1297
+ ],
1298
+ "name": "setBundleOwnerRole",
1299
+ "outputs": [],
1300
+ "stateMutability": "nonpayable",
1301
+ "type": "function"
1302
+ },
1303
+ {
1304
+ "inputs": [
1305
+ {
1306
+ "internalType": "Amount",
1307
+ "name": "maxBalanceAmount",
1308
+ "type": "uint96"
1309
+ }
1310
+ ],
1311
+ "name": "setMaxBalanceAmount",
1312
+ "outputs": [],
1313
+ "stateMutability": "nonpayable",
1314
+ "type": "function"
1315
+ },
1316
+ {
1317
+ "inputs": [
1318
+ {
1319
+ "internalType": "NftId",
1320
+ "name": "bundleNftId",
1321
+ "type": "uint96"
1322
+ },
1323
+ {
1324
+ "internalType": "Amount",
1325
+ "name": "amount",
1326
+ "type": "uint96"
1327
+ }
1328
+ ],
1329
+ "name": "stake",
1330
+ "outputs": [
1331
+ {
1332
+ "internalType": "Amount",
1333
+ "name": "netAmount",
1334
+ "type": "uint96"
1335
+ }
1336
+ ],
1337
+ "stateMutability": "nonpayable",
1338
+ "type": "function"
1339
+ },
1340
+ {
1341
+ "inputs": [
1342
+ {
1343
+ "internalType": "bytes4",
1344
+ "name": "interfaceId",
1345
+ "type": "bytes4"
1346
+ }
1347
+ ],
1348
+ "name": "supportsInterface",
1349
+ "outputs": [
1350
+ {
1351
+ "internalType": "bool",
1352
+ "name": "",
1353
+ "type": "bool"
1354
+ }
1355
+ ],
1356
+ "stateMutability": "view",
1357
+ "type": "function"
1358
+ },
1359
+ {
1360
+ "inputs": [
1361
+ {
1362
+ "internalType": "NftId",
1363
+ "name": "bundleNftId",
1364
+ "type": "uint96"
1365
+ },
1366
+ {
1367
+ "internalType": "Amount",
1368
+ "name": "amount",
1369
+ "type": "uint96"
1370
+ }
1371
+ ],
1372
+ "name": "unstake",
1373
+ "outputs": [
1374
+ {
1375
+ "internalType": "Amount",
1376
+ "name": "netAmount",
1377
+ "type": "uint96"
1378
+ }
1379
+ ],
1380
+ "stateMutability": "nonpayable",
1381
+ "type": "function"
1382
+ },
1383
+ {
1384
+ "inputs": [
1385
+ {
1386
+ "internalType": "bytes",
1387
+ "name": "data",
1388
+ "type": "bytes"
1389
+ }
1390
+ ],
1391
+ "name": "upgradeVersionable",
1392
+ "outputs": [],
1393
+ "stateMutability": "nonpayable",
1394
+ "type": "function"
1395
+ }
1396
+ ],
1397
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615428806100d65f395ff3fe608060405234801561000f575f80fd5b5060043610610213575f3560e01c806371504a321161011f578063a3c26052116100a9578063bca99e3911610079578063bca99e391461050f578063bf7e214f14610522578063ca510bf614610258578063d0d63b091461052a578063f7c34ee01461053d575f80fd5b8063a3c26052146104c6578063a5f4c731146104d9578063ada9652e146104ec578063b68d180914610500575f80fd5b806384a710fa116100ef57806384a710fa1461046457806384d1f7cf14610477578063893d20e81461048a5780638e32e979146104925780638fb36037146104a5575f80fd5b806371504a32146103f55780637225ed01146104085780637a9e5e4b1461043e5780637d42d39714610451575f80fd5b806327bb7a33116101a05780635ab1bd53116101705780635ab1bd531461036d578063644c45e014610392578063675393bf146103af5780636c1e9dff146103c25780636c741e78146103d5575f80fd5b806327bb7a331461032c578063329d6e741461033f57806336fc697e1461035257806349bb9e4b1461035a575f80fd5b8063138461e0116101e6578063138461e01461029e5780631ddb9757146102be5780631eff4b22146102d1578063214cdb801461030657806326889b0914610319575f80fd5b806301ffc9a71461021757806306625783146102585780630d8e6e2c1461026d5780630fec111c14610289575b5f80fd5b610243610225366004613fd0565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61026b61026636600461401b565b610550565b005b610275610560565b60405162ffffff909116815260200161024f565b6102916105e7565b60405161024f9190614080565b6102a6610773565b6040516001600160601b03909116815260200161024f565b61026b6102cc36600461447e565b61077d565b6102f87f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161024f565b61026b610314366004613fd0565b6108f5565b6102a661032736600461401b565b610921565b61026b61033a36600461451d565b610e4b565b61026b61034d3660046145b0565b610ef0565b61026b61103a565b61026b6103683660046145e1565b61107f565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161024f565b5f80516020615393833981519152546001600160601b03166102a6565b61026b6103bd36600461462d565b61117b565b6102a66103d036600461401b565b611286565b6103dd611835565b6040516001600160401b03909116815260200161024f565b6102a6610403366004614648565b61192c565b61041e610416366004614706565b928392509050565b604080516001600160601b0393841681529290911660208301520161024f565b61026b61044c36600461462d565b611aef565b61026b61045f36600461473c565b611b71565b61041e61047236600461487a565b611fe6565b61041e6104853660046148b7565b6120e2565b61037a6122d6565b61026b6104a0366004614935565b612407565b6104ad612544565b6040516001600160e01b0319909116815260200161024f565b61026b6104d4366004614986565b612579565b61026b6104e73660046149a1565b6127ec565b6102f85f8051602061539383398151915281565b604051600f815260200161024f565b61026b61051d366004614a11565b6128b3565b61037a612abf565b61026b610538366004614a11565b612ada565b61026b61054b366004614a2c565b612fb8565b61055c335b5f3661302e565b5050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156105be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105e29190614a58565b905090565b6105ef613f93565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610665573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106899190614a85565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016106d16122d6565b6001600160a01b031681526020018260010180546106ee90614aa0565b80601f016020809104026020016040519081016040528092919081815260200182805461071a90614aa0565b80156107655780601f1061073c57610100808354040283529160200191610765565b820191905f5260205f20905b81548152906001019060200180831161074857829003601f168201915b505050505081525091505090565b5f6105e230613124565b61078633610555565b600254602083015160405163ad328d9f60e01b81526001600160a01b039092169163ad328d9f916107bf91899188918790600401614ad8565b5f604051808303815f87803b1580156107d6575f80fd5b505af11580156107e8573d5f803e3d5ffd5b5050505060065f9054906101000a90046001600160a01b03166001600160a01b031663d44f8a4b866001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561084b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061086f9190614a85565b6040516001600160e01b031960e084901b1681526001600160601b0391821660048201526001600160a01b038816602482015290841660448201526064016020604051808303815f875af11580156108c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108ed9190614a85565b505050505050565b6108fd61331d565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f808061092e600f613355565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610970573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109949190614b0a565b90505f826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109f79190614b0a565b604051634793b4ab60e01b81526001600160601b03891660048201529091505f906001600160a01b03841690634793b4ab906024015f60405180830381865afa158015610a46573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610a6d9190810190614bae565b9050610a7c815f0151866133f1565b15610ab257604051630a49ea2360e01b81526001600160601b03808a166004830152861660248201526044015b60405180910390fd5b600254604051631696791160e11b81526001600160a01b0386811660048301526001600160601b03808c1660248401528a1660448301525f921690632d2cf222906064016020604051808303815f875af1158015610b12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b369190614a85565b905060035f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a284888473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610ba5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc99190614a85565b6040518563ffffffff1660e01b8152600401610be89493929190614ad8565b5f604051808303815f87803b158015610bff575f80fd5b505af1158015610c11573d5f803e3d5ffd5b505060405163f0ea17c360e01b81526001600160601b03891660048201525f92506001600160a01b038716915063f0ea17c3906024015f60405180830381865afa158015610c61573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610c889190810190614c7d565b60808101519091505f610ca36001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038e1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610cf0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d149190614b0a565b90507fa9e4ee5628423184bfcde002aae428406aeac6b337e1acf560282b155e358527886001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d979190614a85565b8a8e87604051610dd094939291906001600160601b03948516815292841660208401529083166040830152909116606082015260800190565b60405180910390a182606001516001600160a01b03166354f0d84c8383876040518463ffffffff1660e01b8152600401610e0c93929190614d55565b5f604051808303815f87803b158015610e23575f80fd5b505af1158015610e35573d5f803e3d5ffd5b50959b5050505050505050505050505b92915050565b610e5361331d565b610e5d8287612fb8565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610ee68382614dc5565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610f12610560565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610f50573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f749190614e7f565b5f805160206153d38339815191528054600160401b900460ff1680610fa6575080546001600160401b03808416911610155b15610fc45760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610fee8361347d565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b61104261331d565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f805160206153d38339815191528054600160401b810460ff1615906001600160401b03165f811580156110b05750825b90505f826001600160401b031660011480156110cb5750303b155b9050811580156110d9575080155b156110f75760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561112157845460ff60401b1916600160401b1785555b61112b8787613485565b831561117257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b61118361331d565b806001600160a01b03163b5f036111b85760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610aa9565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa925050508015611232575060408051601f3d908101601f1916820190925261122f91810190614ea5565b60015b61125a5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610aa9565b8061055c5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610aa9565b50565b5f8080611293600f613355565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112f99190614b0a565b604051634793b4ab60e01b81526001600160601b03881660048201529091505f906001600160a01b03831690634793b4ab906024015f60405180830381865afa158015611348573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261136f9190810190614bae565b6040516357f80bbf60e01b81526001600160601b03861660048201529091505f906001600160a01b038416906357f80bbf9060240160e060405180830381865afa1580156113bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113e39190614ec0565b90506113f2825f0151866133f1565b1561142357604051630a49ea2360e01b81526001600160601b03808a16600483015286166024820152604401610aa9565b6040516308a390bb60e21b81526001600160601b03861660048201525f906001600160a01b0385169063228e42ec90602401602060405180830381865afa158015611470573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114949190614a85565b90506114ad6114a3828a6136c8565b836020015161374d565b156114f457602082015160405163b806175d60e01b81526001600160601b038089166004830152918216602482015281831660448201529089166064820152608401610aa9565b505f73__$58e11c6004c5796aaa8c56e718245e69a2$__639ed246ea61151a8689613797565b6040516001600160e01b031960e084901b1681528151600482015260209091015160248201526001600160601b038b1660448201526064016040805180830381865af415801561156c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115909190614f4e565b809850819250505060035f9054906101000a90046001600160a01b03166001600160a01b031663d56cd3d5866001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061161b9190614b0a565b888a856040518563ffffffff1660e01b815260040161163d9493929190614ad8565b5f604051808303815f87803b158015611654575f80fd5b505af1158015611666573d5f803e3d5ffd5b50506002546040516325fa796b60e01b81526001600160a01b0389811660048301526001600160601b03808f1660248401528c16604483015290911692506325fa796b91506064015f604051808303815f87803b1580156116c5575f80fd5b505af11580156116d7573d5f803e3d5ffd5b505050505f6116ee6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038c1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561173b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061175f9190614b0a565b90507fa397b0d38fe748a8c29cce53eab5736ef0c29c156e7a9586ae8b88a8557b4145866001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117e29190614a85565b604080516001600160601b0392831681528a831660208201528d8316818301528c83166060820152918b166080830152519081900360a00190a16118288588838c6138a0565b5050505050505092915050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600f604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156118a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c49190614f86565b6040516001600160e01b031960e085901b16815260ff9283166004820152911660248201526044015b602060405180830381865af4158015611908573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105e29190614e7f565b5f8080611939600f613355565b925050915060025f9054906101000a90046001600160a01b03166001600160a01b031663e283b4a982848b8b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156119ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119d09190614a85565b8c8c8c6040518963ffffffff1660e01b81526004016119f6989796959493929190614fc9565b6020604051808303815f875af1158015611a12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a369190614a85565b92507f0dcadf661b8b2888423f78a848a77785b4dc0138395b12584835f6a65dfcea79816001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a95573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ab99190614a85565b604080516001600160601b03928316815282861660208201529186169082015260600160405180910390a1505095945050505050565b33611af8612abf565b6001600160a01b0316816001600160a01b031614611b335760405162d1953b60e31b81526001600160a01b0382166004820152602401610aa9565b816001600160a01b03163b5f03611b68576040516361798f2f60e11b81526001600160a01b0383166004820152602401610aa9565b61055c82613951565b611b7a33610555565b5f611b8d6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201529091505f906001600160a01b0383169063a48f42e0906024015f60405180830381865afa158015611bdc573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611c039190810190615045565b60208101516040516305247a1760e51b81526001600160601b0390911660048201529091505f906001600160a01b0384169063a48f42e0906024015f60405180830381865afa158015611c58573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611c7f9190810190615045565b60208101516040516305247a1760e51b81526001600160601b0390911660048201529091505f906001600160a01b0385169063a48f42e0906024015f60405180830381865afa158015611cd4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611cfb9190810190615045565b90505f816080015190505f73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968861016001518960e00151611d359190615115565b6040518263ffffffff1660e01b8152600401611d5391815260200190565b602060405180830381865af4158015611d6e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d929190614a85565b90505f73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968961018001518a6101000151611dc59190615115565b6040518263ffffffff1660e01b8152600401611de391815260200190565b602060405180830381865af4158015611dfe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e229190614a85565b90505f73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968a606001516040518263ffffffff1660e01b8152600401611e6291815260200190565b602060405180830381865af4158015611e7d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ea19190614a85565b90505f846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ee0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f049190614b0a565b60035488519192506001600160a01b03169063d56cd3d5908390611f2886886136c8565b886040518563ffffffff1660e01b8152600401611f489493929190614ad8565b5f604051808303815f87803b158015611f5f575f80fd5b505af1158015611f71573d5f803e3d5ffd5b50506003548a516040516325e451d360e01b81526001600160a01b0390921693506325e451d39250611fac9185919087908990600401614ad8565b5f604051808303815f87803b158015611fc3575f80fd5b505af1158015611fd5573d5f803e3d5ffd5b505050505050505050505050505050565b6040516302d764c760e21b81526001600160601b03831660048201525f90819081906001600160a01b03871690630b5d931c9060240161020060405180830381865afa158015612038573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061205c9190615134565b602001516040516357f80bbf60e01b81526001600160601b03821660048201529091505f906001600160a01b038816906357f80bbf9060240160e060405180830381865afa1580156120b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120d49190614ec0565b509396879650945050505050565b5f806120ed33610555565b612157886001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561212c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121509190614b0a565b8785611fe6565b600254604051634adcf90960e01b81529294509092506001600160a01b031690634adcf90990612191908b90899089908890600401614ad8565b5f604051808303815f87803b1580156121a8575f80fd5b505af11580156121ba573d5f803e3d5ffd5b5050505060065f9054906101000a90046001600160a01b03166001600160a01b031663ea48ce9b896001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561221d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122419190614a85565b6040516001600160e01b031960e084901b1681526001600160601b0391821660048201526001600160a01b038b16602482015290841660448201526064016020604051808303815f875af115801561229b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122bf9190614a85565b506122ca818361374d565b50965096945050505050565b5f805f8051602061539383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612342573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123669190614ea5565b156123f1576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156123c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123eb9190614b0a565b91505090565b54600160601b90046001600160a01b0316919050565b61240f61331d565b61248b83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561244f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124739190614a85565b60085f8560405180602001604052805f815250610e4b565b6001600160a01b038216156124a8576124a3826139b1565b61251f565b5f6124b360026139c2565b905061251d816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125189190614b0a565b6139b1565b505b61252f634a531f3360e01b6108f5565b61253f63daf9067160e01b6108f5565b505050565b5f805160206153b383398151915280545f9190600160a01b900460ff1661256b575f6123eb565b638fb3603760e01b91505090565b5f80612585600f613355565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125eb9190614b0a565b60405163f0ea17c360e01b81526001600160601b03851660048201529091505f906001600160a01b0383169063f0ea17c3906024015f60405180830381865afa15801561263a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526126619190810190614c7d565b90505f8160a0015180602001905181019061267c9190614ec0565b905061269f815f015161268d613ac3565b6001600160401b039081169116141590565b156126c85760405163eff765ff60e01b81526001600160601b0386166004820152602401610aa9565b6001600160401b038616815260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015612717573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061273b9190614b0a565b6001600160a01b0316637c9b0493868360ff6040518463ffffffff1660e01b815260040161276b939291906151f5565b5f604051808303815f87803b158015612782575f80fd5b505af1158015612794573d5f803e3d5ffd5b5050604080516001600160601b03891681526001600160401b038a1660208201527fe7e6a7a42cbdb2d274dfaaac06073a09d6095ca3745ce71fe5a137f8247ea23e93500190505b60405180910390a1505050505050565b6127f533610555565b5f6128098260800151836101800151613b03565b600254602084015160405163ad328d9f60e01b81529293506001600160a01b039091169163ad328d9f9161284591899188918790600401614ad8565b5f604051808303815f87803b15801561285c575f80fd5b505af115801561286e573d5f803e3d5ffd5b50506002546040516301d90a6f60e61b81526001600160a01b0389811660048301526001600160601b038816602483015290911692506376429bc091506044016107bf565b5f806128bf600f613355565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612901573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129259190614b0a565b6040516357f80bbf60e01b81526001600160601b03851660048201529091505f906001600160a01b038316906357f80bbf9060240160e060405180830381865afa158015612975573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129999190614ec0565b602080820180516001600160601b03891690915260408051631a99b41b60e31b8152905193945090926001600160a01b0387169263d4cda0d892600480820193918290030181865afa1580156129f1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a159190614b0a565b6001600160a01b0316637c9b0493868460ff6040518463ffffffff1660e01b8152600401612a45939291906151f5565b5f604051808303815f87803b158015612a5c575f80fd5b505af1158015612a6e573d5f803e3d5ffd5b5050604080516001600160601b03808a16825280861660208301528a16918101919091527f59c52d680289bf3ed1eaf8c98c2385d021cbc74043dd1ed596d6383f63235ffc925060600190506127dc565b5f805160206153b3833981519152546001600160a01b031690565b5f80612ae6600f613355565b600254604051632aa6b2cb60e21b81526001600160a01b0380841660048301526001600160601b03891660248301529496509194505f93849350169063aa9acb2c9060440160408051808303815f875af1158015612b46573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b6a9190614f4e565b9150915060035f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a2846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bcd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bf19190614b0a565b86612bfc86866136c8565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612c43573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c679190614a85565b6040518563ffffffff1660e01b8152600401612c869493929190614ad8565b5f604051808303815f87803b158015612c9d575f80fd5b505af1158015612caf573d5f803e3d5ffd5b505050507f64c75a4392ba38fee1b5a44b61e3dd0cae424d2d43eb2b0c99772efe31e1c042836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d10573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d349190614a85565b604080516001600160601b03928316815282881660208201529188169082015260600160405180910390a1612d6982826136c8565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612dc0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612de49190614ea5565b15612fb1575f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e26573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e4a9190614b0a565b60405163f0ea17c360e01b81526001600160601b03871660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015612e96573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612ebd9190810190614c7d565b905080606001516001600160a01b03166354f0d84c8260800151612ee96001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038b1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612f36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f5a9190614b0a565b612f6487876136c8565b6040518463ffffffff1660e01b8152600401612f8293929190614d55565b5f604051808303815f87803b158015612f99575f80fd5b505af1158015612fab573d5f803e3d5ffd5b50505050505b5050505050565b612fc061331d565b612fc98161117b565b612fd161103a565b6001600160a01b038216612ff85760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061539383398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f805160206153b38339815191525f80613066613049612abf565b873061305860045f8a8c61527c565b613061916152a3565b613b4d565b91509150816108ed5763ffffffff81161561310157825460ff60a01b1916600160a01b178355613094612abf565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016130c3939291906152db565b5f604051808303815f87803b1580156130da575f80fd5b505af11580156130ec573d5f803e3d5ffd5b5050845460ff60a01b19168555506108ed9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610aa9565b5f805f8051602061539383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613190573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131b49190614ea5565b156131e05780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610aa9565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613232573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132569190614ea5565b61327e5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610aa9565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa1580156132d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132f49190614a85565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f805160206153d383398151915254600160401b900460ff1661335357604051631afcd79f60e31b815260040160405180910390fd5b565b5f61335e613f93565b5f6133716001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa1580156133b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133d99190614a85565b92506133e783856001613c55565b9395909450915050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044015b602060405180830381865af4158015613452573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134769190614ea5565b9392505050565b61021361331d565b5f805160206153d38339815191528054600160401b810460ff1615906001600160401b03165f811580156134b65750825b90505f826001600160401b031660011480156134d15750303b155b9050811580156134df575080155b156134fd5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561352757845460ff60401b1916600160401b1785555b5f808780602001905181019061353d9190615308565b925050915061354d82828b612407565b61355760026139c2565b600580546001600160a01b0319166001600160a01b0392909216919091179055613581601f6139c2565b600280546001600160a01b0319166001600160a01b03929092169190911790556135ab600a6139c2565b600480546001600160a01b0319166001600160a01b03929092169190911790556135d5600b6139c2565b600380546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b0316630e9ed68b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613630573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136549190614b0a565b600680546001600160a01b0319166001600160a01b03929092169190911790556136846347bb2e0b60e11b6108f5565b5050831561117257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611169565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015613729573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134769190614a85565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401613437565b604080518082019091525f808252602082015260405163f0ea17c360e01b81526001600160601b03831660048201525f906001600160a01b0385169063f0ea17c3906024015f60405180830381865afa1580156137f6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261381d9190810190614c7d565b602001516040516302d764c760e21b81526001600160601b03821660048201529091506001600160a01b03851690630b5d931c9060240161020060405180830381865afa158015613870573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138949190615134565b60e00151949350505050565b60405163f0ea17c360e01b81526001600160601b03841660048201525f906001600160a01b0386169063f0ea17c3906024015f60405180830381865afa1580156138ec573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526139139190810190614c7d565b90505f8160800151905081606001516001600160a01b031663c7d63d578583866040518463ffffffff1660e01b8152600401612f8293929190614d55565b5f805160206153b383398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6139b961331d565b61128381613ef2565b5f6139d56001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015613a38573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a5c9190614f86565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613a9f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e459190614b0a565b604051637c3940bf60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf906024016118ed565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa229060440161370e565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613bbb9190615347565b5f60405180830381855afa9150503d805f8114613bf3576040519150601f19603f3d011682016040523d82523d5f602084013e613bf8565b606091505b50915091508115613c4a576040815110613c2a5780806020019051810190613c20919061535d565b9094509250613c4a565b6020815110613c4a5780806020019051810190613c479190614ea5565b93505b505094509492505050565b613c5d613f93565b5f80613c716001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015613cbe573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613ce59190810190615045565b925060ff8516600b14613d4357604083015160ff868116911614613d3e57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610aa9565b613ddf565b613d5e8360400151613d53600c90565b60ff90811691161490565b80613d745750613d748360400151613d53600f90565b80613d8a5750613d8a8360400151613d53600e90565b80613da05750613da08360400151613d53600d90565b613ddf57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610aa9565b613dec8360200151613f03565b91508315613ee957816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613e30573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e549190614b0a565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015613e9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ec09190614ea5565b15613ee957604051637d71120960e11b81526001600160601b0387166004820152602401610aa9565b50935093915050565b613efa61331d565b61128381613951565b5f613f166001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015613f62573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613f899190810190615045565b6080015192915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b5f60208284031215613fe0575f80fd5b81356001600160e01b031981168114613476575f80fd5b6001600160601b0381168114611283575f80fd5b803561401681613ff7565b919050565b5f806040838503121561402c575f80fd5b823561403781613ff7565b9150602083013561404781613ff7565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516140c8608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261410c610100840182614052565b949350505050565b6001600160a01b0381168114611283575f80fd5b634e487b7160e01b5f52604160045260245ffd5b60405161022081016001600160401b038111828210171561415f5761415f614128565b60405290565b604080519081016001600160401b038111828210171561415f5761415f614128565b60405161024081016001600160401b038111828210171561415f5761415f614128565b60405160c081016001600160401b038111828210171561415f5761415f614128565b60405160e081016001600160401b038111828210171561415f5761415f614128565b60405161012081016001600160401b038111828210171561415f5761415f614128565b604051601f8201601f191681016001600160401b038111828210171561423957614239614128565b604052919050565b80356001600160c01b031981168114614016575f80fd5b64ffffffffff81168114611283575f80fd5b803561401681614258565b5f6001600160401b0382111561428d5761428d614128565b50601f01601f191660200190565b5f82601f8301126142aa575f80fd5b81356142bd6142b882614275565b614211565b8181528460208386010111156142d1575f80fd5b816020850160208301375f918101602001919091529392505050565b803561ffff81168114614016575f80fd5b5f610220828403121561430f575f80fd5b61431761413c565b90506143228261400b565b81526143306020830161400b565b602082015261434160408301614241565b604082015261435260608301614241565b60608201526143636080830161400b565b608082015261437460a0830161400b565b60a082015261438560c0830161400b565b60c082015261439660e0830161426a565b60e08201526101008201356001600160401b038111156143b4575f80fd5b6143c08482850161429b565b610100830152506101208201356001600160401b038111156143e0575f80fd5b6143ec8482850161429b565b6101208301525061440061014083016142ed565b61014082015261441361016083016142ed565b610160820152614426610180830161400b565b6101808201526144396101a0830161400b565b6101a082015261444c6101c0830161426a565b6101c082015261445f6101e0830161426a565b6101e0820152614472610200830161426a565b61020082015292915050565b5f805f805f60a08688031215614492575f80fd5b853561449d81614114565b945060208601356144ad81614114565b935060408601356144bd81613ff7565b925060608601356001600160401b038111156144d7575f80fd5b6144e3888289016142fe565b92505060808601356144f481613ff7565b809150509295509295909350565b60ff81168114611283575f80fd5b8015158114611283575f80fd5b5f805f805f8060c08789031215614532575f80fd5b863561453d81614114565b9550602087013561454d81613ff7565b9450604087013561455d81614502565b9350606087013561456d81614510565b9250608087013561457d81614114565b915060a08701356001600160401b03811115614597575f80fd5b6145a389828a0161429b565b9150509295509295509295565b5f602082840312156145c0575f80fd5b81356001600160401b038111156145d5575f80fd5b61410c8482850161429b565b5f80604083850312156145f2575f80fd5b82356145fd81614114565b915060208301356001600160401b03811115614617575f80fd5b6146238582860161429b565b9150509250929050565b5f6020828403121561463d575f80fd5b813561347681614114565b5f805f805f85870360a081121561465d575f80fd5b863561466881614114565b95506040601f198201121561467b575f80fd5b50614684614165565b6020878101358252604088013590820152935060608601356146a581614258565b925060808601356001600160401b038111156146bf575f80fd5b8601601f810188136146cf575f80fd5b80356001600160401b038111156146e4575f80fd5b8860208284010111156146f5575f80fd5b959894975092955050506020019190565b5f805f60608486031215614718575f80fd5b8335925060208401359150604084013561473181613ff7565b809150509250925092565b5f8082840361026081121561474f575f80fd5b833561475a81613ff7565b9250610240601f198201121561476e575f80fd5b50614777614187565b6147836020850161400b565b81526147916040850161400b565b60208201526147a26060850161400b565b6040820152608084810135606083015260a0808601359183019190915260c0808601359183019190915260e08086013591830191909152610100808601359183019190915261012080860135918301919091526101408086013591830191909152610160808601359183019190915261018080860135918301919091526101a080860135918301919091526101c080860135918301919091526101e080860135918301919091526102008086013591830191909152610220808601359183019190915261024090940135938101939093525092909150565b5f805f6060848603121561488c575f80fd5b833561489781614114565b925060208401356148a781613ff7565b9150604084013561473181613ff7565b5f805f805f8060c087890312156148cc575f80fd5b86356148d781614114565b955060208701356148e781614114565b945060408701356148f781613ff7565b9350606087013561490781613ff7565b9250608087013561491781613ff7565b915060a087013561492781613ff7565b809150509295509295509295565b5f805f60608486031215614947575f80fd5b833561495281614114565b9250602084013561496281614114565b9150604084013561473181614114565b6001600160401b0381168114611283575f80fd5b5f60208284031215614996575f80fd5b813561347681614972565b5f805f80608085870312156149b4575f80fd5b84356149bf81614114565b935060208501356149cf81614114565b925060408501356149df81613ff7565b915060608501356001600160401b038111156149f9575f80fd5b614a05878288016142fe565b91505092959194509250565b5f60208284031215614a21575f80fd5b813561347681613ff7565b5f8060408385031215614a3d575f80fd5b8235614a4881614114565b9150602083013561404781614114565b5f60208284031215614a68575f80fd5b815162ffffff81168114613476575f80fd5b805161401681613ff7565b5f60208284031215614a95575f80fd5b815161347681613ff7565b600181811c90821680614ab457607f821691505b602082108103614ad257634e487b7160e01b5f52602260045260245ffd5b50919050565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b5f60208284031215614b1a575f80fd5b815161347681614114565b5f60408284031215614b35575f80fd5b614b3d614165565b825181526020928301519281019290925250919050565b5f82601f830112614b63575f80fd5b8151602083015f614b766142b884614275565b9050828152858383011115614b89575f80fd5b8282602083015e5f92810160200192909252509392505050565b805161401681614258565b5f60208284031215614bbe575f80fd5b81516001600160401b03811115614bd3575f80fd5b820160e08185031215614be4575f80fd5b614bec6141aa565b8151614bf781613ff7565b8152614c068560208401614b25565b602082015260608201516001600160401b03811115614c23575f80fd5b614c2f86828501614b54565b6040830152506080820151614c4381614258565b6060820152614c5460a08301614ba3565b6080820152614c6560c08301614ba3565b60a0820152949350505050565b805161401681614114565b5f60208284031215614c8d575f80fd5b81516001600160401b03811115614ca2575f80fd5b820160c08185031215614cb3575f80fd5b614cbb6141aa565b81516001600160401b03811115614cd0575f80fd5b614cdc86828501614b54565b825250614ceb60208301614a7a565b6020820152614cfc60408301614c72565b6040820152614d0d60608301614c72565b6060820152614d1e60808301614c72565b608082015260a08201516001600160401b03811115614d3b575f80fd5b614d4786828501614b54565b60a083015250949350505050565b6001600160a01b0393841681529190921660208201526001600160601b03909116604082015260600190565b601f82111561253f57805f5260205f20601f840160051c81016020851015614da65750805b601f840160051c820191505b81811015612fb1575f8155600101614db2565b81516001600160401b03811115614dde57614dde614128565b614df281614dec8454614aa0565b84614d81565b6020601f821160018114614e24575f8315614e0d5750848201515b5f19600385901b1c1916600184901b178455612fb1565b5f84815260208120601f198516915b82811015614e535787850151825560209485019460019092019101614e33565b5084821015614e7057868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215614e8f575f80fd5b815161347681614972565b805161401681614510565b5f60208284031215614eb5575f80fd5b815161347681614510565b5f60e0828403128015614ed1575f80fd5b50614eda6141cc565b8251614ee581614972565b81526020830151614ef581613ff7565b60208201526040830151614f0881614510565b60408201526060830151614f1b81614510565b6060820152614f2c60808401614e9a565b608082015260a0838101519082015260c0928301519281019290925250919050565b5f8060408385031215614f5f575f80fd5b8251614f6a81613ff7565b602084015190925061404781613ff7565b805161401681614502565b5f60208284031215614f96575f80fd5b815161347681614502565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b6001600160a01b0389811682526001600160601b038916602083015287166040820152615003606082018780518252602090810151910152565b6001600160601b03851660a082015264ffffffffff841660c082015261010060e08201525f61503761010083018486614fa1565b9a9950505050505050505050565b5f60208284031215615055575f80fd5b81516001600160401b0381111561506a575f80fd5b820160e0818503121561507b575f80fd5b6150836141cc565b61508c82614a7a565b815261509a60208301614a7a565b60208201526150ab60408301614f7b565b60408201526150bc60608301614e9a565b60608201526150cd60808301614c72565b60808201526150de60a08301614c72565b60a082015260c08201516001600160401b038111156150fb575f80fd5b61510786828501614b54565b60c083015250949350505050565b80820180821115610e4557634e487b7160e01b5f52601160045260245ffd5b5f610200828403128015615146575f80fd5b5061514f6141ee565b61515883614a7a565b815261516660208401614a7a565b60208201526151788460408501614b25565b604082015261518a8460808501614b25565b606082015261519c8460c08501614b25565b60808201526151af846101008501614b25565b60a08201526151c2846101408501614b25565b60c08201526151d5846101808501614b25565b60e08201526151e8846101c08501614b25565b6101008201529392505050565b5f610120820190506001600160601b03851682526001600160401b0384511660208301526001600160601b036020850151166040830152604084015115156060830152606084015115156080830152608084015161525760a084018215159052565b5060a084015160c083015260c084015160e083015261410c61010083018460ff169052565b5f808585111561528a575f80fd5b83861115615296575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156152d4576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190525f906152ff9083018486614fa1565b95945050505050565b5f805f6060848603121561531a575f80fd5b835161532581614114565b602085015190935061533681614114565b604085015190925061473181614114565b5f82518060208501845e5f920191825250919050565b5f806040838503121561536e575f80fd5b825161537981614510565b602084015190925063ffffffff81168114614047575f80fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122094dd1b0ef652d980fd0ca223923088f5cc01fe8b494d02de00ff3ff4f24d9c4764736f6c634300081a0033",
1398
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610213575f3560e01c806371504a321161011f578063a3c26052116100a9578063bca99e3911610079578063bca99e391461050f578063bf7e214f14610522578063ca510bf614610258578063d0d63b091461052a578063f7c34ee01461053d575f80fd5b8063a3c26052146104c6578063a5f4c731146104d9578063ada9652e146104ec578063b68d180914610500575f80fd5b806384a710fa116100ef57806384a710fa1461046457806384d1f7cf14610477578063893d20e81461048a5780638e32e979146104925780638fb36037146104a5575f80fd5b806371504a32146103f55780637225ed01146104085780637a9e5e4b1461043e5780637d42d39714610451575f80fd5b806327bb7a33116101a05780635ab1bd53116101705780635ab1bd531461036d578063644c45e014610392578063675393bf146103af5780636c1e9dff146103c25780636c741e78146103d5575f80fd5b806327bb7a331461032c578063329d6e741461033f57806336fc697e1461035257806349bb9e4b1461035a575f80fd5b8063138461e0116101e6578063138461e01461029e5780631ddb9757146102be5780631eff4b22146102d1578063214cdb801461030657806326889b0914610319575f80fd5b806301ffc9a71461021757806306625783146102585780630d8e6e2c1461026d5780630fec111c14610289575b5f80fd5b610243610225366004613fd0565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61026b61026636600461401b565b610550565b005b610275610560565b60405162ffffff909116815260200161024f565b6102916105e7565b60405161024f9190614080565b6102a6610773565b6040516001600160601b03909116815260200161024f565b61026b6102cc36600461447e565b61077d565b6102f87f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161024f565b61026b610314366004613fd0565b6108f5565b6102a661032736600461401b565b610921565b61026b61033a36600461451d565b610e4b565b61026b61034d3660046145b0565b610ef0565b61026b61103a565b61026b6103683660046145e1565b61107f565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161024f565b5f80516020615393833981519152546001600160601b03166102a6565b61026b6103bd36600461462d565b61117b565b6102a66103d036600461401b565b611286565b6103dd611835565b6040516001600160401b03909116815260200161024f565b6102a6610403366004614648565b61192c565b61041e610416366004614706565b928392509050565b604080516001600160601b0393841681529290911660208301520161024f565b61026b61044c36600461462d565b611aef565b61026b61045f36600461473c565b611b71565b61041e61047236600461487a565b611fe6565b61041e6104853660046148b7565b6120e2565b61037a6122d6565b61026b6104a0366004614935565b612407565b6104ad612544565b6040516001600160e01b0319909116815260200161024f565b61026b6104d4366004614986565b612579565b61026b6104e73660046149a1565b6127ec565b6102f85f8051602061539383398151915281565b604051600f815260200161024f565b61026b61051d366004614a11565b6128b3565b61037a612abf565b61026b610538366004614a11565b612ada565b61026b61054b366004614a2c565b612fb8565b61055c335b5f3661302e565b5050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156105be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105e29190614a58565b905090565b6105ef613f93565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610665573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106899190614a85565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016106d16122d6565b6001600160a01b031681526020018260010180546106ee90614aa0565b80601f016020809104026020016040519081016040528092919081815260200182805461071a90614aa0565b80156107655780601f1061073c57610100808354040283529160200191610765565b820191905f5260205f20905b81548152906001019060200180831161074857829003601f168201915b505050505081525091505090565b5f6105e230613124565b61078633610555565b600254602083015160405163ad328d9f60e01b81526001600160a01b039092169163ad328d9f916107bf91899188918790600401614ad8565b5f604051808303815f87803b1580156107d6575f80fd5b505af11580156107e8573d5f803e3d5ffd5b5050505060065f9054906101000a90046001600160a01b03166001600160a01b031663d44f8a4b866001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561084b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061086f9190614a85565b6040516001600160e01b031960e084901b1681526001600160601b0391821660048201526001600160a01b038816602482015290841660448201526064016020604051808303815f875af11580156108c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108ed9190614a85565b505050505050565b6108fd61331d565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f808061092e600f613355565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610970573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109949190614b0a565b90505f826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109f79190614b0a565b604051634793b4ab60e01b81526001600160601b03891660048201529091505f906001600160a01b03841690634793b4ab906024015f60405180830381865afa158015610a46573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610a6d9190810190614bae565b9050610a7c815f0151866133f1565b15610ab257604051630a49ea2360e01b81526001600160601b03808a166004830152861660248201526044015b60405180910390fd5b600254604051631696791160e11b81526001600160a01b0386811660048301526001600160601b03808c1660248401528a1660448301525f921690632d2cf222906064016020604051808303815f875af1158015610b12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b369190614a85565b905060035f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a284888473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610ba5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc99190614a85565b6040518563ffffffff1660e01b8152600401610be89493929190614ad8565b5f604051808303815f87803b158015610bff575f80fd5b505af1158015610c11573d5f803e3d5ffd5b505060405163f0ea17c360e01b81526001600160601b03891660048201525f92506001600160a01b038716915063f0ea17c3906024015f60405180830381865afa158015610c61573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610c889190810190614c7d565b60808101519091505f610ca36001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038e1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610cf0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d149190614b0a565b90507fa9e4ee5628423184bfcde002aae428406aeac6b337e1acf560282b155e358527886001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d979190614a85565b8a8e87604051610dd094939291906001600160601b03948516815292841660208401529083166040830152909116606082015260800190565b60405180910390a182606001516001600160a01b03166354f0d84c8383876040518463ffffffff1660e01b8152600401610e0c93929190614d55565b5f604051808303815f87803b158015610e23575f80fd5b505af1158015610e35573d5f803e3d5ffd5b50959b5050505050505050505050505b92915050565b610e5361331d565b610e5d8287612fb8565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610ee68382614dc5565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610f12610560565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610f50573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f749190614e7f565b5f805160206153d38339815191528054600160401b900460ff1680610fa6575080546001600160401b03808416911610155b15610fc45760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610fee8361347d565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b61104261331d565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f805160206153d38339815191528054600160401b810460ff1615906001600160401b03165f811580156110b05750825b90505f826001600160401b031660011480156110cb5750303b155b9050811580156110d9575080155b156110f75760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561112157845460ff60401b1916600160401b1785555b61112b8787613485565b831561117257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b61118361331d565b806001600160a01b03163b5f036111b85760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610aa9565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa925050508015611232575060408051601f3d908101601f1916820190925261122f91810190614ea5565b60015b61125a5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610aa9565b8061055c5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610aa9565b50565b5f8080611293600f613355565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112f99190614b0a565b604051634793b4ab60e01b81526001600160601b03881660048201529091505f906001600160a01b03831690634793b4ab906024015f60405180830381865afa158015611348573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261136f9190810190614bae565b6040516357f80bbf60e01b81526001600160601b03861660048201529091505f906001600160a01b038416906357f80bbf9060240160e060405180830381865afa1580156113bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113e39190614ec0565b90506113f2825f0151866133f1565b1561142357604051630a49ea2360e01b81526001600160601b03808a16600483015286166024820152604401610aa9565b6040516308a390bb60e21b81526001600160601b03861660048201525f906001600160a01b0385169063228e42ec90602401602060405180830381865afa158015611470573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114949190614a85565b90506114ad6114a3828a6136c8565b836020015161374d565b156114f457602082015160405163b806175d60e01b81526001600160601b038089166004830152918216602482015281831660448201529089166064820152608401610aa9565b505f73__$58e11c6004c5796aaa8c56e718245e69a2$__639ed246ea61151a8689613797565b6040516001600160e01b031960e084901b1681528151600482015260209091015160248201526001600160601b038b1660448201526064016040805180830381865af415801561156c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115909190614f4e565b809850819250505060035f9054906101000a90046001600160a01b03166001600160a01b031663d56cd3d5866001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061161b9190614b0a565b888a856040518563ffffffff1660e01b815260040161163d9493929190614ad8565b5f604051808303815f87803b158015611654575f80fd5b505af1158015611666573d5f803e3d5ffd5b50506002546040516325fa796b60e01b81526001600160a01b0389811660048301526001600160601b03808f1660248401528c16604483015290911692506325fa796b91506064015f604051808303815f87803b1580156116c5575f80fd5b505af11580156116d7573d5f803e3d5ffd5b505050505f6116ee6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038c1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561173b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061175f9190614b0a565b90507fa397b0d38fe748a8c29cce53eab5736ef0c29c156e7a9586ae8b88a8557b4145866001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117e29190614a85565b604080516001600160601b0392831681528a831660208201528d8316818301528c83166060820152918b166080830152519081900360a00190a16118288588838c6138a0565b5050505050505092915050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600f604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156118a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c49190614f86565b6040516001600160e01b031960e085901b16815260ff9283166004820152911660248201526044015b602060405180830381865af4158015611908573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105e29190614e7f565b5f8080611939600f613355565b925050915060025f9054906101000a90046001600160a01b03166001600160a01b031663e283b4a982848b8b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156119ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119d09190614a85565b8c8c8c6040518963ffffffff1660e01b81526004016119f6989796959493929190614fc9565b6020604051808303815f875af1158015611a12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a369190614a85565b92507f0dcadf661b8b2888423f78a848a77785b4dc0138395b12584835f6a65dfcea79816001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a95573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ab99190614a85565b604080516001600160601b03928316815282861660208201529186169082015260600160405180910390a1505095945050505050565b33611af8612abf565b6001600160a01b0316816001600160a01b031614611b335760405162d1953b60e31b81526001600160a01b0382166004820152602401610aa9565b816001600160a01b03163b5f03611b68576040516361798f2f60e11b81526001600160a01b0383166004820152602401610aa9565b61055c82613951565b611b7a33610555565b5f611b8d6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201529091505f906001600160a01b0383169063a48f42e0906024015f60405180830381865afa158015611bdc573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611c039190810190615045565b60208101516040516305247a1760e51b81526001600160601b0390911660048201529091505f906001600160a01b0384169063a48f42e0906024015f60405180830381865afa158015611c58573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611c7f9190810190615045565b60208101516040516305247a1760e51b81526001600160601b0390911660048201529091505f906001600160a01b0385169063a48f42e0906024015f60405180830381865afa158015611cd4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611cfb9190810190615045565b90505f816080015190505f73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968861016001518960e00151611d359190615115565b6040518263ffffffff1660e01b8152600401611d5391815260200190565b602060405180830381865af4158015611d6e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d929190614a85565b90505f73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968961018001518a6101000151611dc59190615115565b6040518263ffffffff1660e01b8152600401611de391815260200190565b602060405180830381865af4158015611dfe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e229190614a85565b90505f73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968a606001516040518263ffffffff1660e01b8152600401611e6291815260200190565b602060405180830381865af4158015611e7d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ea19190614a85565b90505f846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ee0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f049190614b0a565b60035488519192506001600160a01b03169063d56cd3d5908390611f2886886136c8565b886040518563ffffffff1660e01b8152600401611f489493929190614ad8565b5f604051808303815f87803b158015611f5f575f80fd5b505af1158015611f71573d5f803e3d5ffd5b50506003548a516040516325e451d360e01b81526001600160a01b0390921693506325e451d39250611fac9185919087908990600401614ad8565b5f604051808303815f87803b158015611fc3575f80fd5b505af1158015611fd5573d5f803e3d5ffd5b505050505050505050505050505050565b6040516302d764c760e21b81526001600160601b03831660048201525f90819081906001600160a01b03871690630b5d931c9060240161020060405180830381865afa158015612038573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061205c9190615134565b602001516040516357f80bbf60e01b81526001600160601b03821660048201529091505f906001600160a01b038816906357f80bbf9060240160e060405180830381865afa1580156120b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120d49190614ec0565b509396879650945050505050565b5f806120ed33610555565b612157886001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561212c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121509190614b0a565b8785611fe6565b600254604051634adcf90960e01b81529294509092506001600160a01b031690634adcf90990612191908b90899089908890600401614ad8565b5f604051808303815f87803b1580156121a8575f80fd5b505af11580156121ba573d5f803e3d5ffd5b5050505060065f9054906101000a90046001600160a01b03166001600160a01b031663ea48ce9b896001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561221d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122419190614a85565b6040516001600160e01b031960e084901b1681526001600160601b0391821660048201526001600160a01b038b16602482015290841660448201526064016020604051808303815f875af115801561229b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122bf9190614a85565b506122ca818361374d565b50965096945050505050565b5f805f8051602061539383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612342573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123669190614ea5565b156123f1576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156123c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123eb9190614b0a565b91505090565b54600160601b90046001600160a01b0316919050565b61240f61331d565b61248b83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561244f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124739190614a85565b60085f8560405180602001604052805f815250610e4b565b6001600160a01b038216156124a8576124a3826139b1565b61251f565b5f6124b360026139c2565b905061251d816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125189190614b0a565b6139b1565b505b61252f634a531f3360e01b6108f5565b61253f63daf9067160e01b6108f5565b505050565b5f805160206153b383398151915280545f9190600160a01b900460ff1661256b575f6123eb565b638fb3603760e01b91505090565b5f80612585600f613355565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125eb9190614b0a565b60405163f0ea17c360e01b81526001600160601b03851660048201529091505f906001600160a01b0383169063f0ea17c3906024015f60405180830381865afa15801561263a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526126619190810190614c7d565b90505f8160a0015180602001905181019061267c9190614ec0565b905061269f815f015161268d613ac3565b6001600160401b039081169116141590565b156126c85760405163eff765ff60e01b81526001600160601b0386166004820152602401610aa9565b6001600160401b038616815260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015612717573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061273b9190614b0a565b6001600160a01b0316637c9b0493868360ff6040518463ffffffff1660e01b815260040161276b939291906151f5565b5f604051808303815f87803b158015612782575f80fd5b505af1158015612794573d5f803e3d5ffd5b5050604080516001600160601b03891681526001600160401b038a1660208201527fe7e6a7a42cbdb2d274dfaaac06073a09d6095ca3745ce71fe5a137f8247ea23e93500190505b60405180910390a1505050505050565b6127f533610555565b5f6128098260800151836101800151613b03565b600254602084015160405163ad328d9f60e01b81529293506001600160a01b039091169163ad328d9f9161284591899188918790600401614ad8565b5f604051808303815f87803b15801561285c575f80fd5b505af115801561286e573d5f803e3d5ffd5b50506002546040516301d90a6f60e61b81526001600160a01b0389811660048301526001600160601b038816602483015290911692506376429bc091506044016107bf565b5f806128bf600f613355565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612901573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129259190614b0a565b6040516357f80bbf60e01b81526001600160601b03851660048201529091505f906001600160a01b038316906357f80bbf9060240160e060405180830381865afa158015612975573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129999190614ec0565b602080820180516001600160601b03891690915260408051631a99b41b60e31b8152905193945090926001600160a01b0387169263d4cda0d892600480820193918290030181865afa1580156129f1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a159190614b0a565b6001600160a01b0316637c9b0493868460ff6040518463ffffffff1660e01b8152600401612a45939291906151f5565b5f604051808303815f87803b158015612a5c575f80fd5b505af1158015612a6e573d5f803e3d5ffd5b5050604080516001600160601b03808a16825280861660208301528a16918101919091527f59c52d680289bf3ed1eaf8c98c2385d021cbc74043dd1ed596d6383f63235ffc925060600190506127dc565b5f805160206153b3833981519152546001600160a01b031690565b5f80612ae6600f613355565b600254604051632aa6b2cb60e21b81526001600160a01b0380841660048301526001600160601b03891660248301529496509194505f93849350169063aa9acb2c9060440160408051808303815f875af1158015612b46573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b6a9190614f4e565b9150915060035f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a2846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bcd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bf19190614b0a565b86612bfc86866136c8565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612c43573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c679190614a85565b6040518563ffffffff1660e01b8152600401612c869493929190614ad8565b5f604051808303815f87803b158015612c9d575f80fd5b505af1158015612caf573d5f803e3d5ffd5b505050507f64c75a4392ba38fee1b5a44b61e3dd0cae424d2d43eb2b0c99772efe31e1c042836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d10573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d349190614a85565b604080516001600160601b03928316815282881660208201529188169082015260600160405180910390a1612d6982826136c8565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612dc0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612de49190614ea5565b15612fb1575f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e26573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e4a9190614b0a565b60405163f0ea17c360e01b81526001600160601b03871660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015612e96573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612ebd9190810190614c7d565b905080606001516001600160a01b03166354f0d84c8260800151612ee96001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038b1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612f36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f5a9190614b0a565b612f6487876136c8565b6040518463ffffffff1660e01b8152600401612f8293929190614d55565b5f604051808303815f87803b158015612f99575f80fd5b505af1158015612fab573d5f803e3d5ffd5b50505050505b5050505050565b612fc061331d565b612fc98161117b565b612fd161103a565b6001600160a01b038216612ff85760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061539383398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f805160206153b38339815191525f80613066613049612abf565b873061305860045f8a8c61527c565b613061916152a3565b613b4d565b91509150816108ed5763ffffffff81161561310157825460ff60a01b1916600160a01b178355613094612abf565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016130c3939291906152db565b5f604051808303815f87803b1580156130da575f80fd5b505af11580156130ec573d5f803e3d5ffd5b5050845460ff60a01b19168555506108ed9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610aa9565b5f805f8051602061539383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613190573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131b49190614ea5565b156131e05780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610aa9565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613232573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132569190614ea5565b61327e5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610aa9565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa1580156132d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132f49190614a85565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f805160206153d383398151915254600160401b900460ff1661335357604051631afcd79f60e31b815260040160405180910390fd5b565b5f61335e613f93565b5f6133716001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa1580156133b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133d99190614a85565b92506133e783856001613c55565b9395909450915050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044015b602060405180830381865af4158015613452573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134769190614ea5565b9392505050565b61021361331d565b5f805160206153d38339815191528054600160401b810460ff1615906001600160401b03165f811580156134b65750825b90505f826001600160401b031660011480156134d15750303b155b9050811580156134df575080155b156134fd5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561352757845460ff60401b1916600160401b1785555b5f808780602001905181019061353d9190615308565b925050915061354d82828b612407565b61355760026139c2565b600580546001600160a01b0319166001600160a01b0392909216919091179055613581601f6139c2565b600280546001600160a01b0319166001600160a01b03929092169190911790556135ab600a6139c2565b600480546001600160a01b0319166001600160a01b03929092169190911790556135d5600b6139c2565b600380546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b0316630e9ed68b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613630573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136549190614b0a565b600680546001600160a01b0319166001600160a01b03929092169190911790556136846347bb2e0b60e11b6108f5565b5050831561117257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611169565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015613729573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134769190614a85565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401613437565b604080518082019091525f808252602082015260405163f0ea17c360e01b81526001600160601b03831660048201525f906001600160a01b0385169063f0ea17c3906024015f60405180830381865afa1580156137f6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261381d9190810190614c7d565b602001516040516302d764c760e21b81526001600160601b03821660048201529091506001600160a01b03851690630b5d931c9060240161020060405180830381865afa158015613870573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138949190615134565b60e00151949350505050565b60405163f0ea17c360e01b81526001600160601b03841660048201525f906001600160a01b0386169063f0ea17c3906024015f60405180830381865afa1580156138ec573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526139139190810190614c7d565b90505f8160800151905081606001516001600160a01b031663c7d63d578583866040518463ffffffff1660e01b8152600401612f8293929190614d55565b5f805160206153b383398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6139b961331d565b61128381613ef2565b5f6139d56001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015613a38573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a5c9190614f86565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613a9f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e459190614b0a565b604051637c3940bf60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf906024016118ed565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa229060440161370e565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613bbb9190615347565b5f60405180830381855afa9150503d805f8114613bf3576040519150601f19603f3d011682016040523d82523d5f602084013e613bf8565b606091505b50915091508115613c4a576040815110613c2a5780806020019051810190613c20919061535d565b9094509250613c4a565b6020815110613c4a5780806020019051810190613c479190614ea5565b93505b505094509492505050565b613c5d613f93565b5f80613c716001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015613cbe573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613ce59190810190615045565b925060ff8516600b14613d4357604083015160ff868116911614613d3e57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610aa9565b613ddf565b613d5e8360400151613d53600c90565b60ff90811691161490565b80613d745750613d748360400151613d53600f90565b80613d8a5750613d8a8360400151613d53600e90565b80613da05750613da08360400151613d53600d90565b613ddf57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610aa9565b613dec8360200151613f03565b91508315613ee957816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613e30573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e549190614b0a565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015613e9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ec09190614ea5565b15613ee957604051637d71120960e11b81526001600160601b0387166004820152602401610aa9565b50935093915050565b613efa61331d565b61128381613951565b5f613f166001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015613f62573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613f899190810190615045565b6080015192915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b5f60208284031215613fe0575f80fd5b81356001600160e01b031981168114613476575f80fd5b6001600160601b0381168114611283575f80fd5b803561401681613ff7565b919050565b5f806040838503121561402c575f80fd5b823561403781613ff7565b9150602083013561404781613ff7565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516140c8608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261410c610100840182614052565b949350505050565b6001600160a01b0381168114611283575f80fd5b634e487b7160e01b5f52604160045260245ffd5b60405161022081016001600160401b038111828210171561415f5761415f614128565b60405290565b604080519081016001600160401b038111828210171561415f5761415f614128565b60405161024081016001600160401b038111828210171561415f5761415f614128565b60405160c081016001600160401b038111828210171561415f5761415f614128565b60405160e081016001600160401b038111828210171561415f5761415f614128565b60405161012081016001600160401b038111828210171561415f5761415f614128565b604051601f8201601f191681016001600160401b038111828210171561423957614239614128565b604052919050565b80356001600160c01b031981168114614016575f80fd5b64ffffffffff81168114611283575f80fd5b803561401681614258565b5f6001600160401b0382111561428d5761428d614128565b50601f01601f191660200190565b5f82601f8301126142aa575f80fd5b81356142bd6142b882614275565b614211565b8181528460208386010111156142d1575f80fd5b816020850160208301375f918101602001919091529392505050565b803561ffff81168114614016575f80fd5b5f610220828403121561430f575f80fd5b61431761413c565b90506143228261400b565b81526143306020830161400b565b602082015261434160408301614241565b604082015261435260608301614241565b60608201526143636080830161400b565b608082015261437460a0830161400b565b60a082015261438560c0830161400b565b60c082015261439660e0830161426a565b60e08201526101008201356001600160401b038111156143b4575f80fd5b6143c08482850161429b565b610100830152506101208201356001600160401b038111156143e0575f80fd5b6143ec8482850161429b565b6101208301525061440061014083016142ed565b61014082015261441361016083016142ed565b610160820152614426610180830161400b565b6101808201526144396101a0830161400b565b6101a082015261444c6101c0830161426a565b6101c082015261445f6101e0830161426a565b6101e0820152614472610200830161426a565b61020082015292915050565b5f805f805f60a08688031215614492575f80fd5b853561449d81614114565b945060208601356144ad81614114565b935060408601356144bd81613ff7565b925060608601356001600160401b038111156144d7575f80fd5b6144e3888289016142fe565b92505060808601356144f481613ff7565b809150509295509295909350565b60ff81168114611283575f80fd5b8015158114611283575f80fd5b5f805f805f8060c08789031215614532575f80fd5b863561453d81614114565b9550602087013561454d81613ff7565b9450604087013561455d81614502565b9350606087013561456d81614510565b9250608087013561457d81614114565b915060a08701356001600160401b03811115614597575f80fd5b6145a389828a0161429b565b9150509295509295509295565b5f602082840312156145c0575f80fd5b81356001600160401b038111156145d5575f80fd5b61410c8482850161429b565b5f80604083850312156145f2575f80fd5b82356145fd81614114565b915060208301356001600160401b03811115614617575f80fd5b6146238582860161429b565b9150509250929050565b5f6020828403121561463d575f80fd5b813561347681614114565b5f805f805f85870360a081121561465d575f80fd5b863561466881614114565b95506040601f198201121561467b575f80fd5b50614684614165565b6020878101358252604088013590820152935060608601356146a581614258565b925060808601356001600160401b038111156146bf575f80fd5b8601601f810188136146cf575f80fd5b80356001600160401b038111156146e4575f80fd5b8860208284010111156146f5575f80fd5b959894975092955050506020019190565b5f805f60608486031215614718575f80fd5b8335925060208401359150604084013561473181613ff7565b809150509250925092565b5f8082840361026081121561474f575f80fd5b833561475a81613ff7565b9250610240601f198201121561476e575f80fd5b50614777614187565b6147836020850161400b565b81526147916040850161400b565b60208201526147a26060850161400b565b6040820152608084810135606083015260a0808601359183019190915260c0808601359183019190915260e08086013591830191909152610100808601359183019190915261012080860135918301919091526101408086013591830191909152610160808601359183019190915261018080860135918301919091526101a080860135918301919091526101c080860135918301919091526101e080860135918301919091526102008086013591830191909152610220808601359183019190915261024090940135938101939093525092909150565b5f805f6060848603121561488c575f80fd5b833561489781614114565b925060208401356148a781613ff7565b9150604084013561473181613ff7565b5f805f805f8060c087890312156148cc575f80fd5b86356148d781614114565b955060208701356148e781614114565b945060408701356148f781613ff7565b9350606087013561490781613ff7565b9250608087013561491781613ff7565b915060a087013561492781613ff7565b809150509295509295509295565b5f805f60608486031215614947575f80fd5b833561495281614114565b9250602084013561496281614114565b9150604084013561473181614114565b6001600160401b0381168114611283575f80fd5b5f60208284031215614996575f80fd5b813561347681614972565b5f805f80608085870312156149b4575f80fd5b84356149bf81614114565b935060208501356149cf81614114565b925060408501356149df81613ff7565b915060608501356001600160401b038111156149f9575f80fd5b614a05878288016142fe565b91505092959194509250565b5f60208284031215614a21575f80fd5b813561347681613ff7565b5f8060408385031215614a3d575f80fd5b8235614a4881614114565b9150602083013561404781614114565b5f60208284031215614a68575f80fd5b815162ffffff81168114613476575f80fd5b805161401681613ff7565b5f60208284031215614a95575f80fd5b815161347681613ff7565b600181811c90821680614ab457607f821691505b602082108103614ad257634e487b7160e01b5f52602260045260245ffd5b50919050565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b5f60208284031215614b1a575f80fd5b815161347681614114565b5f60408284031215614b35575f80fd5b614b3d614165565b825181526020928301519281019290925250919050565b5f82601f830112614b63575f80fd5b8151602083015f614b766142b884614275565b9050828152858383011115614b89575f80fd5b8282602083015e5f92810160200192909252509392505050565b805161401681614258565b5f60208284031215614bbe575f80fd5b81516001600160401b03811115614bd3575f80fd5b820160e08185031215614be4575f80fd5b614bec6141aa565b8151614bf781613ff7565b8152614c068560208401614b25565b602082015260608201516001600160401b03811115614c23575f80fd5b614c2f86828501614b54565b6040830152506080820151614c4381614258565b6060820152614c5460a08301614ba3565b6080820152614c6560c08301614ba3565b60a0820152949350505050565b805161401681614114565b5f60208284031215614c8d575f80fd5b81516001600160401b03811115614ca2575f80fd5b820160c08185031215614cb3575f80fd5b614cbb6141aa565b81516001600160401b03811115614cd0575f80fd5b614cdc86828501614b54565b825250614ceb60208301614a7a565b6020820152614cfc60408301614c72565b6040820152614d0d60608301614c72565b6060820152614d1e60808301614c72565b608082015260a08201516001600160401b03811115614d3b575f80fd5b614d4786828501614b54565b60a083015250949350505050565b6001600160a01b0393841681529190921660208201526001600160601b03909116604082015260600190565b601f82111561253f57805f5260205f20601f840160051c81016020851015614da65750805b601f840160051c820191505b81811015612fb1575f8155600101614db2565b81516001600160401b03811115614dde57614dde614128565b614df281614dec8454614aa0565b84614d81565b6020601f821160018114614e24575f8315614e0d5750848201515b5f19600385901b1c1916600184901b178455612fb1565b5f84815260208120601f198516915b82811015614e535787850151825560209485019460019092019101614e33565b5084821015614e7057868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215614e8f575f80fd5b815161347681614972565b805161401681614510565b5f60208284031215614eb5575f80fd5b815161347681614510565b5f60e0828403128015614ed1575f80fd5b50614eda6141cc565b8251614ee581614972565b81526020830151614ef581613ff7565b60208201526040830151614f0881614510565b60408201526060830151614f1b81614510565b6060820152614f2c60808401614e9a565b608082015260a0838101519082015260c0928301519281019290925250919050565b5f8060408385031215614f5f575f80fd5b8251614f6a81613ff7565b602084015190925061404781613ff7565b805161401681614502565b5f60208284031215614f96575f80fd5b815161347681614502565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b6001600160a01b0389811682526001600160601b038916602083015287166040820152615003606082018780518252602090810151910152565b6001600160601b03851660a082015264ffffffffff841660c082015261010060e08201525f61503761010083018486614fa1565b9a9950505050505050505050565b5f60208284031215615055575f80fd5b81516001600160401b0381111561506a575f80fd5b820160e0818503121561507b575f80fd5b6150836141cc565b61508c82614a7a565b815261509a60208301614a7a565b60208201526150ab60408301614f7b565b60408201526150bc60608301614e9a565b60608201526150cd60808301614c72565b60808201526150de60a08301614c72565b60a082015260c08201516001600160401b038111156150fb575f80fd5b61510786828501614b54565b60c083015250949350505050565b80820180821115610e4557634e487b7160e01b5f52601160045260245ffd5b5f610200828403128015615146575f80fd5b5061514f6141ee565b61515883614a7a565b815261516660208401614a7a565b60208201526151788460408501614b25565b604082015261518a8460808501614b25565b606082015261519c8460c08501614b25565b60808201526151af846101008501614b25565b60a08201526151c2846101408501614b25565b60c08201526151d5846101808501614b25565b60e08201526151e8846101c08501614b25565b6101008201529392505050565b5f610120820190506001600160601b03851682526001600160401b0384511660208301526001600160601b036020850151166040830152604084015115156060830152606084015115156080830152608084015161525760a084018215159052565b5060a084015160c083015260c084015160e083015261410c61010083018460ff169052565b5f808585111561528a575f80fd5b83861115615296575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156152d4576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190525f906152ff9083018486614fa1565b95945050505050565b5f805f6060848603121561531a575f80fd5b835161532581614114565b602085015190935061533681614114565b604085015190925061473181614114565b5f82518060208501845e5f920191825250919050565b5f806040838503121561536e575f80fd5b825161537981614510565b602084015190925063ffffffff81168114614047575f80fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122094dd1b0ef652d980fd0ca223923088f5cc01fe8b494d02de00ff3ff4f24d9c4764736f6c634300081a0033",
1399
+ "linkReferences": {
1400
+ "contracts/type/Amount.sol": {
1401
+ "AmountLib": [
1402
+ {
1403
+ "length": 20,
1404
+ "start": 3126
1405
+ },
1406
+ {
1407
+ "length": 20,
1408
+ "start": 6717
1409
+ },
1410
+ {
1411
+ "length": 20,
1412
+ "start": 7646
1413
+ },
1414
+ {
1415
+ "length": 20,
1416
+ "start": 7789
1417
+ },
1418
+ {
1419
+ "length": 20,
1420
+ "start": 7933
1421
+ },
1422
+ {
1423
+ "length": 20,
1424
+ "start": 11476
1425
+ },
1426
+ {
1427
+ "length": 20,
1428
+ "start": 11870
1429
+ },
1430
+ {
1431
+ "length": 20,
1432
+ "start": 14278
1433
+ },
1434
+ {
1435
+ "length": 20,
1436
+ "start": 14411
1437
+ },
1438
+ {
1439
+ "length": 20,
1440
+ "start": 15361
1441
+ }
1442
+ ]
1443
+ },
1444
+ "contracts/type/Fee.sol": {
1445
+ "FeeLib": [
1446
+ {
1447
+ "length": 20,
1448
+ "start": 5582
1449
+ }
1450
+ ]
1451
+ },
1452
+ "contracts/type/NftId.sol": {
1453
+ "NftIdLib": [
1454
+ {
1455
+ "length": 20,
1456
+ "start": 1782
1457
+ },
1458
+ {
1459
+ "length": 20,
1460
+ "start": 9184
1461
+ },
1462
+ {
1463
+ "length": 20,
1464
+ "start": 12846
1465
+ },
1466
+ {
1467
+ "length": 20,
1468
+ "start": 13551
1469
+ }
1470
+ ]
1471
+ },
1472
+ "contracts/type/RoleId.sol": {
1473
+ "RoleIdLib": [
1474
+ {
1475
+ "length": 20,
1476
+ "start": 6414
1477
+ },
1478
+ {
1479
+ "length": 20,
1480
+ "start": 15287
1481
+ }
1482
+ ]
1483
+ },
1484
+ "contracts/type/Version.sol": {
1485
+ "VersionLib": [
1486
+ {
1487
+ "length": 20,
1488
+ "start": 1628
1489
+ },
1490
+ {
1491
+ "length": 20,
1492
+ "start": 4040
1493
+ }
1494
+ ],
1495
+ "VersionPartLib": [
1496
+ {
1497
+ "length": 20,
1498
+ "start": 6462
1499
+ },
1500
+ {
1501
+ "length": 20,
1502
+ "start": 15062
1503
+ }
1504
+ ]
1505
+ }
1506
+ },
1507
+ "deployedLinkReferences": {
1508
+ "contracts/type/Amount.sol": {
1509
+ "AmountLib": [
1510
+ {
1511
+ "length": 20,
1512
+ "start": 2912
1513
+ },
1514
+ {
1515
+ "length": 20,
1516
+ "start": 6503
1517
+ },
1518
+ {
1519
+ "length": 20,
1520
+ "start": 7432
1521
+ },
1522
+ {
1523
+ "length": 20,
1524
+ "start": 7575
1525
+ },
1526
+ {
1527
+ "length": 20,
1528
+ "start": 7719
1529
+ },
1530
+ {
1531
+ "length": 20,
1532
+ "start": 11262
1533
+ },
1534
+ {
1535
+ "length": 20,
1536
+ "start": 11656
1537
+ },
1538
+ {
1539
+ "length": 20,
1540
+ "start": 14064
1541
+ },
1542
+ {
1543
+ "length": 20,
1544
+ "start": 14197
1545
+ },
1546
+ {
1547
+ "length": 20,
1548
+ "start": 15147
1549
+ }
1550
+ ]
1551
+ },
1552
+ "contracts/type/Fee.sol": {
1553
+ "FeeLib": [
1554
+ {
1555
+ "length": 20,
1556
+ "start": 5368
1557
+ }
1558
+ ]
1559
+ },
1560
+ "contracts/type/NftId.sol": {
1561
+ "NftIdLib": [
1562
+ {
1563
+ "length": 20,
1564
+ "start": 1568
1565
+ },
1566
+ {
1567
+ "length": 20,
1568
+ "start": 8970
1569
+ },
1570
+ {
1571
+ "length": 20,
1572
+ "start": 12632
1573
+ },
1574
+ {
1575
+ "length": 20,
1576
+ "start": 13337
1577
+ }
1578
+ ]
1579
+ },
1580
+ "contracts/type/RoleId.sol": {
1581
+ "RoleIdLib": [
1582
+ {
1583
+ "length": 20,
1584
+ "start": 6200
1585
+ },
1586
+ {
1587
+ "length": 20,
1588
+ "start": 15073
1589
+ }
1590
+ ]
1591
+ },
1592
+ "contracts/type/Version.sol": {
1593
+ "VersionLib": [
1594
+ {
1595
+ "length": 20,
1596
+ "start": 1414
1597
+ },
1598
+ {
1599
+ "length": 20,
1600
+ "start": 3826
1601
+ }
1602
+ ],
1603
+ "VersionPartLib": [
1604
+ {
1605
+ "length": 20,
1606
+ "start": 6248
1607
+ },
1608
+ {
1609
+ "length": 20,
1610
+ "start": 14848
1611
+ }
1612
+ ]
1613
+ }
1614
+ }
1615
+ }