@etherisc/gif-next 0.0.2-8eb96a8-113 → 0.0.2-8f3d499-425

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