@etherisc/gif-next 0.0.2-f831797-539 → 0.0.2-f946ccd-184

Sign up to get free protection for your applications and to get access to all the features.
Files changed (667) hide show
  1. package/README.md +57 -88
  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/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  10. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +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/{components → distribution}/Distribution.sol/Distribution.json +220 -509
  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/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +282 -227
  34. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +254 -335
  36. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  37. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1463 -0
  38. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  39. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +410 -0
  40. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  41. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +1712 -0
  42. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +414 -0
  44. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  46. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  47. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1411 -0
  48. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  49. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1171 -0
  50. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  51. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1517 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +1978 -0
  54. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  55. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
  56. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  57. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +278 -1906
  58. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  59. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +318 -70
  60. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  61. package/artifacts/contracts/instance/Instance.sol/Instance.json +335 -2711
  62. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  63. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1623 -0
  64. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  65. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
  66. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  67. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +904 -338
  68. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  69. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +350 -343
  70. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  71. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +132 -111
  72. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  73. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3587 -0
  74. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  75. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  76. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  77. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
  78. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  79. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  80. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  81. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
  82. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  83. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
  84. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  85. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +25 -150
  86. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  87. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  88. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  89. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  90. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  91. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  92. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  93. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  94. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +979 -0
  95. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  96. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
  97. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  98. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  99. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  100. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +765 -0
  101. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  102. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → oracle/IOracleService.sol/IOracleService.json} +305 -170
  103. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  104. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +871 -0
  105. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  106. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +927 -0
  107. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  108. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +710 -0
  109. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  110. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +293 -383
  111. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  112. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
  113. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  114. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1367 -0
  115. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  116. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +802 -0
  117. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  118. package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +412 -135
  119. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  120. package/artifacts/contracts/{components → pool}/IPoolComponent.sol/IPoolComponent.json +297 -324
  121. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  122. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1198 -0
  123. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  124. package/artifacts/contracts/pool/Pool.sol/Pool.json +1034 -0
  125. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  126. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1474 -0
  127. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  128. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +726 -0
  129. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  130. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +737 -0
  131. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  132. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +698 -0
  133. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  134. package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +354 -397
  135. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  136. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
  137. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  138. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1346 -0
  139. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  140. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +814 -0
  141. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  142. package/artifacts/contracts/{instance/service → product}/IApplicationService.sol/IApplicationService.json +129 -168
  143. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  144. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +886 -0
  145. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  146. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +867 -0
  147. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  148. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → product/IPricingService.sol/IPricingService.json} +214 -217
  149. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  150. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +948 -0
  151. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  152. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +81 -65
  153. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  154. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1239 -0
  155. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  156. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +770 -0
  157. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  158. package/artifacts/contracts/product/PricingService.sol/PricingService.json +865 -0
  159. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  160. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +746 -0
  161. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  162. package/artifacts/contracts/product/Product.sol/Product.json +1054 -0
  163. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  164. package/artifacts/contracts/product/RiskService.sol/RiskService.json +588 -0
  165. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  166. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +682 -0
  167. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  168. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +72 -16
  169. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  170. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +394 -21
  171. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  172. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +199 -149
  173. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  174. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
  175. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  176. package/artifacts/contracts/registry/Registry.sol/Registry.json +793 -37
  177. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  178. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1858 -0
  179. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  180. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +372 -204
  181. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  182. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +126 -95
  183. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  184. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
  185. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  186. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1169 -0
  187. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  188. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
  189. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  190. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +316 -153
  191. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  192. package/artifacts/contracts/shared/Component.sol/Component.json +685 -0
  193. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  194. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1573 -0
  195. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  196. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +794 -0
  197. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  198. package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +146 -142
  199. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  200. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +92 -0
  201. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  202. package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +193 -75
  203. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  204. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
  205. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  206. package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json} +215 -227
  207. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  208. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +59 -14
  209. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  210. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
  211. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  212. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +3 -10
  213. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  214. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
  215. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  216. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +3 -10
  217. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  218. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
  219. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  220. package/artifacts/contracts/shared/IService.sol/IService.json +96 -19
  221. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  222. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  223. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  224. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  225. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  226. package/artifacts/contracts/{components/Component.sol/Component.json → shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json} +194 -215
  227. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  228. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
  229. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  230. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +133 -0
  231. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  232. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  233. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  234. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +12 -70
  235. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  236. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
  237. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  238. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +18 -106
  239. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  240. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
  241. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  242. package/artifacts/contracts/shared/Service.sol/Service.json +88 -113
  243. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  244. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +382 -9
  245. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  246. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
  247. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  248. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
  249. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  250. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
  251. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  252. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
  253. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  254. package/artifacts/contracts/staking/Staking.sol/Staking.json +1828 -0
  255. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  256. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
  257. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  258. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +750 -0
  259. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  260. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
  261. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  262. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1236 -0
  263. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  264. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +698 -0
  265. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  266. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
  267. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  268. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
  269. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  270. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  271. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  272. package/artifacts/contracts/type/Amount.sol/AmountLib.json +374 -0
  273. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  274. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  275. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  276. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
  277. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  278. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  279. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  280. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  281. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  282. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  283. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  284. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  285. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  286. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  287. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  288. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  289. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  290. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  291. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  292. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  293. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  294. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  295. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  296. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +142 -0
  297. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  298. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
  299. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  300. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
  301. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  302. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  303. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  304. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  305. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  306. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  307. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  308. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  309. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  310. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  311. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  312. package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
  313. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  314. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +535 -0
  315. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  316. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  317. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  318. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
  319. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  320. package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
  321. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  322. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +586 -0
  323. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  324. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  325. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  326. package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
  327. package/contracts/authorization/AccessAdmin.sol +592 -0
  328. package/contracts/authorization/AccessManagerCloneable.sol +16 -0
  329. package/contracts/authorization/Authorization.sol +217 -0
  330. package/contracts/authorization/IAccess.sol +48 -0
  331. package/contracts/authorization/IAccessAdmin.sol +135 -0
  332. package/contracts/authorization/IAuthorization.sol +54 -0
  333. package/contracts/authorization/IModuleAuthorization.sol +21 -0
  334. package/contracts/authorization/IServiceAuthorization.sol +38 -0
  335. package/contracts/authorization/ModuleAuthorization.sol +78 -0
  336. package/contracts/authorization/ServiceAuthorization.sol +90 -0
  337. package/contracts/distribution/BasicDistribution.sol +138 -0
  338. package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
  339. package/contracts/{components → distribution}/Distribution.sol +178 -163
  340. package/contracts/distribution/DistributionService.sol +336 -0
  341. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  342. package/contracts/distribution/IDistributionComponent.sol +52 -0
  343. package/contracts/{instance/service → distribution}/IDistributionService.sol +41 -38
  344. package/contracts/examples/fire/FirePool.sol +75 -0
  345. package/contracts/examples/fire/FirePoolAuthorization.sol +34 -0
  346. package/contracts/examples/fire/FireProduct.sol +324 -0
  347. package/contracts/examples/fire/FireProductAuthorization.sol +35 -0
  348. package/contracts/examples/fire/FireUSD.sol +26 -0
  349. package/contracts/examples/unpermissioned/SimpleDistribution.sol +50 -0
  350. package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
  351. package/contracts/examples/unpermissioned/SimplePool.sol +76 -0
  352. package/contracts/examples/unpermissioned/SimpleProduct.sol +351 -0
  353. package/contracts/instance/{BundleManager.sol → BundleSet.sol} +30 -31
  354. package/contracts/instance/IInstance.sol +43 -73
  355. package/contracts/instance/IInstanceService.sol +56 -24
  356. package/contracts/instance/Instance.sol +160 -226
  357. package/contracts/instance/InstanceAdmin.sol +285 -0
  358. package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
  359. package/contracts/instance/InstanceReader.sol +201 -65
  360. package/contracts/instance/InstanceService.sol +333 -356
  361. package/contracts/instance/InstanceServiceManager.sol +14 -29
  362. package/contracts/instance/InstanceStore.sol +287 -0
  363. package/contracts/instance/base/BalanceStore.sol +123 -0
  364. package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
  365. package/contracts/instance/base/ObjectCounter.sol +21 -0
  366. package/contracts/instance/base/ObjectLifecycle.sol +111 -0
  367. package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +19 -24
  368. package/contracts/instance/module/IAccess.sol +19 -20
  369. package/contracts/instance/module/IBundle.sol +8 -9
  370. package/contracts/instance/module/IComponents.sol +20 -9
  371. package/contracts/instance/module/IDistribution.sol +6 -6
  372. package/contracts/instance/module/IPolicy.sol +47 -35
  373. package/contracts/instance/module/IRisk.sol +1 -1
  374. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  375. package/contracts/oracle/BasicOracle.sol +48 -0
  376. package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
  377. package/contracts/oracle/IOracle.sol +36 -0
  378. package/contracts/oracle/IOracleComponent.sol +33 -0
  379. package/contracts/oracle/IOracleService.sol +65 -0
  380. package/contracts/oracle/Oracle.sol +167 -0
  381. package/contracts/oracle/OracleService.sol +281 -0
  382. package/contracts/oracle/OracleServiceManager.sol +39 -0
  383. package/contracts/pool/BasicPool.sol +166 -0
  384. package/contracts/pool/BasicPoolAuthorization.sol +58 -0
  385. package/contracts/pool/BundleService.sol +438 -0
  386. package/contracts/pool/BundleServiceManager.sol +39 -0
  387. package/contracts/pool/IBundleService.sol +134 -0
  388. package/contracts/pool/IPoolComponent.sol +58 -0
  389. package/contracts/pool/IPoolService.sol +160 -0
  390. package/contracts/pool/Pool.sol +326 -0
  391. package/contracts/pool/PoolService.sol +508 -0
  392. package/contracts/pool/PoolServiceManager.sol +39 -0
  393. package/contracts/product/ApplicationService.sol +247 -0
  394. package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
  395. package/contracts/product/BasicProduct.sol +53 -0
  396. package/contracts/product/BasicProductAuthorization.sol +43 -0
  397. package/contracts/product/ClaimService.sol +546 -0
  398. package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
  399. package/contracts/{instance/service → product}/IApplicationService.sol +16 -35
  400. package/contracts/product/IClaimService.sol +122 -0
  401. package/contracts/product/IPolicyService.sol +77 -0
  402. package/contracts/product/IPricingService.sol +39 -0
  403. package/contracts/product/IProductComponent.sol +39 -0
  404. package/contracts/product/IRiskService.sol +33 -0
  405. package/contracts/product/PolicyService.sol +651 -0
  406. package/contracts/product/PolicyServiceManager.sol +39 -0
  407. package/contracts/product/PricingService.sol +300 -0
  408. package/contracts/product/PricingServiceManager.sol +39 -0
  409. package/contracts/product/Product.sol +425 -0
  410. package/contracts/product/RiskService.sol +96 -0
  411. package/contracts/product/RiskServiceManager.sol +39 -0
  412. package/contracts/registry/ChainNft.sol +80 -32
  413. package/contracts/registry/IRegistry.sol +94 -25
  414. package/contracts/registry/IRegistryService.sol +44 -42
  415. package/contracts/registry/ITransferInterceptor.sol +1 -0
  416. package/contracts/registry/Registry.sol +439 -201
  417. package/contracts/registry/RegistryAdmin.sol +464 -0
  418. package/contracts/registry/RegistryService.sol +70 -101
  419. package/contracts/registry/RegistryServiceManager.sol +23 -32
  420. package/contracts/registry/ReleaseLifecycle.sol +27 -0
  421. package/contracts/registry/ReleaseRegistry.sol +491 -0
  422. package/contracts/registry/ServiceAuthorizationV3.sol +199 -0
  423. package/contracts/registry/TokenRegistry.sol +261 -62
  424. package/contracts/shared/Component.sol +268 -0
  425. package/contracts/shared/ComponentService.sol +641 -0
  426. package/contracts/shared/ComponentServiceManager.sol +38 -0
  427. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  428. package/contracts/shared/ContractLib.sol +38 -0
  429. package/contracts/shared/IComponent.sol +70 -0
  430. package/contracts/shared/IComponentService.sol +108 -0
  431. package/contracts/shared/IInstanceLinkedComponent.sol +49 -0
  432. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  433. package/contracts/{instance/base → shared}/ILifecycle.sol +3 -4
  434. package/contracts/shared/INftOwnable.sol +2 -2
  435. package/contracts/shared/IPolicyHolder.sol +23 -14
  436. package/contracts/shared/IRegistryLinked.sol +0 -1
  437. package/contracts/shared/IService.sol +15 -8
  438. package/contracts/shared/InitializableCustom.sol +177 -0
  439. package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +4 -4
  440. package/contracts/shared/InstanceLinkedComponent.sol +172 -0
  441. package/contracts/shared/KeyValueStore.sol +131 -0
  442. package/contracts/shared/Lifecycle.sol +77 -0
  443. package/contracts/shared/NftIdSet.sol +65 -0
  444. package/contracts/shared/NftOwnable.sol +10 -23
  445. package/contracts/shared/PolicyHolder.sol +19 -42
  446. package/contracts/shared/Registerable.sol +17 -16
  447. package/contracts/shared/RegistryLinked.sol +3 -7
  448. package/contracts/shared/Service.sol +56 -27
  449. package/contracts/shared/TokenHandler.sol +115 -9
  450. package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
  451. package/contracts/staking/IStaking.sol +168 -0
  452. package/contracts/staking/IStakingService.sol +160 -0
  453. package/contracts/staking/StakeManagerLib.sol +224 -0
  454. package/contracts/staking/Staking.sol +498 -0
  455. package/contracts/staking/StakingLifecycle.sol +23 -0
  456. package/contracts/staking/StakingManager.sol +52 -0
  457. package/contracts/staking/StakingReader.sol +183 -0
  458. package/contracts/staking/StakingService.sol +407 -0
  459. package/contracts/staking/StakingServiceManager.sol +44 -0
  460. package/contracts/staking/StakingStore.sol +605 -0
  461. package/contracts/staking/TargetManagerLib.sol +211 -0
  462. package/contracts/{types → type}/AddressSet.sol +1 -1
  463. package/contracts/type/Amount.sol +135 -0
  464. package/contracts/{types → type}/Blocknumber.sol +26 -3
  465. package/contracts/{types → type}/ClaimId.sol +25 -2
  466. package/contracts/{types → type}/Fee.sol +33 -24
  467. package/contracts/{types → type}/NftId.sol +15 -16
  468. package/contracts/{types → type}/NftIdSet.sol +2 -2
  469. package/contracts/type/ObjectType.sol +275 -0
  470. package/contracts/{types → type}/PayoutId.sol +33 -5
  471. package/contracts/{types → type}/Referral.sol +2 -1
  472. package/contracts/type/RequestId.sol +75 -0
  473. package/contracts/{types → type}/RiskId.sol +16 -2
  474. package/contracts/type/RoleId.sol +174 -0
  475. package/contracts/type/Seconds.sol +101 -0
  476. package/contracts/type/Selector.sol +102 -0
  477. package/contracts/{types → type}/StateId.sol +34 -4
  478. package/contracts/type/String.sol +53 -0
  479. package/contracts/{types → type}/Timestamp.sol +21 -2
  480. package/contracts/{types → type}/UFixed.sol +34 -9
  481. package/contracts/{types → type}/Version.sol +4 -2
  482. package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
  483. package/contracts/{shared → upgradeability}/ProxyManager.sol +92 -30
  484. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  485. package/contracts/{shared → upgradeability}/Versionable.sol +3 -3
  486. package/package.json +8 -5
  487. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  488. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  489. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  490. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  491. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  492. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  493. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  494. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  495. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  496. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -783
  497. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  498. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  499. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -984
  500. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  501. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -261
  502. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  503. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  504. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  505. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  506. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
  507. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  508. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
  509. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  510. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  511. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
  512. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
  513. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -968
  514. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
  515. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -665
  516. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  517. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1093
  518. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  519. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -661
  520. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
  521. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -754
  522. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
  523. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -637
  524. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  525. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1724
  526. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  527. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -801
  528. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
  529. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  530. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
  531. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +0 -409
  532. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  533. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  534. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  535. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  536. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  537. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1021
  538. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  539. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -689
  540. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  541. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -816
  542. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  543. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -653
  544. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  545. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -777
  546. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  547. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -649
  548. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  549. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  550. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  551. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -547
  552. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  553. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  554. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  555. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
  556. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  557. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  558. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
  559. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  560. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  561. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  562. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  563. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  564. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  565. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
  566. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  567. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  568. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  569. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -521
  570. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  571. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  572. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  573. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  574. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  575. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
  576. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  577. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  578. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  579. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  580. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  581. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  582. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  583. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  584. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
  585. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
  586. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  587. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  588. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  589. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  590. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  591. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  592. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  593. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
  594. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  595. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  596. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  597. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  598. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  599. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  600. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
  601. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
  602. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  603. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
  604. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  605. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  606. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  607. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  608. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
  609. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
  610. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  611. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  612. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -267
  613. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  614. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  615. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  616. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  617. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  618. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  619. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  620. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  621. package/contracts/components/Component.sol +0 -241
  622. package/contracts/components/IComponent.sol +0 -74
  623. package/contracts/components/IDistributionComponent.sol +0 -71
  624. package/contracts/components/IPoolComponent.sol +0 -113
  625. package/contracts/components/IProductComponent.sol +0 -40
  626. package/contracts/components/Pool.sol +0 -299
  627. package/contracts/components/Product.sol +0 -293
  628. package/contracts/instance/InstanceAccessManager.sol +0 -297
  629. package/contracts/instance/base/ComponentService.sol +0 -134
  630. package/contracts/instance/base/KeyValueStore.sol +0 -175
  631. package/contracts/instance/base/Lifecycle.sol +0 -109
  632. package/contracts/instance/module/ISetup.sol +0 -33
  633. package/contracts/instance/module/ITreasury.sol +0 -23
  634. package/contracts/instance/service/ApplicationService.sol +0 -350
  635. package/contracts/instance/service/BundleService.sol +0 -336
  636. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  637. package/contracts/instance/service/ClaimService.sol +0 -151
  638. package/contracts/instance/service/DistributionService.sol +0 -450
  639. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  640. package/contracts/instance/service/IBundleService.sol +0 -62
  641. package/contracts/instance/service/IClaimService.sol +0 -61
  642. package/contracts/instance/service/IPolicyService.sol +0 -72
  643. package/contracts/instance/service/IPoolService.sol +0 -35
  644. package/contracts/instance/service/IProductService.sol +0 -40
  645. package/contracts/instance/service/PolicyService.sol +0 -403
  646. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  647. package/contracts/instance/service/PoolService.sol +0 -163
  648. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  649. package/contracts/instance/service/ProductService.sol +0 -233
  650. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  651. package/contracts/registry/RegistryAccessManager.sol +0 -216
  652. package/contracts/registry/ReleaseManager.sol +0 -322
  653. package/contracts/shared/ContractDeployerLib.sol +0 -72
  654. package/contracts/test/TestFee.sol +0 -25
  655. package/contracts/test/TestRegisterable.sol +0 -18
  656. package/contracts/test/TestRoleId.sol +0 -14
  657. package/contracts/test/TestService.sol +0 -25
  658. package/contracts/test/TestToken.sol +0 -26
  659. package/contracts/test/TestVersion.sol +0 -44
  660. package/contracts/test/TestVersionable.sol +0 -17
  661. package/contracts/types/ChainId.sol +0 -38
  662. package/contracts/types/NumberId.sol +0 -52
  663. package/contracts/types/ObjectType.sol +0 -157
  664. package/contracts/types/RoleId.sol +0 -95
  665. package/contracts/types/Seconds.sol +0 -54
  666. /package/contracts/{types → type}/DistributorType.sol +0 -0
  667. /package/contracts/{types → type}/Key32.sol +0 -0
