@etherisc/gif-next 0.0.2-f626d92-602 → 0.0.2-f62dcdf-553

Sign up to get free protection for your applications and to get access to all the features.
Files changed (673) hide show
  1. package/README.md +51 -5
  2. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  3. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1293 -0
  4. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  5. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
  6. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  7. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +414 -0
  8. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  9. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  10. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1060 -0
  12. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +295 -0
  14. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +167 -0
  16. package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.dbg.json +4 -0
  17. package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.json +1196 -0
  18. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +253 -0
  20. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  21. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1402 -0
  22. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +470 -0
  24. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  25. package/artifacts/contracts/{components → distribution}/Distribution.sol/Distribution.json +272 -553
  26. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1455 -0
  28. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +838 -0
  30. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  31. package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +252 -292
  32. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  33. package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +207 -336
  34. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  35. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  36. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  37. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1538 -0
  38. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  39. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +470 -0
  40. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  41. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2072 -0
  42. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +470 -0
  44. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  46. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  47. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1471 -0
  48. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  49. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1231 -0
  50. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  51. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1592 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2095 -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 +313 -2006
  58. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  59. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +178 -109
  60. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  61. package/artifacts/contracts/instance/Instance.sol/Instance.json +403 -2855
  62. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  63. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1653 -0
  64. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  65. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +561 -0
  66. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  67. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1078 -309
  68. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  69. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +240 -424
  70. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  71. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +140 -159
  72. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  73. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3678 -0
  74. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  75. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  76. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  77. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -54
  78. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  79. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  80. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  81. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  82. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  83. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
  84. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  85. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +8 -116
  86. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  87. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  88. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  89. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  90. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  91. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  92. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  93. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  94. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1039 -0
  95. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  96. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +478 -0
  97. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  98. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  99. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  100. package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → oracle/IOracleComponent.sol/IOracleComponent.json} +231 -273
  101. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  102. package/artifacts/contracts/{instance/service/IBundleService.sol/IBundleService.json → oracle/IOracleService.sol/IOracleService.json} +281 -231
  103. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  104. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +907 -0
  105. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  106. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +966 -0
  107. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  108. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +722 -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} +337 -414
  111. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  112. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +470 -0
  113. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  114. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1465 -0
  115. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  116. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +834 -0
  117. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  118. package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → pool/IBundleService.sol/IBundleService.json} +420 -304
  119. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  120. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +960 -0
  121. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  122. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1283 -0
  123. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  124. package/artifacts/contracts/{components/IPoolComponent.sol/IPoolComponent.json → pool/Pool.sol/Pool.json} +411 -377
  125. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  126. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1625 -0
  127. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  128. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +766 -0
  129. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  130. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +771 -0
  131. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  132. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +710 -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} +423 -417
  135. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  136. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +470 -0
  137. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  138. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1431 -0
  139. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  140. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +838 -0
  141. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  142. package/artifacts/contracts/{instance/service → product}/IApplicationService.sol/IApplicationService.json +91 -167
  143. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  144. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +942 -0
  145. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  146. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +925 -0
  147. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  148. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → product/IPricingService.sol/IPricingService.json} +201 -229
  149. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  150. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +1012 -0
  151. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  152. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +41 -62
  153. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  154. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1302 -0
  155. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  156. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +782 -0
  157. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  158. package/artifacts/contracts/product/PricingService.sol/PricingService.json +907 -0
  159. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  160. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +762 -0
  161. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  162. package/artifacts/contracts/product/Product.sol/Product.json +1131 -0
  163. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  164. package/artifacts/contracts/product/RiskService.sol/RiskService.json +622 -0
  165. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  166. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +694 -0
  167. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  168. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
  169. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  170. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +435 -29
  171. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  172. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +263 -110
  173. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  174. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -18
  175. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  176. package/artifacts/contracts/registry/Registry.sol/Registry.json +865 -68
  177. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  178. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1886 -0
  179. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  180. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +333 -245
  181. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  182. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +138 -95
  183. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  184. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  185. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  186. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1067 -0
  187. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  188. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
  189. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  190. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +316 -153
  191. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  192. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/Component.sol/Component.json} +314 -196
  193. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  194. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1768 -0
  195. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  196. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +814 -0
  197. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  198. package/artifacts/contracts/{instance/service/IClaimService.sol/IClaimService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +124 -125
  199. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  200. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +92 -0
  201. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  202. package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +142 -115
  203. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  204. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1335 -0
  205. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  206. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +723 -0
  207. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  208. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -14
  209. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  210. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  211. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  212. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +19 -10
  213. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  214. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
  215. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  216. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +28 -6
  217. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  218. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
  219. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  220. package/artifacts/contracts/shared/IService.sol/IService.json +46 -6
  221. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  222. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  223. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  224. package/artifacts/contracts/{components/Component.sol/Component.json → shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json} +239 -252
  225. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  226. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
  227. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  228. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  229. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  230. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  231. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  232. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +28 -70
  233. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  234. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
  235. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  236. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +69 -99
  237. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  238. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
  239. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  240. package/artifacts/contracts/shared/Service.sol/Service.json +58 -112
  241. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  242. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +382 -9
  243. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  244. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
  245. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  246. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1465 -0
  247. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  248. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1043 -0
  249. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  250. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
  251. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  252. package/artifacts/contracts/staking/Staking.sol/Staking.json +1888 -0
  253. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  254. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  255. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  256. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +776 -0
  257. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  258. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +587 -0
  259. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  260. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1249 -0
  261. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  262. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +710 -0
  263. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  264. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2283 -0
  265. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  266. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
  267. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  268. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  269. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  270. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  271. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  272. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  273. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  274. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  275. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  276. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  277. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  278. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  279. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  280. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  281. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  282. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  283. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  284. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  285. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  286. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  287. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  288. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  289. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  290. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  291. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  292. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  293. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  294. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +142 -0
  295. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  296. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
  297. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  298. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
  299. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  300. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  301. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  302. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  303. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  304. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  305. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  306. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  307. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  308. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  309. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  310. package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
  311. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  312. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -0
  313. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  314. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  315. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  316. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
  317. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  318. package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
  319. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  320. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +602 -0
  321. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  322. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  323. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  324. package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
  325. package/contracts/authorization/AccessAdmin.sol +596 -0
  326. package/contracts/authorization/AccessManagerCloneable.sol +16 -0
  327. package/contracts/authorization/Authorization.sol +289 -0
  328. package/contracts/authorization/IAccess.sol +49 -0
  329. package/contracts/authorization/IAccessAdmin.sol +137 -0
  330. package/contracts/authorization/IAuthorization.sol +60 -0
  331. package/contracts/authorization/IServiceAuthorization.sol +40 -0
  332. package/contracts/authorization/ReleaseAccessManager.sol +38 -0
  333. package/contracts/authorization/ServiceAuthorization.sol +106 -0
  334. package/contracts/distribution/BasicDistribution.sol +139 -0
  335. package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
  336. package/contracts/{components → distribution}/Distribution.sol +170 -165
  337. package/contracts/distribution/DistributionService.sol +355 -0
  338. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  339. package/contracts/distribution/IDistributionComponent.sol +52 -0
  340. package/contracts/{instance/service → distribution}/IDistributionService.sol +40 -38
  341. package/contracts/examples/fire/DamageLevel.sol +59 -0
  342. package/contracts/examples/fire/FirePool.sol +73 -0
  343. package/contracts/examples/fire/FirePoolAuthorization.sol +34 -0
  344. package/contracts/examples/fire/FireProduct.sol +415 -0
  345. package/contracts/examples/fire/FireProductAuthorization.sol +44 -0
  346. package/contracts/examples/fire/FireUSD.sol +26 -0
  347. package/contracts/examples/unpermissioned/SimpleDistribution.sol +50 -0
  348. package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
  349. package/contracts/examples/unpermissioned/SimplePool.sol +76 -0
  350. package/contracts/examples/unpermissioned/SimpleProduct.sol +351 -0
  351. package/contracts/instance/{BundleManager.sol → BundleSet.sol} +30 -31
  352. package/contracts/instance/IInstance.sol +41 -73
  353. package/contracts/instance/IInstanceService.sol +37 -37
  354. package/contracts/instance/Instance.sol +153 -248
  355. package/contracts/instance/InstanceAdmin.sol +277 -0
  356. package/contracts/instance/InstanceAuthorizationV3.sol +194 -0
  357. package/contracts/instance/InstanceReader.sol +264 -60
  358. package/contracts/instance/InstanceService.sol +259 -343
  359. package/contracts/instance/InstanceServiceManager.sol +14 -29
  360. package/contracts/instance/InstanceStore.sol +287 -0
  361. package/contracts/instance/base/BalanceStore.sol +123 -0
  362. package/contracts/instance/base/Cloneable.sol +28 -0
  363. package/contracts/instance/base/ObjectCounter.sol +21 -0
  364. package/contracts/instance/base/ObjectLifecycle.sol +111 -0
  365. package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +18 -21
  366. package/contracts/instance/module/IAccess.sol +4 -12
  367. package/contracts/instance/module/IBundle.sol +6 -9
  368. package/contracts/instance/module/IComponents.sol +26 -16
  369. package/contracts/instance/module/IDistribution.sol +6 -6
  370. package/contracts/instance/module/IPolicy.sol +47 -35
  371. package/contracts/instance/module/IRisk.sol +1 -1
  372. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  373. package/contracts/oracle/BasicOracle.sol +47 -0
  374. package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
  375. package/contracts/oracle/IOracle.sol +36 -0
  376. package/contracts/oracle/IOracleComponent.sol +33 -0
  377. package/contracts/oracle/IOracleService.sol +66 -0
  378. package/contracts/oracle/Oracle.sol +156 -0
  379. package/contracts/oracle/OracleService.sol +291 -0
  380. package/contracts/oracle/OracleServiceManager.sol +39 -0
  381. package/contracts/pool/BasicPool.sol +154 -0
  382. package/contracts/pool/BasicPoolAuthorization.sol +57 -0
  383. package/contracts/pool/BundleService.sol +493 -0
  384. package/contracts/pool/BundleServiceManager.sol +39 -0
  385. package/contracts/pool/IBundleService.sol +143 -0
  386. package/contracts/pool/IPoolComponent.sol +68 -0
  387. package/contracts/pool/IPoolService.sol +167 -0
  388. package/contracts/pool/Pool.sol +335 -0
  389. package/contracts/pool/PoolService.sol +544 -0
  390. package/contracts/pool/PoolServiceManager.sol +39 -0
  391. package/contracts/product/ApplicationService.sol +259 -0
  392. package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
  393. package/contracts/product/BasicProduct.sol +53 -0
  394. package/contracts/product/BasicProductAuthorization.sol +42 -0
  395. package/contracts/product/ClaimService.sol +612 -0
  396. package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
  397. package/contracts/{instance/service → product}/IApplicationService.sol +16 -35
  398. package/contracts/product/IClaimService.sol +123 -0
  399. package/contracts/product/IPolicyService.sol +80 -0
  400. package/contracts/product/IPricingService.sol +39 -0
  401. package/contracts/product/IProductComponent.sol +59 -0
  402. package/contracts/product/IRiskService.sol +33 -0
  403. package/contracts/product/PolicyService.sol +691 -0
  404. package/contracts/product/PolicyServiceManager.sol +39 -0
  405. package/contracts/product/PricingService.sol +300 -0
  406. package/contracts/product/PricingServiceManager.sol +39 -0
  407. package/contracts/product/Product.sol +455 -0
  408. package/contracts/product/RiskService.sol +96 -0
  409. package/contracts/product/RiskServiceManager.sol +39 -0
  410. package/contracts/registry/ChainNft.sol +75 -38
  411. package/contracts/registry/IRegistry.sol +96 -26
  412. package/contracts/registry/IRegistryService.sol +34 -40
  413. package/contracts/registry/ITransferInterceptor.sol +1 -2
  414. package/contracts/registry/Registry.sol +445 -195
  415. package/contracts/registry/RegistryAdmin.sol +448 -0
  416. package/contracts/registry/RegistryService.sol +87 -128
  417. package/contracts/registry/RegistryServiceManager.sol +23 -32
  418. package/contracts/registry/ReleaseLifecycle.sol +30 -0
  419. package/contracts/registry/ReleaseRegistry.sol +501 -0
  420. package/contracts/registry/ServiceAuthorizationV3.sol +194 -0
  421. package/contracts/registry/TokenRegistry.sol +261 -62
  422. package/contracts/shared/Component.sol +265 -0
  423. package/contracts/shared/ComponentService.sol +745 -0
  424. package/contracts/shared/ComponentServiceManager.sol +38 -0
  425. package/contracts/shared/ComponentVerifyingService.sol +126 -0
  426. package/contracts/shared/ContractLib.sol +38 -0
  427. package/contracts/shared/IComponent.sol +74 -0
  428. package/contracts/shared/IComponentService.sol +120 -0
  429. package/contracts/shared/IInstanceLinkedComponent.sol +41 -0
  430. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  431. package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
  432. package/contracts/shared/INftOwnable.sol +4 -2
  433. package/contracts/shared/IPolicyHolder.sol +23 -14
  434. package/contracts/shared/IRegisterable.sol +11 -0
  435. package/contracts/shared/IRegistryLinked.sol +0 -1
  436. package/contracts/shared/IService.sol +12 -3
  437. package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +4 -4
  438. package/contracts/shared/InstanceLinkedComponent.sol +213 -0
  439. package/contracts/shared/KeyValueStore.sol +131 -0
  440. package/contracts/shared/Lifecycle.sol +88 -0
  441. package/contracts/shared/NftIdSet.sol +65 -0
  442. package/contracts/shared/NftOwnable.sol +32 -25
  443. package/contracts/shared/PolicyHolder.sol +22 -41
  444. package/contracts/shared/Registerable.sol +32 -21
  445. package/contracts/shared/RegistryLinked.sol +3 -7
  446. package/contracts/shared/Service.sol +48 -36
  447. package/contracts/shared/TokenHandler.sol +115 -9
  448. package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
  449. package/contracts/staking/IStaking.sol +168 -0
  450. package/contracts/staking/IStakingService.sol +157 -0
  451. package/contracts/staking/StakeManagerLib.sol +224 -0
  452. package/contracts/staking/Staking.sol +497 -0
  453. package/contracts/staking/StakingLifecycle.sol +23 -0
  454. package/contracts/staking/StakingManager.sol +52 -0
  455. package/contracts/staking/StakingReader.sol +190 -0
  456. package/contracts/staking/StakingService.sol +407 -0
  457. package/contracts/staking/StakingServiceManager.sol +44 -0
  458. package/contracts/staking/StakingStore.sol +605 -0
  459. package/contracts/staking/TargetManagerLib.sol +211 -0
  460. package/contracts/{types → type}/AddressSet.sol +1 -1
  461. package/contracts/type/Amount.sol +150 -0
  462. package/contracts/{types → type}/Blocknumber.sol +26 -3
  463. package/contracts/{types → type}/ClaimId.sol +31 -3
  464. package/contracts/{types → type}/Fee.sol +24 -22
  465. package/contracts/{types → type}/NftId.sol +15 -16
  466. package/contracts/{types → type}/NftIdSet.sol +2 -2
  467. package/contracts/type/ObjectType.sol +276 -0
  468. package/contracts/type/PayoutId.sol +82 -0
  469. package/contracts/{types → type}/Referral.sol +2 -1
  470. package/contracts/type/RequestId.sol +75 -0
  471. package/contracts/{types → type}/RiskId.sol +16 -2
  472. package/contracts/type/RoleId.sol +162 -0
  473. package/contracts/type/Seconds.sol +101 -0
  474. package/contracts/type/Selector.sol +102 -0
  475. package/contracts/{types → type}/StateId.sol +47 -4
  476. package/contracts/type/String.sol +53 -0
  477. package/contracts/{types → type}/Timestamp.sol +21 -2
  478. package/contracts/{types → type}/UFixed.sol +38 -9
  479. package/contracts/{types → type}/Version.sol +4 -2
  480. package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
  481. package/contracts/{shared → upgradeability}/ProxyManager.sol +93 -30
  482. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  483. package/contracts/{shared → upgradeability}/Versionable.sol +3 -3
  484. package/package.json +9 -5
  485. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  486. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  487. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  488. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  489. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  490. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  491. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  492. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  493. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
  494. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
  495. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  496. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -778
  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 -1330
  500. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  501. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -256
  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 -1039
  514. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
  515. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -673
  516. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  517. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1231
  518. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  519. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -721
  520. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
  521. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -817
  522. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
  523. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -641
  524. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  525. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1798
  526. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  527. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -805
  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/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  532. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  533. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  534. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  535. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  536. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1092
  537. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  538. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -697
  539. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  540. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -1237
  541. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  542. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -661
  543. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  544. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -840
  545. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  546. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -653
  547. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  548. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  549. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  550. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -559
  551. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  552. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  553. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  554. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
  555. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  556. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  557. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
  558. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  559. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  560. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  561. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  562. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  563. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  564. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
  565. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  566. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  567. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  568. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -596
  569. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  570. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  571. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  572. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  573. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  574. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
  575. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  576. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  577. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  578. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  579. package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +0 -4
  580. package/artifacts/contracts/types/Amount.sol/AmountLib.json +0 -161
  581. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  582. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  583. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  584. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  585. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
  586. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
  587. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  588. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  589. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  590. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -288
  591. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  592. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  593. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  594. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
  595. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  596. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  597. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  598. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  599. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  600. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  601. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
  602. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
  603. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  604. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
  605. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  606. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  607. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  608. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  609. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
  610. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
  611. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  612. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  613. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  614. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -267
  615. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  616. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  617. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  618. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  619. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  620. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  621. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  622. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  623. package/contracts/components/Component.sol +0 -253
  624. package/contracts/components/IComponent.sol +0 -76
  625. package/contracts/components/IDistributionComponent.sol +0 -71
  626. package/contracts/components/IPoolComponent.sol +0 -113
  627. package/contracts/components/IProductComponent.sol +0 -40
  628. package/contracts/components/Pool.sol +0 -303
  629. package/contracts/components/Product.sol +0 -293
  630. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -13
  631. package/contracts/instance/Cloneable.sol +0 -51
  632. package/contracts/instance/InstanceAccessManager.sol +0 -527
  633. package/contracts/instance/base/ComponentService.sol +0 -121
  634. package/contracts/instance/base/KeyValueStore.sol +0 -180
  635. package/contracts/instance/base/Lifecycle.sol +0 -109
  636. package/contracts/instance/module/ISetup.sol +0 -33
  637. package/contracts/instance/module/ITreasury.sol +0 -23
  638. package/contracts/instance/service/ApplicationService.sol +0 -350
  639. package/contracts/instance/service/BundleService.sol +0 -431
  640. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  641. package/contracts/instance/service/ClaimService.sol +0 -151
  642. package/contracts/instance/service/DistributionService.sol +0 -435
  643. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  644. package/contracts/instance/service/IBundleService.sol +0 -93
  645. package/contracts/instance/service/IClaimService.sol +0 -61
  646. package/contracts/instance/service/IPolicyService.sol +0 -72
  647. package/contracts/instance/service/IPoolService.sol +0 -99
  648. package/contracts/instance/service/IProductService.sol +0 -40
  649. package/contracts/instance/service/PolicyService.sol +0 -362
  650. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  651. package/contracts/instance/service/PoolService.sol +0 -303
  652. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  653. package/contracts/instance/service/ProductService.sol +0 -210
  654. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  655. package/contracts/registry/RegistryAccessManager.sol +0 -216
  656. package/contracts/registry/ReleaseManager.sol +0 -324
  657. package/contracts/shared/ContractDeployerLib.sol +0 -72
  658. package/contracts/test/TestFee.sol +0 -25
  659. package/contracts/test/TestRegisterable.sol +0 -18
  660. package/contracts/test/TestRoleId.sol +0 -14
  661. package/contracts/test/TestService.sol +0 -25
  662. package/contracts/test/TestToken.sol +0 -26
  663. package/contracts/test/TestVersion.sol +0 -44
  664. package/contracts/test/TestVersionable.sol +0 -17
  665. package/contracts/types/Amount.sol +0 -60
  666. package/contracts/types/ChainId.sol +0 -38
  667. package/contracts/types/NumberId.sol +0 -52
  668. package/contracts/types/ObjectType.sol +0 -157
  669. package/contracts/types/PayoutId.sol +0 -54
  670. package/contracts/types/RoleId.sol +0 -97
  671. package/contracts/types/Seconds.sol +0 -54
  672. /package/contracts/{types → type}/DistributorType.sol +0 -0
  673. /package/contracts/{types → type}/Key32.sol +0 -0
@@ -1,1798 +0,0 @@
1
- {
2
- "_format": "hh-sol-artifact-1",
3
- "contractName": "DistributionService",
4
- "sourceName": "contracts/instance/service/DistributionService.sol",
5
- "abi": [
6
- {
7
- "inputs": [
8
- {
9
- "internalType": "address",
10
- "name": "authority",
11
- "type": "address"
12
- }
13
- ],
14
- "name": "AccessManagedInvalidAuthority",
15
- "type": "error"
16
- },
17
- {
18
- "inputs": [
19
- {
20
- "internalType": "address",
21
- "name": "caller",
22
- "type": "address"
23
- },
24
- {
25
- "internalType": "uint32",
26
- "name": "delay",
27
- "type": "uint32"
28
- }
29
- ],
30
- "name": "AccessManagedRequiredDelay",
31
- "type": "error"
32
- },
33
- {
34
- "inputs": [
35
- {
36
- "internalType": "address",
37
- "name": "caller",
38
- "type": "address"
39
- }
40
- ],
41
- "name": "AccessManagedUnauthorized",
42
- "type": "error"
43
- },
44
- {
45
- "inputs": [
46
- {
47
- "internalType": "address",
48
- "name": "component",
49
- "type": "address"
50
- }
51
- ],
52
- "name": "ErrorComponentServiceComponentLocked",
53
- "type": "error"
54
- },
55
- {
56
- "inputs": [
57
- {
58
- "internalType": "NftId",
59
- "name": "instanceNftId",
60
- "type": "uint96"
61
- },
62
- {
63
- "internalType": "RoleId",
64
- "name": "requiredRole",
65
- "type": "uint64"
66
- },
67
- {
68
- "internalType": "address",
69
- "name": "sender",
70
- "type": "address"
71
- }
72
- ],
73
- "name": "ErrorComponentServiceExpectedRoleMissing",
74
- "type": "error"
75
- },
76
- {
77
- "inputs": [
78
- {
79
- "internalType": "address",
80
- "name": "component",
81
- "type": "address"
82
- },
83
- {
84
- "internalType": "ObjectType",
85
- "name": "requiredType",
86
- "type": "uint8"
87
- },
88
- {
89
- "internalType": "ObjectType",
90
- "name": "componentType",
91
- "type": "uint8"
92
- }
93
- ],
94
- "name": "ErrorComponentServiceInvalidType",
95
- "type": "error"
96
- },
97
- {
98
- "inputs": [
99
- {
100
- "internalType": "address",
101
- "name": "component",
102
- "type": "address"
103
- }
104
- ],
105
- "name": "ErrorComponentServiceNotComponent",
106
- "type": "error"
107
- },
108
- {
109
- "inputs": [
110
- {
111
- "internalType": "address",
112
- "name": "component",
113
- "type": "address"
114
- },
115
- {
116
- "internalType": "address",
117
- "name": "initialOwner",
118
- "type": "address"
119
- },
120
- {
121
- "internalType": "address",
122
- "name": "sender",
123
- "type": "address"
124
- }
125
- ],
126
- "name": "ErrorComponentServiceSenderNotOwner",
127
- "type": "error"
128
- },
129
- {
130
- "inputs": [
131
- {
132
- "internalType": "address",
133
- "name": "caller",
134
- "type": "address"
135
- }
136
- ],
137
- "name": "ErrorDistributionServiceCallerNotRegistered",
138
- "type": "error"
139
- },
140
- {
141
- "inputs": [
142
- {
143
- "internalType": "address",
144
- "name": "target",
145
- "type": "address"
146
- }
147
- ],
148
- "name": "ErrorIAccessTargetLocked",
149
- "type": "error"
150
- },
151
- {
152
- "inputs": [
153
- {
154
- "internalType": "address",
155
- "name": "caller",
156
- "type": "address"
157
- }
158
- ],
159
- "name": "ErrorIDistributionServiceCallerNotDistributor",
160
- "type": "error"
161
- },
162
- {
163
- "inputs": [
164
- {
165
- "internalType": "uint256",
166
- "name": "commissionPercentage",
167
- "type": "uint256"
168
- },
169
- {
170
- "internalType": "uint256",
171
- "name": "maxCommissionPercentage",
172
- "type": "uint256"
173
- }
174
- ],
175
- "name": "ErrorIDistributionServiceCommissionTooHigh",
176
- "type": "error"
177
- },
178
- {
179
- "inputs": [
180
- {
181
- "internalType": "uint256",
182
- "name": "maxDiscountPercentage",
183
- "type": "uint256"
184
- },
185
- {
186
- "internalType": "uint256",
187
- "name": "discountPercentage",
188
- "type": "uint256"
189
- }
190
- ],
191
- "name": "ErrorIDistributionServiceDiscountTooHigh",
192
- "type": "error"
193
- },
194
- {
195
- "inputs": [
196
- {
197
- "internalType": "uint256",
198
- "name": "minDiscountPercentage",
199
- "type": "uint256"
200
- },
201
- {
202
- "internalType": "uint256",
203
- "name": "discountPercentage",
204
- "type": "uint256"
205
- }
206
- ],
207
- "name": "ErrorIDistributionServiceDiscountTooLow",
208
- "type": "error"
209
- },
210
- {
211
- "inputs": [
212
- {
213
- "internalType": "Timestamp",
214
- "name": "expiryAt",
215
- "type": "uint40"
216
- }
217
- ],
218
- "name": "ErrorIDistributionServiceExpirationInvalid",
219
- "type": "error"
220
- },
221
- {
222
- "inputs": [
223
- {
224
- "internalType": "uint256",
225
- "name": "maxReferralLifetime",
226
- "type": "uint256"
227
- },
228
- {
229
- "internalType": "uint256",
230
- "name": "expiryAt",
231
- "type": "uint256"
232
- }
233
- ],
234
- "name": "ErrorIDistributionServiceExpiryTooLong",
235
- "type": "error"
236
- },
237
- {
238
- "inputs": [
239
- {
240
- "internalType": "uint256",
241
- "name": "distributionFeeFixAmount",
242
- "type": "uint256"
243
- },
244
- {
245
- "internalType": "uint256",
246
- "name": "distributionFeeVarAmount",
247
- "type": "uint256"
248
- },
249
- {
250
- "internalType": "uint256",
251
- "name": "distributionOwnerFeeFixAmount",
252
- "type": "uint256"
253
- },
254
- {
255
- "internalType": "uint256",
256
- "name": "distributionOwnerFeeVarAmount",
257
- "type": "uint256"
258
- },
259
- {
260
- "internalType": "uint256",
261
- "name": "commissionAmount",
262
- "type": "uint256"
263
- },
264
- {
265
- "internalType": "uint256",
266
- "name": "discountAmount",
267
- "type": "uint256"
268
- }
269
- ],
270
- "name": "ErrorIDistributionServiceFeeCalculationMismatch",
271
- "type": "error"
272
- },
273
- {
274
- "inputs": [
275
- {
276
- "internalType": "uint256",
277
- "name": "transferredDistributionFeeAmount",
278
- "type": "uint256"
279
- },
280
- {
281
- "internalType": "uint256",
282
- "name": "expectedDistributionFeeAmount",
283
- "type": "uint256"
284
- }
285
- ],
286
- "name": "ErrorIDistributionServiceInvalidFeeTransferred",
287
- "type": "error"
288
- },
289
- {
290
- "inputs": [
291
- {
292
- "internalType": "string",
293
- "name": "code",
294
- "type": "string"
295
- }
296
- ],
297
- "name": "ErrorIDistributionServiceInvalidReferral",
298
- "type": "error"
299
- },
300
- {
301
- "inputs": [
302
- {
303
- "internalType": "ReferralId",
304
- "name": "referralId",
305
- "type": "bytes8"
306
- }
307
- ],
308
- "name": "ErrorIDistributionServiceInvalidReferralId",
309
- "type": "error"
310
- },
311
- {
312
- "inputs": [
313
- {
314
- "internalType": "uint256",
315
- "name": "maxDiscountPercentage",
316
- "type": "uint256"
317
- },
318
- {
319
- "internalType": "uint256",
320
- "name": "limit",
321
- "type": "uint256"
322
- }
323
- ],
324
- "name": "ErrorIDistributionServiceMaxDiscountTooHigh",
325
- "type": "error"
326
- },
327
- {
328
- "inputs": [
329
- {
330
- "internalType": "uint256",
331
- "name": "maxReferrals",
332
- "type": "uint256"
333
- }
334
- ],
335
- "name": "ErrorIDistributionServiceMaxReferralsExceeded",
336
- "type": "error"
337
- },
338
- {
339
- "inputs": [
340
- {
341
- "internalType": "uint256",
342
- "name": "minFee",
343
- "type": "uint256"
344
- },
345
- {
346
- "internalType": "uint256",
347
- "name": "limit",
348
- "type": "uint256"
349
- }
350
- ],
351
- "name": "ErrorIDistributionServiceMinFeeTooHigh",
352
- "type": "error"
353
- },
354
- {
355
- "inputs": [
356
- {
357
- "internalType": "NftId",
358
- "name": "nftId",
359
- "type": "uint96"
360
- },
361
- {
362
- "internalType": "NftId",
363
- "name": "parentNftId",
364
- "type": "uint96"
365
- }
366
- ],
367
- "name": "ErrorIDistributionServiceParentNftIdNotInstance",
368
- "type": "error"
369
- },
370
- {
371
- "inputs": [
372
- {
373
- "internalType": "NftId",
374
- "name": "distributionNftId",
375
- "type": "uint96"
376
- },
377
- {
378
- "internalType": "ReferralId",
379
- "name": "referralId",
380
- "type": "bytes8"
381
- }
382
- ],
383
- "name": "ErrorIDistributionServiceReferralInvalid",
384
- "type": "error"
385
- },
386
- {
387
- "inputs": [
388
- {
389
- "internalType": "NftId",
390
- "name": "nftId",
391
- "type": "uint96"
392
- }
393
- ],
394
- "name": "ErrorNftOwnableAlreadyLinked",
395
- "type": "error"
396
- },
397
- {
398
- "inputs": [
399
- {
400
- "internalType": "address",
401
- "name": "contractAddress",
402
- "type": "address"
403
- }
404
- ],
405
- "name": "ErrorNftOwnableContractNotRegistered",
406
- "type": "error"
407
- },
408
- {
409
- "inputs": [],
410
- "name": "ErrorNftOwnableInitialOwnerZero",
411
- "type": "error"
412
- },
413
- {
414
- "inputs": [
415
- {
416
- "internalType": "address",
417
- "name": "account",
418
- "type": "address"
419
- }
420
- ],
421
- "name": "ErrorNftOwnableNotOwner",
422
- "type": "error"
423
- },
424
- {
425
- "inputs": [
426
- {
427
- "internalType": "address",
428
- "name": "registryAddress",
429
- "type": "address"
430
- }
431
- ],
432
- "name": "ErrorNotRegistry",
433
- "type": "error"
434
- },
435
- {
436
- "inputs": [],
437
- "name": "InvalidInitialization",
438
- "type": "error"
439
- },
440
- {
441
- "inputs": [],
442
- "name": "NotInitializing",
443
- "type": "error"
444
- },
445
- {
446
- "anonymous": false,
447
- "inputs": [
448
- {
449
- "indexed": false,
450
- "internalType": "address",
451
- "name": "authority",
452
- "type": "address"
453
- }
454
- ],
455
- "name": "AuthorityUpdated",
456
- "type": "event"
457
- },
458
- {
459
- "anonymous": false,
460
- "inputs": [
461
- {
462
- "indexed": false,
463
- "internalType": "uint64",
464
- "name": "version",
465
- "type": "uint64"
466
- }
467
- ],
468
- "name": "Initialized",
469
- "type": "event"
470
- },
471
- {
472
- "inputs": [],
473
- "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
474
- "outputs": [
475
- {
476
- "internalType": "bytes32",
477
- "name": "",
478
- "type": "bytes32"
479
- }
480
- ],
481
- "stateMutability": "view",
482
- "type": "function"
483
- },
484
- {
485
- "inputs": [],
486
- "name": "REGISTERABLE_LOCATION_V1",
487
- "outputs": [
488
- {
489
- "internalType": "bytes32",
490
- "name": "",
491
- "type": "bytes32"
492
- }
493
- ],
494
- "stateMutability": "view",
495
- "type": "function"
496
- },
497
- {
498
- "inputs": [],
499
- "name": "authority",
500
- "outputs": [
501
- {
502
- "internalType": "address",
503
- "name": "",
504
- "type": "address"
505
- }
506
- ],
507
- "stateMutability": "view",
508
- "type": "function"
509
- },
510
- {
511
- "inputs": [
512
- {
513
- "internalType": "NftId",
514
- "name": "distributionNftId",
515
- "type": "uint96"
516
- },
517
- {
518
- "internalType": "ReferralId",
519
- "name": "referralId",
520
- "type": "bytes8"
521
- },
522
- {
523
- "components": [
524
- {
525
- "internalType": "uint256",
526
- "name": "netPremiumAmount",
527
- "type": "uint256"
528
- },
529
- {
530
- "internalType": "uint256",
531
- "name": "fullPremiumAmount",
532
- "type": "uint256"
533
- },
534
- {
535
- "internalType": "uint256",
536
- "name": "premiumAmount",
537
- "type": "uint256"
538
- },
539
- {
540
- "internalType": "uint256",
541
- "name": "productFeeFixAmount",
542
- "type": "uint256"
543
- },
544
- {
545
- "internalType": "uint256",
546
- "name": "poolFeeFixAmount",
547
- "type": "uint256"
548
- },
549
- {
550
- "internalType": "uint256",
551
- "name": "bundleFeeFixAmount",
552
- "type": "uint256"
553
- },
554
- {
555
- "internalType": "uint256",
556
- "name": "distributionFeeFixAmount",
557
- "type": "uint256"
558
- },
559
- {
560
- "internalType": "uint256",
561
- "name": "productFeeVarAmount",
562
- "type": "uint256"
563
- },
564
- {
565
- "internalType": "uint256",
566
- "name": "poolFeeVarAmount",
567
- "type": "uint256"
568
- },
569
- {
570
- "internalType": "uint256",
571
- "name": "bundleFeeVarAmount",
572
- "type": "uint256"
573
- },
574
- {
575
- "internalType": "uint256",
576
- "name": "distributionFeeVarAmount",
577
- "type": "uint256"
578
- },
579
- {
580
- "internalType": "uint256",
581
- "name": "distributionOwnerFeeFixAmount",
582
- "type": "uint256"
583
- },
584
- {
585
- "internalType": "uint256",
586
- "name": "distributionOwnerFeeVarAmount",
587
- "type": "uint256"
588
- },
589
- {
590
- "internalType": "uint256",
591
- "name": "commissionAmount",
592
- "type": "uint256"
593
- },
594
- {
595
- "internalType": "uint256",
596
- "name": "discountAmount",
597
- "type": "uint256"
598
- }
599
- ],
600
- "internalType": "struct IPolicy.Premium",
601
- "name": "premium",
602
- "type": "tuple"
603
- }
604
- ],
605
- "name": "calculateFeeAmount",
606
- "outputs": [
607
- {
608
- "components": [
609
- {
610
- "internalType": "uint256",
611
- "name": "netPremiumAmount",
612
- "type": "uint256"
613
- },
614
- {
615
- "internalType": "uint256",
616
- "name": "fullPremiumAmount",
617
- "type": "uint256"
618
- },
619
- {
620
- "internalType": "uint256",
621
- "name": "premiumAmount",
622
- "type": "uint256"
623
- },
624
- {
625
- "internalType": "uint256",
626
- "name": "productFeeFixAmount",
627
- "type": "uint256"
628
- },
629
- {
630
- "internalType": "uint256",
631
- "name": "poolFeeFixAmount",
632
- "type": "uint256"
633
- },
634
- {
635
- "internalType": "uint256",
636
- "name": "bundleFeeFixAmount",
637
- "type": "uint256"
638
- },
639
- {
640
- "internalType": "uint256",
641
- "name": "distributionFeeFixAmount",
642
- "type": "uint256"
643
- },
644
- {
645
- "internalType": "uint256",
646
- "name": "productFeeVarAmount",
647
- "type": "uint256"
648
- },
649
- {
650
- "internalType": "uint256",
651
- "name": "poolFeeVarAmount",
652
- "type": "uint256"
653
- },
654
- {
655
- "internalType": "uint256",
656
- "name": "bundleFeeVarAmount",
657
- "type": "uint256"
658
- },
659
- {
660
- "internalType": "uint256",
661
- "name": "distributionFeeVarAmount",
662
- "type": "uint256"
663
- },
664
- {
665
- "internalType": "uint256",
666
- "name": "distributionOwnerFeeFixAmount",
667
- "type": "uint256"
668
- },
669
- {
670
- "internalType": "uint256",
671
- "name": "distributionOwnerFeeVarAmount",
672
- "type": "uint256"
673
- },
674
- {
675
- "internalType": "uint256",
676
- "name": "commissionAmount",
677
- "type": "uint256"
678
- },
679
- {
680
- "internalType": "uint256",
681
- "name": "discountAmount",
682
- "type": "uint256"
683
- }
684
- ],
685
- "internalType": "struct IPolicy.Premium",
686
- "name": "finalPremium",
687
- "type": "tuple"
688
- }
689
- ],
690
- "stateMutability": "view",
691
- "type": "function"
692
- },
693
- {
694
- "inputs": [
695
- {
696
- "internalType": "address",
697
- "name": "distributor",
698
- "type": "address"
699
- },
700
- {
701
- "internalType": "DistributorType",
702
- "name": "distributorType",
703
- "type": "bytes8"
704
- },
705
- {
706
- "internalType": "bytes",
707
- "name": "data",
708
- "type": "bytes"
709
- }
710
- ],
711
- "name": "createDistributor",
712
- "outputs": [
713
- {
714
- "internalType": "NftId",
715
- "name": "distributorNftId",
716
- "type": "uint96"
717
- }
718
- ],
719
- "stateMutability": "nonpayable",
720
- "type": "function"
721
- },
722
- {
723
- "inputs": [
724
- {
725
- "internalType": "string",
726
- "name": "name",
727
- "type": "string"
728
- },
729
- {
730
- "internalType": "UFixed",
731
- "name": "minDiscountPercentage",
732
- "type": "uint256"
733
- },
734
- {
735
- "internalType": "UFixed",
736
- "name": "maxDiscountPercentage",
737
- "type": "uint256"
738
- },
739
- {
740
- "internalType": "UFixed",
741
- "name": "commissionPercentage",
742
- "type": "uint256"
743
- },
744
- {
745
- "internalType": "uint32",
746
- "name": "maxReferralCount",
747
- "type": "uint32"
748
- },
749
- {
750
- "internalType": "uint32",
751
- "name": "maxReferralLifetime",
752
- "type": "uint32"
753
- },
754
- {
755
- "internalType": "bool",
756
- "name": "allowSelfReferrals",
757
- "type": "bool"
758
- },
759
- {
760
- "internalType": "bool",
761
- "name": "allowRenewals",
762
- "type": "bool"
763
- },
764
- {
765
- "internalType": "bytes",
766
- "name": "data",
767
- "type": "bytes"
768
- }
769
- ],
770
- "name": "createDistributorType",
771
- "outputs": [
772
- {
773
- "internalType": "DistributorType",
774
- "name": "distributorType",
775
- "type": "bytes8"
776
- }
777
- ],
778
- "stateMutability": "nonpayable",
779
- "type": "function"
780
- },
781
- {
782
- "inputs": [
783
- {
784
- "internalType": "NftId",
785
- "name": "distributorNftId",
786
- "type": "uint96"
787
- },
788
- {
789
- "internalType": "string",
790
- "name": "code",
791
- "type": "string"
792
- },
793
- {
794
- "internalType": "UFixed",
795
- "name": "discountPercentage",
796
- "type": "uint256"
797
- },
798
- {
799
- "internalType": "uint32",
800
- "name": "maxReferrals",
801
- "type": "uint32"
802
- },
803
- {
804
- "internalType": "Timestamp",
805
- "name": "expiryAt",
806
- "type": "uint40"
807
- },
808
- {
809
- "internalType": "bytes",
810
- "name": "data",
811
- "type": "bytes"
812
- }
813
- ],
814
- "name": "createReferral",
815
- "outputs": [
816
- {
817
- "internalType": "ReferralId",
818
- "name": "referralId",
819
- "type": "bytes8"
820
- }
821
- ],
822
- "stateMutability": "nonpayable",
823
- "type": "function"
824
- },
825
- {
826
- "inputs": [],
827
- "name": "getDomain",
828
- "outputs": [
829
- {
830
- "internalType": "ObjectType",
831
- "name": "",
832
- "type": "uint8"
833
- }
834
- ],
835
- "stateMutability": "pure",
836
- "type": "function"
837
- },
838
- {
839
- "inputs": [],
840
- "name": "getInitialInfo",
841
- "outputs": [
842
- {
843
- "components": [
844
- {
845
- "internalType": "NftId",
846
- "name": "nftId",
847
- "type": "uint96"
848
- },
849
- {
850
- "internalType": "NftId",
851
- "name": "parentNftId",
852
- "type": "uint96"
853
- },
854
- {
855
- "internalType": "ObjectType",
856
- "name": "objectType",
857
- "type": "uint8"
858
- },
859
- {
860
- "internalType": "bool",
861
- "name": "isInterceptor",
862
- "type": "bool"
863
- },
864
- {
865
- "internalType": "address",
866
- "name": "objectAddress",
867
- "type": "address"
868
- },
869
- {
870
- "internalType": "address",
871
- "name": "initialOwner",
872
- "type": "address"
873
- },
874
- {
875
- "internalType": "bytes",
876
- "name": "data",
877
- "type": "bytes"
878
- }
879
- ],
880
- "internalType": "struct IRegistry.ObjectInfo",
881
- "name": "info",
882
- "type": "tuple"
883
- }
884
- ],
885
- "stateMutability": "view",
886
- "type": "function"
887
- },
888
- {
889
- "inputs": [],
890
- "name": "getInstanceService",
891
- "outputs": [
892
- {
893
- "internalType": "contract InstanceService",
894
- "name": "",
895
- "type": "address"
896
- }
897
- ],
898
- "stateMutability": "view",
899
- "type": "function"
900
- },
901
- {
902
- "inputs": [],
903
- "name": "getNftId",
904
- "outputs": [
905
- {
906
- "internalType": "NftId",
907
- "name": "",
908
- "type": "uint96"
909
- }
910
- ],
911
- "stateMutability": "view",
912
- "type": "function"
913
- },
914
- {
915
- "inputs": [],
916
- "name": "getOwner",
917
- "outputs": [
918
- {
919
- "internalType": "address",
920
- "name": "",
921
- "type": "address"
922
- }
923
- ],
924
- "stateMutability": "view",
925
- "type": "function"
926
- },
927
- {
928
- "inputs": [],
929
- "name": "getRegistry",
930
- "outputs": [
931
- {
932
- "internalType": "contract IRegistry",
933
- "name": "",
934
- "type": "address"
935
- }
936
- ],
937
- "stateMutability": "view",
938
- "type": "function"
939
- },
940
- {
941
- "inputs": [],
942
- "name": "getRegistryAddress",
943
- "outputs": [
944
- {
945
- "internalType": "address",
946
- "name": "",
947
- "type": "address"
948
- }
949
- ],
950
- "stateMutability": "view",
951
- "type": "function"
952
- },
953
- {
954
- "inputs": [],
955
- "name": "getRegistryService",
956
- "outputs": [
957
- {
958
- "internalType": "contract IRegistryService",
959
- "name": "",
960
- "type": "address"
961
- }
962
- ],
963
- "stateMutability": "view",
964
- "type": "function"
965
- },
966
- {
967
- "inputs": [],
968
- "name": "getVersion",
969
- "outputs": [
970
- {
971
- "internalType": "Version",
972
- "name": "",
973
- "type": "uint24"
974
- }
975
- ],
976
- "stateMutability": "pure",
977
- "type": "function"
978
- },
979
- {
980
- "inputs": [],
981
- "name": "initializeERC165",
982
- "outputs": [],
983
- "stateMutability": "nonpayable",
984
- "type": "function"
985
- },
986
- {
987
- "inputs": [
988
- {
989
- "internalType": "address",
990
- "name": "initialOwner",
991
- "type": "address"
992
- },
993
- {
994
- "internalType": "address",
995
- "name": "registryAddress",
996
- "type": "address"
997
- }
998
- ],
999
- "name": "initializeNftOwnable",
1000
- "outputs": [],
1001
- "stateMutability": "nonpayable",
1002
- "type": "function"
1003
- },
1004
- {
1005
- "inputs": [
1006
- {
1007
- "internalType": "address",
1008
- "name": "registryAddress",
1009
- "type": "address"
1010
- },
1011
- {
1012
- "internalType": "NftId",
1013
- "name": "parentNftId",
1014
- "type": "uint96"
1015
- },
1016
- {
1017
- "internalType": "ObjectType",
1018
- "name": "objectType",
1019
- "type": "uint8"
1020
- },
1021
- {
1022
- "internalType": "bool",
1023
- "name": "isInterceptor",
1024
- "type": "bool"
1025
- },
1026
- {
1027
- "internalType": "address",
1028
- "name": "initialOwner",
1029
- "type": "address"
1030
- },
1031
- {
1032
- "internalType": "bytes",
1033
- "name": "registryData",
1034
- "type": "bytes"
1035
- }
1036
- ],
1037
- "name": "initializeRegisterable",
1038
- "outputs": [],
1039
- "stateMutability": "nonpayable",
1040
- "type": "function"
1041
- },
1042
- {
1043
- "inputs": [
1044
- {
1045
- "internalType": "address",
1046
- "name": "registryAddress",
1047
- "type": "address"
1048
- }
1049
- ],
1050
- "name": "initializeRegistryLinked",
1051
- "outputs": [],
1052
- "stateMutability": "nonpayable",
1053
- "type": "function"
1054
- },
1055
- {
1056
- "inputs": [
1057
- {
1058
- "internalType": "address",
1059
- "name": "registry",
1060
- "type": "address"
1061
- },
1062
- {
1063
- "internalType": "address",
1064
- "name": "authority",
1065
- "type": "address"
1066
- },
1067
- {
1068
- "internalType": "address",
1069
- "name": "initialOwner",
1070
- "type": "address"
1071
- }
1072
- ],
1073
- "name": "initializeService",
1074
- "outputs": [],
1075
- "stateMutability": "nonpayable",
1076
- "type": "function"
1077
- },
1078
- {
1079
- "inputs": [
1080
- {
1081
- "internalType": "address",
1082
- "name": "activatedBy",
1083
- "type": "address"
1084
- },
1085
- {
1086
- "internalType": "bytes",
1087
- "name": "data",
1088
- "type": "bytes"
1089
- }
1090
- ],
1091
- "name": "initializeVersionable",
1092
- "outputs": [],
1093
- "stateMutability": "nonpayable",
1094
- "type": "function"
1095
- },
1096
- {
1097
- "inputs": [],
1098
- "name": "isConsumingScheduledOp",
1099
- "outputs": [
1100
- {
1101
- "internalType": "bytes4",
1102
- "name": "",
1103
- "type": "bytes4"
1104
- }
1105
- ],
1106
- "stateMutability": "view",
1107
- "type": "function"
1108
- },
1109
- {
1110
- "inputs": [],
1111
- "name": "linkToRegisteredNftId",
1112
- "outputs": [],
1113
- "stateMutability": "nonpayable",
1114
- "type": "function"
1115
- },
1116
- {
1117
- "inputs": [
1118
- {
1119
- "internalType": "NftId",
1120
- "name": "distributionNftId",
1121
- "type": "uint96"
1122
- },
1123
- {
1124
- "internalType": "ReferralId",
1125
- "name": "referralId",
1126
- "type": "bytes8"
1127
- },
1128
- {
1129
- "components": [
1130
- {
1131
- "internalType": "uint256",
1132
- "name": "netPremiumAmount",
1133
- "type": "uint256"
1134
- },
1135
- {
1136
- "internalType": "uint256",
1137
- "name": "fullPremiumAmount",
1138
- "type": "uint256"
1139
- },
1140
- {
1141
- "internalType": "uint256",
1142
- "name": "premiumAmount",
1143
- "type": "uint256"
1144
- },
1145
- {
1146
- "internalType": "uint256",
1147
- "name": "productFeeFixAmount",
1148
- "type": "uint256"
1149
- },
1150
- {
1151
- "internalType": "uint256",
1152
- "name": "poolFeeFixAmount",
1153
- "type": "uint256"
1154
- },
1155
- {
1156
- "internalType": "uint256",
1157
- "name": "bundleFeeFixAmount",
1158
- "type": "uint256"
1159
- },
1160
- {
1161
- "internalType": "uint256",
1162
- "name": "distributionFeeFixAmount",
1163
- "type": "uint256"
1164
- },
1165
- {
1166
- "internalType": "uint256",
1167
- "name": "productFeeVarAmount",
1168
- "type": "uint256"
1169
- },
1170
- {
1171
- "internalType": "uint256",
1172
- "name": "poolFeeVarAmount",
1173
- "type": "uint256"
1174
- },
1175
- {
1176
- "internalType": "uint256",
1177
- "name": "bundleFeeVarAmount",
1178
- "type": "uint256"
1179
- },
1180
- {
1181
- "internalType": "uint256",
1182
- "name": "distributionFeeVarAmount",
1183
- "type": "uint256"
1184
- },
1185
- {
1186
- "internalType": "uint256",
1187
- "name": "distributionOwnerFeeFixAmount",
1188
- "type": "uint256"
1189
- },
1190
- {
1191
- "internalType": "uint256",
1192
- "name": "distributionOwnerFeeVarAmount",
1193
- "type": "uint256"
1194
- },
1195
- {
1196
- "internalType": "uint256",
1197
- "name": "commissionAmount",
1198
- "type": "uint256"
1199
- },
1200
- {
1201
- "internalType": "uint256",
1202
- "name": "discountAmount",
1203
- "type": "uint256"
1204
- }
1205
- ],
1206
- "internalType": "struct IPolicy.Premium",
1207
- "name": "premium",
1208
- "type": "tuple"
1209
- },
1210
- {
1211
- "internalType": "uint256",
1212
- "name": "transferredDistributionFeeAmount",
1213
- "type": "uint256"
1214
- }
1215
- ],
1216
- "name": "processSale",
1217
- "outputs": [],
1218
- "stateMutability": "nonpayable",
1219
- "type": "function"
1220
- },
1221
- {
1222
- "inputs": [
1223
- {
1224
- "internalType": "NftId",
1225
- "name": "distributionNftId",
1226
- "type": "uint96"
1227
- },
1228
- {
1229
- "internalType": "ReferralId",
1230
- "name": "referralId",
1231
- "type": "bytes8"
1232
- }
1233
- ],
1234
- "name": "referralIsValid",
1235
- "outputs": [
1236
- {
1237
- "internalType": "bool",
1238
- "name": "isValid",
1239
- "type": "bool"
1240
- }
1241
- ],
1242
- "stateMutability": "view",
1243
- "type": "function"
1244
- },
1245
- {
1246
- "inputs": [
1247
- {
1248
- "internalType": "address",
1249
- "name": "distributionAddress",
1250
- "type": "address"
1251
- }
1252
- ],
1253
- "name": "register",
1254
- "outputs": [
1255
- {
1256
- "internalType": "NftId",
1257
- "name": "distributionNftId",
1258
- "type": "uint96"
1259
- }
1260
- ],
1261
- "stateMutability": "nonpayable",
1262
- "type": "function"
1263
- },
1264
- {
1265
- "inputs": [
1266
- {
1267
- "internalType": "bytes4",
1268
- "name": "interfaceId",
1269
- "type": "bytes4"
1270
- }
1271
- ],
1272
- "name": "registerInterface",
1273
- "outputs": [],
1274
- "stateMutability": "nonpayable",
1275
- "type": "function"
1276
- },
1277
- {
1278
- "inputs": [
1279
- {
1280
- "internalType": "address",
1281
- "name": "newAuthority",
1282
- "type": "address"
1283
- }
1284
- ],
1285
- "name": "setAuthority",
1286
- "outputs": [],
1287
- "stateMutability": "nonpayable",
1288
- "type": "function"
1289
- },
1290
- {
1291
- "inputs": [
1292
- {
1293
- "components": [
1294
- {
1295
- "internalType": "UFixed",
1296
- "name": "fractionalFee",
1297
- "type": "uint256"
1298
- },
1299
- {
1300
- "internalType": "uint256",
1301
- "name": "fixedFee",
1302
- "type": "uint256"
1303
- }
1304
- ],
1305
- "internalType": "struct Fee",
1306
- "name": "minDistributionOwnerFee",
1307
- "type": "tuple"
1308
- },
1309
- {
1310
- "components": [
1311
- {
1312
- "internalType": "UFixed",
1313
- "name": "fractionalFee",
1314
- "type": "uint256"
1315
- },
1316
- {
1317
- "internalType": "uint256",
1318
- "name": "fixedFee",
1319
- "type": "uint256"
1320
- }
1321
- ],
1322
- "internalType": "struct Fee",
1323
- "name": "distributionFee",
1324
- "type": "tuple"
1325
- }
1326
- ],
1327
- "name": "setFees",
1328
- "outputs": [],
1329
- "stateMutability": "nonpayable",
1330
- "type": "function"
1331
- },
1332
- {
1333
- "inputs": [
1334
- {
1335
- "internalType": "bytes4",
1336
- "name": "interfaceId",
1337
- "type": "bytes4"
1338
- }
1339
- ],
1340
- "name": "supportsInterface",
1341
- "outputs": [
1342
- {
1343
- "internalType": "bool",
1344
- "name": "",
1345
- "type": "bool"
1346
- }
1347
- ],
1348
- "stateMutability": "view",
1349
- "type": "function"
1350
- },
1351
- {
1352
- "inputs": [
1353
- {
1354
- "internalType": "NftId",
1355
- "name": "distributorNftId",
1356
- "type": "uint96"
1357
- },
1358
- {
1359
- "internalType": "DistributorType",
1360
- "name": "distributorType",
1361
- "type": "bytes8"
1362
- },
1363
- {
1364
- "internalType": "bytes",
1365
- "name": "data",
1366
- "type": "bytes"
1367
- }
1368
- ],
1369
- "name": "updateDistributorType",
1370
- "outputs": [],
1371
- "stateMutability": "nonpayable",
1372
- "type": "function"
1373
- },
1374
- {
1375
- "inputs": [
1376
- {
1377
- "internalType": "bytes",
1378
- "name": "data",
1379
- "type": "bytes"
1380
- }
1381
- ],
1382
- "name": "upgradeVersionable",
1383
- "outputs": [],
1384
- "stateMutability": "nonpayable",
1385
- "type": "function"
1386
- }
1387
- ],
1388
- "bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615fb580620000e66000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c80635dcb3bae1161011a578063ada9652e116100ad578063caf4e3d41161007c578063caf4e3d414610553578063cc9fc59a1461055b578063d25f509514610563578063f21de1e814610433578063f7c34ee01461057657600080fd5b8063ada9652e146104fe578063b68d180914610513578063b6b412ba14610522578063bf7e214f1461053557600080fd5b8063893d20e8116100e9578063893d20e8146104af5780638dd2b781146104b75780638e32e979146104ca5780638fb36037146104dd57600080fd5b80635dcb3bae14610458578063644c45e01461046b578063675393bf146104895780637a9e5e4b1461049c57600080fd5b806327bb7a33116101925780633d683fd9116101615780633d683fd9146103e25780634420e486146103f557806349bb9e4b146104205780635ab1bd531461043357600080fd5b806327bb7a33146103945780632b5198b1146103a7578063329d6e74146103c757806336fc697e146103da57600080fd5b80631eff4b22116101ce5780631eff4b221461027d578063214cdb80146102b2578063219a3195146102c557806325d073841461038157600080fd5b806301ffc9a7146102005780630d8e6e2c146102425780630fec111c1461025e578063138461e014610273575b600080fd5b61022d61020e366004614a8a565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61024a610589565b60405162ffffff9091168152602001610239565b610266610613565b6040516102399190614b04565b61027b6107c7565b005b6102a47f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610239565b61027b6102c0366004614a8a565b6109ce565b6102d86102d3366004614d73565b6109fb565b6040516102399190815181526020808301519082015260408083015190820152606080830151908201526080808301519082015260a0808301519082015260c0808301519082015260e08083015190820152610100808301519082015261012080830151908201526101408083015190820152610160808301519082015261018080830151908201526101a080830151908201526101c091820151918101919091526101e00190565b61022d61038f366004614dbc565b611288565b61027b6103a2366004614eb4565b6115bb565b6103ba6103b5366004614f5e565b611647565b604051610239919061502a565b61027b6103d536600461503f565b611c01565b61027b611d4e565b61027b6103f0366004615073565b611d94565b6104086104033660046150d4565b611f01565b6040516001600160601b039091168152602001610239565b61027b61042e3660046150f1565b61239d565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610239565b610408610466366004615140565b61249c565b600080516020615f20833981519152546001600160601b0316610408565b61027b6104973660046150d4565b61263c565b61027b6104aa3660046150d4565b61274a565b6104406127e4565b6103ba6104c5366004615173565b61291b565b61027b6104d836600461520d565b6131aa565b6104e56133e3565b6040516001600160e01b03199091168152602001610239565b6102a4600080516020615f2083398151915281565b60405160788152602001610239565b61027b610530366004615288565b61341b565b600080516020615f40833981519152546001600160a01b0316610440565b6104406136a1565b6104406136ad565b61027b6105713660046152bd565b6136b9565b61027b61058436600461530f565b613c0c565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156105ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060e919061533d565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b909104161515918101919091526001820180549192916060840191906106c390615362565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef90615362565b801561073c5780601f106107115761010080835404028352916020019161073c565b820191906000526020600020905b81548152906001019060200180831161071f57829003601f168201915b50505050508152505090506040518060e0016040528061075a600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016107ab6127e4565b6001600160a01b03168152602001826060015181525091505090565b6000600080516020615f2083398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610836573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085a91906153a7565b1561088b5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061089e6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156108e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090a91906153a7565b6109325760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610882565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610986573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109aa91906153cf565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6109d6613c83565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610a74604051806101e001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6000610a7f85613cbc565b90506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ac1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae591906153ec565b604051639ad69c6760e01b81526001600160601b03881660048201529091506000906001600160a01b03831690639ad69c679060240161010060405180830381865afa158015610b39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5d9190615444565b6060810151604080830151885191516322f5db0f60e11b81529394509192600091610bf79173__$5ac3274b8cf1e01ea223bf093142af05b0$__916345ebb61e91610baf919060040190815260200190565b602060405180830381865af4158015610bcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf091906154e5565b8451613de5565b604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015610c48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6c91906154e5565b61014089018190526020890180519192508291610c8a908390615514565b905250610c978a8a611288565b610cc95750505060c0850151610160860152505050610140820151610180830152506020810151604082015280611281565b604051631d3be47760e01b81526000906001600160a01b03871690631d3be47790610cf8908d9060040161502a565b600060405180830381865afa158015610d15573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d3d9190810190615582565b80516040516313d8ebc960e11b81526001600160601b0390911660048201529091506000906001600160a01b038816906327b1d79290602401600060405180830381865afa158015610d93573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610dbb9190810190615660565b80516040516368322c6360e11b81529192506000916001600160a01b038a169163d06458c691610dee919060040161502a565b600060405180830381865afa158015610e0b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e339190810190615709565b8b516040516322f5db0f60e11b8152600481019190915290915060009073__$5ac3274b8cf1e01ea223bf093142af05b0$__906345ebb61e90602401602060405180830381865af4158015610e8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb091906154e5565b60608301516040516332292b2760e21b815273__$5ac3274b8cf1e01ea223bf093142af05b0$__9263c8a4ac9c92610ef392600401918252602082015260400190565b602060405180830381865af4158015610f10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3491906154e5565b604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015610f85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa991906154e5565b6101a08d0181905260208d01516040516322f5db0f60e11b815291925073__$5ac3274b8cf1e01ea223bf093142af05b0$__916345ebb61e91610ff29160040190815260200190565b602060405180830381865af415801561100f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103391906154e5565b60408086015190516332292b2760e21b815273__$5ac3274b8cf1e01ea223bf093142af05b0$__9263c8a4ac9c9261107692600401918252602082015260400190565b602060405180830381865af4158015611093573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b791906154e5565b604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015611108573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112c91906154e5565b6101c08d0181905260208701516101608e01526111498287615800565b6111539190615800565b6101808d01526101c08c015160208d015161116e9190615800565b60408d015250505050602082015161016089015110156111e75760c08801516101408901516101608a01516101808b01516101a08c01516101c08d015160405163a4d2313f60e01b81526004810196909652602486019490945260448501929092526064840152608483015260a482015260c401610882565b876101a00151886101800151896101c001516112039190615514565b61120d9190615514565b886101400151146112775760c08801516101408901516101608a01516101808b01516101a08c01516101c08d015160405163a4d2313f60e01b81526004810196909652602486019490945260448501929092526064840152608483015260a482015260c401610882565b8796505050505050505b9392505050565b60008061129484613cbc565b90506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fa91906153ec565b6001600160a01b0316631d3be477856040518263ffffffff1660e01b8152600401611325919061502a565b600060405180830381865afa158015611342573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261136a9190810190615582565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af41580156113c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ec91906153a7565b156113fc576000925050506115b5565b60a081015160405163790a38ad60e01b815264ffffffffff909116600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063790a38ad90602401602060405180830381865af4158015611458573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147c91906153a7565b8061158e575060a0810151604051638d38cd4b60e01b815264ffffffffff909116600482015273__$d53880c81dc91c20799140d711e5ab8718$__90638d38cd4b90602401602060405180830381865af41580156114de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150291906153a7565b801561158e575061158e73__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611555573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115799190615813565b8260a0015164ffffffffff9081169116111590565b92508280156115b05750806060015163ffffffff16816080015163ffffffff16105b925050505b92915050565b6115c3613c83565b6115cd8287613c0c565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b8615150217815590506001810161163d838261587e565b5050505050505050565b6000806000611654613dfa565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611698573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116bc91906153ec565b604051639ad69c6760e01b81526001600160601b03851660048201526001600160a01b039190911690639ad69c679060240161010060405180830381865afa15801561170c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117309190615444565b60408181015151905163771602f760e01b81526004810191909152602481018c905290915060009073__$5ac3274b8cf1e01ea223bf093142af05b0$__9063771602f790604401602060405180830381865af4158015611794573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b891906154e5565b60608301515160405163b67d77c560e01b815260048101919091526024810182905290915060009073__$5ac3274b8cf1e01ea223bf093142af05b0$__9063b67d77c590604401602060405180830381865af415801561181c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184091906154e5565b6040516321e5749b60e01b8152600481018f90526024810182905290915073__$5ac3274b8cf1e01ea223bf093142af05b0$__906321e5749b90604401602060405180830381865af415801561189a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118be91906153a7565b156119cd57604051632255341b60e11b8152600481018e905273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015611913573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193791906154e5565b604051632255341b60e11b81526004810183905273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015611987573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ab91906154e5565b60405163e2ed03dd60e01b815260048101929092526024820152604401610882565b50505073__$5906aa3f06c54ee09b434647963e1d1ed0$__63578c3039838e6040518363ffffffff1660e01b8152600401611a0992919061593d565b602060405180830381865af4158015611a26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a4a919061595f565b6040516355ee627560e01b815290935060009073__$5906aa3f06c54ee09b434647963e1d1ed0$__906355ee627590611a91906001600160c01b031988169060040161502a565b602060405180830381865af4158015611aae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad291906154e5565b604051630e29a66960e21b8152600481018290529091506001600160a01b038316906338a699a490602401602060405180830381865afa158015611b1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3e91906153a7565b611bf15760408051610120810182528e8152602081018e90528082018d9052606081018c905263ffffffff808c1660808301528a1660a082015288151560c082015287151560e0820152610100810187905290516304f2a7e960e31b81526001600160a01b038416906327953f4890611bbd908590859060040161597c565b600060405180830381600087803b158015611bd757600080fd5b505af1158015611beb573d6000803e3d6000fd5b50505050505b5050509998505050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c611c23610589565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611c63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c879190615a48565b600080516020615f608339815191528054600160401b900460ff1680611cba575080546001600160401b03808416911610155b15611cd85760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155611d028361407e565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b611d56613c83565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6000611d9e613dfa565b9150506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611de1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e0591906153ec565b6040516313d8ebc960e11b81526001600160601b03871660048201529091506000906001600160a01b038316906327b1d79290602401600060405180830381865afa158015611e58573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e809190810190615660565b6001600160c01b031986168152604080820186905251633ed2a38d60e21b81529091506001600160a01b0384169063fb4a8e3490611ec7908990859060ff90600401615abc565b600060405180830381600087803b158015611ee157600080fd5b505af1158015611ef5573d6000803e3d6000fd5b50505050505050505050565b600080808080611f1a866078611f15614086565b6140fe565b93509350935093506000611f2c6136a1565b604051638fbc2d8160e01b81526001600160a01b03878116600483015286811660248301529190911690638fbc2d81906044016000604051808303816000875af1158015611f7e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611fa69190810190615afc565b90506000879050806001600160a01b031663138461e06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611fe857600080fd5b505af1158015611ffc573d6000803e3d6000fd5b5050505081600001519650836001600160a01b0316639e90178c88836001600160a01b031663c200b8096040518163ffffffff1660e01b815260040161010060405180830381865afa158015612056573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061207a9190615444565b6040518363ffffffff1660e01b8152600401612097929190615c06565b600060405180830381600087803b1580156120b157600080fd5b505af11580156120c5573d6000803e3d6000fd5b5060009250600291506120d59050565b60405190808252806020026020018201604052801561210857816020015b60608152602001906001900390816120f35790505b5060408051600180825281830190925291925060208083019080368337019050508160008151811061213c5761213c615c24565b60209081029190910101526040805160028082526060820190925290816020016020820280368337019050508160018151811061217b5761217b615c24565b602002602001018190525063b6b412ba60e01b816000815181106121a1576121a1615c24565b60200260200101516000815181106121bb576121bb615c24565b6001600160e01b0319909216602092830291909101909101528051637c07103960e11b90829060019081106121f2576121f2615c24565b602002602001015160008151811061220c5761220c615c24565b6001600160e01b0319929092166020928302919091018201526040805160028082526060820183526000939192909183019080368337019050509050612250614086565b8160008151811061226357612263615c24565b60200260200101906001600160401b031690816001600160401b03168152505061228b6143ef565b8160018151811061229e5761229e615c24565b60200260200101906001600160401b031690816001600160401b0316815250506122c66136ad565b6001600160a01b0316636c6fbb28868c866001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015612314573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261233c9190810190615c3a565b86866040518663ffffffff1660e01b815260040161235e959493929190615cb2565b600060405180830381600087803b15801561237857600080fd5b505af115801561238c573d6000803e3d6000fd5b505050505050505050505050919050565b600080516020615f608339815191528054600160401b810460ff1615906001600160401b03166000811580156123d05750825b90506000826001600160401b031660011480156123ec5750303b155b9050811580156123fa575080155b156124185760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561244257845460ff60401b1916600160401b1785555b61244c878761442b565b831561249357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b60008060006124a9613dfa565b915091506124b56136a1565b6001600160a01b03166357a8fba76040518060e001604052806124d6600090565b6001600160601b03168152602001856001600160601b031681526020016124fb607a90565b60ff16815260200160011515815260200160006001600160a01b03168152602001896001600160a01b03168152602001604051806020016040528060008152508152506040518263ffffffff1660e01b815260040161255a9190614b04565b6020604051808303816000875af1158015612579573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061259d91906153cf565b6040805160a0810182526001600160c01b0319881681526001602082015280820187905260006060820181905260808201529051635338a4af60e11b8152919450906001600160a01b0383169063a671495e906126009087908590600401615d86565b600060405180830381600087803b15801561261a57600080fd5b505af115801561262e573d6000803e3d6000fd5b505050505050509392505050565b612644613c83565b806001600160a01b03163b60000361267a5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610882565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa9250505080156126f4575060408051601f3d908101601f191682019092526126f1918101906153a7565b60015b61271c5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610882565b806127455760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610882565b505b50565b3361276a600080516020615f40833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146127a55760405162d1953b60e31b81526001600160a01b0382166004820152602401610882565b816001600160a01b03163b6000036127db576040516361798f2f60e11b81526001600160a01b0383166004820152602401610882565b6127458261454b565b600080600080516020615f2083398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015612854573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061287891906153a7565b15612905576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156128db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128ff91906153ec565b91505090565b54600160601b90046001600160a01b0316919050565b6000806000612928613dfa565b9150915087516000036129505787604051634fad6a5360e11b81526004016108829190615da8565b60405163790a38ad60e01b815264ffffffffff8616600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063790a38ad90602401602060405180830381865af41580156129a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129ca91906153a7565b156129f15760405163df85467b60e01b815264ffffffffff86166004820152602401610882565b6000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a5591906153ec565b6040516313d8ebc960e11b81526001600160601b038c1660048201529091506000906001600160a01b038316906327b1d79290602401600060405180830381865afa158015612aa8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612ad09190810190615660565b80516040516368322c6360e11b8152919250906000906001600160a01b0385169063d06458c690612b0590859060040161502a565b600060405180830381865afa158015612b22573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612b4a9190810190615709565b90508963ffffffff16816080015163ffffffff161015612b8b576080810151604051636fcee12560e01b815263ffffffff9091166004820152602401610882565b60208101518b1015612ca7576020810151604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015612bed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c1191906154e5565b604051632255341b60e11b8152600481018d905273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015612c61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c8591906154e5565b6040516338a25a8b60e21b815260048101929092526024820152604401610882565b60408101518b1115612dc3576040818101519051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015612d09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d2d91906154e5565b604051632255341b60e11b8152600481018d905273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015612d7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612da191906154e5565b604051631e1ea4f360e31b815260048101929092526024820152604401610882565b8060a0015163ffffffff1673__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612e17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e3b9190615813565b604051633682752160e21b815264ffffffffff909116600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063da09d48490602401602060405180830381865af4158015612e92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eb691906154e5565b604051633682752160e21b815264ffffffffff8c16600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063da09d48490602401602060405180830381865af4158015612f0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f3091906154e5565b612f3a9190615800565b1115612fe65760a0810151604051633682752160e21b815264ffffffffff8b16600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063da09d48490602401602060405180830381865af4158015612f9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fbf91906154e5565b6040516331fa6ab160e11b815263ffffffff90921660048301526024820152604401610882565b73__$9f290d768183857d0249ab5bb54619c5ab$__633f093cd6878e6040518363ffffffff1660e01b815260040161301f92919061593d565b602060405180830381865af415801561303c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613060919061595f565b965060006040518060e001604052808f6001600160601b031681526020018e81526020018d81526020018c63ffffffff168152602001600063ffffffff1681526020018b64ffffffffff1681526020018a8152509050856001600160a01b03166354d747a8896001600160c01b03191673__$9f290d768183857d0249ab5bb54619c5ab$__6355ee627590916040518263ffffffff1660e01b8152600401613108919061502a565b602060405180830381865af4158015613125573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061314991906154e5565b836040518363ffffffff1660e01b8152600401613167929190615e37565b600060405180830381600087803b15801561318157600080fd5b505af1158015613195573d6000803e3d6000fd5b50505050505050505050509695505050505050565b6131b2613c83565b61323283846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061321891906153cf565b603c600085604051806020016040528060008152506115bb565b6001600160a01b0382161561324f5761324a826145ac565b6133be565b60006132636001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af41580156132c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132e79190615e50565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561332c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061335091906153ec565b90506133bc816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613393573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133b791906153ec565b6145ac565b505b6133ce634a531f3360e01b6109ce565b6133de63b68d180960e01b6109ce565b505050565b600080516020615f40833981519152805460009190600160a01b900460ff1661340d5760006128ff565b638fb3603760e01b91505090565b815181511015613535578151604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015613478573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061349c91906154e5565b8151604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af41580156134ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061351391906154e5565b604051631a9c6b0960e01b815260048101929092526024820152604401610882565b6000808061354360786145bd565b9250925092506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613589573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135ad91906153ec565b604051639ad69c6760e01b81526001600160601b03861660048201529091506000906001600160a01b03831690639ad69c679060240161010060405180830381865afa158015613601573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136259190615444565b6040818101899052606082018890525163f7b442d160e01b81529091506001600160a01b0384169063f7b442d190613666908890859060ff90600401615e6d565b600060405180830381600087803b15801561368057600080fd5b505af1158015613694573d6000803e3d6000fd5b5050505050505050505050565b600061060e60286147ed565b600061060e60466147ed565b604051637bc32ecf60e01b815260009073__$9f290d768183857d0249ab5bb54619c5ab$__90637bc32ecf906136fd906001600160c01b031988169060040161502a565b602060405180830381865af415801561371a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061373e91906153a7565b159050600061374d8686611288565b905081801561375a575080155b1561379357604051631cf73cd360e21b81526001600160601b03871660048201526001600160c01b031986166024820152604401610882565b600061379e87613cbc565b90506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061380491906153ec565b90506000816001600160a01b0316631d3be477896040518263ffffffff1660e01b8152600401613834919061502a565b600060405180830381865afa158015613851573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526138799190810190615582565b80516040516313d8ebc960e11b81526001600160601b0390911660048201529091506000906001600160a01b038416906327b1d79290602401600060405180830381865afa1580156138cf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526138f79190810190615660565b604051639ad69c6760e01b81526001600160601b038c1660048201529091506000906001600160a01b03851690639ad69c679060240161010060405180830381865afa15801561394b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061396f9190615444565b905060008961018001518a61016001516139899190615514565b6101a08b015190915061399c8183615514565b8a146139cf57896139ad8284615514565b60405163b9d36bcd60e01b815260048101929092526024820152604401610882565b8115613a4e57818360a0018181516139e79190615514565b9052506001600160a01b03871663f7b442d18e8560ff6040518463ffffffff1660e01b8152600401613a1b93929190615e6d565b600060405180830381600087803b158015613a3557600080fd5b505af1158015613a49573d6000803e3d6000fd5b505050505b8815613bfd57600185608001818151613a679190615e9d565b91509063ffffffff16908163ffffffff1681525050866001600160a01b031663cf947d208d6001600160c01b03191673__$9f290d768183857d0249ab5bb54619c5ab$__6355ee627590916040518263ffffffff1660e01b8152600401613ace919061502a565b602060405180830381865af4158015613aeb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b0f91906154e5565b8760ff6040518463ffffffff1660e01b8152600401613b3093929190615ec1565b600060405180830381600087803b158015613b4a57600080fd5b505af1158015613b5e573d6000803e3d6000fd5b505050506000811115613bfd578084606001818151613b7d9190615514565b90525060808401805160019190613b95908390615514565b9052508451604051633ed2a38d60e21b81526001600160a01b0389169163fb4a8e3491613bca9190889060ff90600401615abc565b600060405180830381600087803b158015613be457600080fd5b505af1158015613bf8573d6000803e3d6000fd5b505050505b50505050505050505050505050565b613c14613c83565b613c1d8161263c565b613c25611d4e565b6001600160a01b038216613c4c5760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020615f2083398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600080516020615f6083398151915254600160401b900460ff16613cba57604051631afcd79f60e31b815260040160405180910390fd5b565b600080613cd16001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613d20573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613d489190810190615afc565b6020015190506000613d626001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613db1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613dd99190810190615afc565b60800151949350505050565b60006112818383670de0b6b3a76400006148fa565b600080613e0f6001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015613e55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e7991906153cf565b604051630a4d29dd60e31b81526001600160601b038216600482015290925073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af4158015613ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ef891906153a7565b15613f185760405163752c00fd60e11b8152336004820152602401610882565b6000613f2c6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613f7b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613fa39190810190615afc565b9050613fc18160400151613fb5607890565b60ff9081169116141590565b15613fe157604051637ab07d8760e01b8152336004820152602401610882565b6000613ff56001546001600160a01b031690565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801561404a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526140729190810190615afc565b60800151939492505050565b6101fb613c83565b6040516368aebf7b60e01b81526002600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024015b602060405180830381865af41580156140da573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060e9190615a48565b6040516301ffc9a760e01b81526396c8ab0560e01b60048201528390339060009081906001600160a01b038516906301ffc9a790602401602060405180830381865afa158015614152573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061417691906153a7565b61419e576040516359bff0e360e11b81526001600160a01b0388166004820152602401610882565b6000846001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156141de573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526142069190810190615afc565b905061421d81604001518860ff9081169116141590565b1561425d576040808201519051634a2e948760e11b81526001600160a01b038a16600482015260ff808a1660248301529091166044820152606401610882565b60a08101516001600160a01b03858116908216146142af5760a0820151604051632b50a20960e21b81526001600160a01b03808c16600483015291821660248201529086166044820152606401610882565b816020015192506142bf836149e4565b9350836001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa1580156142ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061432391906153ec565b6040516368fc2b7760e11b81526001600160401b03891660048201526001600160a01b038781166024830152919091169063d1f856ee90604401602060405180830381865afa15801561437a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061439e91906153a7565b6143e457604051636af540d960e01b81526001600160601b03841660048201526001600160401b03881660248201526001600160a01b0386166044820152606401610882565b505093509350935093565b6040516368aebf7b60e01b81526108fc600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024016140bd565b600080516020615f608339815191528054600160401b810460ff1615906001600160401b031660008115801561445e5750825b90506000826001600160401b0316600114801561447a5750303b155b905081158015614488575080155b156144a65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156144d057845460ff60401b1916600160401b1785555b600080878060200190518101906144e79190615eda565b925090506144f78160008b6131aa565b61450763a6812b7960e01b6109ce565b5050831561249357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161248a565b600080516020615f4083398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6145b4613c83565b61274781614a79565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c08201526000806146096001546001600160a01b031690565b6040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa158015614650573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526146789190810190615afc565b925061468e83604001518660ff90811691161490565b6146d05760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b6044820152606401610882565b826000015193506146e483602001516149e4565b9150816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015614724573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061474891906153ec565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015614792573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147b691906153a7565b156147e557608083015160405163d53987e560e01b81526001600160a01b039091166004820152602401610882565b509193909250565b60006148016001546001600160a01b031690565b6001600160a01b031663d39e604383614818610589565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561486d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906148919190615e50565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156148d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b591906153ec565b60008080600019858709858702925082811083820303915050806000036149345783828161492a5761492a615f09565b0492505050611281565b80841161497b5760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b6044820152606401610882565b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b60006149f86001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015614a47573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052614a6f9190810190615afc565b6080015192915050565b614a81613c83565b6127478161454b565b600060208284031215614a9c57600080fd5b81356001600160e01b03198116811461128157600080fd5b60005b83811015614acf578181015183820152602001614ab7565b50506000910152565b60008151808452614af0816020860160208601614ab4565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a0830151614b6d60c08401826001600160a01b03169052565b5060c083015160e080840152614b87610100840182614ad8565b949350505050565b6001600160601b038116811461274757600080fd5b6001600160c01b03198116811461274757600080fd5b634e487b7160e01b600052604160045260246000fd5b6040516101e081016001600160401b0381118282101715614bf357614bf3614bba565b60405290565b604080519081016001600160401b0381118282101715614bf357614bf3614bba565b60405160e081016001600160401b0381118282101715614bf357614bf3614bba565b60405160a081016001600160401b0381118282101715614bf357614bf3614bba565b60405161012081016001600160401b0381118282101715614bf357614bf3614bba565b604051601f8201601f191681016001600160401b0381118282101715614caa57614caa614bba565b604052919050565b60006101e08284031215614cc557600080fd5b614ccd614bd0565b9050813581526020820135602082015260408201356040820152606082013560608201526080820135608082015260a082013560a082015260c082013560c082015260e082013560e08201526101008083013581830152506101208083013581830152506101408083013581830152506101608083013581830152506101808083013581830152506101a08083013581830152506101c080830135818301525092915050565b60008060006102208486031215614d8957600080fd5b8335614d9481614b8f565b92506020840135614da481614ba4565b9150614db38560408601614cb2565b90509250925092565b60008060408385031215614dcf57600080fd5b8235614dda81614b8f565b91506020830135614dea81614ba4565b809150509250929050565b6001600160a01b038116811461274757600080fd5b60ff8116811461274757600080fd5b801515811461274757600080fd5b8035614e3281614e19565b919050565b60006001600160401b03821115614e5057614e50614bba565b50601f01601f191660200190565b600082601f830112614e6f57600080fd5b8135614e82614e7d82614e37565b614c82565b818152846020838601011115614e9757600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c08789031215614ecd57600080fd5b8635614ed881614df5565b95506020870135614ee881614b8f565b94506040870135614ef881614e0a565b93506060870135614f0881614e19565b92506080870135614f1881614df5565b915060a08701356001600160401b03811115614f3357600080fd5b614f3f89828a01614e5e565b9150509295509295509295565b63ffffffff8116811461274757600080fd5b60008060008060008060008060006101208a8c031215614f7d57600080fd5b89356001600160401b0380821115614f9457600080fd5b614fa08d838e01614e5e565b9a5060208c0135995060408c0135985060608c0135975060808c01359150614fc782614f4c565b90955060a08b013590614fd982614f4c565b819550614fe860c08d01614e27565b9450614ff660e08d01614e27565b93506101008c013591508082111561500d57600080fd5b5061501a8c828d01614e5e565b9150509295985092959850929598565b6001600160c01b031991909116815260200190565b60006020828403121561505157600080fd5b81356001600160401b0381111561506757600080fd5b614b8784828501614e5e565b60008060006060848603121561508857600080fd5b833561509381614b8f565b925060208401356150a381614ba4565b915060408401356001600160401b038111156150be57600080fd5b6150ca86828701614e5e565b9150509250925092565b6000602082840312156150e657600080fd5b813561128181614df5565b6000806040838503121561510457600080fd5b823561510f81614df5565b915060208301356001600160401b0381111561512a57600080fd5b61513685828601614e5e565b9150509250929050565b60008060006060848603121561515557600080fd5b833561509381614df5565b64ffffffffff8116811461274757600080fd5b60008060008060008060c0878903121561518c57600080fd5b863561519781614b8f565b955060208701356001600160401b03808211156151b357600080fd5b6151bf8a838b01614e5e565b965060408901359550606089013591506151d882614f4c565b9093506080880135906151ea82615160565b90925060a0880135908082111561520057600080fd5b50614f3f89828a01614e5e565b60008060006060848603121561522257600080fd5b833561522d81614df5565b9250602084013561523d81614df5565b9150604084013561524d81614df5565b809150509250925092565b60006040828403121561526a57600080fd5b615272614bf9565b9050813581526020820135602082015292915050565b6000806080838503121561529b57600080fd5b6152a58484615258565b91506152b48460408501615258565b90509250929050565b60008060008061024085870312156152d457600080fd5b84356152df81614b8f565b935060208501356152ef81614ba4565b92506152fe8660408701614cb2565b939692955092936102200135925050565b6000806040838503121561532257600080fd5b823561532d81614df5565b91506020830135614dea81614df5565b60006020828403121561534f57600080fd5b815162ffffff8116811461128157600080fd5b600181811c9082168061537657607f821691505b60208210810361539657634e487b7160e01b600052602260045260246000fd5b50919050565b8051614e3281614e19565b6000602082840312156153b957600080fd5b815161128181614e19565b8051614e3281614b8f565b6000602082840312156153e157600080fd5b815161128181614b8f565b6000602082840312156153fe57600080fd5b815161128181614df5565b60006040828403121561541b57600080fd5b615423614bf9565b9050815181526020820151602082015292915050565b8051614e3281614df5565b6000610100828403121561545757600080fd5b60405160c081018181106001600160401b038211171561547957615479614bba565b604052825161548781614b8f565b8152602083015161549781614df5565b60208201526154a98460408501615409565b60408201526154bb8460808501615409565b606082015260c08301516154ce81614df5565b608082015260e0929092015160a083015250919050565b6000602082840312156154f757600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156115b5576115b56154fe565b600082601f83011261553857600080fd5b8151615546614e7d82614e37565b81815284602083860101111561555b57600080fd5b614b87826020830160208701614ab4565b8051614e3281614f4c565b8051614e3281615160565b60006020828403121561559457600080fd5b81516001600160401b03808211156155ab57600080fd5b9083019060e082860312156155bf57600080fd5b6155c7614c1b565b6155d0836153c4565b81526020830151828111156155e457600080fd5b6155f087828601615527565b6020830152506040830151604082015261560c6060840161556c565b606082015261561d6080840161556c565b608082015261562e60a08401615577565b60a082015260c08301518281111561564557600080fd5b61565187828601615527565b60c08301525095945050505050565b60006020828403121561567257600080fd5b81516001600160401b038082111561568957600080fd5b9083019060a0828603121561569d57600080fd5b6156a5614c3d565b82516156b081614ba4565b815260208301516156c081614e19565b60208201526040830151828111156156d757600080fd5b6156e387828601615527565b604083015250606083015160608201526080830151608082015280935050505092915050565b60006020828403121561571b57600080fd5b81516001600160401b038082111561573257600080fd5b90830190610120828603121561574757600080fd5b61574f614c5f565b82518281111561575e57600080fd5b61576a87828601615527565b8252506020830151602082015260408301516040820152606083015160608201526157976080840161556c565b60808201526157a860a0840161556c565b60a08201526157b960c0840161539c565b60c08201526157ca60e0840161539c565b60e082015261010080840151838111156157e357600080fd5b6157ef88828701615527565b918301919091525095945050505050565b818103818111156115b5576115b56154fe565b60006020828403121561582557600080fd5b815161128181615160565b601f8211156133de57600081815260208120601f850160051c810160208610156158575750805b601f850160051c820191505b8181101561587657828155600101615863565b505050505050565b81516001600160401b0381111561589757615897614bba565b6158ab816158a58454615362565b84615830565b602080601f8311600181146158e057600084156158c85750858301515b600019600386901b1c1916600185901b178555615876565b600085815260208120601f198616915b8281101561590f578886015182559484019460019091019084016158f0565b508582101561592d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160601b0383168152604060208201526000614b876040830184614ad8565b60006020828403121561597157600080fd5b815161128181614ba4565b82815260406020820152600082516101208060408501526159a1610160850183614ad8565b91506020850151606085015260408501516080850152606085015160a085015260808501516159d860c086018263ffffffff169052565b5060a085015163ffffffff811660e08601525060c0850151610100615a008187018315159052565b60e087015115159286019290925250840151603f1984830301610140850152615a298282614ad8565b9695505050505050565b6001600160401b038116811461274757600080fd5b600060208284031215615a5a57600080fd5b815161128181615a33565b6001600160401b0360c01b81511682526020810151151560208301526000604082015160a06040850152615a9c60a0850182614ad8565b905060608301516060850152608083015160808501528091505092915050565b6001600160601b0384168152606060208201526000615ade6060830185615a65565b905060ff83166040830152949350505050565b8051614e3281614e0a565b600060208284031215615b0e57600080fd5b81516001600160401b0380821115615b2557600080fd5b9083019060e08286031215615b3957600080fd5b615b41614c1b565b615b4a836153c4565b8152615b58602084016153c4565b6020820152615b6960408401615af1565b6040820152615b7a6060840161539c565b6060820152615b8b60808401615439565b608082015261562e60a08401615439565b80516001600160601b031682526020808201516001600160a01b0390811682850152604080840151805191860191909152918201516060850152606083015180516080860152602081015160a0860152915060808301511660c08401525060a0015160e090910152565b6001600160601b038316815261012081016112816020830184615b9c565b634e487b7160e01b600052603260045260246000fd5b600060208284031215615c4c57600080fd5b81516001600160401b03811115615c6257600080fd5b614b8784828501615527565b600081518084526020808501945080840160005b83811015615ca75781516001600160401b031687529582019590820190600101615c82565b509495945050505050565b6001600160601b03861681526000602060018060a01b0387168184015260a06040840152615ce360a0840187614ad8565b8381036060850152855180825282820190600581901b830184018489016000805b84811015615d6157868403601f19018652825180518086529089019089860190845b81811015615d4c5783516001600160e01b0319168352928b0192918b0191600101615d26565b50509689019694505091870191600101615d04565b5050508681036080880152615d768189615c6e565b9c9b505050505050505050505050565b6001600160601b0383168152604060208201526000614b876040830184615a65565b6020815260006112816020830184614ad8565b6001600160601b0381511682526000602082015160e06020850152615de360e0850182614ad8565b905060408301516040850152606083015163ffffffff8082166060870152806080860151166080870152505064ffffffffff60a08401511660a085015260c083015184820360c08601526115b08282614ad8565b828152604060208201526000614b876040830184615dbb565b600060208284031215615e6257600080fd5b815161128181614e0a565b6001600160601b03841681526101408101615e8b6020830185615b9c565b60ff8316610120830152949350505050565b63ffffffff818116838216019080821115615eba57615eba6154fe565b5092915050565b838152606060208201526000615ade6060830185615dbb565b60008060408385031215615eed57600080fd5b8251615ef881614df5565b6020840151909250614dea81614df5565b634e487b7160e01b600052601260045260246000fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212206ab6771be5e8f0acd052950a344f482106e0cb1dd6a7747811ebee066dbf934064736f6c63430008140033",
1389
- "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c80635dcb3bae1161011a578063ada9652e116100ad578063caf4e3d41161007c578063caf4e3d414610553578063cc9fc59a1461055b578063d25f509514610563578063f21de1e814610433578063f7c34ee01461057657600080fd5b8063ada9652e146104fe578063b68d180914610513578063b6b412ba14610522578063bf7e214f1461053557600080fd5b8063893d20e8116100e9578063893d20e8146104af5780638dd2b781146104b75780638e32e979146104ca5780638fb36037146104dd57600080fd5b80635dcb3bae14610458578063644c45e01461046b578063675393bf146104895780637a9e5e4b1461049c57600080fd5b806327bb7a33116101925780633d683fd9116101615780633d683fd9146103e25780634420e486146103f557806349bb9e4b146104205780635ab1bd531461043357600080fd5b806327bb7a33146103945780632b5198b1146103a7578063329d6e74146103c757806336fc697e146103da57600080fd5b80631eff4b22116101ce5780631eff4b221461027d578063214cdb80146102b2578063219a3195146102c557806325d073841461038157600080fd5b806301ffc9a7146102005780630d8e6e2c146102425780630fec111c1461025e578063138461e014610273575b600080fd5b61022d61020e366004614a8a565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61024a610589565b60405162ffffff9091168152602001610239565b610266610613565b6040516102399190614b04565b61027b6107c7565b005b6102a47f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610239565b61027b6102c0366004614a8a565b6109ce565b6102d86102d3366004614d73565b6109fb565b6040516102399190815181526020808301519082015260408083015190820152606080830151908201526080808301519082015260a0808301519082015260c0808301519082015260e08083015190820152610100808301519082015261012080830151908201526101408083015190820152610160808301519082015261018080830151908201526101a080830151908201526101c091820151918101919091526101e00190565b61022d61038f366004614dbc565b611288565b61027b6103a2366004614eb4565b6115bb565b6103ba6103b5366004614f5e565b611647565b604051610239919061502a565b61027b6103d536600461503f565b611c01565b61027b611d4e565b61027b6103f0366004615073565b611d94565b6104086104033660046150d4565b611f01565b6040516001600160601b039091168152602001610239565b61027b61042e3660046150f1565b61239d565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610239565b610408610466366004615140565b61249c565b600080516020615f20833981519152546001600160601b0316610408565b61027b6104973660046150d4565b61263c565b61027b6104aa3660046150d4565b61274a565b6104406127e4565b6103ba6104c5366004615173565b61291b565b61027b6104d836600461520d565b6131aa565b6104e56133e3565b6040516001600160e01b03199091168152602001610239565b6102a4600080516020615f2083398151915281565b60405160788152602001610239565b61027b610530366004615288565b61341b565b600080516020615f40833981519152546001600160a01b0316610440565b6104406136a1565b6104406136ad565b61027b6105713660046152bd565b6136b9565b61027b61058436600461530f565b613c0c565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156105ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060e919061533d565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b909104161515918101919091526001820180549192916060840191906106c390615362565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef90615362565b801561073c5780601f106107115761010080835404028352916020019161073c565b820191906000526020600020905b81548152906001019060200180831161071f57829003601f168201915b50505050508152505090506040518060e0016040528061075a600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016107ab6127e4565b6001600160a01b03168152602001826060015181525091505090565b6000600080516020615f2083398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610836573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085a91906153a7565b1561088b5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061089e6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156108e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090a91906153a7565b6109325760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610882565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610986573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109aa91906153cf565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6109d6613c83565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610a74604051806101e001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6000610a7f85613cbc565b90506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ac1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae591906153ec565b604051639ad69c6760e01b81526001600160601b03881660048201529091506000906001600160a01b03831690639ad69c679060240161010060405180830381865afa158015610b39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5d9190615444565b6060810151604080830151885191516322f5db0f60e11b81529394509192600091610bf79173__$5ac3274b8cf1e01ea223bf093142af05b0$__916345ebb61e91610baf919060040190815260200190565b602060405180830381865af4158015610bcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf091906154e5565b8451613de5565b604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015610c48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6c91906154e5565b61014089018190526020890180519192508291610c8a908390615514565b905250610c978a8a611288565b610cc95750505060c0850151610160860152505050610140820151610180830152506020810151604082015280611281565b604051631d3be47760e01b81526000906001600160a01b03871690631d3be47790610cf8908d9060040161502a565b600060405180830381865afa158015610d15573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d3d9190810190615582565b80516040516313d8ebc960e11b81526001600160601b0390911660048201529091506000906001600160a01b038816906327b1d79290602401600060405180830381865afa158015610d93573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610dbb9190810190615660565b80516040516368322c6360e11b81529192506000916001600160a01b038a169163d06458c691610dee919060040161502a565b600060405180830381865afa158015610e0b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e339190810190615709565b8b516040516322f5db0f60e11b8152600481019190915290915060009073__$5ac3274b8cf1e01ea223bf093142af05b0$__906345ebb61e90602401602060405180830381865af4158015610e8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb091906154e5565b60608301516040516332292b2760e21b815273__$5ac3274b8cf1e01ea223bf093142af05b0$__9263c8a4ac9c92610ef392600401918252602082015260400190565b602060405180830381865af4158015610f10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3491906154e5565b604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015610f85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa991906154e5565b6101a08d0181905260208d01516040516322f5db0f60e11b815291925073__$5ac3274b8cf1e01ea223bf093142af05b0$__916345ebb61e91610ff29160040190815260200190565b602060405180830381865af415801561100f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103391906154e5565b60408086015190516332292b2760e21b815273__$5ac3274b8cf1e01ea223bf093142af05b0$__9263c8a4ac9c9261107692600401918252602082015260400190565b602060405180830381865af4158015611093573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b791906154e5565b604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015611108573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112c91906154e5565b6101c08d0181905260208701516101608e01526111498287615800565b6111539190615800565b6101808d01526101c08c015160208d015161116e9190615800565b60408d015250505050602082015161016089015110156111e75760c08801516101408901516101608a01516101808b01516101a08c01516101c08d015160405163a4d2313f60e01b81526004810196909652602486019490945260448501929092526064840152608483015260a482015260c401610882565b876101a00151886101800151896101c001516112039190615514565b61120d9190615514565b886101400151146112775760c08801516101408901516101608a01516101808b01516101a08c01516101c08d015160405163a4d2313f60e01b81526004810196909652602486019490945260448501929092526064840152608483015260a482015260c401610882565b8796505050505050505b9392505050565b60008061129484613cbc565b90506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fa91906153ec565b6001600160a01b0316631d3be477856040518263ffffffff1660e01b8152600401611325919061502a565b600060405180830381865afa158015611342573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261136a9190810190615582565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af41580156113c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ec91906153a7565b156113fc576000925050506115b5565b60a081015160405163790a38ad60e01b815264ffffffffff909116600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063790a38ad90602401602060405180830381865af4158015611458573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147c91906153a7565b8061158e575060a0810151604051638d38cd4b60e01b815264ffffffffff909116600482015273__$d53880c81dc91c20799140d711e5ab8718$__90638d38cd4b90602401602060405180830381865af41580156114de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150291906153a7565b801561158e575061158e73__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611555573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115799190615813565b8260a0015164ffffffffff9081169116111590565b92508280156115b05750806060015163ffffffff16816080015163ffffffff16105b925050505b92915050565b6115c3613c83565b6115cd8287613c0c565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b8615150217815590506001810161163d838261587e565b5050505050505050565b6000806000611654613dfa565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611698573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116bc91906153ec565b604051639ad69c6760e01b81526001600160601b03851660048201526001600160a01b039190911690639ad69c679060240161010060405180830381865afa15801561170c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117309190615444565b60408181015151905163771602f760e01b81526004810191909152602481018c905290915060009073__$5ac3274b8cf1e01ea223bf093142af05b0$__9063771602f790604401602060405180830381865af4158015611794573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b891906154e5565b60608301515160405163b67d77c560e01b815260048101919091526024810182905290915060009073__$5ac3274b8cf1e01ea223bf093142af05b0$__9063b67d77c590604401602060405180830381865af415801561181c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184091906154e5565b6040516321e5749b60e01b8152600481018f90526024810182905290915073__$5ac3274b8cf1e01ea223bf093142af05b0$__906321e5749b90604401602060405180830381865af415801561189a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118be91906153a7565b156119cd57604051632255341b60e11b8152600481018e905273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015611913573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193791906154e5565b604051632255341b60e11b81526004810183905273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015611987573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ab91906154e5565b60405163e2ed03dd60e01b815260048101929092526024820152604401610882565b50505073__$5906aa3f06c54ee09b434647963e1d1ed0$__63578c3039838e6040518363ffffffff1660e01b8152600401611a0992919061593d565b602060405180830381865af4158015611a26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a4a919061595f565b6040516355ee627560e01b815290935060009073__$5906aa3f06c54ee09b434647963e1d1ed0$__906355ee627590611a91906001600160c01b031988169060040161502a565b602060405180830381865af4158015611aae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad291906154e5565b604051630e29a66960e21b8152600481018290529091506001600160a01b038316906338a699a490602401602060405180830381865afa158015611b1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3e91906153a7565b611bf15760408051610120810182528e8152602081018e90528082018d9052606081018c905263ffffffff808c1660808301528a1660a082015288151560c082015287151560e0820152610100810187905290516304f2a7e960e31b81526001600160a01b038416906327953f4890611bbd908590859060040161597c565b600060405180830381600087803b158015611bd757600080fd5b505af1158015611beb573d6000803e3d6000fd5b50505050505b5050509998505050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c611c23610589565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611c63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c879190615a48565b600080516020615f608339815191528054600160401b900460ff1680611cba575080546001600160401b03808416911610155b15611cd85760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155611d028361407e565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b611d56613c83565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6000611d9e613dfa565b9150506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611de1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e0591906153ec565b6040516313d8ebc960e11b81526001600160601b03871660048201529091506000906001600160a01b038316906327b1d79290602401600060405180830381865afa158015611e58573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e809190810190615660565b6001600160c01b031986168152604080820186905251633ed2a38d60e21b81529091506001600160a01b0384169063fb4a8e3490611ec7908990859060ff90600401615abc565b600060405180830381600087803b158015611ee157600080fd5b505af1158015611ef5573d6000803e3d6000fd5b50505050505050505050565b600080808080611f1a866078611f15614086565b6140fe565b93509350935093506000611f2c6136a1565b604051638fbc2d8160e01b81526001600160a01b03878116600483015286811660248301529190911690638fbc2d81906044016000604051808303816000875af1158015611f7e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611fa69190810190615afc565b90506000879050806001600160a01b031663138461e06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611fe857600080fd5b505af1158015611ffc573d6000803e3d6000fd5b5050505081600001519650836001600160a01b0316639e90178c88836001600160a01b031663c200b8096040518163ffffffff1660e01b815260040161010060405180830381865afa158015612056573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061207a9190615444565b6040518363ffffffff1660e01b8152600401612097929190615c06565b600060405180830381600087803b1580156120b157600080fd5b505af11580156120c5573d6000803e3d6000fd5b5060009250600291506120d59050565b60405190808252806020026020018201604052801561210857816020015b60608152602001906001900390816120f35790505b5060408051600180825281830190925291925060208083019080368337019050508160008151811061213c5761213c615c24565b60209081029190910101526040805160028082526060820190925290816020016020820280368337019050508160018151811061217b5761217b615c24565b602002602001018190525063b6b412ba60e01b816000815181106121a1576121a1615c24565b60200260200101516000815181106121bb576121bb615c24565b6001600160e01b0319909216602092830291909101909101528051637c07103960e11b90829060019081106121f2576121f2615c24565b602002602001015160008151811061220c5761220c615c24565b6001600160e01b0319929092166020928302919091018201526040805160028082526060820183526000939192909183019080368337019050509050612250614086565b8160008151811061226357612263615c24565b60200260200101906001600160401b031690816001600160401b03168152505061228b6143ef565b8160018151811061229e5761229e615c24565b60200260200101906001600160401b031690816001600160401b0316815250506122c66136ad565b6001600160a01b0316636c6fbb28868c866001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015612314573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261233c9190810190615c3a565b86866040518663ffffffff1660e01b815260040161235e959493929190615cb2565b600060405180830381600087803b15801561237857600080fd5b505af115801561238c573d6000803e3d6000fd5b505050505050505050505050919050565b600080516020615f608339815191528054600160401b810460ff1615906001600160401b03166000811580156123d05750825b90506000826001600160401b031660011480156123ec5750303b155b9050811580156123fa575080155b156124185760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561244257845460ff60401b1916600160401b1785555b61244c878761442b565b831561249357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b60008060006124a9613dfa565b915091506124b56136a1565b6001600160a01b03166357a8fba76040518060e001604052806124d6600090565b6001600160601b03168152602001856001600160601b031681526020016124fb607a90565b60ff16815260200160011515815260200160006001600160a01b03168152602001896001600160a01b03168152602001604051806020016040528060008152508152506040518263ffffffff1660e01b815260040161255a9190614b04565b6020604051808303816000875af1158015612579573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061259d91906153cf565b6040805160a0810182526001600160c01b0319881681526001602082015280820187905260006060820181905260808201529051635338a4af60e11b8152919450906001600160a01b0383169063a671495e906126009087908590600401615d86565b600060405180830381600087803b15801561261a57600080fd5b505af115801561262e573d6000803e3d6000fd5b505050505050509392505050565b612644613c83565b806001600160a01b03163b60000361267a5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610882565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa9250505080156126f4575060408051601f3d908101601f191682019092526126f1918101906153a7565b60015b61271c5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610882565b806127455760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610882565b505b50565b3361276a600080516020615f40833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146127a55760405162d1953b60e31b81526001600160a01b0382166004820152602401610882565b816001600160a01b03163b6000036127db576040516361798f2f60e11b81526001600160a01b0383166004820152602401610882565b6127458261454b565b600080600080516020615f2083398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015612854573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061287891906153a7565b15612905576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156128db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128ff91906153ec565b91505090565b54600160601b90046001600160a01b0316919050565b6000806000612928613dfa565b9150915087516000036129505787604051634fad6a5360e11b81526004016108829190615da8565b60405163790a38ad60e01b815264ffffffffff8616600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063790a38ad90602401602060405180830381865af41580156129a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129ca91906153a7565b156129f15760405163df85467b60e01b815264ffffffffff86166004820152602401610882565b6000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a5591906153ec565b6040516313d8ebc960e11b81526001600160601b038c1660048201529091506000906001600160a01b038316906327b1d79290602401600060405180830381865afa158015612aa8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612ad09190810190615660565b80516040516368322c6360e11b8152919250906000906001600160a01b0385169063d06458c690612b0590859060040161502a565b600060405180830381865afa158015612b22573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612b4a9190810190615709565b90508963ffffffff16816080015163ffffffff161015612b8b576080810151604051636fcee12560e01b815263ffffffff9091166004820152602401610882565b60208101518b1015612ca7576020810151604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015612bed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c1191906154e5565b604051632255341b60e11b8152600481018d905273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015612c61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c8591906154e5565b6040516338a25a8b60e21b815260048101929092526024820152604401610882565b60408101518b1115612dc3576040818101519051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015612d09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d2d91906154e5565b604051632255341b60e11b8152600481018d905273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015612d7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612da191906154e5565b604051631e1ea4f360e31b815260048101929092526024820152604401610882565b8060a0015163ffffffff1673__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612e17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e3b9190615813565b604051633682752160e21b815264ffffffffff909116600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063da09d48490602401602060405180830381865af4158015612e92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eb691906154e5565b604051633682752160e21b815264ffffffffff8c16600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063da09d48490602401602060405180830381865af4158015612f0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f3091906154e5565b612f3a9190615800565b1115612fe65760a0810151604051633682752160e21b815264ffffffffff8b16600482015273__$d53880c81dc91c20799140d711e5ab8718$__9063da09d48490602401602060405180830381865af4158015612f9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fbf91906154e5565b6040516331fa6ab160e11b815263ffffffff90921660048301526024820152604401610882565b73__$9f290d768183857d0249ab5bb54619c5ab$__633f093cd6878e6040518363ffffffff1660e01b815260040161301f92919061593d565b602060405180830381865af415801561303c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613060919061595f565b965060006040518060e001604052808f6001600160601b031681526020018e81526020018d81526020018c63ffffffff168152602001600063ffffffff1681526020018b64ffffffffff1681526020018a8152509050856001600160a01b03166354d747a8896001600160c01b03191673__$9f290d768183857d0249ab5bb54619c5ab$__6355ee627590916040518263ffffffff1660e01b8152600401613108919061502a565b602060405180830381865af4158015613125573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061314991906154e5565b836040518363ffffffff1660e01b8152600401613167929190615e37565b600060405180830381600087803b15801561318157600080fd5b505af1158015613195573d6000803e3d6000fd5b50505050505050505050509695505050505050565b6131b2613c83565b61323283846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061321891906153cf565b603c600085604051806020016040528060008152506115bb565b6001600160a01b0382161561324f5761324a826145ac565b6133be565b60006132636001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af41580156132c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132e79190615e50565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561332c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061335091906153ec565b90506133bc816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613393573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133b791906153ec565b6145ac565b505b6133ce634a531f3360e01b6109ce565b6133de63b68d180960e01b6109ce565b505050565b600080516020615f40833981519152805460009190600160a01b900460ff1661340d5760006128ff565b638fb3603760e01b91505090565b815181511015613535578151604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af4158015613478573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061349c91906154e5565b8151604051632255341b60e11b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__906344aa683690602401602060405180830381865af41580156134ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061351391906154e5565b604051631a9c6b0960e01b815260048101929092526024820152604401610882565b6000808061354360786145bd565b9250925092506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613589573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135ad91906153ec565b604051639ad69c6760e01b81526001600160601b03861660048201529091506000906001600160a01b03831690639ad69c679060240161010060405180830381865afa158015613601573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136259190615444565b6040818101899052606082018890525163f7b442d160e01b81529091506001600160a01b0384169063f7b442d190613666908890859060ff90600401615e6d565b600060405180830381600087803b15801561368057600080fd5b505af1158015613694573d6000803e3d6000fd5b5050505050505050505050565b600061060e60286147ed565b600061060e60466147ed565b604051637bc32ecf60e01b815260009073__$9f290d768183857d0249ab5bb54619c5ab$__90637bc32ecf906136fd906001600160c01b031988169060040161502a565b602060405180830381865af415801561371a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061373e91906153a7565b159050600061374d8686611288565b905081801561375a575080155b1561379357604051631cf73cd360e21b81526001600160601b03871660048201526001600160c01b031986166024820152604401610882565b600061379e87613cbc565b90506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061380491906153ec565b90506000816001600160a01b0316631d3be477896040518263ffffffff1660e01b8152600401613834919061502a565b600060405180830381865afa158015613851573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526138799190810190615582565b80516040516313d8ebc960e11b81526001600160601b0390911660048201529091506000906001600160a01b038416906327b1d79290602401600060405180830381865afa1580156138cf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526138f79190810190615660565b604051639ad69c6760e01b81526001600160601b038c1660048201529091506000906001600160a01b03851690639ad69c679060240161010060405180830381865afa15801561394b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061396f9190615444565b905060008961018001518a61016001516139899190615514565b6101a08b015190915061399c8183615514565b8a146139cf57896139ad8284615514565b60405163b9d36bcd60e01b815260048101929092526024820152604401610882565b8115613a4e57818360a0018181516139e79190615514565b9052506001600160a01b03871663f7b442d18e8560ff6040518463ffffffff1660e01b8152600401613a1b93929190615e6d565b600060405180830381600087803b158015613a3557600080fd5b505af1158015613a49573d6000803e3d6000fd5b505050505b8815613bfd57600185608001818151613a679190615e9d565b91509063ffffffff16908163ffffffff1681525050866001600160a01b031663cf947d208d6001600160c01b03191673__$9f290d768183857d0249ab5bb54619c5ab$__6355ee627590916040518263ffffffff1660e01b8152600401613ace919061502a565b602060405180830381865af4158015613aeb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b0f91906154e5565b8760ff6040518463ffffffff1660e01b8152600401613b3093929190615ec1565b600060405180830381600087803b158015613b4a57600080fd5b505af1158015613b5e573d6000803e3d6000fd5b505050506000811115613bfd578084606001818151613b7d9190615514565b90525060808401805160019190613b95908390615514565b9052508451604051633ed2a38d60e21b81526001600160a01b0389169163fb4a8e3491613bca9190889060ff90600401615abc565b600060405180830381600087803b158015613be457600080fd5b505af1158015613bf8573d6000803e3d6000fd5b505050505b50505050505050505050505050565b613c14613c83565b613c1d8161263c565b613c25611d4e565b6001600160a01b038216613c4c5760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020615f2083398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600080516020615f6083398151915254600160401b900460ff16613cba57604051631afcd79f60e31b815260040160405180910390fd5b565b600080613cd16001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613d20573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613d489190810190615afc565b6020015190506000613d626001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613db1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613dd99190810190615afc565b60800151949350505050565b60006112818383670de0b6b3a76400006148fa565b600080613e0f6001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015613e55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e7991906153cf565b604051630a4d29dd60e31b81526001600160601b038216600482015290925073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af4158015613ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ef891906153a7565b15613f185760405163752c00fd60e11b8152336004820152602401610882565b6000613f2c6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613f7b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613fa39190810190615afc565b9050613fc18160400151613fb5607890565b60ff9081169116141590565b15613fe157604051637ab07d8760e01b8152336004820152602401610882565b6000613ff56001546001600160a01b031690565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801561404a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526140729190810190615afc565b60800151939492505050565b6101fb613c83565b6040516368aebf7b60e01b81526002600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024015b602060405180830381865af41580156140da573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060e9190615a48565b6040516301ffc9a760e01b81526396c8ab0560e01b60048201528390339060009081906001600160a01b038516906301ffc9a790602401602060405180830381865afa158015614152573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061417691906153a7565b61419e576040516359bff0e360e11b81526001600160a01b0388166004820152602401610882565b6000846001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156141de573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526142069190810190615afc565b905061421d81604001518860ff9081169116141590565b1561425d576040808201519051634a2e948760e11b81526001600160a01b038a16600482015260ff808a1660248301529091166044820152606401610882565b60a08101516001600160a01b03858116908216146142af5760a0820151604051632b50a20960e21b81526001600160a01b03808c16600483015291821660248201529086166044820152606401610882565b816020015192506142bf836149e4565b9350836001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa1580156142ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061432391906153ec565b6040516368fc2b7760e11b81526001600160401b03891660048201526001600160a01b038781166024830152919091169063d1f856ee90604401602060405180830381865afa15801561437a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061439e91906153a7565b6143e457604051636af540d960e01b81526001600160601b03841660048201526001600160401b03881660248201526001600160a01b0386166044820152606401610882565b505093509350935093565b6040516368aebf7b60e01b81526108fc600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024016140bd565b600080516020615f608339815191528054600160401b810460ff1615906001600160401b031660008115801561445e5750825b90506000826001600160401b0316600114801561447a5750303b155b905081158015614488575080155b156144a65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156144d057845460ff60401b1916600160401b1785555b600080878060200190518101906144e79190615eda565b925090506144f78160008b6131aa565b61450763a6812b7960e01b6109ce565b5050831561249357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161248a565b600080516020615f4083398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6145b4613c83565b61274781614a79565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c08201526000806146096001546001600160a01b031690565b6040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa158015614650573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526146789190810190615afc565b925061468e83604001518660ff90811691161490565b6146d05760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b6044820152606401610882565b826000015193506146e483602001516149e4565b9150816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015614724573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061474891906153ec565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015614792573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147b691906153a7565b156147e557608083015160405163d53987e560e01b81526001600160a01b039091166004820152602401610882565b509193909250565b60006148016001546001600160a01b031690565b6001600160a01b031663d39e604383614818610589565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561486d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906148919190615e50565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156148d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b591906153ec565b60008080600019858709858702925082811083820303915050806000036149345783828161492a5761492a615f09565b0492505050611281565b80841161497b5760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b6044820152606401610882565b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b60006149f86001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015614a47573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052614a6f9190810190615afc565b6080015192915050565b614a81613c83565b6127478161454b565b600060208284031215614a9c57600080fd5b81356001600160e01b03198116811461128157600080fd5b60005b83811015614acf578181015183820152602001614ab7565b50506000910152565b60008151808452614af0816020860160208601614ab4565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a0830151614b6d60c08401826001600160a01b03169052565b5060c083015160e080840152614b87610100840182614ad8565b949350505050565b6001600160601b038116811461274757600080fd5b6001600160c01b03198116811461274757600080fd5b634e487b7160e01b600052604160045260246000fd5b6040516101e081016001600160401b0381118282101715614bf357614bf3614bba565b60405290565b604080519081016001600160401b0381118282101715614bf357614bf3614bba565b60405160e081016001600160401b0381118282101715614bf357614bf3614bba565b60405160a081016001600160401b0381118282101715614bf357614bf3614bba565b60405161012081016001600160401b0381118282101715614bf357614bf3614bba565b604051601f8201601f191681016001600160401b0381118282101715614caa57614caa614bba565b604052919050565b60006101e08284031215614cc557600080fd5b614ccd614bd0565b9050813581526020820135602082015260408201356040820152606082013560608201526080820135608082015260a082013560a082015260c082013560c082015260e082013560e08201526101008083013581830152506101208083013581830152506101408083013581830152506101608083013581830152506101808083013581830152506101a08083013581830152506101c080830135818301525092915050565b60008060006102208486031215614d8957600080fd5b8335614d9481614b8f565b92506020840135614da481614ba4565b9150614db38560408601614cb2565b90509250925092565b60008060408385031215614dcf57600080fd5b8235614dda81614b8f565b91506020830135614dea81614ba4565b809150509250929050565b6001600160a01b038116811461274757600080fd5b60ff8116811461274757600080fd5b801515811461274757600080fd5b8035614e3281614e19565b919050565b60006001600160401b03821115614e5057614e50614bba565b50601f01601f191660200190565b600082601f830112614e6f57600080fd5b8135614e82614e7d82614e37565b614c82565b818152846020838601011115614e9757600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c08789031215614ecd57600080fd5b8635614ed881614df5565b95506020870135614ee881614b8f565b94506040870135614ef881614e0a565b93506060870135614f0881614e19565b92506080870135614f1881614df5565b915060a08701356001600160401b03811115614f3357600080fd5b614f3f89828a01614e5e565b9150509295509295509295565b63ffffffff8116811461274757600080fd5b60008060008060008060008060006101208a8c031215614f7d57600080fd5b89356001600160401b0380821115614f9457600080fd5b614fa08d838e01614e5e565b9a5060208c0135995060408c0135985060608c0135975060808c01359150614fc782614f4c565b90955060a08b013590614fd982614f4c565b819550614fe860c08d01614e27565b9450614ff660e08d01614e27565b93506101008c013591508082111561500d57600080fd5b5061501a8c828d01614e5e565b9150509295985092959850929598565b6001600160c01b031991909116815260200190565b60006020828403121561505157600080fd5b81356001600160401b0381111561506757600080fd5b614b8784828501614e5e565b60008060006060848603121561508857600080fd5b833561509381614b8f565b925060208401356150a381614ba4565b915060408401356001600160401b038111156150be57600080fd5b6150ca86828701614e5e565b9150509250925092565b6000602082840312156150e657600080fd5b813561128181614df5565b6000806040838503121561510457600080fd5b823561510f81614df5565b915060208301356001600160401b0381111561512a57600080fd5b61513685828601614e5e565b9150509250929050565b60008060006060848603121561515557600080fd5b833561509381614df5565b64ffffffffff8116811461274757600080fd5b60008060008060008060c0878903121561518c57600080fd5b863561519781614b8f565b955060208701356001600160401b03808211156151b357600080fd5b6151bf8a838b01614e5e565b965060408901359550606089013591506151d882614f4c565b9093506080880135906151ea82615160565b90925060a0880135908082111561520057600080fd5b50614f3f89828a01614e5e565b60008060006060848603121561522257600080fd5b833561522d81614df5565b9250602084013561523d81614df5565b9150604084013561524d81614df5565b809150509250925092565b60006040828403121561526a57600080fd5b615272614bf9565b9050813581526020820135602082015292915050565b6000806080838503121561529b57600080fd5b6152a58484615258565b91506152b48460408501615258565b90509250929050565b60008060008061024085870312156152d457600080fd5b84356152df81614b8f565b935060208501356152ef81614ba4565b92506152fe8660408701614cb2565b939692955092936102200135925050565b6000806040838503121561532257600080fd5b823561532d81614df5565b91506020830135614dea81614df5565b60006020828403121561534f57600080fd5b815162ffffff8116811461128157600080fd5b600181811c9082168061537657607f821691505b60208210810361539657634e487b7160e01b600052602260045260246000fd5b50919050565b8051614e3281614e19565b6000602082840312156153b957600080fd5b815161128181614e19565b8051614e3281614b8f565b6000602082840312156153e157600080fd5b815161128181614b8f565b6000602082840312156153fe57600080fd5b815161128181614df5565b60006040828403121561541b57600080fd5b615423614bf9565b9050815181526020820151602082015292915050565b8051614e3281614df5565b6000610100828403121561545757600080fd5b60405160c081018181106001600160401b038211171561547957615479614bba565b604052825161548781614b8f565b8152602083015161549781614df5565b60208201526154a98460408501615409565b60408201526154bb8460808501615409565b606082015260c08301516154ce81614df5565b608082015260e0929092015160a083015250919050565b6000602082840312156154f757600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156115b5576115b56154fe565b600082601f83011261553857600080fd5b8151615546614e7d82614e37565b81815284602083860101111561555b57600080fd5b614b87826020830160208701614ab4565b8051614e3281614f4c565b8051614e3281615160565b60006020828403121561559457600080fd5b81516001600160401b03808211156155ab57600080fd5b9083019060e082860312156155bf57600080fd5b6155c7614c1b565b6155d0836153c4565b81526020830151828111156155e457600080fd5b6155f087828601615527565b6020830152506040830151604082015261560c6060840161556c565b606082015261561d6080840161556c565b608082015261562e60a08401615577565b60a082015260c08301518281111561564557600080fd5b61565187828601615527565b60c08301525095945050505050565b60006020828403121561567257600080fd5b81516001600160401b038082111561568957600080fd5b9083019060a0828603121561569d57600080fd5b6156a5614c3d565b82516156b081614ba4565b815260208301516156c081614e19565b60208201526040830151828111156156d757600080fd5b6156e387828601615527565b604083015250606083015160608201526080830151608082015280935050505092915050565b60006020828403121561571b57600080fd5b81516001600160401b038082111561573257600080fd5b90830190610120828603121561574757600080fd5b61574f614c5f565b82518281111561575e57600080fd5b61576a87828601615527565b8252506020830151602082015260408301516040820152606083015160608201526157976080840161556c565b60808201526157a860a0840161556c565b60a08201526157b960c0840161539c565b60c08201526157ca60e0840161539c565b60e082015261010080840151838111156157e357600080fd5b6157ef88828701615527565b918301919091525095945050505050565b818103818111156115b5576115b56154fe565b60006020828403121561582557600080fd5b815161128181615160565b601f8211156133de57600081815260208120601f850160051c810160208610156158575750805b601f850160051c820191505b8181101561587657828155600101615863565b505050505050565b81516001600160401b0381111561589757615897614bba565b6158ab816158a58454615362565b84615830565b602080601f8311600181146158e057600084156158c85750858301515b600019600386901b1c1916600185901b178555615876565b600085815260208120601f198616915b8281101561590f578886015182559484019460019091019084016158f0565b508582101561592d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160601b0383168152604060208201526000614b876040830184614ad8565b60006020828403121561597157600080fd5b815161128181614ba4565b82815260406020820152600082516101208060408501526159a1610160850183614ad8565b91506020850151606085015260408501516080850152606085015160a085015260808501516159d860c086018263ffffffff169052565b5060a085015163ffffffff811660e08601525060c0850151610100615a008187018315159052565b60e087015115159286019290925250840151603f1984830301610140850152615a298282614ad8565b9695505050505050565b6001600160401b038116811461274757600080fd5b600060208284031215615a5a57600080fd5b815161128181615a33565b6001600160401b0360c01b81511682526020810151151560208301526000604082015160a06040850152615a9c60a0850182614ad8565b905060608301516060850152608083015160808501528091505092915050565b6001600160601b0384168152606060208201526000615ade6060830185615a65565b905060ff83166040830152949350505050565b8051614e3281614e0a565b600060208284031215615b0e57600080fd5b81516001600160401b0380821115615b2557600080fd5b9083019060e08286031215615b3957600080fd5b615b41614c1b565b615b4a836153c4565b8152615b58602084016153c4565b6020820152615b6960408401615af1565b6040820152615b7a6060840161539c565b6060820152615b8b60808401615439565b608082015261562e60a08401615439565b80516001600160601b031682526020808201516001600160a01b0390811682850152604080840151805191860191909152918201516060850152606083015180516080860152602081015160a0860152915060808301511660c08401525060a0015160e090910152565b6001600160601b038316815261012081016112816020830184615b9c565b634e487b7160e01b600052603260045260246000fd5b600060208284031215615c4c57600080fd5b81516001600160401b03811115615c6257600080fd5b614b8784828501615527565b600081518084526020808501945080840160005b83811015615ca75781516001600160401b031687529582019590820190600101615c82565b509495945050505050565b6001600160601b03861681526000602060018060a01b0387168184015260a06040840152615ce360a0840187614ad8565b8381036060850152855180825282820190600581901b830184018489016000805b84811015615d6157868403601f19018652825180518086529089019089860190845b81811015615d4c5783516001600160e01b0319168352928b0192918b0191600101615d26565b50509689019694505091870191600101615d04565b5050508681036080880152615d768189615c6e565b9c9b505050505050505050505050565b6001600160601b0383168152604060208201526000614b876040830184615a65565b6020815260006112816020830184614ad8565b6001600160601b0381511682526000602082015160e06020850152615de360e0850182614ad8565b905060408301516040850152606083015163ffffffff8082166060870152806080860151166080870152505064ffffffffff60a08401511660a085015260c083015184820360c08601526115b08282614ad8565b828152604060208201526000614b876040830184615dbb565b600060208284031215615e6257600080fd5b815161128181614e0a565b6001600160601b03841681526101408101615e8b6020830185615b9c565b60ff8316610120830152949350505050565b63ffffffff818116838216019080821115615eba57615eba6154fe565b5092915050565b838152606060208201526000615ade6060830185615dbb565b60008060408385031215615eed57600080fd5b8251615ef881614df5565b6020840151909250614dea81614df5565b634e487b7160e01b600052601260045260246000fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212206ab6771be5e8f0acd052950a344f482106e0cb1dd6a7747811ebee066dbf934064736f6c63430008140033",
1390
- "linkReferences": {
1391
- "contracts/types/DistributorType.sol": {
1392
- "DistributorTypeLib": [
1393
- {
1394
- "length": 20,
1395
- "start": 6840
1396
- },
1397
- {
1398
- "length": 20,
1399
- "start": 6981
1400
- }
1401
- ]
1402
- },
1403
- "contracts/types/NftId.sol": {
1404
- "NftIdLib": [
1405
- {
1406
- "length": 20,
1407
- "start": 2274
1408
- },
1409
- {
1410
- "length": 20,
1411
- "start": 5236
1412
- },
1413
- {
1414
- "length": 20,
1415
- "start": 10496
1416
- },
1417
- {
1418
- "length": 20,
1419
- "start": 16256
1420
- }
1421
- ]
1422
- },
1423
- "contracts/types/Referral.sol": {
1424
- "ReferralLib": [
1425
- {
1426
- "length": 20,
1427
- "start": 12494
1428
- },
1429
- {
1430
- "length": 20,
1431
- "start": 12728
1432
- },
1433
- {
1434
- "length": 20,
1435
- "start": 14257
1436
- },
1437
- {
1438
- "length": 20,
1439
- "start": 15230
1440
- }
1441
- ]
1442
- },
1443
- "contracts/types/RoleId.sol": {
1444
- "RoleIdLib": [
1445
- {
1446
- "length": 20,
1447
- "start": 16773
1448
- },
1449
- {
1450
- "length": 20,
1451
- "start": 17647
1452
- }
1453
- ]
1454
- },
1455
- "contracts/types/Timestamp.sol": {
1456
- "TimestampLib": [
1457
- {
1458
- "length": 20,
1459
- "start": 5380
1460
- },
1461
- {
1462
- "length": 20,
1463
- "start": 5514
1464
- },
1465
- {
1466
- "length": 20,
1467
- "start": 5620
1468
- },
1469
- {
1470
- "length": 20,
1471
- "start": 10834
1472
- },
1473
- {
1474
- "length": 20,
1475
- "start": 11958
1476
- },
1477
- {
1478
- "length": 20,
1479
- "start": 12094
1480
- },
1481
- {
1482
- "length": 20,
1483
- "start": 12216
1484
- },
1485
- {
1486
- "length": 20,
1487
- "start": 12359
1488
- }
1489
- ]
1490
- },
1491
- "contracts/types/UFixed.sol": {
1492
- "UFixedLib": [
1493
- {
1494
- "length": 20,
1495
- "start": 3178
1496
- },
1497
- {
1498
- "length": 20,
1499
- "start": 3316
1500
- },
1501
- {
1502
- "length": 20,
1503
- "start": 3896
1504
- },
1505
- {
1506
- "length": 20,
1507
- "start": 4010
1508
- },
1509
- {
1510
- "length": 20,
1511
- "start": 4145
1512
- },
1513
- {
1514
- "length": 20,
1515
- "start": 4270
1516
- },
1517
- {
1518
- "length": 20,
1519
- "start": 4397
1520
- },
1521
- {
1522
- "length": 20,
1523
- "start": 4532
1524
- },
1525
- {
1526
- "length": 20,
1527
- "start": 6208
1528
- },
1529
- {
1530
- "length": 20,
1531
- "start": 6344
1532
- },
1533
- {
1534
- "length": 20,
1535
- "start": 6470
1536
- },
1537
- {
1538
- "length": 20,
1539
- "start": 6591
1540
- },
1541
- {
1542
- "length": 20,
1543
- "start": 6707
1544
- },
1545
- {
1546
- "length": 20,
1547
- "start": 11417
1548
- },
1549
- {
1550
- "length": 20,
1551
- "start": 11533
1552
- },
1553
- {
1554
- "length": 20,
1555
- "start": 11701
1556
- },
1557
- {
1558
- "length": 20,
1559
- "start": 11817
1560
- },
1561
- {
1562
- "length": 20,
1563
- "start": 13604
1564
- },
1565
- {
1566
- "length": 20,
1567
- "start": 13723
1568
- }
1569
- ]
1570
- },
1571
- "contracts/types/Version.sol": {
1572
- "VersionLib": [
1573
- {
1574
- "length": 20,
1575
- "start": 1686
1576
- },
1577
- {
1578
- "length": 20,
1579
- "start": 7401
1580
- },
1581
- {
1582
- "length": 20,
1583
- "start": 18713
1584
- }
1585
- ],
1586
- "VersionPartLib": [
1587
- {
1588
- "length": 20,
1589
- "start": 13167
1590
- }
1591
- ]
1592
- }
1593
- },
1594
- "deployedLinkReferences": {
1595
- "contracts/types/DistributorType.sol": {
1596
- "DistributorTypeLib": [
1597
- {
1598
- "length": 20,
1599
- "start": 6610
1600
- },
1601
- {
1602
- "length": 20,
1603
- "start": 6751
1604
- }
1605
- ]
1606
- },
1607
- "contracts/types/NftId.sol": {
1608
- "NftIdLib": [
1609
- {
1610
- "length": 20,
1611
- "start": 2044
1612
- },
1613
- {
1614
- "length": 20,
1615
- "start": 5006
1616
- },
1617
- {
1618
- "length": 20,
1619
- "start": 10266
1620
- },
1621
- {
1622
- "length": 20,
1623
- "start": 16026
1624
- }
1625
- ]
1626
- },
1627
- "contracts/types/Referral.sol": {
1628
- "ReferralLib": [
1629
- {
1630
- "length": 20,
1631
- "start": 12264
1632
- },
1633
- {
1634
- "length": 20,
1635
- "start": 12498
1636
- },
1637
- {
1638
- "length": 20,
1639
- "start": 14027
1640
- },
1641
- {
1642
- "length": 20,
1643
- "start": 15000
1644
- }
1645
- ]
1646
- },
1647
- "contracts/types/RoleId.sol": {
1648
- "RoleIdLib": [
1649
- {
1650
- "length": 20,
1651
- "start": 16543
1652
- },
1653
- {
1654
- "length": 20,
1655
- "start": 17417
1656
- }
1657
- ]
1658
- },
1659
- "contracts/types/Timestamp.sol": {
1660
- "TimestampLib": [
1661
- {
1662
- "length": 20,
1663
- "start": 5150
1664
- },
1665
- {
1666
- "length": 20,
1667
- "start": 5284
1668
- },
1669
- {
1670
- "length": 20,
1671
- "start": 5390
1672
- },
1673
- {
1674
- "length": 20,
1675
- "start": 10604
1676
- },
1677
- {
1678
- "length": 20,
1679
- "start": 11728
1680
- },
1681
- {
1682
- "length": 20,
1683
- "start": 11864
1684
- },
1685
- {
1686
- "length": 20,
1687
- "start": 11986
1688
- },
1689
- {
1690
- "length": 20,
1691
- "start": 12129
1692
- }
1693
- ]
1694
- },
1695
- "contracts/types/UFixed.sol": {
1696
- "UFixedLib": [
1697
- {
1698
- "length": 20,
1699
- "start": 2948
1700
- },
1701
- {
1702
- "length": 20,
1703
- "start": 3086
1704
- },
1705
- {
1706
- "length": 20,
1707
- "start": 3666
1708
- },
1709
- {
1710
- "length": 20,
1711
- "start": 3780
1712
- },
1713
- {
1714
- "length": 20,
1715
- "start": 3915
1716
- },
1717
- {
1718
- "length": 20,
1719
- "start": 4040
1720
- },
1721
- {
1722
- "length": 20,
1723
- "start": 4167
1724
- },
1725
- {
1726
- "length": 20,
1727
- "start": 4302
1728
- },
1729
- {
1730
- "length": 20,
1731
- "start": 5978
1732
- },
1733
- {
1734
- "length": 20,
1735
- "start": 6114
1736
- },
1737
- {
1738
- "length": 20,
1739
- "start": 6240
1740
- },
1741
- {
1742
- "length": 20,
1743
- "start": 6361
1744
- },
1745
- {
1746
- "length": 20,
1747
- "start": 6477
1748
- },
1749
- {
1750
- "length": 20,
1751
- "start": 11187
1752
- },
1753
- {
1754
- "length": 20,
1755
- "start": 11303
1756
- },
1757
- {
1758
- "length": 20,
1759
- "start": 11471
1760
- },
1761
- {
1762
- "length": 20,
1763
- "start": 11587
1764
- },
1765
- {
1766
- "length": 20,
1767
- "start": 13374
1768
- },
1769
- {
1770
- "length": 20,
1771
- "start": 13493
1772
- }
1773
- ]
1774
- },
1775
- "contracts/types/Version.sol": {
1776
- "VersionLib": [
1777
- {
1778
- "length": 20,
1779
- "start": 1456
1780
- },
1781
- {
1782
- "length": 20,
1783
- "start": 7171
1784
- },
1785
- {
1786
- "length": 20,
1787
- "start": 18483
1788
- }
1789
- ],
1790
- "VersionPartLib": [
1791
- {
1792
- "length": 20,
1793
- "start": 12937
1794
- }
1795
- ]
1796
- }
1797
- }
1798
- }