@@ -0,0 +1,1346 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ClaimService",
4
+ "sourceName": "contracts/product/ClaimService.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": "policyNftId",
49
+ "type": "uint96"
50
+ },
51
+ {
52
+ "internalType": "ClaimId",
53
+ "name": "claimId",
54
+ "type": "uint16"
55
+ }
56
+ ],
57
+ "name": "ErrorClaimServiceBeneficiaryIsZero",
58
+ "type": "error"
59
+ },
60
+ {
61
+ "inputs": [
62
+ {
63
+ "internalType": "NftId",
64
+ "name": "policyNftId",
65
+ "type": "uint96"
66
+ },
67
+ {
68
+ "internalType": "Amount",
69
+ "name": "sumInsured",
70
+ "type": "uint96"
71
+ },
72
+ {
73
+ "internalType": "Amount",
74
+ "name": "payoutsIncludingClaimAmount",
75
+ "type": "uint96"
76
+ }
77
+ ],
78
+ "name": "ErrorClaimServiceClaimExceedsSumInsured",
79
+ "type": "error"
80
+ },
81
+ {
82
+ "inputs": [
83
+ {
84
+ "internalType": "NftId",
85
+ "name": "policyNftId",
86
+ "type": "uint96"
87
+ },
88
+ {
89
+ "internalType": "ClaimId",
90
+ "name": "claimId",
91
+ "type": "uint16"
92
+ },
93
+ {
94
+ "internalType": "StateId",
95
+ "name": "expectedState",
96
+ "type": "uint8"
97
+ },
98
+ {
99
+ "internalType": "StateId",
100
+ "name": "actualState",
101
+ "type": "uint8"
102
+ }
103
+ ],
104
+ "name": "ErrorClaimServiceClaimNotInExpectedState",
105
+ "type": "error"
106
+ },
107
+ {
108
+ "inputs": [
109
+ {
110
+ "internalType": "NftId",
111
+ "name": "policyNftId",
112
+ "type": "uint96"
113
+ },
114
+ {
115
+ "internalType": "ClaimId",
116
+ "name": "claimId",
117
+ "type": "uint16"
118
+ },
119
+ {
120
+ "internalType": "Amount",
121
+ "name": "claimAmount",
122
+ "type": "uint96"
123
+ },
124
+ {
125
+ "internalType": "Amount",
126
+ "name": "paidAmount",
127
+ "type": "uint96"
128
+ }
129
+ ],
130
+ "name": "ErrorClaimServiceClaimWithMissingPayouts",
131
+ "type": "error"
132
+ },
133
+ {
134
+ "inputs": [
135
+ {
136
+ "internalType": "NftId",
137
+ "name": "policyNftId",
138
+ "type": "uint96"
139
+ },
140
+ {
141
+ "internalType": "ClaimId",
142
+ "name": "claimId",
143
+ "type": "uint16"
144
+ },
145
+ {
146
+ "internalType": "uint8",
147
+ "name": "openPayouts",
148
+ "type": "uint8"
149
+ }
150
+ ],
151
+ "name": "ErrorClaimServiceClaimWithOpenPayouts",
152
+ "type": "error"
153
+ },
154
+ {
155
+ "inputs": [
156
+ {
157
+ "internalType": "NftId",
158
+ "name": "policyNftId",
159
+ "type": "uint96"
160
+ }
161
+ ],
162
+ "name": "ErrorClaimServicePolicyNotOpen",
163
+ "type": "error"
164
+ },
165
+ {
166
+ "inputs": [
167
+ {
168
+ "internalType": "NftId",
169
+ "name": "policyNftId",
170
+ "type": "uint96"
171
+ },
172
+ {
173
+ "internalType": "NftId",
174
+ "name": "expectedProduct",
175
+ "type": "uint96"
176
+ },
177
+ {
178
+ "internalType": "NftId",
179
+ "name": "actualProduct",
180
+ "type": "uint96"
181
+ }
182
+ ],
183
+ "name": "ErrorClaimServicePolicyProductMismatch",
184
+ "type": "error"
185
+ },
186
+ {
187
+ "inputs": [
188
+ {
189
+ "internalType": "NftId",
190
+ "name": "policyNftId",
191
+ "type": "uint96"
192
+ },
193
+ {
194
+ "internalType": "PayoutId",
195
+ "name": "payoutId",
196
+ "type": "uint24"
197
+ }
198
+ ],
199
+ "name": "ErrorClaimsServicePayoutAmountIsZero",
200
+ "type": "error"
201
+ },
202
+ {
203
+ "inputs": [
204
+ {
205
+ "internalType": "NftId",
206
+ "name": "componentNftId",
207
+ "type": "uint96"
208
+ }
209
+ ],
210
+ "name": "ErrorComponentVerifyingServiceComponentIsLocked",
211
+ "type": "error"
212
+ },
213
+ {
214
+ "inputs": [
215
+ {
216
+ "internalType": "NftId",
217
+ "name": "componentNftId",
218
+ "type": "uint96"
219
+ },
220
+ {
221
+ "internalType": "ObjectType",
222
+ "name": "expectedType",
223
+ "type": "uint8"
224
+ },
225
+ {
226
+ "internalType": "ObjectType",
227
+ "name": "actualType",
228
+ "type": "uint8"
229
+ }
230
+ ],
231
+ "name": "ErrorComponentVerifyingServiceComponentTypeInvalid",
232
+ "type": "error"
233
+ },
234
+ {
235
+ "inputs": [
236
+ {
237
+ "internalType": "NftId",
238
+ "name": "nftId",
239
+ "type": "uint96"
240
+ }
241
+ ],
242
+ "name": "ErrorNftOwnableAlreadyLinked",
243
+ "type": "error"
244
+ },
245
+ {
246
+ "inputs": [
247
+ {
248
+ "internalType": "address",
249
+ "name": "contractAddress",
250
+ "type": "address"
251
+ }
252
+ ],
253
+ "name": "ErrorNftOwnableContractNotRegistered",
254
+ "type": "error"
255
+ },
256
+ {
257
+ "inputs": [],
258
+ "name": "ErrorNftOwnableInitialOwnerZero",
259
+ "type": "error"
260
+ },
261
+ {
262
+ "inputs": [
263
+ {
264
+ "internalType": "address",
265
+ "name": "account",
266
+ "type": "address"
267
+ }
268
+ ],
269
+ "name": "ErrorNftOwnableNotOwner",
270
+ "type": "error"
271
+ },
272
+ {
273
+ "inputs": [
274
+ {
275
+ "internalType": "address",
276
+ "name": "registryAddress",
277
+ "type": "address"
278
+ }
279
+ ],
280
+ "name": "ErrorNotRegistry",
281
+ "type": "error"
282
+ },
283
+ {
284
+ "inputs": [],
285
+ "name": "ErrorServiceNotImplemented",
286
+ "type": "error"
287
+ },
288
+ {
289
+ "inputs": [],
290
+ "name": "InvalidInitialization",
291
+ "type": "error"
292
+ },
293
+ {
294
+ "inputs": [],
295
+ "name": "NotInitializing",
296
+ "type": "error"
297
+ },
298
+ {
299
+ "inputs": [],
300
+ "name": "ReentrancyGuardReentrantCall",
301
+ "type": "error"
302
+ },
303
+ {
304
+ "anonymous": false,
305
+ "inputs": [
306
+ {
307
+ "indexed": false,
308
+ "internalType": "address",
309
+ "name": "authority",
310
+ "type": "address"
311
+ }
312
+ ],
313
+ "name": "AuthorityUpdated",
314
+ "type": "event"
315
+ },
316
+ {
317
+ "anonymous": false,
318
+ "inputs": [
319
+ {
320
+ "indexed": false,
321
+ "internalType": "uint64",
322
+ "name": "version",
323
+ "type": "uint64"
324
+ }
325
+ ],
326
+ "name": "Initialized",
327
+ "type": "event"
328
+ },
329
+ {
330
+ "anonymous": false,
331
+ "inputs": [
332
+ {
333
+ "indexed": false,
334
+ "internalType": "NftId",
335
+ "name": "policyNftId",
336
+ "type": "uint96"
337
+ },
338
+ {
339
+ "indexed": false,
340
+ "internalType": "ClaimId",
341
+ "name": "claimId",
342
+ "type": "uint16"
343
+ }
344
+ ],
345
+ "name": "LogClaimServiceClaimClosed",
346
+ "type": "event"
347
+ },
348
+ {
349
+ "anonymous": false,
350
+ "inputs": [
351
+ {
352
+ "indexed": false,
353
+ "internalType": "NftId",
354
+ "name": "policyNftId",
355
+ "type": "uint96"
356
+ },
357
+ {
358
+ "indexed": false,
359
+ "internalType": "ClaimId",
360
+ "name": "claimId",
361
+ "type": "uint16"
362
+ },
363
+ {
364
+ "indexed": false,
365
+ "internalType": "Amount",
366
+ "name": "confirmedAmount",
367
+ "type": "uint96"
368
+ }
369
+ ],
370
+ "name": "LogClaimServiceClaimConfirmed",
371
+ "type": "event"
372
+ },
373
+ {
374
+ "anonymous": false,
375
+ "inputs": [
376
+ {
377
+ "indexed": false,
378
+ "internalType": "NftId",
379
+ "name": "policyNftId",
380
+ "type": "uint96"
381
+ },
382
+ {
383
+ "indexed": false,
384
+ "internalType": "ClaimId",
385
+ "name": "claimId",
386
+ "type": "uint16"
387
+ }
388
+ ],
389
+ "name": "LogClaimServiceClaimDeclined",
390
+ "type": "event"
391
+ },
392
+ {
393
+ "anonymous": false,
394
+ "inputs": [
395
+ {
396
+ "indexed": false,
397
+ "internalType": "NftId",
398
+ "name": "policyNftId",
399
+ "type": "uint96"
400
+ },
401
+ {
402
+ "indexed": false,
403
+ "internalType": "ClaimId",
404
+ "name": "claimId",
405
+ "type": "uint16"
406
+ }
407
+ ],
408
+ "name": "LogClaimServiceClaimRevoked",
409
+ "type": "event"
410
+ },
411
+ {
412
+ "anonymous": false,
413
+ "inputs": [
414
+ {
415
+ "indexed": false,
416
+ "internalType": "NftId",
417
+ "name": "policyNftId",
418
+ "type": "uint96"
419
+ },
420
+ {
421
+ "indexed": false,
422
+ "internalType": "ClaimId",
423
+ "name": "claimId",
424
+ "type": "uint16"
425
+ },
426
+ {
427
+ "indexed": false,
428
+ "internalType": "Amount",
429
+ "name": "claimAmount",
430
+ "type": "uint96"
431
+ }
432
+ ],
433
+ "name": "LogClaimServiceClaimSubmitted",
434
+ "type": "event"
435
+ },
436
+ {
437
+ "anonymous": false,
438
+ "inputs": [
439
+ {
440
+ "indexed": false,
441
+ "internalType": "NftId",
442
+ "name": "policyNftId",
443
+ "type": "uint96"
444
+ },
445
+ {
446
+ "indexed": false,
447
+ "internalType": "PayoutId",
448
+ "name": "payoutId",
449
+ "type": "uint24"
450
+ },
451
+ {
452
+ "indexed": false,
453
+ "internalType": "Amount",
454
+ "name": "amount",
455
+ "type": "uint96"
456
+ }
457
+ ],
458
+ "name": "LogClaimServicePayoutCreated",
459
+ "type": "event"
460
+ },
461
+ {
462
+ "anonymous": false,
463
+ "inputs": [
464
+ {
465
+ "indexed": false,
466
+ "internalType": "NftId",
467
+ "name": "policyNftId",
468
+ "type": "uint96"
469
+ },
470
+ {
471
+ "indexed": false,
472
+ "internalType": "PayoutId",
473
+ "name": "payoutId",
474
+ "type": "uint24"
475
+ },
476
+ {
477
+ "indexed": false,
478
+ "internalType": "Amount",
479
+ "name": "amount",
480
+ "type": "uint96"
481
+ },
482
+ {
483
+ "indexed": false,
484
+ "internalType": "address",
485
+ "name": "beneficiary",
486
+ "type": "address"
487
+ },
488
+ {
489
+ "indexed": false,
490
+ "internalType": "Amount",
491
+ "name": "netAmount",
492
+ "type": "uint96"
493
+ },
494
+ {
495
+ "indexed": false,
496
+ "internalType": "Amount",
497
+ "name": "processingFeeAmount",
498
+ "type": "uint96"
499
+ }
500
+ ],
501
+ "name": "LogClaimServicePayoutProcessed",
502
+ "type": "event"
503
+ },
504
+ {
505
+ "inputs": [],
506
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
507
+ "outputs": [
508
+ {
509
+ "internalType": "bytes32",
510
+ "name": "",
511
+ "type": "bytes32"
512
+ }
513
+ ],
514
+ "stateMutability": "view",
515
+ "type": "function"
516
+ },
517
+ {
518
+ "inputs": [],
519
+ "name": "REGISTERABLE_LOCATION_V1",
520
+ "outputs": [
521
+ {
522
+ "internalType": "bytes32",
523
+ "name": "",
524
+ "type": "bytes32"
525
+ }
526
+ ],
527
+ "stateMutability": "view",
528
+ "type": "function"
529
+ },
530
+ {
531
+ "inputs": [],
532
+ "name": "authority",
533
+ "outputs": [
534
+ {
535
+ "internalType": "address",
536
+ "name": "",
537
+ "type": "address"
538
+ }
539
+ ],
540
+ "stateMutability": "view",
541
+ "type": "function"
542
+ },
543
+ {
544
+ "inputs": [
545
+ {
546
+ "internalType": "NftId",
547
+ "name": "policyNftId",
548
+ "type": "uint96"
549
+ },
550
+ {
551
+ "internalType": "ClaimId",
552
+ "name": "claimId",
553
+ "type": "uint16"
554
+ }
555
+ ],
556
+ "name": "close",
557
+ "outputs": [],
558
+ "stateMutability": "nonpayable",
559
+ "type": "function"
560
+ },
561
+ {
562
+ "inputs": [
563
+ {
564
+ "internalType": "NftId",
565
+ "name": "policyNftId",
566
+ "type": "uint96"
567
+ },
568
+ {
569
+ "internalType": "ClaimId",
570
+ "name": "claimId",
571
+ "type": "uint16"
572
+ },
573
+ {
574
+ "internalType": "Amount",
575
+ "name": "confirmedAmount",
576
+ "type": "uint96"
577
+ },
578
+ {
579
+ "internalType": "bytes",
580
+ "name": "data",
581
+ "type": "bytes"
582
+ }
583
+ ],
584
+ "name": "confirm",
585
+ "outputs": [],
586
+ "stateMutability": "nonpayable",
587
+ "type": "function"
588
+ },
589
+ {
590
+ "inputs": [
591
+ {
592
+ "internalType": "NftId",
593
+ "name": "policyNftId",
594
+ "type": "uint96"
595
+ },
596
+ {
597
+ "internalType": "ClaimId",
598
+ "name": "claimId",
599
+ "type": "uint16"
600
+ },
601
+ {
602
+ "internalType": "Amount",
603
+ "name": "amount",
604
+ "type": "uint96"
605
+ },
606
+ {
607
+ "internalType": "bytes",
608
+ "name": "data",
609
+ "type": "bytes"
610
+ }
611
+ ],
612
+ "name": "createPayout",
613
+ "outputs": [
614
+ {
615
+ "internalType": "PayoutId",
616
+ "name": "payoutId",
617
+ "type": "uint24"
618
+ }
619
+ ],
620
+ "stateMutability": "nonpayable",
621
+ "type": "function"
622
+ },
623
+ {
624
+ "inputs": [
625
+ {
626
+ "internalType": "NftId",
627
+ "name": "policyNftId",
628
+ "type": "uint96"
629
+ },
630
+ {
631
+ "internalType": "ClaimId",
632
+ "name": "claimId",
633
+ "type": "uint16"
634
+ },
635
+ {
636
+ "internalType": "Amount",
637
+ "name": "amount",
638
+ "type": "uint96"
639
+ },
640
+ {
641
+ "internalType": "address",
642
+ "name": "beneficiary",
643
+ "type": "address"
644
+ },
645
+ {
646
+ "internalType": "bytes",
647
+ "name": "data",
648
+ "type": "bytes"
649
+ }
650
+ ],
651
+ "name": "createPayoutForBeneficiary",
652
+ "outputs": [
653
+ {
654
+ "internalType": "PayoutId",
655
+ "name": "payoutId",
656
+ "type": "uint24"
657
+ }
658
+ ],
659
+ "stateMutability": "nonpayable",
660
+ "type": "function"
661
+ },
662
+ {
663
+ "inputs": [
664
+ {
665
+ "internalType": "NftId",
666
+ "name": "policyNftId",
667
+ "type": "uint96"
668
+ },
669
+ {
670
+ "internalType": "ClaimId",
671
+ "name": "claimId",
672
+ "type": "uint16"
673
+ },
674
+ {
675
+ "internalType": "bytes",
676
+ "name": "data",
677
+ "type": "bytes"
678
+ }
679
+ ],
680
+ "name": "decline",
681
+ "outputs": [],
682
+ "stateMutability": "nonpayable",
683
+ "type": "function"
684
+ },
685
+ {
686
+ "inputs": [],
687
+ "name": "getDomain",
688
+ "outputs": [
689
+ {
690
+ "internalType": "ObjectType",
691
+ "name": "serviceDomain",
692
+ "type": "uint8"
693
+ }
694
+ ],
695
+ "stateMutability": "pure",
696
+ "type": "function"
697
+ },
698
+ {
699
+ "inputs": [],
700
+ "name": "getInitialInfo",
701
+ "outputs": [
702
+ {
703
+ "components": [
704
+ {
705
+ "internalType": "NftId",
706
+ "name": "nftId",
707
+ "type": "uint96"
708
+ },
709
+ {
710
+ "internalType": "NftId",
711
+ "name": "parentNftId",
712
+ "type": "uint96"
713
+ },
714
+ {
715
+ "internalType": "ObjectType",
716
+ "name": "objectType",
717
+ "type": "uint8"
718
+ },
719
+ {
720
+ "internalType": "bool",
721
+ "name": "isInterceptor",
722
+ "type": "bool"
723
+ },
724
+ {
725
+ "internalType": "address",
726
+ "name": "objectAddress",
727
+ "type": "address"
728
+ },
729
+ {
730
+ "internalType": "address",
731
+ "name": "initialOwner",
732
+ "type": "address"
733
+ },
734
+ {
735
+ "internalType": "bytes",
736
+ "name": "data",
737
+ "type": "bytes"
738
+ }
739
+ ],
740
+ "internalType": "struct IRegistry.ObjectInfo",
741
+ "name": "info",
742
+ "type": "tuple"
743
+ }
744
+ ],
745
+ "stateMutability": "view",
746
+ "type": "function"
747
+ },
748
+ {
749
+ "inputs": [],
750
+ "name": "getNftId",
751
+ "outputs": [
752
+ {
753
+ "internalType": "NftId",
754
+ "name": "",
755
+ "type": "uint96"
756
+ }
757
+ ],
758
+ "stateMutability": "view",
759
+ "type": "function"
760
+ },
761
+ {
762
+ "inputs": [],
763
+ "name": "getOwner",
764
+ "outputs": [
765
+ {
766
+ "internalType": "address",
767
+ "name": "",
768
+ "type": "address"
769
+ }
770
+ ],
771
+ "stateMutability": "view",
772
+ "type": "function"
773
+ },
774
+ {
775
+ "inputs": [],
776
+ "name": "getRegistry",
777
+ "outputs": [
778
+ {
779
+ "internalType": "contract IRegistry",
780
+ "name": "",
781
+ "type": "address"
782
+ }
783
+ ],
784
+ "stateMutability": "view",
785
+ "type": "function"
786
+ },
787
+ {
788
+ "inputs": [],
789
+ "name": "getRoleId",
790
+ "outputs": [
791
+ {
792
+ "internalType": "RoleId",
793
+ "name": "serviceRoleId",
794
+ "type": "uint64"
795
+ }
796
+ ],
797
+ "stateMutability": "pure",
798
+ "type": "function"
799
+ },
800
+ {
801
+ "inputs": [],
802
+ "name": "getVersion",
803
+ "outputs": [
804
+ {
805
+ "internalType": "Version",
806
+ "name": "",
807
+ "type": "uint24"
808
+ }
809
+ ],
810
+ "stateMutability": "pure",
811
+ "type": "function"
812
+ },
813
+ {
814
+ "inputs": [
815
+ {
816
+ "internalType": "address",
817
+ "name": "activatedBy",
818
+ "type": "address"
819
+ },
820
+ {
821
+ "internalType": "bytes",
822
+ "name": "data",
823
+ "type": "bytes"
824
+ }
825
+ ],
826
+ "name": "initializeVersionable",
827
+ "outputs": [],
828
+ "stateMutability": "nonpayable",
829
+ "type": "function"
830
+ },
831
+ {
832
+ "inputs": [],
833
+ "name": "isConsumingScheduledOp",
834
+ "outputs": [
835
+ {
836
+ "internalType": "bytes4",
837
+ "name": "",
838
+ "type": "bytes4"
839
+ }
840
+ ],
841
+ "stateMutability": "view",
842
+ "type": "function"
843
+ },
844
+ {
845
+ "inputs": [],
846
+ "name": "linkToRegisteredNftId",
847
+ "outputs": [
848
+ {
849
+ "internalType": "NftId",
850
+ "name": "nftId",
851
+ "type": "uint96"
852
+ }
853
+ ],
854
+ "stateMutability": "nonpayable",
855
+ "type": "function"
856
+ },
857
+ {
858
+ "inputs": [
859
+ {
860
+ "internalType": "NftId",
861
+ "name": "policyNftId",
862
+ "type": "uint96"
863
+ },
864
+ {
865
+ "internalType": "PayoutId",
866
+ "name": "payoutId",
867
+ "type": "uint24"
868
+ }
869
+ ],
870
+ "name": "processPayout",
871
+ "outputs": [],
872
+ "stateMutability": "nonpayable",
873
+ "type": "function"
874
+ },
875
+ {
876
+ "inputs": [
877
+ {
878
+ "internalType": "NftId",
879
+ "name": "policyNftId",
880
+ "type": "uint96"
881
+ },
882
+ {
883
+ "internalType": "ClaimId",
884
+ "name": "claimId",
885
+ "type": "uint16"
886
+ }
887
+ ],
888
+ "name": "revoke",
889
+ "outputs": [],
890
+ "stateMutability": "nonpayable",
891
+ "type": "function"
892
+ },
893
+ {
894
+ "inputs": [
895
+ {
896
+ "internalType": "address",
897
+ "name": "newAuthority",
898
+ "type": "address"
899
+ }
900
+ ],
901
+ "name": "setAuthority",
902
+ "outputs": [],
903
+ "stateMutability": "nonpayable",
904
+ "type": "function"
905
+ },
906
+ {
907
+ "inputs": [
908
+ {
909
+ "internalType": "NftId",
910
+ "name": "policyNftId",
911
+ "type": "uint96"
912
+ },
913
+ {
914
+ "internalType": "Amount",
915
+ "name": "claimAmount",
916
+ "type": "uint96"
917
+ },
918
+ {
919
+ "internalType": "bytes",
920
+ "name": "claimData",
921
+ "type": "bytes"
922
+ }
923
+ ],
924
+ "name": "submit",
925
+ "outputs": [
926
+ {
927
+ "internalType": "ClaimId",
928
+ "name": "claimId",
929
+ "type": "uint16"
930
+ }
931
+ ],
932
+ "stateMutability": "nonpayable",
933
+ "type": "function"
934
+ },
935
+ {
936
+ "inputs": [
937
+ {
938
+ "internalType": "bytes4",
939
+ "name": "interfaceId",
940
+ "type": "bytes4"
941
+ }
942
+ ],
943
+ "name": "supportsInterface",
944
+ "outputs": [
945
+ {
946
+ "internalType": "bool",
947
+ "name": "",
948
+ "type": "bool"
949
+ }
950
+ ],
951
+ "stateMutability": "view",
952
+ "type": "function"
953
+ },
954
+ {
955
+ "inputs": [
956
+ {
957
+ "internalType": "bytes",
958
+ "name": "data",
959
+ "type": "bytes"
960
+ }
961
+ ],
962
+ "name": "upgradeVersionable",
963
+ "outputs": [],
964
+ "stateMutability": "nonpayable",
965
+ "type": "function"
966
+ }
967
+ ],
968
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615a16806100d65f395ff3fe608060405234801561000f575f80fd5b5060043610610153575f3560e01c8063644c45e0116100bf5780638fb36037116100795780638fb3603714610348578063ada9652e14610369578063b68d18091461037d578063bf7e214f1461038c578063e01f7a43146103a9578063f450e2b5146103bc575f80fd5b8063644c45e0146102b75780636c741e78146102d45780636e2cdce7146102f457806374b775eb146103075780637a9e5e4b1461032d578063893d20e814610340575f80fd5b8063329d6e7411610110578063329d6e74146102335780633838d739146102465780633c53258e1461025957806349bb9e4b1461026c5780635ab1bd531461027f5780635dbf2c8d146102a4575f80fd5b806301ffc9a7146101575780630d8e6e2c146101985780630fec111c146101b4578063138461e0146101c95780631eff4b22146101e957806327c054b71461021e575b5f80fd5b6101836101653660046146bc565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101a06103cf565b60405162ffffff909116815260200161018f565b6101bc610456565b60405161018f9190614711565b6101d16105e2565b6040516001600160601b03909116815260200161018f565b6102107f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161018f565b61023161022c3660046147c1565b6105ec565b005b610231610241366004614966565b61103e565b6102316102543660046149a6565b611188565b6101a06102673660046149d2565b611434565b61023161027a366004614a56565b61146a565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161018f565b6102316102b23660046149a6565b611566565b5f80516020615961833981519152546001600160601b03166101d1565b6102dc611880565b6040516001600160401b03909116815260200161018f565b6102316103023660046149d2565b611976565b61031a610315366004614aa2565b611bd7565b60405161ffff909116815260200161018f565b61023161033b366004614aff565b6122d6565b61028c61236e565b61035061249f565b6040516001600160e01b0319909116815260200161018f565b6102105f8051602061596183398151915281565b6040516017815260200161018f565b5f80516020615981833981519152546001600160a01b031661028c565b6101a06103b7366004614b1a565b6124d4565b6102316103ca366004614b9c565b612547565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801561042d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104519190614bc9565b905090565b61045e61467f565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156104d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104f89190614bf4565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161054061236e565b6001600160a01b0316815260200182600101805461055d90614c0f565b80601f016020809104026020016040519081016040528092919081815260200182805461058990614c0f565b80156105d45780601f106105ab576101008083540402835291602001916105d4565b820191905f5260205f20905b8154815290600101906020018083116105b757829003601f168201915b505050505081525091505090565b5f610451306127fc565b6105f46129f5565b5f805f61060085612a2c565b6040516339bb60cd60e01b81526001600160601b038916600482015262ffffff8816602482015292955090935091505f906001600160a01b038416906339bb60cd906044015f60405180830381865afa15801561065f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526106869190810190614cc3565b905073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156106cf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106f39190614d7d565b64ffffffffff16608082015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015610742573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107669190614d98565b6001600160a01b031663d23c6f6387878460dc6040518563ffffffff1660e01b81526004016107989493929190614e15565b5f604051808303815f87803b1580156107af575f80fd5b505af11580156107c1573d5f803e3d5ffd5b5050604051636f2f88d160e11b815262ffffff881660048201525f925073__$0f9396e6447a4be57af83e53f51d234633$__915063de5f11a290602401602060405180830381865af4158015610819573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061083d9190614e55565b602083015160405163a7ef3d2160e01b81526001600160601b038a16600482015261ffff83166024820152919250905f906001600160a01b0387169063a7ef3d21906044015f60405180830381865afa15801561089c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108c39190810190614e89565b602081015160405163274acb3560e01b81526001600160601b039182166004820152908416602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af415801561092a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061094e9190614bf4565b6001600160601b0316602082015260608101805160019190610971908390614f86565b60ff908116909152606083015116159050801561099a575061099a8160200151825f0151612be8565b15610b0157610a218160c0015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156109ee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a129190614d7d565b64ffffffffff90811691161490565b50866001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a829190614d98565b6001600160a01b031663fae5df9b8a858460c86040518563ffffffff1660e01b8152600401610ab4949392919061503f565b5f604051808303815f87803b158015610acb575f80fd5b505af1158015610add573d5f803e3d5ffd5b5050505060018561014001818151610af5919061506a565b61ffff16905250610bc1565b866001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b3d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b619190614d98565b6001600160a01b031663fae5df9b8a858460ff6040518563ffffffff1660e01b8152600401610b93949392919061503f565b5f604051808303815f87803b158015610baa575f80fd5b505af1158015610bbc573d5f803e3d5ffd5b505050505b61018085015160405163274acb3560e01b81526001600160601b039182166004820152908316602482015273__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015610c26573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c4a9190614bf4565b6001600160601b031661018086015260408051631a99b41b60e31b815290516001600160a01b0389169163d4cda0d89160048083019260209291908290030181865afa158015610c9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cc09190614d98565b6001600160a01b031663d625d7588a8760ff6040518463ffffffff1660e01b8152600401610cf093929190615227565b5f604051808303815f87803b158015610d07575f80fd5b505af1158015610d19573d5f803e3d5ffd5b5050600254875160405163f0ea17c360e01b81526001600160601b0390911660048201526001600160a01b0391821693506396fa19e892508a918a169063f0ea17c3906024015f60405180830381865afa158015610d79573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610da0919081019061525b565b604001518c89876040518663ffffffff1660e01b8152600401610dc7959493929190615333565b5f604051808303815f87803b158015610dde575f80fd5b505af1158015610df0573d5f803e3d5ffd5b505050505f805f610e03898d8a8a612c76565b9250925092507fb367a73159dcdb193cdd8eb36e498d43a90b5abd2d5f698d23e149a2b91a91e98c8c87848787604051610e85969594939291906001600160601b03968716815262ffffff95909516602086015292851660408501526001600160a01b039190911660608401528316608083015290911660a082015260c00190565b60405180910390a15f610ea06001546001600160a01b031690565b60208a01516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015610ef2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610f199190810190615397565b6020015160405163f0ea17c360e01b81526001600160601b03821660048201529091505f906001600160a01b038c169063f0ea17c3906024015f60405180830381865afa158015610f6c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610f93919081019061525b565b6060810151608082015160405163153c361360e21b81526001600160a01b03918216600482015286821660248201526001600160601b038916604482015292935016906354f0d84c906064015f604051808303815f87803b158015610ff6575f80fd5b505af1158015611008573d5f803e3d5ffd5b50505050505061101a8c8c8388612fb7565b5050505050505050505061103a60015f805160206159a183398151915255565b5050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6110606103cf565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561109e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110c2919061547b565b5f805160206159c18339815191528054600160401b900460ff16806110f4575080546001600160401b03808416911610155b156111125760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561113c83613065565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b6111906129f5565b5f805f61119c85612a2c565b9250925092505f6111b68387876111b1603290565b61306d565b905073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156111ff573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112239190614d7d565b64ffffffffff1660c082015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015611272573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112969190614d98565b6001600160a01b031663fae5df9b87878460146040518563ffffffff1660e01b81526004016112c8949392919061503f565b5f604051808303815f87803b1580156112df575f80fd5b505af11580156112f1573d5f803e3d5ffd5b5050505060018261014001818151611309919061506a565b61ffff1690525060408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015611353573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113779190614d98565b6001600160a01b031663d625d758878460ff6040518463ffffffff1660e01b81526004016113a793929190615227565b5f604051808303815f87803b1580156113be575f80fd5b505af11580156113d0573d5f803e3d5ffd5b5050604080516001600160601b038a16815261ffff891660208201527f1faaad16c345dc1936ac3a4a01ff31232a396d4cb78f913d62ae01e2b39be9cc935001905060405180910390a15050505061103a60015f805160206159a183398151915255565b5f61143d6129f5565b61144a8585855f866131f2565b905061146260015f805160206159a183398151915255565b949350505050565b5f805160206159c18339815191528054600160401b810460ff1615906001600160401b03165f8115801561149b5750825b90505f826001600160401b031660011480156114b65750303b155b9050811580156114c4575080155b156114e25760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561150c57845460ff60401b1916600160401b1785555b611516878761382b565b831561155d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b61156e6129f5565b5f805f61157a85612a2c565b9250925092505f61158f8387876111b1603390565b606081015190915060ff16156115e1576060810151604051632f1a047f60e11b81526001600160601b038816600482015261ffff8716602482015260ff90911660448201526064015b60405180910390fd5b805160405163046e44af60e11b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af415801561163a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061165e9190615496565b602082015160405163046e44af60e11b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af41580156116ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116de9190615496565b10156117295780516020820151604051633c781b2760e11b81526001600160601b03808a16600483015261ffff891660248301529283166044820152911660648201526084016115d8565b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611770573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117949190614d7d565b64ffffffffff1660c082015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa1580156117e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118079190614d98565b6001600160a01b031663fae5df9b87878460c86040518563ffffffff1660e01b8152600401611839949392919061503f565b5f604051808303815f87803b158015611850575f80fd5b505af1158015611862573d5f803e3d5ffd5b505050505050505061103a60015f805160206159a183398151915255565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d36017604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156118eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061190f91906154ad565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611952573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610451919061547b565b61197e6129f5565b5f805f61198a87612a2c565b9250925092505f61199f8389896111b1603290565b6001600160601b038716815260a0810186905260408051631a99b41b60e31b815290519192506001600160a01b0386169163d4cda0d8916004808201926020929091908290030181865afa1580156119f9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a1d9190614d98565b6001600160a01b031663fae5df9b89898460336040518563ffffffff1660e01b8152600401611a4f949392919061503f565b5f604051808303815f87803b158015611a66575f80fd5b505af1158015611a78573d5f803e3d5ffd5b50505050611a8b82610160015187613a5f565b6001600160601b031661016083015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015611add573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b019190614d98565b6001600160a01b031663d625d758898460ff6040518463ffffffff1660e01b8152600401611b3193929190615227565b5f604051808303815f87803b158015611b48575f80fd5b505af1158015611b5a573d5f803e3d5ffd5b5050604080516001600160601b038c8116825261ffff8c1660208301528a168183015290517fccd5503b328e5b54e15c01d8de50b60e170834460b94faf05be56b4b25a1a1409350908190036060019150a1611bb7888888613ae3565b50505050611bd160015f805160206159a183398151915255565b50505050565b5f611be06129f5565b5f805f611bec87612a2c565b6101a081015160405163790a38ad60e01b815264ffffffffff9091166004820152929550909350915073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015611c4f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c7391906154c8565b80611cfd5750611cfd73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611cc3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ce79190614d7d565b826101c0015164ffffffffff9081169116101590565b15611d2657604051631abadea960e01b81526001600160601b03881660048201526024016115d8565b611d42611d3882610180015188613a5f565b8260800151613b73565b15611eee57608081015160405163046e44af60e11b81526001600160601b038816600482015288919073__$3bac17678db7ae928afa209f2f44deec9c$__90634c41dd969082906308dc895e90602401602060405180830381865af4158015611dad573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dd19190615496565b61018086015160405163046e44af60e11b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015611e2e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e529190615496565b611e5c91906154e1565b6040518263ffffffff1660e01b8152600401611e7a91815260200190565b602060405180830381865af4158015611e95573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eb99190614bf4565b604051631acfc80160e21b81526001600160601b039384166004820152918316602483015290911660448201526064016115d8565b73__$9e81531fe4994e01e99541f86b55500b4b$__639cc45a368261012001516001611f1a91906154f4565b6040516001600160e01b031960e084901b16815261ffff9091166004820152602401602060405180830381865af4158015611f57573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f7b9190614e55565b9350826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fb9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fdd9190614d98565b6001600160a01b0316630cfc3ba388866040518060e001604052808b6001600160601b0316815260200173__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561204e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120729190614bf4565b6001600160601b031681526020015f60ff1681526020015f60ff1681526020018a815260200160405180602001604052805f815250815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156120f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121179190614d7d565b64ffffffffff168152506040518463ffffffff1660e01b815260040161213f9392919061550e565b5f604051808303815f87803b158015612156575f80fd5b505af1158015612168573d5f803e3d5ffd5b505050506001816101200181815161218091906154f4565b61ffff16905250610140810180516001919061219d9083906154f4565b61ffff1690525060408051631a99b41b60e31b815290516001600160a01b0385169163d4cda0d89160048083019260209291908290030181865afa1580156121e7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061220b9190614d98565b6001600160a01b031663d625d758888360ff6040518463ffffffff1660e01b815260040161223b93929190615227565b5f604051808303815f87803b158015612252575f80fd5b505af1158015612264573d5f803e3d5ffd5b5050604080516001600160601b038b8116825261ffff891660208301528a168183015290517fcbffe0c4cf4814bd79bac10830275e65911ae7d71347b96c61fa8e4635423ba49350908190036060019150a15050506122cf60015f805160206159a183398151915255565b9392505050565b336122f55f80516020615981833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146123305760405162d1953b60e31b81526001600160a01b03821660048201526024016115d8565b816001600160a01b03163b5f03612365576040516361798f2f60e11b81526001600160a01b03831660048201526024016115d8565b61103a82613bbd565b5f805f8051602061596183398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156123da573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123fe91906154c8565b15612489576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561245f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124839190614d98565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061598183398151915280545f9190600160a01b900460ff166124c6575f612483565b638fb3603760e01b91505090565b5f6124dd6129f5565b6001600160a01b038316612519576040516377e59c8360e11b81526001600160601b038716600482015261ffff861660248201526044016115d8565b61252686868686866131f2565b905061253e60015f805160206159a183398151915255565b95945050505050565b61254f6129f5565b5f805f61255b86612a2c565b9250925092505f6125708388886111b1603290565b9050848160a0018190525073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156125c2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125e69190614d7d565b64ffffffffff1660c082015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015612635573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126599190614d98565b6001600160a01b031663fae5df9b888884601e6040518563ffffffff1660e01b815260040161268b949392919061503f565b5f604051808303815f87803b1580156126a2575f80fd5b505af11580156126b4573d5f803e3d5ffd5b50505050600182610140018181516126cc919061506a565b61ffff1690525060408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015612716573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061273a9190614d98565b6001600160a01b031663d625d758888460ff6040518463ffffffff1660e01b815260040161276a93929190615227565b5f604051808303815f87803b158015612781575f80fd5b505af1158015612793573d5f803e3d5ffd5b5050604080516001600160601b038b16815261ffff8a1660208201527f835aca3a92b79a82038b38ef30bc398955a23c24b64db0183839129d0772a4fb935001905060405180910390a1505050506127f760015f805160206159a183398151915255565b505050565b5f805f8051602061596183398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612868573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061288c91906154c8565b156128b85780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016115d8565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561290a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061292e91906154c8565b6129565760405163b9304b0d60e01b81526001600160a01b03841660048201526024016115d8565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa1580156129a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129cc9190614bf4565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f805160206159a1833981519152805460011901612a2657604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b60408051610200810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820181905261010082015261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081018290526101e0810182905281905f612ab7600c613c1d565b90508095508192505050836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612afd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b219190614d98565b60405163bd7d9d8560e01b81526001600160601b03871660048201529093506001600160a01b0384169063bd7d9d85906024015f60405180830381865afa158015612b6e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612b959190810190615550565b9150612ba4825f015182613cb9565b15612be057815160405163169efc1d60e11b81526001600160601b038088166004830152918216602482015290821660448201526064016115d8565b509193909250565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af4158015612c49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c6d91906154c8565b90505b92915050565b60208101516040516330b8415f60e01b81526001600160601b03821660048201525f91829182919073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612cd8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cfc91906154c8565b15612fac5785515f612d166001546001600160a01b031690565b60208901516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015612d68573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612d8f9190810190615397565b6020015160405163f0ea17c360e01b81526001600160601b03821660048201529091505f906001600160a01b038c169063f0ea17c3906024015f60405180830381865afa158015612de2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612e09919081019061525b565b604089015194975087949091506001600160a01b0316612ea7576001546001600160a01b0316604051631c5da14d60e11b81526001600160601b038c1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612e7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ea09190614d98565b9450612eaf565b876040015194505b6040516302d764c760e21b81526001600160601b03841660048201525f906001600160a01b038d1690630b5d931c9060240161020060405180830381865afa158015612efd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f21919061572f565b60608101516040516305deb8b760e01b815281516004820152602090910151602482015290915073__$58e11c6004c5796aaa8c56e718245e69a2$__906305deb8b790604401602060405180830381865af4158015612f82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fa691906154c8565b50505050505b509450945094915050565b5f612fc185613d03565b90506001600160a01b0381161561304b57604051631cf6f99160e11b81526001600160601b03808716600483015262ffffff86166024830152831660448201526001600160a01b0384811660648301528216906339edf322906084015f604051808303815f87803b158015613034575f80fd5b505af1158015613046573d5f803e3d5ffd5b505050505b5050505050565b60015f805160206159a183398151915255565b610153613e16565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820181905260a082015260c081019190915260405163078ae93560e41b81526001600160601b038516600482015261ffff841660248201525f906001600160a01b038716906378ae935090604401602060405180830381865afa1580156130fb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061311f91906154ad565b905060ff8082169084161461316d576040516398b9e22f60e01b81526001600160601b038616600482015261ffff8516602482015260ff8085166044830152821660648201526084016115d8565b60405163a7ef3d2160e01b81526001600160601b038616600482015261ffff851660248201526001600160a01b0387169063a7ef3d21906044015f60405180830381865afa1580156131c1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526131e89190810190614e89565b9695505050505050565b5f805f806131ff89612a2c565b60405163a7ef3d2160e01b81526001600160601b038d16600482015261ffff8c16602482015292955090935091505f906001600160a01b0384169063a7ef3d21906044015f60405180830381865afa15801561325d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526132849190810190614e89565b60405163078ae93560e41b81526001600160601b038c16600482015261ffff8b1660248201529091505f906001600160a01b038516906378ae935090604401602060405180830381865afa1580156132de573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061330291906154ad565b90505f8260400151600161331691906157f0565b60405163d5b5ee5d60e01b815261ffff8d16600482015260ff8216602482015290915073__$0f9396e6447a4be57af83e53f51d234633$__9063d5b5ee5d90604401602060405180830381865af4158015613373573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133979190614bc9565b9650856001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133f99190614d98565b6040805160a0810191829052636f2f88d160e11b90915262ffffff891660a48201526001600160a01b03919091169063d6c08df7908e908a908073__$0f9396e6447a4be57af83e53f51d234633$__63de5f11a260c48301602060405180830381865af415801561346c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134909190614e55565b61ffff1681526020018f6001600160601b031681526020018e6001600160a01b031681526020018d815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613504573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135289190614d7d565b64ffffffffff168152506040518463ffffffff1660e01b815260040161355093929190615809565b5f604051808303815f87803b158015613567575f80fd5b505af1158015613579573d5f803e3d5ffd5b5050505060018360400181815161359091906157f0565b60ff16905250606083018051600191906135ab9083906157f0565b60ff1690525060408051631a99b41b60e31b815290516001600160a01b0388169163d4cda0d89160048083019260209291908290030181865afa1580156135f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136189190614d98565b6001600160a01b031663fae5df9b8d8d8660ff6040518563ffffffff1660e01b815260040161364a949392919061503f565b5f604051808303815f87803b158015613661575f80fd5b505af1158015613673573d5f803e3d5ffd5b5050505061018084015160405163274acb3560e01b81526001600160601b039182166004820152908b16602482015273__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af41580156136dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137009190614bf4565b50856001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561373d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137619190614d98565b6001600160a01b031663d625d7588d8660ff6040518463ffffffff1660e01b815260040161379193929190615227565b5f604051808303815f87803b1580156137a8575f80fd5b505af11580156137ba573d5f803e3d5ffd5b505050507fb5856e4c56d591cac27a46c8f3f1a71928ac5d7488bd2037022030f04100118f8c888c604051613814939291906001600160601b03938416815262ffffff929092166020830152909116604082015260600190565b60405180910390a150505050505095945050505050565b5f805160206159c18339815191528054600160401b810460ff1615906001600160401b03165f8115801561385c5750825b90505f826001600160401b031660011480156138775750303b155b905081158015613885575080155b156138a35760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156138cd57845460ff60401b1916600160401b1785555b5f80878060200190518101906138e39190615835565b915091506138f282828b613e4e565b6001546001600160a01b031663d39e6043600f61390d6103cf565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af4158015613960573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061398491906154ad565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156139c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139eb9190614d98565b600280546001600160a01b0319166001600160a01b0392909216919091179055613a1b6370c0bb7760e01b613f8a565b5050831561155d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611554565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015613abf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c6d9190614bf4565b5f613aed84613d03565b90506001600160a01b03811615611bd157604051636321706f60e11b81526001600160601b03808616600483015261ffff85166024830152831660448201526001600160a01b0382169063c642e0de906064015f604051808303815f87803b158015613b57575f80fd5b505af1158015613b69573d5f803e3d5ffd5b5050505050505050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401612c2e565b5f8051602061598183398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f613c2661467f565b5f613c396001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015613c7d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ca19190614bf4565b9250613caf83856001613fb6565b9395909450915050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401612c2e565b5f80613d176001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03851660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015613d64573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d889190614d98565b604051635b5dd68960e11b81526001600160a01b038216600482015290925082915073__$fb599632d08395912d9d70eb2f0f93b5e2$__9063b6bbad1290602401602060405180830381865af4158015613de4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e0891906154c8565b613e10575f91505b50919050565b5f805160206159c183398151915254600160401b900460ff16613e4c57604051631afcd79f60e31b815260040160405180910390fd5b565b613e56613e16565b613e5e614253565b6001600160a01b03821615613e7b57613e7682614263565b613ef2565b5f613e866002614277565b9050613ef0816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ec7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613eeb9190614d98565b614263565b505b613f6e83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f32573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f569190614bf4565b60085f8560405180602001604052805f815250614378565b613f7e634a531f3360e01b613f8a565b6127f763daf9067160e01b5b613f92613e16565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b613fbe61467f565b5f80613fd26001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa15801561401f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526140469190810190615397565b925060ff8516600b146140a457604083015160ff86811691161461409f57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff808816602483015290911660448201526064016115d8565b614140565b6140bf83604001516140b4600c90565b60ff90811691161490565b806140d557506140d583604001516140b4600f90565b806140eb57506140eb83604001516140b4600e90565b80614101575061410183604001516140b4600d90565b61414057604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff808816602483015290911660448201526064016115d8565b61414d8360200151614413565b9150831561424a57816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015614191573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141b59190614d98565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa1580156141fd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061422191906154c8565b1561424a57604051637d71120960e11b81526001600160601b03871660048201526024016115d8565b50935093915050565b61425b613e16565b613e4c6144a3565b61426b613e16565b614274816144ab565b50565b5f61428a6001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156142ed573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061431191906154ad565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015614354573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c709190614d98565b614380613e16565b61438a82876144bc565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301613b6983826158a6565b5f6144266001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015614472573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526144999190810190615397565b6080015192915050565b613052613e16565b6144b3613e16565b61427481613bbd565b6144c4613e16565b6144cd81614532565b6144d561463a565b6001600160a01b0382166144fc5760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061596183398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b61453a613e16565b806001600160a01b03163b5f0361456f5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016115d8565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632f6da6f960e01b60048201526301ffc9a790602401602060405180830381865afa9250505080156145e9575060408051601f3d908101601f191682019092526145e6918101906154c8565b60015b6146115760405163fdeac91f60e01b81526001600160a01b03821660048201526024016115d8565b8061103a5760405163fdeac91f60e01b81526001600160a01b03831660048201526024016115d8565b614642613e16565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b5f602082840312156146cc575f80fd5b81356001600160e01b0319811681146122cf575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614759608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526114626101008401826146e3565b6001600160601b0381168114614274575f80fd5b62ffffff81168114614274575f80fd5b5f80604083850312156147d2575f80fd5b82356147dd8161479d565b915060208301356147ed816147b1565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b60405160a081016001600160401b038111828210171561482e5761482e6147f8565b60405290565b60405160e081016001600160401b038111828210171561482e5761482e6147f8565b60405160c081016001600160401b038111828210171561482e5761482e6147f8565b60405161020081016001600160401b038111828210171561482e5761482e6147f8565b60405161012081016001600160401b038111828210171561482e5761482e6147f8565b604051601f8201601f191681016001600160401b03811182821017156148e6576148e66147f8565b604052919050565b5f6001600160401b03821115614906576149066147f8565b50601f01601f191660200190565b5f82601f830112614923575f80fd5b8135614936614931826148ee565b6148be565b81815284602083860101111561494a575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614976575f80fd5b81356001600160401b0381111561498b575f80fd5b61146284828501614914565b61ffff81168114614274575f80fd5b5f80604083850312156149b7575f80fd5b82356149c28161479d565b915060208301356147ed81614997565b5f805f80608085870312156149e5575f80fd5b84356149f08161479d565b93506020850135614a0081614997565b92506040850135614a108161479d565b915060608501356001600160401b03811115614a2a575f80fd5b614a3687828801614914565b91505092959194509250565b6001600160a01b0381168114614274575f80fd5b5f8060408385031215614a67575f80fd5b8235614a7281614a42565b915060208301356001600160401b03811115614a8c575f80fd5b614a9885828601614914565b9150509250929050565b5f805f60608486031215614ab4575f80fd5b8335614abf8161479d565b92506020840135614acf8161479d565b915060408401356001600160401b03811115614ae9575f80fd5b614af586828701614914565b9150509250925092565b5f60208284031215614b0f575f80fd5b81356122cf81614a42565b5f805f805f60a08688031215614b2e575f80fd5b8535614b398161479d565b94506020860135614b4981614997565b93506040860135614b598161479d565b92506060860135614b6981614a42565b915060808601356001600160401b03811115614b83575f80fd5b614b8f88828901614914565b9150509295509295909350565b5f805f60608486031215614bae575f80fd5b8335614bb98161479d565b92506020840135614acf81614997565b5f60208284031215614bd9575f80fd5b81516122cf816147b1565b8051614bef8161479d565b919050565b5f60208284031215614c04575f80fd5b81516122cf8161479d565b600181811c90821680614c2357607f821691505b602082108103613e1057634e487b7160e01b5f52602260045260245ffd5b8051614bef81614997565b8051614bef81614a42565b5f82601f830112614c66575f80fd5b8151602083015f614c79614931846148ee565b9050828152858383011115614c8c575f80fd5b8282602083015e5f92810160200192909252509392505050565b64ffffffffff81168114614274575f80fd5b8051614bef81614ca6565b5f60208284031215614cd3575f80fd5b81516001600160401b03811115614ce8575f80fd5b820160a08185031215614cf9575f80fd5b614d0161480c565b8151614d0c81614997565b81526020820151614d1c8161479d565b60208201526040820151614d2f81614a42565b604082015260608201516001600160401b03811115614d4c575f80fd5b614d5886828501614c57565b60608301525060808201519150614d6e82614ca6565b60808101919091529392505050565b5f60208284031215614d8d575f80fd5b81516122cf81614ca6565b5f60208284031215614da8575f80fd5b81516122cf81614a42565b61ffff81511682526001600160601b03602082015116602083015260018060a01b0360408201511660408301525f606082015160a06060850152614dfa60a08501826146e3565b60809384015164ffffffffff16949093019390935250919050565b6001600160601b038516815262ffffff84166020820152608060408201525f614e416080830185614db3565b905060ff8316606083015295945050505050565b5f60208284031215614e65575f80fd5b81516122cf81614997565b60ff81168114614274575f80fd5b8051614bef81614e70565b5f60208284031215614e99575f80fd5b81516001600160401b03811115614eae575f80fd5b820160e08185031215614ebf575f80fd5b614ec7614834565b614ed082614be4565b8152614ede60208301614be4565b6020820152614eef60408301614e7e565b6040820152614f0060608301614e7e565b606082015260808201516001600160401b03811115614f1d575f80fd5b614f2986828501614c57565b60808301525060a08201516001600160401b03811115614f47575f80fd5b614f5386828501614c57565b60a083015250614f6560c08301614cb8565b60c0820152949350505050565b634e487b7160e01b5f52601160045260245ffd5b60ff8281168282160390811115612c7057612c70614f72565b6001600160601b0381511682526001600160601b0360208201511660208301525f6040820151614fd4604085018260ff169052565b506060820151614fe9606085018260ff169052565b50608082015160e0608085015261500360e08501826146e3565b905060a083015184820360a086015261501c82826146e3565b91505060c083015161503760c086018264ffffffffff169052565b509392505050565b6001600160601b038516815261ffff84166020820152608060408201525f614e416080830185614f9f565b61ffff8281168282160390811115612c7057612c70614f72565b80516001600160601b031682525f60208201516150ac60208501826001600160601b03169052565b5060408201516150c860408501826001600160c01b0319169052565b5060608201516150e460608501826001600160c01b0319169052565b5060808201516150ff60808501826001600160601b03169052565b5060a082015161511a60a08501826001600160601b03169052565b5060c082015161513360c085018264ffffffffff169052565b5060e082015161020060e085015261514f6102008501826146e3565b905061010083015184820361010086015261516a82826146e3565b91505061012083015161518461012086018261ffff169052565b5061014083015161519c61014086018261ffff169052565b506101608301516151b96101608601826001600160601b03169052565b506101808301516151d66101808601826001600160601b03169052565b506101a08301516151f16101a086018264ffffffffff169052565b506101c083015161520c6101c086018264ffffffffff169052565b506101e08301516150376101e086018264ffffffffff169052565b6001600160601b0384168152606060208201525f6152486060830185615084565b905060ff83166040830152949350505050565b5f6020828403121561526b575f80fd5b81516001600160401b03811115615280575f80fd5b820160c08185031215615291575f80fd5b615299614856565b81516001600160401b038111156152ae575f80fd5b6152ba86828501614c57565b8252506152c960208301614be4565b60208201526152da60408301614c4c565b60408201526152eb60608301614c4c565b60608201526152fc60808301614c4c565b608082015260a08201516001600160401b03811115615319575f80fd5b61532586828501614c57565b60a083015250949350505050565b6001600160a01b038681168252851660208201526001600160601b038416604082015260a0606082018190525f9061536d90830185615084565b90506001600160601b03831660808301529695505050505050565b80518015158114614bef575f80fd5b5f602082840312156153a7575f80fd5b81516001600160401b038111156153bc575f80fd5b820160e081850312156153cd575f80fd5b6153d5614834565b6153de82614be4565b81526153ec60208301614be4565b60208201526153fd60408301614e7e565b604082015261540e60608301615388565b606082015261541f60808301614c4c565b608082015261543060a08301614c4c565b60a082015260c08201516001600160401b0381111561544d575f80fd5b61545986828501614c57565b60c083015250949350505050565b6001600160401b0381168114614274575f80fd5b5f6020828403121561548b575f80fd5b81516122cf81615467565b5f602082840312156154a6575f80fd5b5051919050565b5f602082840312156154bd575f80fd5b81516122cf81614e70565b5f602082840312156154d8575f80fd5b612c6d82615388565b80820180821115612c7057612c70614f72565b61ffff8181168382160190811115612c7057612c70614f72565b6001600160601b038416815261ffff83166020820152606060408201525f61253e6060830184614f9f565b80516001600160c01b031981168114614bef575f80fd5b5f60208284031215615560575f80fd5b81516001600160401b03811115615575575f80fd5b82016102008185031215615587575f80fd5b61558f614878565b61559882614be4565b81526155a660208301614be4565b60208201526155b760408301615539565b60408201526155c860608301615539565b60608201526155d960808301614be4565b60808201526155ea60a08301614be4565b60a08201526155fb60c08301614cb8565b60c082015260e08201516001600160401b03811115615618575f80fd5b61562486828501614c57565b60e0830152506101008201516001600160401b03811115615643575f80fd5b61564f86828501614c57565b610100830152506156636101208301614c41565b6101208201526156766101408301614c41565b6101408201526156896101608301614be4565b61016082015261569c6101808301614be4565b6101808201526156af6101a08301614cb8565b6101a08201526156c26101c08301614cb8565b6101c08201526156d56101e08301614cb8565b6101e0820152949350505050565b5f604082840312156156f3575f80fd5b604080519081016001600160401b0381118282101715615715576157156147f8565b604052825181526020928301519281019290925250919050565b5f610200828403128015615741575f80fd5b5061574a61489b565b61575383614be4565b815261576160208401614be4565b602082015261577384604085016156e3565b604082015261578584608085016156e3565b60608201526157978460c085016156e3565b60808201526157aa8461010085016156e3565b60a08201526157bd8461014085016156e3565b60c08201526157d08461018085016156e3565b60e08201526157e3846101c085016156e3565b6101008201529392505050565b60ff8181168382160190811115612c7057612c70614f72565b6001600160601b038416815262ffffff83166020820152606060408201525f61253e6060830184614db3565b5f8060408385031215615846575f80fd5b825161585181614a42565b60208401519092506147ed81614a42565b601f8211156127f757805f5260205f20601f840160051c810160208510156158875750805b601f840160051c820191505b8181101561304b575f8155600101615893565b81516001600160401b038111156158bf576158bf6147f8565b6158d3816158cd8454614c0f565b84615862565b6020601f821160018114615905575f83156158ee5750848201515b5f19600385901b1c1916600184901b17845561304b565b5f84815260208120601f198516915b828110156159345787850151825560209485019460019092019101615914565b508482101561595157868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220fb13150fb3e6d3e4a9f1a7d0ca96359bd1116ea5f80737eeeeb09b1d938a58ac64736f6c634300081a0033",
969
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610153575f3560e01c8063644c45e0116100bf5780638fb36037116100795780638fb3603714610348578063ada9652e14610369578063b68d18091461037d578063bf7e214f1461038c578063e01f7a43146103a9578063f450e2b5146103bc575f80fd5b8063644c45e0146102b75780636c741e78146102d45780636e2cdce7146102f457806374b775eb146103075780637a9e5e4b1461032d578063893d20e814610340575f80fd5b8063329d6e7411610110578063329d6e74146102335780633838d739146102465780633c53258e1461025957806349bb9e4b1461026c5780635ab1bd531461027f5780635dbf2c8d146102a4575f80fd5b806301ffc9a7146101575780630d8e6e2c146101985780630fec111c146101b4578063138461e0146101c95780631eff4b22146101e957806327c054b71461021e575b5f80fd5b6101836101653660046146bc565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101a06103cf565b60405162ffffff909116815260200161018f565b6101bc610456565b60405161018f9190614711565b6101d16105e2565b6040516001600160601b03909116815260200161018f565b6102107f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161018f565b61023161022c3660046147c1565b6105ec565b005b610231610241366004614966565b61103e565b6102316102543660046149a6565b611188565b6101a06102673660046149d2565b611434565b61023161027a366004614a56565b61146a565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161018f565b6102316102b23660046149a6565b611566565b5f80516020615961833981519152546001600160601b03166101d1565b6102dc611880565b6040516001600160401b03909116815260200161018f565b6102316103023660046149d2565b611976565b61031a610315366004614aa2565b611bd7565b60405161ffff909116815260200161018f565b61023161033b366004614aff565b6122d6565b61028c61236e565b61035061249f565b6040516001600160e01b0319909116815260200161018f565b6102105f8051602061596183398151915281565b6040516017815260200161018f565b5f80516020615981833981519152546001600160a01b031661028c565b6101a06103b7366004614b1a565b6124d4565b6102316103ca366004614b9c565b612547565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801561042d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104519190614bc9565b905090565b61045e61467f565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156104d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104f89190614bf4565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161054061236e565b6001600160a01b0316815260200182600101805461055d90614c0f565b80601f016020809104026020016040519081016040528092919081815260200182805461058990614c0f565b80156105d45780601f106105ab576101008083540402835291602001916105d4565b820191905f5260205f20905b8154815290600101906020018083116105b757829003601f168201915b505050505081525091505090565b5f610451306127fc565b6105f46129f5565b5f805f61060085612a2c565b6040516339bb60cd60e01b81526001600160601b038916600482015262ffffff8816602482015292955090935091505f906001600160a01b038416906339bb60cd906044015f60405180830381865afa15801561065f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526106869190810190614cc3565b905073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156106cf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106f39190614d7d565b64ffffffffff16608082015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015610742573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107669190614d98565b6001600160a01b031663d23c6f6387878460dc6040518563ffffffff1660e01b81526004016107989493929190614e15565b5f604051808303815f87803b1580156107af575f80fd5b505af11580156107c1573d5f803e3d5ffd5b5050604051636f2f88d160e11b815262ffffff881660048201525f925073__$0f9396e6447a4be57af83e53f51d234633$__915063de5f11a290602401602060405180830381865af4158015610819573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061083d9190614e55565b602083015160405163a7ef3d2160e01b81526001600160601b038a16600482015261ffff83166024820152919250905f906001600160a01b0387169063a7ef3d21906044015f60405180830381865afa15801561089c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108c39190810190614e89565b602081015160405163274acb3560e01b81526001600160601b039182166004820152908416602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af415801561092a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061094e9190614bf4565b6001600160601b0316602082015260608101805160019190610971908390614f86565b60ff908116909152606083015116159050801561099a575061099a8160200151825f0151612be8565b15610b0157610a218160c0015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156109ee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a129190614d7d565b64ffffffffff90811691161490565b50866001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a829190614d98565b6001600160a01b031663fae5df9b8a858460c86040518563ffffffff1660e01b8152600401610ab4949392919061503f565b5f604051808303815f87803b158015610acb575f80fd5b505af1158015610add573d5f803e3d5ffd5b5050505060018561014001818151610af5919061506a565b61ffff16905250610bc1565b866001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b3d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b619190614d98565b6001600160a01b031663fae5df9b8a858460ff6040518563ffffffff1660e01b8152600401610b93949392919061503f565b5f604051808303815f87803b158015610baa575f80fd5b505af1158015610bbc573d5f803e3d5ffd5b505050505b61018085015160405163274acb3560e01b81526001600160601b039182166004820152908316602482015273__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015610c26573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c4a9190614bf4565b6001600160601b031661018086015260408051631a99b41b60e31b815290516001600160a01b0389169163d4cda0d89160048083019260209291908290030181865afa158015610c9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cc09190614d98565b6001600160a01b031663d625d7588a8760ff6040518463ffffffff1660e01b8152600401610cf093929190615227565b5f604051808303815f87803b158015610d07575f80fd5b505af1158015610d19573d5f803e3d5ffd5b5050600254875160405163f0ea17c360e01b81526001600160601b0390911660048201526001600160a01b0391821693506396fa19e892508a918a169063f0ea17c3906024015f60405180830381865afa158015610d79573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610da0919081019061525b565b604001518c89876040518663ffffffff1660e01b8152600401610dc7959493929190615333565b5f604051808303815f87803b158015610dde575f80fd5b505af1158015610df0573d5f803e3d5ffd5b505050505f805f610e03898d8a8a612c76565b9250925092507fb367a73159dcdb193cdd8eb36e498d43a90b5abd2d5f698d23e149a2b91a91e98c8c87848787604051610e85969594939291906001600160601b03968716815262ffffff95909516602086015292851660408501526001600160a01b039190911660608401528316608083015290911660a082015260c00190565b60405180910390a15f610ea06001546001600160a01b031690565b60208a01516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015610ef2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610f199190810190615397565b6020015160405163f0ea17c360e01b81526001600160601b03821660048201529091505f906001600160a01b038c169063f0ea17c3906024015f60405180830381865afa158015610f6c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610f93919081019061525b565b6060810151608082015160405163153c361360e21b81526001600160a01b03918216600482015286821660248201526001600160601b038916604482015292935016906354f0d84c906064015f604051808303815f87803b158015610ff6575f80fd5b505af1158015611008573d5f803e3d5ffd5b50505050505061101a8c8c8388612fb7565b5050505050505050505061103a60015f805160206159a183398151915255565b5050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6110606103cf565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561109e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110c2919061547b565b5f805160206159c18339815191528054600160401b900460ff16806110f4575080546001600160401b03808416911610155b156111125760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561113c83613065565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b6111906129f5565b5f805f61119c85612a2c565b9250925092505f6111b68387876111b1603290565b61306d565b905073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156111ff573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112239190614d7d565b64ffffffffff1660c082015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015611272573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112969190614d98565b6001600160a01b031663fae5df9b87878460146040518563ffffffff1660e01b81526004016112c8949392919061503f565b5f604051808303815f87803b1580156112df575f80fd5b505af11580156112f1573d5f803e3d5ffd5b5050505060018261014001818151611309919061506a565b61ffff1690525060408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015611353573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113779190614d98565b6001600160a01b031663d625d758878460ff6040518463ffffffff1660e01b81526004016113a793929190615227565b5f604051808303815f87803b1580156113be575f80fd5b505af11580156113d0573d5f803e3d5ffd5b5050604080516001600160601b038a16815261ffff891660208201527f1faaad16c345dc1936ac3a4a01ff31232a396d4cb78f913d62ae01e2b39be9cc935001905060405180910390a15050505061103a60015f805160206159a183398151915255565b5f61143d6129f5565b61144a8585855f866131f2565b905061146260015f805160206159a183398151915255565b949350505050565b5f805160206159c18339815191528054600160401b810460ff1615906001600160401b03165f8115801561149b5750825b90505f826001600160401b031660011480156114b65750303b155b9050811580156114c4575080155b156114e25760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561150c57845460ff60401b1916600160401b1785555b611516878761382b565b831561155d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b61156e6129f5565b5f805f61157a85612a2c565b9250925092505f61158f8387876111b1603390565b606081015190915060ff16156115e1576060810151604051632f1a047f60e11b81526001600160601b038816600482015261ffff8716602482015260ff90911660448201526064015b60405180910390fd5b805160405163046e44af60e11b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af415801561163a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061165e9190615496565b602082015160405163046e44af60e11b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af41580156116ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116de9190615496565b10156117295780516020820151604051633c781b2760e11b81526001600160601b03808a16600483015261ffff891660248301529283166044820152911660648201526084016115d8565b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611770573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117949190614d7d565b64ffffffffff1660c082015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa1580156117e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118079190614d98565b6001600160a01b031663fae5df9b87878460c86040518563ffffffff1660e01b8152600401611839949392919061503f565b5f604051808303815f87803b158015611850575f80fd5b505af1158015611862573d5f803e3d5ffd5b505050505050505061103a60015f805160206159a183398151915255565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d36017604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156118eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061190f91906154ad565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611952573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610451919061547b565b61197e6129f5565b5f805f61198a87612a2c565b9250925092505f61199f8389896111b1603290565b6001600160601b038716815260a0810186905260408051631a99b41b60e31b815290519192506001600160a01b0386169163d4cda0d8916004808201926020929091908290030181865afa1580156119f9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a1d9190614d98565b6001600160a01b031663fae5df9b89898460336040518563ffffffff1660e01b8152600401611a4f949392919061503f565b5f604051808303815f87803b158015611a66575f80fd5b505af1158015611a78573d5f803e3d5ffd5b50505050611a8b82610160015187613a5f565b6001600160601b031661016083015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015611add573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b019190614d98565b6001600160a01b031663d625d758898460ff6040518463ffffffff1660e01b8152600401611b3193929190615227565b5f604051808303815f87803b158015611b48575f80fd5b505af1158015611b5a573d5f803e3d5ffd5b5050604080516001600160601b038c8116825261ffff8c1660208301528a168183015290517fccd5503b328e5b54e15c01d8de50b60e170834460b94faf05be56b4b25a1a1409350908190036060019150a1611bb7888888613ae3565b50505050611bd160015f805160206159a183398151915255565b50505050565b5f611be06129f5565b5f805f611bec87612a2c565b6101a081015160405163790a38ad60e01b815264ffffffffff9091166004820152929550909350915073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015611c4f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c7391906154c8565b80611cfd5750611cfd73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611cc3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ce79190614d7d565b826101c0015164ffffffffff9081169116101590565b15611d2657604051631abadea960e01b81526001600160601b03881660048201526024016115d8565b611d42611d3882610180015188613a5f565b8260800151613b73565b15611eee57608081015160405163046e44af60e11b81526001600160601b038816600482015288919073__$3bac17678db7ae928afa209f2f44deec9c$__90634c41dd969082906308dc895e90602401602060405180830381865af4158015611dad573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dd19190615496565b61018086015160405163046e44af60e11b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015611e2e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e529190615496565b611e5c91906154e1565b6040518263ffffffff1660e01b8152600401611e7a91815260200190565b602060405180830381865af4158015611e95573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eb99190614bf4565b604051631acfc80160e21b81526001600160601b039384166004820152918316602483015290911660448201526064016115d8565b73__$9e81531fe4994e01e99541f86b55500b4b$__639cc45a368261012001516001611f1a91906154f4565b6040516001600160e01b031960e084901b16815261ffff9091166004820152602401602060405180830381865af4158015611f57573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f7b9190614e55565b9350826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fb9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fdd9190614d98565b6001600160a01b0316630cfc3ba388866040518060e001604052808b6001600160601b0316815260200173__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561204e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120729190614bf4565b6001600160601b031681526020015f60ff1681526020015f60ff1681526020018a815260200160405180602001604052805f815250815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156120f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121179190614d7d565b64ffffffffff168152506040518463ffffffff1660e01b815260040161213f9392919061550e565b5f604051808303815f87803b158015612156575f80fd5b505af1158015612168573d5f803e3d5ffd5b505050506001816101200181815161218091906154f4565b61ffff16905250610140810180516001919061219d9083906154f4565b61ffff1690525060408051631a99b41b60e31b815290516001600160a01b0385169163d4cda0d89160048083019260209291908290030181865afa1580156121e7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061220b9190614d98565b6001600160a01b031663d625d758888360ff6040518463ffffffff1660e01b815260040161223b93929190615227565b5f604051808303815f87803b158015612252575f80fd5b505af1158015612264573d5f803e3d5ffd5b5050604080516001600160601b038b8116825261ffff891660208301528a168183015290517fcbffe0c4cf4814bd79bac10830275e65911ae7d71347b96c61fa8e4635423ba49350908190036060019150a15050506122cf60015f805160206159a183398151915255565b9392505050565b336122f55f80516020615981833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146123305760405162d1953b60e31b81526001600160a01b03821660048201526024016115d8565b816001600160a01b03163b5f03612365576040516361798f2f60e11b81526001600160a01b03831660048201526024016115d8565b61103a82613bbd565b5f805f8051602061596183398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156123da573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123fe91906154c8565b15612489576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561245f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124839190614d98565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061598183398151915280545f9190600160a01b900460ff166124c6575f612483565b638fb3603760e01b91505090565b5f6124dd6129f5565b6001600160a01b038316612519576040516377e59c8360e11b81526001600160601b038716600482015261ffff861660248201526044016115d8565b61252686868686866131f2565b905061253e60015f805160206159a183398151915255565b95945050505050565b61254f6129f5565b5f805f61255b86612a2c565b9250925092505f6125708388886111b1603290565b9050848160a0018190525073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156125c2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125e69190614d7d565b64ffffffffff1660c082015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015612635573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126599190614d98565b6001600160a01b031663fae5df9b888884601e6040518563ffffffff1660e01b815260040161268b949392919061503f565b5f604051808303815f87803b1580156126a2575f80fd5b505af11580156126b4573d5f803e3d5ffd5b50505050600182610140018181516126cc919061506a565b61ffff1690525060408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015612716573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061273a9190614d98565b6001600160a01b031663d625d758888460ff6040518463ffffffff1660e01b815260040161276a93929190615227565b5f604051808303815f87803b158015612781575f80fd5b505af1158015612793573d5f803e3d5ffd5b5050604080516001600160601b038b16815261ffff8a1660208201527f835aca3a92b79a82038b38ef30bc398955a23c24b64db0183839129d0772a4fb935001905060405180910390a1505050506127f760015f805160206159a183398151915255565b505050565b5f805f8051602061596183398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612868573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061288c91906154c8565b156128b85780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016115d8565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561290a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061292e91906154c8565b6129565760405163b9304b0d60e01b81526001600160a01b03841660048201526024016115d8565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa1580156129a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129cc9190614bf4565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f805160206159a1833981519152805460011901612a2657604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b60408051610200810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820181905261010082015261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081018290526101e0810182905281905f612ab7600c613c1d565b90508095508192505050836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612afd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b219190614d98565b60405163bd7d9d8560e01b81526001600160601b03871660048201529093506001600160a01b0384169063bd7d9d85906024015f60405180830381865afa158015612b6e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612b959190810190615550565b9150612ba4825f015182613cb9565b15612be057815160405163169efc1d60e11b81526001600160601b038088166004830152918216602482015290821660448201526064016115d8565b509193909250565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af4158015612c49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c6d91906154c8565b90505b92915050565b60208101516040516330b8415f60e01b81526001600160601b03821660048201525f91829182919073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612cd8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cfc91906154c8565b15612fac5785515f612d166001546001600160a01b031690565b60208901516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015612d68573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612d8f9190810190615397565b6020015160405163f0ea17c360e01b81526001600160601b03821660048201529091505f906001600160a01b038c169063f0ea17c3906024015f60405180830381865afa158015612de2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612e09919081019061525b565b604089015194975087949091506001600160a01b0316612ea7576001546001600160a01b0316604051631c5da14d60e11b81526001600160601b038c1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612e7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ea09190614d98565b9450612eaf565b876040015194505b6040516302d764c760e21b81526001600160601b03841660048201525f906001600160a01b038d1690630b5d931c9060240161020060405180830381865afa158015612efd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f21919061572f565b60608101516040516305deb8b760e01b815281516004820152602090910151602482015290915073__$58e11c6004c5796aaa8c56e718245e69a2$__906305deb8b790604401602060405180830381865af4158015612f82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fa691906154c8565b50505050505b509450945094915050565b5f612fc185613d03565b90506001600160a01b0381161561304b57604051631cf6f99160e11b81526001600160601b03808716600483015262ffffff86166024830152831660448201526001600160a01b0384811660648301528216906339edf322906084015f604051808303815f87803b158015613034575f80fd5b505af1158015613046573d5f803e3d5ffd5b505050505b5050505050565b60015f805160206159a183398151915255565b610153613e16565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820181905260a082015260c081019190915260405163078ae93560e41b81526001600160601b038516600482015261ffff841660248201525f906001600160a01b038716906378ae935090604401602060405180830381865afa1580156130fb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061311f91906154ad565b905060ff8082169084161461316d576040516398b9e22f60e01b81526001600160601b038616600482015261ffff8516602482015260ff8085166044830152821660648201526084016115d8565b60405163a7ef3d2160e01b81526001600160601b038616600482015261ffff851660248201526001600160a01b0387169063a7ef3d21906044015f60405180830381865afa1580156131c1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526131e89190810190614e89565b9695505050505050565b5f805f806131ff89612a2c565b60405163a7ef3d2160e01b81526001600160601b038d16600482015261ffff8c16602482015292955090935091505f906001600160a01b0384169063a7ef3d21906044015f60405180830381865afa15801561325d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526132849190810190614e89565b60405163078ae93560e41b81526001600160601b038c16600482015261ffff8b1660248201529091505f906001600160a01b038516906378ae935090604401602060405180830381865afa1580156132de573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061330291906154ad565b90505f8260400151600161331691906157f0565b60405163d5b5ee5d60e01b815261ffff8d16600482015260ff8216602482015290915073__$0f9396e6447a4be57af83e53f51d234633$__9063d5b5ee5d90604401602060405180830381865af4158015613373573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133979190614bc9565b9650856001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133f99190614d98565b6040805160a0810191829052636f2f88d160e11b90915262ffffff891660a48201526001600160a01b03919091169063d6c08df7908e908a908073__$0f9396e6447a4be57af83e53f51d234633$__63de5f11a260c48301602060405180830381865af415801561346c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134909190614e55565b61ffff1681526020018f6001600160601b031681526020018e6001600160a01b031681526020018d815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613504573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135289190614d7d565b64ffffffffff168152506040518463ffffffff1660e01b815260040161355093929190615809565b5f604051808303815f87803b158015613567575f80fd5b505af1158015613579573d5f803e3d5ffd5b5050505060018360400181815161359091906157f0565b60ff16905250606083018051600191906135ab9083906157f0565b60ff1690525060408051631a99b41b60e31b815290516001600160a01b0388169163d4cda0d89160048083019260209291908290030181865afa1580156135f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136189190614d98565b6001600160a01b031663fae5df9b8d8d8660ff6040518563ffffffff1660e01b815260040161364a949392919061503f565b5f604051808303815f87803b158015613661575f80fd5b505af1158015613673573d5f803e3d5ffd5b5050505061018084015160405163274acb3560e01b81526001600160601b039182166004820152908b16602482015273__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af41580156136dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137009190614bf4565b50856001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561373d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137619190614d98565b6001600160a01b031663d625d7588d8660ff6040518463ffffffff1660e01b815260040161379193929190615227565b5f604051808303815f87803b1580156137a8575f80fd5b505af11580156137ba573d5f803e3d5ffd5b505050507fb5856e4c56d591cac27a46c8f3f1a71928ac5d7488bd2037022030f04100118f8c888c604051613814939291906001600160601b03938416815262ffffff929092166020830152909116604082015260600190565b60405180910390a150505050505095945050505050565b5f805160206159c18339815191528054600160401b810460ff1615906001600160401b03165f8115801561385c5750825b90505f826001600160401b031660011480156138775750303b155b905081158015613885575080155b156138a35760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156138cd57845460ff60401b1916600160401b1785555b5f80878060200190518101906138e39190615835565b915091506138f282828b613e4e565b6001546001600160a01b031663d39e6043600f61390d6103cf565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af4158015613960573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061398491906154ad565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156139c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139eb9190614d98565b600280546001600160a01b0319166001600160a01b0392909216919091179055613a1b6370c0bb7760e01b613f8a565b5050831561155d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611554565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015613abf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c6d9190614bf4565b5f613aed84613d03565b90506001600160a01b03811615611bd157604051636321706f60e11b81526001600160601b03808616600483015261ffff85166024830152831660448201526001600160a01b0382169063c642e0de906064015f604051808303815f87803b158015613b57575f80fd5b505af1158015613b69573d5f803e3d5ffd5b5050505050505050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401612c2e565b5f8051602061598183398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f613c2661467f565b5f613c396001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015613c7d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ca19190614bf4565b9250613caf83856001613fb6565b9395909450915050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401612c2e565b5f80613d176001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03851660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015613d64573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d889190614d98565b604051635b5dd68960e11b81526001600160a01b038216600482015290925082915073__$fb599632d08395912d9d70eb2f0f93b5e2$__9063b6bbad1290602401602060405180830381865af4158015613de4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e0891906154c8565b613e10575f91505b50919050565b5f805160206159c183398151915254600160401b900460ff16613e4c57604051631afcd79f60e31b815260040160405180910390fd5b565b613e56613e16565b613e5e614253565b6001600160a01b03821615613e7b57613e7682614263565b613ef2565b5f613e866002614277565b9050613ef0816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ec7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613eeb9190614d98565b614263565b505b613f6e83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f32573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f569190614bf4565b60085f8560405180602001604052805f815250614378565b613f7e634a531f3360e01b613f8a565b6127f763daf9067160e01b5b613f92613e16565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b613fbe61467f565b5f80613fd26001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa15801561401f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526140469190810190615397565b925060ff8516600b146140a457604083015160ff86811691161461409f57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff808816602483015290911660448201526064016115d8565b614140565b6140bf83604001516140b4600c90565b60ff90811691161490565b806140d557506140d583604001516140b4600f90565b806140eb57506140eb83604001516140b4600e90565b80614101575061410183604001516140b4600d90565b61414057604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff808816602483015290911660448201526064016115d8565b61414d8360200151614413565b9150831561424a57816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015614191573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141b59190614d98565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa1580156141fd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061422191906154c8565b1561424a57604051637d71120960e11b81526001600160601b03871660048201526024016115d8565b50935093915050565b61425b613e16565b613e4c6144a3565b61426b613e16565b614274816144ab565b50565b5f61428a6001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156142ed573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061431191906154ad565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015614354573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c709190614d98565b614380613e16565b61438a82876144bc565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301613b6983826158a6565b5f6144266001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015614472573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526144999190810190615397565b6080015192915050565b613052613e16565b6144b3613e16565b61427481613bbd565b6144c4613e16565b6144cd81614532565b6144d561463a565b6001600160a01b0382166144fc5760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061596183398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b61453a613e16565b806001600160a01b03163b5f0361456f5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016115d8565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632f6da6f960e01b60048201526301ffc9a790602401602060405180830381865afa9250505080156145e9575060408051601f3d908101601f191682019092526145e6918101906154c8565b60015b6146115760405163fdeac91f60e01b81526001600160a01b03821660048201526024016115d8565b8061103a5760405163fdeac91f60e01b81526001600160a01b03831660048201526024016115d8565b614642613e16565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b5f602082840312156146cc575f80fd5b81356001600160e01b0319811681146122cf575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614759608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526114626101008401826146e3565b6001600160601b0381168114614274575f80fd5b62ffffff81168114614274575f80fd5b5f80604083850312156147d2575f80fd5b82356147dd8161479d565b915060208301356147ed816147b1565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b60405160a081016001600160401b038111828210171561482e5761482e6147f8565b60405290565b60405160e081016001600160401b038111828210171561482e5761482e6147f8565b60405160c081016001600160401b038111828210171561482e5761482e6147f8565b60405161020081016001600160401b038111828210171561482e5761482e6147f8565b60405161012081016001600160401b038111828210171561482e5761482e6147f8565b604051601f8201601f191681016001600160401b03811182821017156148e6576148e66147f8565b604052919050565b5f6001600160401b03821115614906576149066147f8565b50601f01601f191660200190565b5f82601f830112614923575f80fd5b8135614936614931826148ee565b6148be565b81815284602083860101111561494a575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614976575f80fd5b81356001600160401b0381111561498b575f80fd5b61146284828501614914565b61ffff81168114614274575f80fd5b5f80604083850312156149b7575f80fd5b82356149c28161479d565b915060208301356147ed81614997565b5f805f80608085870312156149e5575f80fd5b84356149f08161479d565b93506020850135614a0081614997565b92506040850135614a108161479d565b915060608501356001600160401b03811115614a2a575f80fd5b614a3687828801614914565b91505092959194509250565b6001600160a01b0381168114614274575f80fd5b5f8060408385031215614a67575f80fd5b8235614a7281614a42565b915060208301356001600160401b03811115614a8c575f80fd5b614a9885828601614914565b9150509250929050565b5f805f60608486031215614ab4575f80fd5b8335614abf8161479d565b92506020840135614acf8161479d565b915060408401356001600160401b03811115614ae9575f80fd5b614af586828701614914565b9150509250925092565b5f60208284031215614b0f575f80fd5b81356122cf81614a42565b5f805f805f60a08688031215614b2e575f80fd5b8535614b398161479d565b94506020860135614b4981614997565b93506040860135614b598161479d565b92506060860135614b6981614a42565b915060808601356001600160401b03811115614b83575f80fd5b614b8f88828901614914565b9150509295509295909350565b5f805f60608486031215614bae575f80fd5b8335614bb98161479d565b92506020840135614acf81614997565b5f60208284031215614bd9575f80fd5b81516122cf816147b1565b8051614bef8161479d565b919050565b5f60208284031215614c04575f80fd5b81516122cf8161479d565b600181811c90821680614c2357607f821691505b602082108103613e1057634e487b7160e01b5f52602260045260245ffd5b8051614bef81614997565b8051614bef81614a42565b5f82601f830112614c66575f80fd5b8151602083015f614c79614931846148ee565b9050828152858383011115614c8c575f80fd5b8282602083015e5f92810160200192909252509392505050565b64ffffffffff81168114614274575f80fd5b8051614bef81614ca6565b5f60208284031215614cd3575f80fd5b81516001600160401b03811115614ce8575f80fd5b820160a08185031215614cf9575f80fd5b614d0161480c565b8151614d0c81614997565b81526020820151614d1c8161479d565b60208201526040820151614d2f81614a42565b604082015260608201516001600160401b03811115614d4c575f80fd5b614d5886828501614c57565b60608301525060808201519150614d6e82614ca6565b60808101919091529392505050565b5f60208284031215614d8d575f80fd5b81516122cf81614ca6565b5f60208284031215614da8575f80fd5b81516122cf81614a42565b61ffff81511682526001600160601b03602082015116602083015260018060a01b0360408201511660408301525f606082015160a06060850152614dfa60a08501826146e3565b60809384015164ffffffffff16949093019390935250919050565b6001600160601b038516815262ffffff84166020820152608060408201525f614e416080830185614db3565b905060ff8316606083015295945050505050565b5f60208284031215614e65575f80fd5b81516122cf81614997565b60ff81168114614274575f80fd5b8051614bef81614e70565b5f60208284031215614e99575f80fd5b81516001600160401b03811115614eae575f80fd5b820160e08185031215614ebf575f80fd5b614ec7614834565b614ed082614be4565b8152614ede60208301614be4565b6020820152614eef60408301614e7e565b6040820152614f0060608301614e7e565b606082015260808201516001600160401b03811115614f1d575f80fd5b614f2986828501614c57565b60808301525060a08201516001600160401b03811115614f47575f80fd5b614f5386828501614c57565b60a083015250614f6560c08301614cb8565b60c0820152949350505050565b634e487b7160e01b5f52601160045260245ffd5b60ff8281168282160390811115612c7057612c70614f72565b6001600160601b0381511682526001600160601b0360208201511660208301525f6040820151614fd4604085018260ff169052565b506060820151614fe9606085018260ff169052565b50608082015160e0608085015261500360e08501826146e3565b905060a083015184820360a086015261501c82826146e3565b91505060c083015161503760c086018264ffffffffff169052565b509392505050565b6001600160601b038516815261ffff84166020820152608060408201525f614e416080830185614f9f565b61ffff8281168282160390811115612c7057612c70614f72565b80516001600160601b031682525f60208201516150ac60208501826001600160601b03169052565b5060408201516150c860408501826001600160c01b0319169052565b5060608201516150e460608501826001600160c01b0319169052565b5060808201516150ff60808501826001600160601b03169052565b5060a082015161511a60a08501826001600160601b03169052565b5060c082015161513360c085018264ffffffffff169052565b5060e082015161020060e085015261514f6102008501826146e3565b905061010083015184820361010086015261516a82826146e3565b91505061012083015161518461012086018261ffff169052565b5061014083015161519c61014086018261ffff169052565b506101608301516151b96101608601826001600160601b03169052565b506101808301516151d66101808601826001600160601b03169052565b506101a08301516151f16101a086018264ffffffffff169052565b506101c083015161520c6101c086018264ffffffffff169052565b506101e08301516150376101e086018264ffffffffff169052565b6001600160601b0384168152606060208201525f6152486060830185615084565b905060ff83166040830152949350505050565b5f6020828403121561526b575f80fd5b81516001600160401b03811115615280575f80fd5b820160c08185031215615291575f80fd5b615299614856565b81516001600160401b038111156152ae575f80fd5b6152ba86828501614c57565b8252506152c960208301614be4565b60208201526152da60408301614c4c565b60408201526152eb60608301614c4c565b60608201526152fc60808301614c4c565b608082015260a08201516001600160401b03811115615319575f80fd5b61532586828501614c57565b60a083015250949350505050565b6001600160a01b038681168252851660208201526001600160601b038416604082015260a0606082018190525f9061536d90830185615084565b90506001600160601b03831660808301529695505050505050565b80518015158114614bef575f80fd5b5f602082840312156153a7575f80fd5b81516001600160401b038111156153bc575f80fd5b820160e081850312156153cd575f80fd5b6153d5614834565b6153de82614be4565b81526153ec60208301614be4565b60208201526153fd60408301614e7e565b604082015261540e60608301615388565b606082015261541f60808301614c4c565b608082015261543060a08301614c4c565b60a082015260c08201516001600160401b0381111561544d575f80fd5b61545986828501614c57565b60c083015250949350505050565b6001600160401b0381168114614274575f80fd5b5f6020828403121561548b575f80fd5b81516122cf81615467565b5f602082840312156154a6575f80fd5b5051919050565b5f602082840312156154bd575f80fd5b81516122cf81614e70565b5f602082840312156154d8575f80fd5b612c6d82615388565b80820180821115612c7057612c70614f72565b61ffff8181168382160190811115612c7057612c70614f72565b6001600160601b038416815261ffff83166020820152606060408201525f61253e6060830184614f9f565b80516001600160c01b031981168114614bef575f80fd5b5f60208284031215615560575f80fd5b81516001600160401b03811115615575575f80fd5b82016102008185031215615587575f80fd5b61558f614878565b61559882614be4565b81526155a660208301614be4565b60208201526155b760408301615539565b60408201526155c860608301615539565b60608201526155d960808301614be4565b60808201526155ea60a08301614be4565b60a08201526155fb60c08301614cb8565b60c082015260e08201516001600160401b03811115615618575f80fd5b61562486828501614c57565b60e0830152506101008201516001600160401b03811115615643575f80fd5b61564f86828501614c57565b610100830152506156636101208301614c41565b6101208201526156766101408301614c41565b6101408201526156896101608301614be4565b61016082015261569c6101808301614be4565b6101808201526156af6101a08301614cb8565b6101a08201526156c26101c08301614cb8565b6101c08201526156d56101e08301614cb8565b6101e0820152949350505050565b5f604082840312156156f3575f80fd5b604080519081016001600160401b0381118282101715615715576157156147f8565b604052825181526020928301519281019290925250919050565b5f610200828403128015615741575f80fd5b5061574a61489b565b61575383614be4565b815261576160208401614be4565b602082015261577384604085016156e3565b604082015261578584608085016156e3565b60608201526157978460c085016156e3565b60808201526157aa8461010085016156e3565b60a08201526157bd8461014085016156e3565b60c08201526157d08461018085016156e3565b60e08201526157e3846101c085016156e3565b6101008201529392505050565b60ff8181168382160190811115612c7057612c70614f72565b6001600160601b038416815262ffffff83166020820152606060408201525f61253e6060830184614db3565b5f8060408385031215615846575f80fd5b825161585181614a42565b60208401519092506147ed81614a42565b601f8211156127f757805f5260205f20601f840160051c810160208510156158875750805b601f840160051c820191505b8181101561304b575f8155600101615893565b81516001600160401b038111156158bf576158bf6147f8565b6158d3816158cd8454614c0f565b84615862565b6020601f821160018114615905575f83156158ee5750848201515b5f19600385901b1c1916600184901b17845561304b565b5f84815260208120601f198516915b828110156159345787850151825560209485019460019092019101615914565b508482101561595157868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220fb13150fb3e6d3e4a9f1a7d0ca96359bd1116ea5f80737eeeeb09b1d938a58ac64736f6c634300081a0033",
970
+ "linkReferences": {
971
+ "contracts/shared/ContractLib.sol": {
972
+ "ContractLib": [
973
+ {
974
+ "length": 20,
975
+ "start": 16002
976
+ }
977
+ ]
978
+ },
979
+ "contracts/type/Amount.sol": {
980
+ "AmountLib": [
981
+ {
982
+ "length": 20,
983
+ "start": 2504
984
+ },
985
+ {
986
+ "length": 20,
987
+ "start": 3268
988
+ },
989
+ {
990
+ "length": 20,
991
+ "start": 5848
992
+ },
993
+ {
994
+ "length": 20,
995
+ "start": 5976
996
+ },
997
+ {
998
+ "length": 20,
999
+ "start": 7747
1000
+ },
1001
+ {
1002
+ "length": 20,
1003
+ "start": 7884
1004
+ },
1005
+ {
1006
+ "length": 20,
1007
+ "start": 8415
1008
+ },
1009
+ {
1010
+ "length": 20,
1011
+ "start": 11494
1012
+ },
1013
+ {
1014
+ "length": 20,
1015
+ "start": 11638
1016
+ },
1017
+ {
1018
+ "length": 20,
1019
+ "start": 14202
1020
+ },
1021
+ {
1022
+ "length": 20,
1023
+ "start": 15197
1024
+ },
1025
+ {
1026
+ "length": 20,
1027
+ "start": 15473
1028
+ }
1029
+ ]
1030
+ },
1031
+ "contracts/type/ClaimId.sol": {
1032
+ "ClaimIdLib": [
1033
+ {
1034
+ "length": 20,
1035
+ "start": 8134
1036
+ }
1037
+ ]
1038
+ },
1039
+ "contracts/type/Fee.sol": {
1040
+ "FeeLib": [
1041
+ {
1042
+ "length": 20,
1043
+ "start": 12320
1044
+ }
1045
+ ]
1046
+ },
1047
+ "contracts/type/NftId.sol": {
1048
+ "NftIdLib": [
1049
+ {
1050
+ "length": 20,
1051
+ "start": 1381
1052
+ },
1053
+ {
1054
+ "length": 20,
1055
+ "start": 9336
1056
+ },
1057
+ {
1058
+ "length": 20,
1059
+ "start": 10502
1060
+ },
1061
+ {
1062
+ "length": 20,
1063
+ "start": 15799
1064
+ }
1065
+ ]
1066
+ },
1067
+ "contracts/type/PayoutId.sol": {
1068
+ "PayoutIdLib": [
1069
+ {
1070
+ "length": 20,
1071
+ "start": 2230
1072
+ },
1073
+ {
1074
+ "length": 20,
1075
+ "start": 13329
1076
+ },
1077
+ {
1078
+ "length": 20,
1079
+ "start": 13579
1080
+ }
1081
+ ]
1082
+ },
1083
+ "contracts/type/RoleId.sol": {
1084
+ "RoleIdLib": [
1085
+ {
1086
+ "length": 20,
1087
+ "start": 6489
1088
+ }
1089
+ ]
1090
+ },
1091
+ "contracts/type/Timestamp.sol": {
1092
+ "TimestampLib": [
1093
+ {
1094
+ "length": 20,
1095
+ "start": 1888
1096
+ },
1097
+ {
1098
+ "length": 20,
1099
+ "start": 2687
1100
+ },
1101
+ {
1102
+ "length": 20,
1103
+ "start": 4752
1104
+ },
1105
+ {
1106
+ "length": 20,
1107
+ "start": 6145
1108
+ },
1109
+ {
1110
+ "length": 20,
1111
+ "start": 7405
1112
+ },
1113
+ {
1114
+ "length": 20,
1115
+ "start": 7508
1116
+ },
1117
+ {
1118
+ "length": 20,
1119
+ "start": 8580
1120
+ },
1121
+ {
1122
+ "length": 20,
1123
+ "start": 9811
1124
+ },
1125
+ {
1126
+ "length": 20,
1127
+ "start": 13717
1128
+ }
1129
+ ]
1130
+ },
1131
+ "contracts/type/Version.sol": {
1132
+ "VersionLib": [
1133
+ {
1134
+ "length": 20,
1135
+ "start": 1227
1136
+ },
1137
+ {
1138
+ "length": 20,
1139
+ "start": 4374
1140
+ },
1141
+ {
1142
+ "length": 20,
1143
+ "start": 14846
1144
+ }
1145
+ ],
1146
+ "VersionPartLib": [
1147
+ {
1148
+ "length": 20,
1149
+ "start": 6537
1150
+ },
1151
+ {
1152
+ "length": 20,
1153
+ "start": 17291
1154
+ }
1155
+ ]
1156
+ }
1157
+ },
1158
+ "deployedLinkReferences": {
1159
+ "contracts/shared/ContractLib.sol": {
1160
+ "ContractLib": [
1161
+ {
1162
+ "length": 20,
1163
+ "start": 15788
1164
+ }
1165
+ ]
1166
+ },
1167
+ "contracts/type/Amount.sol": {
1168
+ "AmountLib": [
1169
+ {
1170
+ "length": 20,
1171
+ "start": 2290
1172
+ },
1173
+ {
1174
+ "length": 20,
1175
+ "start": 3054
1176
+ },
1177
+ {
1178
+ "length": 20,
1179
+ "start": 5634
1180
+ },
1181
+ {
1182
+ "length": 20,
1183
+ "start": 5762
1184
+ },
1185
+ {
1186
+ "length": 20,
1187
+ "start": 7533
1188
+ },
1189
+ {
1190
+ "length": 20,
1191
+ "start": 7670
1192
+ },
1193
+ {
1194
+ "length": 20,
1195
+ "start": 8201
1196
+ },
1197
+ {
1198
+ "length": 20,
1199
+ "start": 11280
1200
+ },
1201
+ {
1202
+ "length": 20,
1203
+ "start": 11424
1204
+ },
1205
+ {
1206
+ "length": 20,
1207
+ "start": 13988
1208
+ },
1209
+ {
1210
+ "length": 20,
1211
+ "start": 14983
1212
+ },
1213
+ {
1214
+ "length": 20,
1215
+ "start": 15259
1216
+ }
1217
+ ]
1218
+ },
1219
+ "contracts/type/ClaimId.sol": {
1220
+ "ClaimIdLib": [
1221
+ {
1222
+ "length": 20,
1223
+ "start": 7920
1224
+ }
1225
+ ]
1226
+ },
1227
+ "contracts/type/Fee.sol": {
1228
+ "FeeLib": [
1229
+ {
1230
+ "length": 20,
1231
+ "start": 12106
1232
+ }
1233
+ ]
1234
+ },
1235
+ "contracts/type/NftId.sol": {
1236
+ "NftIdLib": [
1237
+ {
1238
+ "length": 20,
1239
+ "start": 1167
1240
+ },
1241
+ {
1242
+ "length": 20,
1243
+ "start": 9122
1244
+ },
1245
+ {
1246
+ "length": 20,
1247
+ "start": 10288
1248
+ },
1249
+ {
1250
+ "length": 20,
1251
+ "start": 15585
1252
+ }
1253
+ ]
1254
+ },
1255
+ "contracts/type/PayoutId.sol": {
1256
+ "PayoutIdLib": [
1257
+ {
1258
+ "length": 20,
1259
+ "start": 2016
1260
+ },
1261
+ {
1262
+ "length": 20,
1263
+ "start": 13115
1264
+ },
1265
+ {
1266
+ "length": 20,
1267
+ "start": 13365
1268
+ }
1269
+ ]
1270
+ },
1271
+ "contracts/type/RoleId.sol": {
1272
+ "RoleIdLib": [
1273
+ {
1274
+ "length": 20,
1275
+ "start": 6275
1276
+ }
1277
+ ]
1278
+ },
1279
+ "contracts/type/Timestamp.sol": {
1280
+ "TimestampLib": [
1281
+ {
1282
+ "length": 20,
1283
+ "start": 1674
1284
+ },
1285
+ {
1286
+ "length": 20,
1287
+ "start": 2473
1288
+ },
1289
+ {
1290
+ "length": 20,
1291
+ "start": 4538
1292
+ },
1293
+ {
1294
+ "length": 20,
1295
+ "start": 5931
1296
+ },
1297
+ {
1298
+ "length": 20,
1299
+ "start": 7191
1300
+ },
1301
+ {
1302
+ "length": 20,
1303
+ "start": 7294
1304
+ },
1305
+ {
1306
+ "length": 20,
1307
+ "start": 8366
1308
+ },
1309
+ {
1310
+ "length": 20,
1311
+ "start": 9597
1312
+ },
1313
+ {
1314
+ "length": 20,
1315
+ "start": 13503
1316
+ }
1317
+ ]
1318
+ },
1319
+ "contracts/type/Version.sol": {
1320
+ "VersionLib": [
1321
+ {
1322
+ "length": 20,
1323
+ "start": 1013
1324
+ },
1325
+ {
1326
+ "length": 20,
1327
+ "start": 4160
1328
+ },
1329
+ {
1330
+ "length": 20,
1331
+ "start": 14632
1332
+ }
1333
+ ],
1334
+ "VersionPartLib": [
1335
+ {
1336
+ "length": 20,
1337
+ "start": 6323
1338
+ },
1339
+ {
1340
+ "length": 20,
1341
+ "start": 17077
1342
+ }
1343
+ ]
1344
+ }
1345
+ }
1346
+ }