itp-interface 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (485) hide show
  1. itp_interface/__init__.py +0 -0
  2. itp_interface/agent/__init__.py +0 -0
  3. itp_interface/agent/simple_proof_agent.py +100 -0
  4. itp_interface/coq_ser_api/__init__.py +165 -0
  5. itp_interface/coq_ser_api/contexts.py +283 -0
  6. itp_interface/coq_ser_api/coq_agent.py +459 -0
  7. itp_interface/coq_ser_api/coq_backend.py +135 -0
  8. itp_interface/coq_ser_api/coq_util.py +839 -0
  9. itp_interface/coq_ser_api/example.py +67 -0
  10. itp_interface/coq_ser_api/lsp_backend.py +375 -0
  11. itp_interface/coq_ser_api/py.typed +0 -0
  12. itp_interface/coq_ser_api/serapi_backend.py +841 -0
  13. itp_interface/coq_ser_api/util.py +145 -0
  14. itp_interface/coq_ser_api_old/__init__.py +2583 -0
  15. itp_interface/coq_ser_api_old/contexts.py +172 -0
  16. itp_interface/coq_ser_api_old/util.py +146 -0
  17. itp_interface/lean_server/__init__.py +0 -0
  18. itp_interface/lean_server/commands.py +484 -0
  19. itp_interface/lean_server/lean3_search_tool.py +358 -0
  20. itp_interface/lean_server/lean4_repl_interface.py +151 -0
  21. itp_interface/lean_server/lean4_utils.py +255 -0
  22. itp_interface/lean_server/lean_cmd_server.py +111 -0
  23. itp_interface/lean_server/lean_context.py +60 -0
  24. itp_interface/lean_server/lean_sync_server.py +174 -0
  25. itp_interface/lean_server/lean_utils.py +199 -0
  26. itp_interface/lean_server/py.typed +1 -0
  27. itp_interface/main/__init__.py +0 -0
  28. itp_interface/main/config/afp_data_gen.yaml +14 -0
  29. itp_interface/main/config/benchmark/CompCert.yaml +366 -0
  30. itp_interface/main/config/benchmark/GeoCoq.yaml +930 -0
  31. itp_interface/main/config/benchmark/UniMath.yaml +2690 -0
  32. itp_interface/main/config/benchmark/afp_isabelle.yaml +29200 -0
  33. itp_interface/main/config/benchmark/agent_proverbot_hard.yaml +247 -0
  34. itp_interface/main/config/benchmark/category-theory.yaml +470 -0
  35. itp_interface/main/config/benchmark/compcert_118_subset.yaml +148 -0
  36. itp_interface/main/config/benchmark/compcert_benchmark.yaml +36 -0
  37. itp_interface/main/config/benchmark/compcert_benchmark_hard.yaml +498 -0
  38. itp_interface/main/config/benchmark/compcert_benchmark_hard_1.yaml +55 -0
  39. itp_interface/main/config/benchmark/compcert_benchmark_hard_2.yaml +24 -0
  40. itp_interface/main/config/benchmark/compcert_benchmark_hard_3.yaml +95 -0
  41. itp_interface/main/config/benchmark/compcert_benchmark_hard_7_per_cent.yaml +78 -0
  42. itp_interface/main/config/benchmark/compcert_benchmark_test.yaml +38 -0
  43. itp_interface/main/config/benchmark/compcert_benchmark_train.yaml +340 -0
  44. itp_interface/main/config/benchmark/leandojo_novel_premises_test.yaml +2908 -0
  45. itp_interface/main/config/benchmark/leandojo_novel_premises_train.yaml +98645 -0
  46. itp_interface/main/config/benchmark/leandojo_novel_premises_val.yaml +2912 -0
  47. itp_interface/main/config/benchmark/leandojo_random.yaml +2889 -0
  48. itp_interface/main/config/benchmark/leandojo_random_test.yaml +2421 -0
  49. itp_interface/main/config/benchmark/leandojo_random_train.yaml +62729 -0
  50. itp_interface/main/config/benchmark/leandojo_random_val.yaml +2504 -0
  51. itp_interface/main/config/benchmark/math-comp.yaml +200 -0
  52. itp_interface/main/config/benchmark/miniF2F_test.yaml +12 -0
  53. itp_interface/main/config/benchmark/miniF2F_test_aime.yaml +27 -0
  54. itp_interface/main/config/benchmark/miniF2F_test_algebra.yaml +30 -0
  55. itp_interface/main/config/benchmark/miniF2F_test_amc12.yaml +57 -0
  56. itp_interface/main/config/benchmark/miniF2F_test_few_shot_hard.yaml +231 -0
  57. itp_interface/main/config/benchmark/miniF2F_test_imo.yaml +32 -0
  58. itp_interface/main/config/benchmark/miniF2F_test_induction.yaml +20 -0
  59. itp_interface/main/config/benchmark/miniF2F_test_mathd_algebra.yaml +82 -0
  60. itp_interface/main/config/benchmark/miniF2F_test_mathd_algebra_hard.yaml +72 -0
  61. itp_interface/main/config/benchmark/miniF2F_test_mathd_numbertheory.yaml +72 -0
  62. itp_interface/main/config/benchmark/miniF2F_test_numbertheory.yaml +20 -0
  63. itp_interface/main/config/benchmark/minicompcert_benchmark_1.yaml +14 -0
  64. itp_interface/main/config/benchmark/proverbot_hard.yaml +104 -0
  65. itp_interface/main/config/benchmark/re_prover.yaml +66 -0
  66. itp_interface/main/config/benchmark/re_prover_hard.yaml +41 -0
  67. itp_interface/main/config/benchmark/re_prover_very_hard.yaml +22 -0
  68. itp_interface/main/config/benchmark/reprover_with_retrieval.yaml +73 -0
  69. itp_interface/main/config/benchmark/reprover_with_retrieval_hard.yaml +30 -0
  70. itp_interface/main/config/benchmark/reprover_with_retrieval_neg.yaml +195 -0
  71. itp_interface/main/config/benchmark/simple_benchmark_1.yaml +24 -0
  72. itp_interface/main/config/benchmark/simple_benchmark_8.yaml +50 -0
  73. itp_interface/main/config/benchmark/simple_benchmark_9.yaml +65 -0
  74. itp_interface/main/config/benchmark/simple_benchmark_isabelle.yaml +18 -0
  75. itp_interface/main/config/benchmark/simple_benchmark_lean.yaml +12 -0
  76. itp_interface/main/config/benchmark/simple_benchmark_lean_training_data.yaml +12 -0
  77. itp_interface/main/config/benchmark/simple_rl_benchmark_lean.yaml +14 -0
  78. itp_interface/main/config/benchmark/stack_machine.yaml +13 -0
  79. itp_interface/main/config/benchmark/stack_machine_hard.yaml +15 -0
  80. itp_interface/main/config/category_theory_data_gen.yaml +14 -0
  81. itp_interface/main/config/category_theory_data_gen_random.yaml +16 -0
  82. itp_interface/main/config/compcert_data_gen_test.yaml +10 -0
  83. itp_interface/main/config/compcert_data_gen_train.yaml +7 -0
  84. itp_interface/main/config/env_settings/bm25_retrieval.yaml +2 -0
  85. itp_interface/main/config/env_settings/bm25_retrieval_no_dfns.yaml +2 -0
  86. itp_interface/main/config/env_settings/bm25_retrieval_only_local_no_dfns.yaml +2 -0
  87. itp_interface/main/config/env_settings/bm25_retrieval_with_print.yaml +2 -0
  88. itp_interface/main/config/env_settings/bm25_retrieval_with_print_only_local.yaml +2 -0
  89. itp_interface/main/config/env_settings/bm25_retrieval_with_print_only_local_no_dfns.yaml +2 -0
  90. itp_interface/main/config/env_settings/no_retrieval.yaml +2 -0
  91. itp_interface/main/config/experiments.yaml +12 -0
  92. itp_interface/main/config/geo_coq_data_gen.yaml +14 -0
  93. itp_interface/main/config/geo_coq_data_gen_random.yaml +16 -0
  94. itp_interface/main/config/leandojo_random_data_gen.yaml +16 -0
  95. itp_interface/main/config/math_comp_data_gen.yaml +14 -0
  96. itp_interface/main/config/math_comp_data_gen_random.yaml +16 -0
  97. itp_interface/main/config/mathlib_data_gen.yaml +14 -0
  98. itp_interface/main/config/repo/coq_repos.yaml +191 -0
  99. itp_interface/main/config/run_settings/default_coq_data_generation_transforms.yaml +24 -0
  100. itp_interface/main/config/run_settings/default_isabelle_data_generation_transforms.yaml +24 -0
  101. itp_interface/main/config/run_settings/default_lean4_data_generation_transforms.yaml +24 -0
  102. itp_interface/main/config/run_settings/default_lean_data_generation_transforms.yaml +24 -0
  103. itp_interface/main/config/simple_coq_data_gen.yaml +12 -0
  104. itp_interface/main/config/simple_coq_data_gen_random.yaml +17 -0
  105. itp_interface/main/config/simple_lean_data_gen.yaml +12 -0
  106. itp_interface/main/config/simple_rl_lean_data_gen.yaml +12 -0
  107. itp_interface/main/config/uni_math_data_gen.yaml +14 -0
  108. itp_interface/main/config.py +192 -0
  109. itp_interface/main/extract_benchmark_dataset.py +106 -0
  110. itp_interface/main/filter_dataset.py +107 -0
  111. itp_interface/main/install.py +92 -0
  112. itp_interface/main/merge_dataset.py +96 -0
  113. itp_interface/main/run_tool.py +444 -0
  114. itp_interface/pisa/.git +1 -0
  115. itp_interface/pisa/.gitignore +125 -0
  116. itp_interface/pisa/.idea/.gitignore +8 -0
  117. itp_interface/pisa/.idea/ClojureProjectResolveSettings.xml +6 -0
  118. itp_interface/pisa/.idea/codeStyles/Project.xml +7 -0
  119. itp_interface/pisa/.idea/codeStyles/codeStyleConfig.xml +5 -0
  120. itp_interface/pisa/.idea/inspectionProfiles/Project_Default.xml +16 -0
  121. itp_interface/pisa/.idea/libraries/sbt__com_google_android_annotations_4_1_1_4_jar.xml +13 -0
  122. itp_interface/pisa/.idea/libraries/sbt__com_google_api_grpc_proto_google_common_protos_1_17_0_jar.xml +13 -0
  123. itp_interface/pisa/.idea/libraries/sbt__com_google_code_findbugs_jsr305_3_0_2_jar.xml +13 -0
  124. itp_interface/pisa/.idea/libraries/sbt__com_google_code_gson_gson_2_8_6_jar.xml +13 -0
  125. itp_interface/pisa/.idea/libraries/sbt__com_google_errorprone_error_prone_annotations_2_3_4_jar.xml +13 -0
  126. itp_interface/pisa/.idea/libraries/sbt__com_google_guava_failureaccess_1_0_1_jar.xml +13 -0
  127. itp_interface/pisa/.idea/libraries/sbt__com_google_guava_guava_30_0_jre_jar.xml +13 -0
  128. itp_interface/pisa/.idea/libraries/sbt__com_google_guava_listenablefuture_9999_0_empty_to_avoid_conflict_with_guava_jar.xml +9 -0
  129. itp_interface/pisa/.idea/libraries/sbt__com_google_j2objc_j2objc_annotations_1_3_jar.xml +13 -0
  130. itp_interface/pisa/.idea/libraries/sbt__com_google_protobuf_protobuf_java_3_12_0_jar.xml +13 -0
  131. itp_interface/pisa/.idea/libraries/sbt__com_google_protobuf_protobuf_java_util_3_12_0_jar.xml +13 -0
  132. itp_interface/pisa/.idea/libraries/sbt__com_lihaoyi_fastparse_2_13_2_3_0_jar.xml +13 -0
  133. itp_interface/pisa/.idea/libraries/sbt__com_lihaoyi_geny_2_13_0_6_0_jar.xml +13 -0
  134. itp_interface/pisa/.idea/libraries/sbt__com_lihaoyi_sourcecode_2_13_0_2_1_jar.xml +13 -0
  135. itp_interface/pisa/.idea/libraries/sbt__com_thesamet_scalapb_lenses_2_13_0_10_9_jar.xml +13 -0
  136. itp_interface/pisa/.idea/libraries/sbt__com_thesamet_scalapb_scalapb_runtime_2_13_0_10_9_jar.xml +13 -0
  137. itp_interface/pisa/.idea/libraries/sbt__com_thesamet_scalapb_scalapb_runtime_grpc_2_13_0_10_9_jar.xml +13 -0
  138. itp_interface/pisa/.idea/libraries/sbt__com_thesamet_scalapb_zio_grpc_zio_grpc_core_2_13_0_4_2_jar.xml +13 -0
  139. itp_interface/pisa/.idea/libraries/sbt__com_thoughtworks_paranamer_paranamer_2_8_jar.xml +13 -0
  140. itp_interface/pisa/.idea/libraries/sbt__commons_io_commons_io_2_8_0_jar.xml +13 -0
  141. itp_interface/pisa/.idea/libraries/sbt__de_unruh_java_patterns_0_1_0_jar.xml +13 -0
  142. itp_interface/pisa/.idea/libraries/sbt__de_unruh_scala_isabelle_2_13_master_SNAPSHOT_jar.xml +13 -0
  143. itp_interface/pisa/.idea/libraries/sbt__dev_zio_izumi_reflect_2_13_1_0_0_M9_jar.xml +13 -0
  144. itp_interface/pisa/.idea/libraries/sbt__dev_zio_izumi_reflect_thirdparty_boopickle_shaded_2_13_1_0_0_M9_jar.xml +13 -0
  145. itp_interface/pisa/.idea/libraries/sbt__dev_zio_zio_2_13_1_0_3_jar.xml +13 -0
  146. itp_interface/pisa/.idea/libraries/sbt__dev_zio_zio_stacktracer_2_13_1_0_3_jar.xml +13 -0
  147. itp_interface/pisa/.idea/libraries/sbt__dev_zio_zio_streams_2_13_1_0_3_jar.xml +13 -0
  148. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_api_1_34_0_jar.xml +13 -0
  149. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_context_1_34_0_jar.xml +13 -0
  150. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_core_1_34_0_jar.xml +13 -0
  151. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_netty_1_34_0_jar.xml +13 -0
  152. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_protobuf_1_34_0_jar.xml +13 -0
  153. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_protobuf_lite_1_34_0_jar.xml +13 -0
  154. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_services_1_34_0_jar.xml +13 -0
  155. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_stub_1_34_0_jar.xml +13 -0
  156. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_buffer_4_1_51_Final_jar.xml +13 -0
  157. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_codec_4_1_51_Final_jar.xml +13 -0
  158. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_codec_http2_4_1_51_Final_jar.xml +13 -0
  159. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_codec_http_4_1_51_Final_jar.xml +13 -0
  160. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_codec_socks_4_1_51_Final_jar.xml +13 -0
  161. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_common_4_1_51_Final_jar.xml +13 -0
  162. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_handler_4_1_51_Final_jar.xml +13 -0
  163. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_handler_proxy_4_1_51_Final_jar.xml +13 -0
  164. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_resolver_4_1_51_Final_jar.xml +13 -0
  165. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_transport_4_1_51_Final_jar.xml +13 -0
  166. itp_interface/pisa/.idea/libraries/sbt__io_perfmark_perfmark_api_0_19_0_jar.xml +13 -0
  167. itp_interface/pisa/.idea/libraries/sbt__net_java_dev_jna_jna_5_3_1_jar.xml +13 -0
  168. itp_interface/pisa/.idea/libraries/sbt__net_liftweb_lift_json_2_13_3_4_3_jar.xml +13 -0
  169. itp_interface/pisa/.idea/libraries/sbt__org_apache_commons_commons_lang3_3_11_jar.xml +13 -0
  170. itp_interface/pisa/.idea/libraries/sbt__org_apache_commons_commons_text_1_9_jar.xml +13 -0
  171. itp_interface/pisa/.idea/libraries/sbt__org_checkerframework_checker_qual_3_5_0_jar.xml +13 -0
  172. itp_interface/pisa/.idea/libraries/sbt__org_codehaus_mojo_animal_sniffer_annotations_1_18_jar.xml +13 -0
  173. itp_interface/pisa/.idea/libraries/sbt__org_jetbrains_annotations_20_1_0_jar.xml +13 -0
  174. itp_interface/pisa/.idea/libraries/sbt__org_jline_jline_3_16_0_jar.xml +13 -0
  175. itp_interface/pisa/.idea/libraries/sbt__org_log4s_log4s_2_13_1_9_0_jar.xml +13 -0
  176. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_modules_scala_collection_compat_2_13_2_1_6_jar.xml +13 -0
  177. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_modules_scala_xml_2_13_1_3_0_jar.xml +13 -0
  178. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_scala_compiler_2_13_4_jar.xml +13 -0
  179. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_scala_library_2_13_4_jar.xml +23 -0
  180. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_scala_reflect_2_13_4_jar.xml +13 -0
  181. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_scalap_2_13_4_jar.xml +13 -0
  182. itp_interface/pisa/.idea/libraries/sbt__org_scalaz_scalaz_core_2_13_7_3_2_jar.xml +13 -0
  183. itp_interface/pisa/.idea/libraries/sbt__org_slf4j_slf4j_api_1_7_30_jar.xml +13 -0
  184. itp_interface/pisa/.idea/libraries/sbt__org_slf4j_slf4j_simple_1_7_30_jar.xml +13 -0
  185. itp_interface/pisa/.idea/misc.xml +7 -0
  186. itp_interface/pisa/.idea/modules/PISA-build.iml +127 -0
  187. itp_interface/pisa/.idea/modules/PISA.iml +94 -0
  188. itp_interface/pisa/.idea/modules.xml +9 -0
  189. itp_interface/pisa/.idea/other.xml +6 -0
  190. itp_interface/pisa/.idea/sbt.xml +20 -0
  191. itp_interface/pisa/.idea/scala_compiler.xml +6 -0
  192. itp_interface/pisa/.idea/uiDesigner.xml +124 -0
  193. itp_interface/pisa/.idea/vcs.xml +6 -0
  194. itp_interface/pisa/.scalafmt.conf +2 -0
  195. itp_interface/pisa/LICENSE +29 -0
  196. itp_interface/pisa/README.md +262 -0
  197. itp_interface/pisa/build.sbt +49 -0
  198. itp_interface/pisa/build.sh +26 -0
  199. itp_interface/pisa/command_generation/close_gaps.py +44 -0
  200. itp_interface/pisa/command_generation/conjecture_normal_order.py +62 -0
  201. itp_interface/pisa/command_generation/conjecturer_command_generator.py +36 -0
  202. itp_interface/pisa/command_generation/create_dirs.py +11 -0
  203. itp_interface/pisa/command_generation/find_std.py +67 -0
  204. itp_interface/pisa/command_generation/generate_build_commands_afp.py +15 -0
  205. itp_interface/pisa/command_generation/generate_build_commands_std.py +15 -0
  206. itp_interface/pisa/command_generation/generate_commands_afp.py +103 -0
  207. itp_interface/pisa/command_generation/generate_commands_mini.py +73 -0
  208. itp_interface/pisa/command_generation/generate_commands_std.py +69 -0
  209. itp_interface/pisa/command_generation/generate_hammer_extraction_text.py +5 -0
  210. itp_interface/pisa/command_generation/hammer_command_generator.py +40 -0
  211. itp_interface/pisa/command_generation/hp_search_command_generator.py +63 -0
  212. itp_interface/pisa/command_generation/oracle_command_generator.py +56 -0
  213. itp_interface/pisa/command_generation/search_command_generator.py +69 -0
  214. itp_interface/pisa/command_generation/summarise_problem_names.py +45 -0
  215. itp_interface/pisa/command_generation/tpu_hp_search.py +75 -0
  216. itp_interface/pisa/docker/Dockerfile +34 -0
  217. itp_interface/pisa/docker/docker_tutorial.md +64 -0
  218. itp_interface/pisa/eval_setup/copy_isabelle.py +42 -0
  219. itp_interface/pisa/eval_setup/copy_pisa_jars.py +18 -0
  220. itp_interface/pisa/mesh_transformer_utils/tokenization.py +86 -0
  221. itp_interface/pisa/project/build.properties +1 -0
  222. itp_interface/pisa/project/plugins.sbt +5 -0
  223. itp_interface/pisa/requirements.txt +4 -0
  224. itp_interface/pisa/scripts/extract_last_k_steps.py +28 -0
  225. itp_interface/pisa/scripts/extract_proof_corpus.py +26 -0
  226. itp_interface/pisa/scripts/gather_hammer_results.py +27 -0
  227. itp_interface/pisa/scripts/length_in_char_stats.py +20 -0
  228. itp_interface/pisa/scripts/mix.py +127 -0
  229. itp_interface/pisa/scripts/results_stat.py +52 -0
  230. itp_interface/pisa/scripts/test_array_job.sh +34 -0
  231. itp_interface/pisa/setup.sh +25 -0
  232. itp_interface/pisa/src/main/protobuf/server.proto +60 -0
  233. itp_interface/pisa/src/main/python/.idea/.gitignore +8 -0
  234. itp_interface/pisa/src/main/python/.idea/inspectionProfiles/Project_Default.xml +18 -0
  235. itp_interface/pisa/src/main/python/.idea/inspectionProfiles/profiles_settings.xml +6 -0
  236. itp_interface/pisa/src/main/python/.idea/misc.xml +4 -0
  237. itp_interface/pisa/src/main/python/.idea/modules.xml +8 -0
  238. itp_interface/pisa/src/main/python/.idea/python.iml +12 -0
  239. itp_interface/pisa/src/main/python/.idea/vcs.xml +6 -0
  240. itp_interface/pisa/src/main/python/conjecturing_parsing/conjecturer_postprocessing.py +59 -0
  241. itp_interface/pisa/src/main/python/data_extraction/extract_data.py +184 -0
  242. itp_interface/pisa/src/main/python/data_extraction/find_premises.py +221 -0
  243. itp_interface/pisa/src/main/python/data_extraction/process_data.py +129 -0
  244. itp_interface/pisa/src/main/python/legacy/PisaFlexibleClient.py +167 -0
  245. itp_interface/pisa/src/main/python/legacy/autof_test.py +74 -0
  246. itp_interface/pisa/src/main/python/legacy/cmd_client.py +23 -0
  247. itp_interface/pisa/src/main/python/legacy/convert_scala_dump_to_test_name_jsons.py +14 -0
  248. itp_interface/pisa/src/main/python/legacy/create_data_txt.py +72 -0
  249. itp_interface/pisa/src/main/python/legacy/create_finetune_tfrecords.py +311 -0
  250. itp_interface/pisa/src/main/python/legacy/demo.py +49 -0
  251. itp_interface/pisa/src/main/python/legacy/evaluate.py +108 -0
  252. itp_interface/pisa/src/main/python/legacy/extract_first_step.py +25 -0
  253. itp_interface/pisa/src/main/python/legacy/get_global_facts.py +35 -0
  254. itp_interface/pisa/src/main/python/legacy/mix_data.py +19 -0
  255. itp_interface/pisa/src/main/python/legacy/one_stage_extraction.py +111 -0
  256. itp_interface/pisa/src/main/python/legacy/prepare_episodic_transitions.py +137 -0
  257. itp_interface/pisa/src/main/python/legacy/prepare_translation_pairs.py +277 -0
  258. itp_interface/pisa/src/main/python/pisa_client.py +322 -0
  259. itp_interface/pisa/src/main/python/server_pb2.py +394 -0
  260. itp_interface/pisa/src/main/python/server_pb2_grpc.py +230 -0
  261. itp_interface/pisa/src/main/python/test_client.py +17 -0
  262. itp_interface/pisa/src/main/python/test_client2.py +79 -0
  263. itp_interface/pisa/src/main/python/utils/filters.py +59 -0
  264. itp_interface/pisa/src/main/python/utils/pisa_server_control.py +29 -0
  265. itp_interface/pisa/src/main/scala/pisa/agent/CheckSyntax.scala +257 -0
  266. itp_interface/pisa/src/main/scala/pisa/agent/DepThms.scala +29 -0
  267. itp_interface/pisa/src/main/scala/pisa/agent/PisaStat.scala +46 -0
  268. itp_interface/pisa/src/main/scala/pisa/agent/RefactorTest.scala +40 -0
  269. itp_interface/pisa/src/main/scala/pisa/agent/RepHammer.scala +95 -0
  270. itp_interface/pisa/src/main/scala/pisa/server/HammFacts.scala +63 -0
  271. itp_interface/pisa/src/main/scala/pisa/server/PisaOS.scala +881 -0
  272. itp_interface/pisa/src/main/scala/pisa/server/PisaOneStage.scala +540 -0
  273. itp_interface/pisa/src/main/scala/pisa/server/PisaOneStageServers.scala +1048 -0
  274. itp_interface/pisa/src/main/scala/pisa/utils/TheoryManager.scala +95 -0
  275. itp_interface/pisa/src/test/python/analyse_debug.py +33 -0
  276. itp_interface/pisa/src/test/python/extract_test_seq2seq.py +53 -0
  277. itp_interface/pisa/src/test/python/extract_test_theorem_ground_truth_indices.py +31 -0
  278. itp_interface/pisa/src/test/python/proof_originality.py +24 -0
  279. itp_interface/pisa/src/test/python/test_command_generator.py +25 -0
  280. itp_interface/pisa/src/test/python/test_model_sequence_accuracy.py +70 -0
  281. itp_interface/pisa/src/test/scala/pisa/Easy.scala +26 -0
  282. itp_interface/pisa/src/test/scala/pisa/TestCurl.scala +82 -0
  283. itp_interface/pisa/src/test/scala/pisa/TestIsa.scala +27 -0
  284. itp_interface/pisa/test.sh +19 -0
  285. itp_interface/pisa/universal_test_theorems.tar.gz +0 -0
  286. itp_interface/repo/build.py +78 -0
  287. itp_interface/repo/clone.py +79 -0
  288. itp_interface/repo/dataset_discovery.py +99 -0
  289. itp_interface/retrieval/__init__.py +0 -0
  290. itp_interface/retrieval/abstraction.py +35 -0
  291. itp_interface/retrieval/coq_bm25_reranker.py +153 -0
  292. itp_interface/retrieval/isabelle_bm25_reranker.py +86 -0
  293. itp_interface/retrieval/lean3_bm25_reranker.py +86 -0
  294. itp_interface/rl/__init__.py +0 -0
  295. itp_interface/rl/abstraction.py +168 -0
  296. itp_interface/rl/proof_action.py +172 -0
  297. itp_interface/rl/proof_state.py +149 -0
  298. itp_interface/rl/proof_tree.py +109 -0
  299. itp_interface/rl/simpl_proof_env_pool.py +16 -0
  300. itp_interface/rl/simple_proof_env.py +713 -0
  301. itp_interface/rl/simple_proof_env_pool.py +591 -0
  302. itp_interface/scripts/setup.sh +228 -0
  303. itp_interface/tools/__init__.py +0 -0
  304. itp_interface/tools/basic_utils.py +172 -0
  305. itp_interface/tools/bin_packing.py +61 -0
  306. itp_interface/tools/cache.py +93 -0
  307. itp_interface/tools/coq_build_spec.py +31 -0
  308. itp_interface/tools/coq_build_tool.py +319 -0
  309. itp_interface/tools/coq_context_helper.py +354 -0
  310. itp_interface/tools/coq_executor.py +508 -0
  311. itp_interface/tools/coq_local_data_generation_transform.py +158 -0
  312. itp_interface/tools/coq_parse_utils.py +154 -0
  313. itp_interface/tools/coq_raw_proofs.py +193 -0
  314. itp_interface/tools/coq_theorem_proof_pair_generation_transform.py +146 -0
  315. itp_interface/tools/coq_training_data_generator.py +76 -0
  316. itp_interface/tools/dynamic_coq_proof_exec.py +220 -0
  317. itp_interface/tools/dynamic_isabelle_proof_exec.py +229 -0
  318. itp_interface/tools/dynamic_lean4_proof_exec.py +236 -0
  319. itp_interface/tools/dynamic_lean_proof_exec.py +228 -0
  320. itp_interface/tools/isabelle_context_helper.py +66 -0
  321. itp_interface/tools/isabelle_executor.py +862 -0
  322. itp_interface/tools/isabelle_local_data_generation_transform.py +149 -0
  323. itp_interface/tools/isabelle_parse_utils.py +131 -0
  324. itp_interface/tools/isabelle_server.py +106 -0
  325. itp_interface/tools/lean4_context_helper.py +72 -0
  326. itp_interface/tools/lean4_local_data_generation_transform.py +122 -0
  327. itp_interface/tools/lean4_sync_executor.py +1193 -0
  328. itp_interface/tools/lean_cmd_executor.py +804 -0
  329. itp_interface/tools/lean_context_helper.py +327 -0
  330. itp_interface/tools/lean_dojo_data_generation_transform.py +206 -0
  331. itp_interface/tools/lean_executor.py +687 -0
  332. itp_interface/tools/lean_local_data_generation_transform.py +136 -0
  333. itp_interface/tools/lean_parse_utils.py +32 -0
  334. itp_interface/tools/log_utils.py +20 -0
  335. itp_interface/tools/proof_exec_callback.py +76 -0
  336. itp_interface/tools/ray_utils.py +265 -0
  337. itp_interface/tools/repl/.git +1 -0
  338. itp_interface/tools/repl/.github/workflows/ci.yml +24 -0
  339. itp_interface/tools/repl/.gitignore +7 -0
  340. itp_interface/tools/repl/.vscode/copyright.code-snippets +13 -0
  341. itp_interface/tools/repl/.vscode/extensions.json +13 -0
  342. itp_interface/tools/repl/.vscode/module-docstring.code-snippets +35 -0
  343. itp_interface/tools/repl/.vscode/settings.json +11 -0
  344. itp_interface/tools/repl/README.md +174 -0
  345. itp_interface/tools/repl/REPL/Frontend.lean +47 -0
  346. itp_interface/tools/repl/REPL/JSON.lean +186 -0
  347. itp_interface/tools/repl/REPL/Lean/ContextInfo.lean +9 -0
  348. itp_interface/tools/repl/REPL/Lean/Environment.lean +31 -0
  349. itp_interface/tools/repl/REPL/Lean/InfoTree/ToJson.lean +114 -0
  350. itp_interface/tools/repl/REPL/Lean/InfoTree.lean +272 -0
  351. itp_interface/tools/repl/REPL/Main.lean +323 -0
  352. itp_interface/tools/repl/REPL/Snapshots.lean +306 -0
  353. itp_interface/tools/repl/REPL/Util/Path.lean +36 -0
  354. itp_interface/tools/repl/REPL/Util/Pickle.lean +44 -0
  355. itp_interface/tools/repl/REPL.lean +4 -0
  356. itp_interface/tools/repl/lake-manifest.json +5 -0
  357. itp_interface/tools/repl/lakefile.lean +15 -0
  358. itp_interface/tools/repl/lean-toolchain +1 -0
  359. itp_interface/tools/repl/test/Mathlib/.gitignore +5 -0
  360. itp_interface/tools/repl/test/Mathlib/H20231110.sh +2 -0
  361. itp_interface/tools/repl/test/Mathlib/ReplMathlibTests.lean +1 -0
  362. itp_interface/tools/repl/test/Mathlib/lake-manifest.json +68 -0
  363. itp_interface/tools/repl/test/Mathlib/lakefile.lean +11 -0
  364. itp_interface/tools/repl/test/Mathlib/lean-toolchain +1 -0
  365. itp_interface/tools/repl/test/Mathlib/test/20240209.expected.out +20 -0
  366. itp_interface/tools/repl/test/Mathlib/test/20240209.in +3 -0
  367. itp_interface/tools/repl/test/Mathlib/test/20240209.lean +4 -0
  368. itp_interface/tools/repl/test/Mathlib/test/H20231020.expected.out +8 -0
  369. itp_interface/tools/repl/test/Mathlib/test/H20231020.in +8 -0
  370. itp_interface/tools/repl/test/Mathlib/test/H20231020.lean +22 -0
  371. itp_interface/tools/repl/test/Mathlib/test/H20231110.expected.out +4 -0
  372. itp_interface/tools/repl/test/Mathlib/test/H20231110.in +4 -0
  373. itp_interface/tools/repl/test/Mathlib/test/H20231115.expected.out +19 -0
  374. itp_interface/tools/repl/test/Mathlib/test/H20231115.in +5 -0
  375. itp_interface/tools/repl/test/Mathlib/test/H20231115_2.expected.out +18 -0
  376. itp_interface/tools/repl/test/Mathlib/test/H20231115_2.in +4 -0
  377. itp_interface/tools/repl/test/Mathlib/test/H20231115_3.expected.out +10 -0
  378. itp_interface/tools/repl/test/Mathlib/test/H20231115_3.in +4 -0
  379. itp_interface/tools/repl/test/Mathlib/test/H20231214.in +9 -0
  380. itp_interface/tools/repl/test/Mathlib/test/H20231214.lean +30 -0
  381. itp_interface/tools/repl/test/Mathlib/test/H20231215.expected.out +4 -0
  382. itp_interface/tools/repl/test/Mathlib/test/H20231215.in +4 -0
  383. itp_interface/tools/repl/test/Mathlib/test/H20231215_2.expected.out +14 -0
  384. itp_interface/tools/repl/test/Mathlib/test/H20231215_2.in +3 -0
  385. itp_interface/tools/repl/test/Mathlib/test/exact.expected.out +37 -0
  386. itp_interface/tools/repl/test/Mathlib/test/exact.in +10 -0
  387. itp_interface/tools/repl/test/Mathlib/test/import_Mathlib.lean +1 -0
  388. itp_interface/tools/repl/test/Mathlib/test/induction.expected.out +29 -0
  389. itp_interface/tools/repl/test/Mathlib/test/induction.in +10 -0
  390. itp_interface/tools/repl/test/Mathlib/test/induction.lean +6 -0
  391. itp_interface/tools/repl/test/Mathlib/test/on_goal.expected.out +22 -0
  392. itp_interface/tools/repl/test/Mathlib/test/on_goal.in +5 -0
  393. itp_interface/tools/repl/test/Mathlib/test/pickle.expected.out +16 -0
  394. itp_interface/tools/repl/test/Mathlib/test/pickle.in +6 -0
  395. itp_interface/tools/repl/test/Mathlib/test/pickle_2.expected.out +4 -0
  396. itp_interface/tools/repl/test/Mathlib/test/pickle_2.in +4 -0
  397. itp_interface/tools/repl/test/Mathlib/test.sh +41 -0
  398. itp_interface/tools/repl/test/all_tactics.expected.out +13 -0
  399. itp_interface/tools/repl/test/all_tactics.in +1 -0
  400. itp_interface/tools/repl/test/by_cases.expected.out +25 -0
  401. itp_interface/tools/repl/test/by_cases.in +8 -0
  402. itp_interface/tools/repl/test/by_cases.lean +4 -0
  403. itp_interface/tools/repl/test/calc.expected.out +32 -0
  404. itp_interface/tools/repl/test/calc.in +1 -0
  405. itp_interface/tools/repl/test/def_eval.expected.out +9 -0
  406. itp_interface/tools/repl/test/def_eval.in +3 -0
  407. itp_interface/tools/repl/test/enableInitializersExecution.expected.out +2 -0
  408. itp_interface/tools/repl/test/enableInitializersExecution.in +1 -0
  409. itp_interface/tools/repl/test/file.expected.out +8 -0
  410. itp_interface/tools/repl/test/file.in +1 -0
  411. itp_interface/tools/repl/test/file.lean +5 -0
  412. itp_interface/tools/repl/test/have_by_sorry.expected.out +28 -0
  413. itp_interface/tools/repl/test/have_by_sorry.in +6 -0
  414. itp_interface/tools/repl/test/import_lean.in +1 -0
  415. itp_interface/tools/repl/test/incomplete.expected.out +18 -0
  416. itp_interface/tools/repl/test/incomplete.in +3 -0
  417. itp_interface/tools/repl/test/incomplete.lean +0 -0
  418. itp_interface/tools/repl/test/infotree.expected.out +20 -0
  419. itp_interface/tools/repl/test/infotree.in +2 -0
  420. itp_interface/tools/repl/test/invalid_tactic.expected.out +20 -0
  421. itp_interface/tools/repl/test/invalid_tactic.in +3 -0
  422. itp_interface/tools/repl/test/name_generator.expected.out +53 -0
  423. itp_interface/tools/repl/test/name_generator.in +18 -0
  424. itp_interface/tools/repl/test/no_goal_sorry.expected.out +11 -0
  425. itp_interface/tools/repl/test/no_goal_sorry.in +1 -0
  426. itp_interface/tools/repl/test/no_goal_sorry_2.expected.out +12 -0
  427. itp_interface/tools/repl/test/no_goal_sorry_2.in +1 -0
  428. itp_interface/tools/repl/test/options.expected.out +17 -0
  429. itp_interface/tools/repl/test/options.in +6 -0
  430. itp_interface/tools/repl/test/pickle_environment.expected.out +8 -0
  431. itp_interface/tools/repl/test/pickle_environment.in +7 -0
  432. itp_interface/tools/repl/test/pickle_environment_with_imports.expected.out +10 -0
  433. itp_interface/tools/repl/test/pickle_environment_with_imports.in +9 -0
  434. itp_interface/tools/repl/test/pickle_open.expected.out +8 -0
  435. itp_interface/tools/repl/test/pickle_open.in +7 -0
  436. itp_interface/tools/repl/test/pickle_open_2.expected.out +4 -0
  437. itp_interface/tools/repl/test/pickle_open_2.in +3 -0
  438. itp_interface/tools/repl/test/pickle_open_scoped.expected.out +18 -0
  439. itp_interface/tools/repl/test/pickle_open_scoped.in +8 -0
  440. itp_interface/tools/repl/test/pickle_open_scoped_2.expected.out +14 -0
  441. itp_interface/tools/repl/test/pickle_open_scoped_2.in +3 -0
  442. itp_interface/tools/repl/test/pickle_proof_state_1.expected.out +26 -0
  443. itp_interface/tools/repl/test/pickle_proof_state_1.in +15 -0
  444. itp_interface/tools/repl/test/pickle_proof_state_2.expected.out +4 -0
  445. itp_interface/tools/repl/test/pickle_proof_state_2.in +3 -0
  446. itp_interface/tools/repl/test/pickle_proof_state_env.expected.out +26 -0
  447. itp_interface/tools/repl/test/pickle_proof_state_env.in +15 -0
  448. itp_interface/tools/repl/test/pickle_scoped_notation.in +16 -0
  449. itp_interface/tools/repl/test/pickle_scoped_notation_2.in +3 -0
  450. itp_interface/tools/repl/test/proof_step.expected.out +18 -0
  451. itp_interface/tools/repl/test/proof_step.in +7 -0
  452. itp_interface/tools/repl/test/readme.expected.out +16 -0
  453. itp_interface/tools/repl/test/readme.in +5 -0
  454. itp_interface/tools/repl/test/sorry_hypotheses.expected.out +16 -0
  455. itp_interface/tools/repl/test/sorry_hypotheses.in +4 -0
  456. itp_interface/tools/repl/test/synthesize_placeholder.expected.out +7 -0
  457. itp_interface/tools/repl/test/synthesize_placeholder.in +1 -0
  458. itp_interface/tools/repl/test/tactic_mode_sorry.expected.out +14 -0
  459. itp_interface/tools/repl/test/tactic_mode_sorry.in +3 -0
  460. itp_interface/tools/repl/test/tactic_sorry.expected.out +12 -0
  461. itp_interface/tools/repl/test/tactic_sorry.in +1 -0
  462. itp_interface/tools/repl/test/term_sorry.expected.out +12 -0
  463. itp_interface/tools/repl/test/term_sorry.in +1 -0
  464. itp_interface/tools/repl/test/trace_simp.expected.out +41 -0
  465. itp_interface/tools/repl/test/trace_simp.in +15 -0
  466. itp_interface/tools/repl/test/unfinished_tactic_block.expected.out +11 -0
  467. itp_interface/tools/repl/test/unfinished_tactic_block.in +1 -0
  468. itp_interface/tools/repl/test/unknown_environment.expected.out +2 -0
  469. itp_interface/tools/repl/test/unknown_environment.in +1 -0
  470. itp_interface/tools/repl/test/unknown_proof_state.expected.out +14 -0
  471. itp_interface/tools/repl/test/unknown_proof_state.in +3 -0
  472. itp_interface/tools/repl/test/unknown_tactic.expected.out +14 -0
  473. itp_interface/tools/repl/test/unknown_tactic.in +3 -0
  474. itp_interface/tools/repl/test/variables.expected.out +26 -0
  475. itp_interface/tools/repl/test/variables.in +5 -0
  476. itp_interface/tools/repl/test.sh +43 -0
  477. itp_interface/tools/run_data_generation_transforms.py +350 -0
  478. itp_interface/tools/theorem_details.py +25 -0
  479. itp_interface/tools/training_data.py +358 -0
  480. itp_interface/tools/training_data_format.py +599 -0
  481. itp_interface-1.0.0.dist-info/METADATA +78 -0
  482. itp_interface-1.0.0.dist-info/RECORD +485 -0
  483. itp_interface-1.0.0.dist-info/WHEEL +4 -0
  484. itp_interface-1.0.0.dist-info/entry_points.txt +3 -0
  485. itp_interface-1.0.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,1048 @@
1
+ package pisa.server
2
+
3
+ import scalapb.zio_grpc.{ServerMain, ServiceList}
4
+
5
+ object PisaOneStageServer8000 extends ServerMain {
6
+ override def port : Int = 8000
7
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
8
+ }
9
+
10
+ object PisaOneStageServer8001 extends ServerMain {
11
+ override def port : Int = 8001
12
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
13
+ }
14
+
15
+ object PisaOneStageServer8002 extends ServerMain {
16
+ override def port : Int = 8002
17
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
18
+ }
19
+
20
+ object PisaOneStageServer8003 extends ServerMain {
21
+ override def port : Int = 8003
22
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
23
+ }
24
+
25
+ object PisaOneStageServer8004 extends ServerMain {
26
+ override def port : Int = 8004
27
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
28
+ }
29
+
30
+ object PisaOneStageServer8005 extends ServerMain {
31
+ override def port : Int = 8005
32
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
33
+ }
34
+
35
+ object PisaOneStageServer8006 extends ServerMain {
36
+ override def port : Int = 8006
37
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
38
+ }
39
+
40
+ object PisaOneStageServer8007 extends ServerMain {
41
+ override def port : Int = 8007
42
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
43
+ }
44
+
45
+ object PisaOneStageServer8008 extends ServerMain {
46
+ override def port : Int = 8008
47
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
48
+ }
49
+
50
+ object PisaOneStageServer8009 extends ServerMain {
51
+ override def port : Int = 8009
52
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
53
+ }
54
+
55
+ object PisaOneStageServer8010 extends ServerMain {
56
+ override def port : Int = 8010
57
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
58
+ }
59
+
60
+ object PisaOneStageServer8011 extends ServerMain {
61
+ override def port : Int = 8011
62
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
63
+ }
64
+
65
+ object PisaOneStageServer8012 extends ServerMain {
66
+ override def port : Int = 8012
67
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
68
+ }
69
+
70
+ object PisaOneStageServer8013 extends ServerMain {
71
+ override def port : Int = 8013
72
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
73
+ }
74
+
75
+ object PisaOneStageServer8014 extends ServerMain {
76
+ override def port : Int = 8014
77
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
78
+ }
79
+
80
+ object PisaOneStageServer8015 extends ServerMain {
81
+ override def port : Int = 8015
82
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
83
+ }
84
+
85
+ object PisaOneStageServer8016 extends ServerMain {
86
+ override def port : Int = 8016
87
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
88
+ }
89
+
90
+ object PisaOneStageServer8017 extends ServerMain {
91
+ override def port : Int = 8017
92
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
93
+ }
94
+
95
+ object PisaOneStageServer8018 extends ServerMain {
96
+ override def port : Int = 8018
97
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
98
+ }
99
+
100
+ object PisaOneStageServer8019 extends ServerMain {
101
+ override def port : Int = 8019
102
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
103
+ }
104
+
105
+ object PisaOneStageServer8020 extends ServerMain {
106
+ override def port : Int = 8020
107
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
108
+ }
109
+
110
+ object PisaOneStageServer8021 extends ServerMain {
111
+ override def port : Int = 8021
112
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
113
+ }
114
+
115
+ object PisaOneStageServer8022 extends ServerMain {
116
+ override def port : Int = 8022
117
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
118
+ }
119
+
120
+ object PisaOneStageServer8023 extends ServerMain {
121
+ override def port : Int = 8023
122
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
123
+ }
124
+
125
+ object PisaOneStageServer8024 extends ServerMain {
126
+ override def port : Int = 8024
127
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
128
+ }
129
+
130
+ object PisaOneStageServer8025 extends ServerMain {
131
+ override def port : Int = 8025
132
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
133
+ }
134
+
135
+ object PisaOneStageServer8026 extends ServerMain {
136
+ override def port : Int = 8026
137
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
138
+ }
139
+
140
+ object PisaOneStageServer8027 extends ServerMain {
141
+ override def port : Int = 8027
142
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
143
+ }
144
+
145
+ object PisaOneStageServer8028 extends ServerMain {
146
+ override def port : Int = 8028
147
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
148
+ }
149
+
150
+ object PisaOneStageServer8029 extends ServerMain {
151
+ override def port : Int = 8029
152
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
153
+ }
154
+
155
+ object PisaOneStageServer8030 extends ServerMain {
156
+ override def port : Int = 8030
157
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
158
+ }
159
+
160
+ object PisaOneStageServer8031 extends ServerMain {
161
+ override def port : Int = 8031
162
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
163
+ }
164
+
165
+ object PisaOneStageServer8032 extends ServerMain {
166
+ override def port : Int = 8032
167
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
168
+ }
169
+
170
+ object PisaOneStageServer8033 extends ServerMain {
171
+ override def port : Int = 8033
172
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
173
+ }
174
+
175
+ object PisaOneStageServer8034 extends ServerMain {
176
+ override def port : Int = 8034
177
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
178
+ }
179
+
180
+ object PisaOneStageServer8035 extends ServerMain {
181
+ override def port : Int = 8035
182
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
183
+ }
184
+
185
+ object PisaOneStageServer8036 extends ServerMain {
186
+ override def port : Int = 8036
187
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
188
+ }
189
+
190
+ object PisaOneStageServer8037 extends ServerMain {
191
+ override def port : Int = 8037
192
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
193
+ }
194
+
195
+ object PisaOneStageServer8038 extends ServerMain {
196
+ override def port : Int = 8038
197
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
198
+ }
199
+
200
+ object PisaOneStageServer8039 extends ServerMain {
201
+ override def port : Int = 8039
202
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
203
+ }
204
+
205
+ object PisaOneStageServer8040 extends ServerMain {
206
+ override def port : Int = 8040
207
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
208
+ }
209
+
210
+ object PisaOneStageServer8041 extends ServerMain {
211
+ override def port : Int = 8041
212
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
213
+ }
214
+
215
+ object PisaOneStageServer8042 extends ServerMain {
216
+ override def port : Int = 8042
217
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
218
+ }
219
+
220
+ object PisaOneStageServer8043 extends ServerMain {
221
+ override def port : Int = 8043
222
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
223
+ }
224
+
225
+ object PisaOneStageServer8044 extends ServerMain {
226
+ override def port : Int = 8044
227
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
228
+ }
229
+
230
+ object PisaOneStageServer8045 extends ServerMain {
231
+ override def port : Int = 8045
232
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
233
+ }
234
+
235
+ object PisaOneStageServer8046 extends ServerMain {
236
+ override def port : Int = 8046
237
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
238
+ }
239
+
240
+ object PisaOneStageServer8047 extends ServerMain {
241
+ override def port : Int = 8047
242
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
243
+ }
244
+
245
+ object PisaOneStageServer8048 extends ServerMain {
246
+ override def port : Int = 8048
247
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
248
+ }
249
+
250
+ object PisaOneStageServer8049 extends ServerMain {
251
+ override def port : Int = 8049
252
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
253
+ }
254
+
255
+ object PisaOneStageServer8050 extends ServerMain {
256
+ override def port : Int = 8050
257
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
258
+ }
259
+
260
+ object PisaOneStageServer8051 extends ServerMain {
261
+ override def port : Int = 8051
262
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
263
+ }
264
+
265
+ object PisaOneStageServer8052 extends ServerMain {
266
+ override def port : Int = 8052
267
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
268
+ }
269
+
270
+ object PisaOneStageServer8053 extends ServerMain {
271
+ override def port : Int = 8053
272
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
273
+ }
274
+
275
+ object PisaOneStageServer8054 extends ServerMain {
276
+ override def port : Int = 8054
277
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
278
+ }
279
+
280
+ object PisaOneStageServer8055 extends ServerMain {
281
+ override def port : Int = 8055
282
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
283
+ }
284
+
285
+ object PisaOneStageServer8056 extends ServerMain {
286
+ override def port : Int = 8056
287
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
288
+ }
289
+
290
+ object PisaOneStageServer8057 extends ServerMain {
291
+ override def port : Int = 8057
292
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
293
+ }
294
+
295
+ object PisaOneStageServer8058 extends ServerMain {
296
+ override def port : Int = 8058
297
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
298
+ }
299
+
300
+ object PisaOneStageServer8059 extends ServerMain {
301
+ override def port : Int = 8059
302
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
303
+ }
304
+
305
+ object PisaOneStageServer8060 extends ServerMain {
306
+ override def port : Int = 8060
307
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
308
+ }
309
+
310
+ object PisaOneStageServer8061 extends ServerMain {
311
+ override def port : Int = 8061
312
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
313
+ }
314
+
315
+ object PisaOneStageServer8062 extends ServerMain {
316
+ override def port : Int = 8062
317
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
318
+ }
319
+
320
+ object PisaOneStageServer8063 extends ServerMain {
321
+ override def port : Int = 8063
322
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
323
+ }
324
+
325
+ object PisaOneStageServer8064 extends ServerMain {
326
+ override def port : Int = 8064
327
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
328
+ }
329
+
330
+ object PisaOneStageServer8065 extends ServerMain {
331
+ override def port : Int = 8065
332
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
333
+ }
334
+
335
+ object PisaOneStageServer8066 extends ServerMain {
336
+ override def port : Int = 8066
337
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
338
+ }
339
+
340
+ object PisaOneStageServer8067 extends ServerMain {
341
+ override def port : Int = 8067
342
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
343
+ }
344
+
345
+ object PisaOneStageServer8068 extends ServerMain {
346
+ override def port : Int = 8068
347
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
348
+ }
349
+
350
+ object PisaOneStageServer8069 extends ServerMain {
351
+ override def port : Int = 8069
352
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
353
+ }
354
+
355
+ object PisaOneStageServer8070 extends ServerMain {
356
+ override def port : Int = 8070
357
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
358
+ }
359
+
360
+ object PisaOneStageServer8071 extends ServerMain {
361
+ override def port : Int = 8071
362
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
363
+ }
364
+
365
+ object PisaOneStageServer8072 extends ServerMain {
366
+ override def port : Int = 8072
367
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
368
+ }
369
+
370
+ object PisaOneStageServer8073 extends ServerMain {
371
+ override def port : Int = 8073
372
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
373
+ }
374
+
375
+ object PisaOneStageServer8074 extends ServerMain {
376
+ override def port : Int = 8074
377
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
378
+ }
379
+
380
+ object PisaOneStageServer8075 extends ServerMain {
381
+ override def port : Int = 8075
382
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
383
+ }
384
+
385
+ object PisaOneStageServer8076 extends ServerMain {
386
+ override def port : Int = 8076
387
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
388
+ }
389
+
390
+ object PisaOneStageServer8077 extends ServerMain {
391
+ override def port : Int = 8077
392
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
393
+ }
394
+
395
+ object PisaOneStageServer8078 extends ServerMain {
396
+ override def port : Int = 8078
397
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
398
+ }
399
+
400
+ object PisaOneStageServer8079 extends ServerMain {
401
+ override def port : Int = 8079
402
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
403
+ }
404
+
405
+ object PisaOneStageServer8080 extends ServerMain {
406
+ override def port : Int = 8080
407
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
408
+ }
409
+
410
+ object PisaOneStageServer8081 extends ServerMain {
411
+ override def port : Int = 8081
412
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
413
+ }
414
+
415
+ object PisaOneStageServer8082 extends ServerMain {
416
+ override def port : Int = 8082
417
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
418
+ }
419
+
420
+ object PisaOneStageServer8083 extends ServerMain {
421
+ override def port : Int = 8083
422
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
423
+ }
424
+
425
+ object PisaOneStageServer8084 extends ServerMain {
426
+ override def port : Int = 8084
427
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
428
+ }
429
+
430
+ object PisaOneStageServer8085 extends ServerMain {
431
+ override def port : Int = 8085
432
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
433
+ }
434
+
435
+ object PisaOneStageServer8086 extends ServerMain {
436
+ override def port : Int = 8086
437
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
438
+ }
439
+
440
+ object PisaOneStageServer8087 extends ServerMain {
441
+ override def port : Int = 8087
442
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
443
+ }
444
+
445
+ object PisaOneStageServer8088 extends ServerMain {
446
+ override def port : Int = 8088
447
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
448
+ }
449
+
450
+ object PisaOneStageServer8089 extends ServerMain {
451
+ override def port : Int = 8089
452
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
453
+ }
454
+
455
+ object PisaOneStageServer8090 extends ServerMain {
456
+ override def port : Int = 8090
457
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
458
+ }
459
+
460
+ object PisaOneStageServer8091 extends ServerMain {
461
+ override def port : Int = 8091
462
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
463
+ }
464
+
465
+ object PisaOneStageServer8092 extends ServerMain {
466
+ override def port : Int = 8092
467
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
468
+ }
469
+
470
+ object PisaOneStageServer8093 extends ServerMain {
471
+ override def port : Int = 8093
472
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
473
+ }
474
+
475
+ object PisaOneStageServer8094 extends ServerMain {
476
+ override def port : Int = 8094
477
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
478
+ }
479
+
480
+ object PisaOneStageServer8095 extends ServerMain {
481
+ override def port : Int = 8095
482
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
483
+ }
484
+
485
+ object PisaOneStageServer8096 extends ServerMain {
486
+ override def port : Int = 8096
487
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
488
+ }
489
+
490
+ object PisaOneStageServer8097 extends ServerMain {
491
+ override def port : Int = 8097
492
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
493
+ }
494
+
495
+ object PisaOneStageServer8098 extends ServerMain {
496
+ override def port : Int = 8098
497
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
498
+ }
499
+
500
+ object PisaOneStageServer8099 extends ServerMain {
501
+ override def port : Int = 8099
502
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
503
+ }
504
+
505
+ object PisaOneStageServer8100 extends ServerMain {
506
+ override def port : Int = 8100
507
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
508
+ }
509
+
510
+ object PisaOneStageServer8101 extends ServerMain {
511
+ override def port : Int = 8101
512
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
513
+ }
514
+
515
+ object PisaOneStageServer8102 extends ServerMain {
516
+ override def port : Int = 8102
517
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
518
+ }
519
+
520
+ object PisaOneStageServer8103 extends ServerMain {
521
+ override def port : Int = 8103
522
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
523
+ }
524
+
525
+ object PisaOneStageServer8104 extends ServerMain {
526
+ override def port : Int = 8104
527
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
528
+ }
529
+
530
+ object PisaOneStageServer8105 extends ServerMain {
531
+ override def port : Int = 8105
532
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
533
+ }
534
+
535
+ object PisaOneStageServer8106 extends ServerMain {
536
+ override def port : Int = 8106
537
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
538
+ }
539
+
540
+ object PisaOneStageServer8107 extends ServerMain {
541
+ override def port : Int = 8107
542
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
543
+ }
544
+
545
+ object PisaOneStageServer8108 extends ServerMain {
546
+ override def port : Int = 8108
547
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
548
+ }
549
+
550
+ object PisaOneStageServer8109 extends ServerMain {
551
+ override def port : Int = 8109
552
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
553
+ }
554
+
555
+ object PisaOneStageServer8110 extends ServerMain {
556
+ override def port : Int = 8110
557
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
558
+ }
559
+
560
+ object PisaOneStageServer8111 extends ServerMain {
561
+ override def port : Int = 8111
562
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
563
+ }
564
+
565
+ object PisaOneStageServer8112 extends ServerMain {
566
+ override def port : Int = 8112
567
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
568
+ }
569
+
570
+ object PisaOneStageServer8113 extends ServerMain {
571
+ override def port : Int = 8113
572
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
573
+ }
574
+
575
+ object PisaOneStageServer8114 extends ServerMain {
576
+ override def port : Int = 8114
577
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
578
+ }
579
+
580
+ object PisaOneStageServer8115 extends ServerMain {
581
+ override def port : Int = 8115
582
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
583
+ }
584
+
585
+ object PisaOneStageServer8116 extends ServerMain {
586
+ override def port : Int = 8116
587
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
588
+ }
589
+
590
+ object PisaOneStageServer8117 extends ServerMain {
591
+ override def port : Int = 8117
592
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
593
+ }
594
+
595
+ object PisaOneStageServer8118 extends ServerMain {
596
+ override def port : Int = 8118
597
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
598
+ }
599
+
600
+ object PisaOneStageServer8119 extends ServerMain {
601
+ override def port : Int = 8119
602
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
603
+ }
604
+
605
+ object PisaOneStageServer8120 extends ServerMain {
606
+ override def port : Int = 8120
607
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
608
+ }
609
+
610
+ object PisaOneStageServer8121 extends ServerMain {
611
+ override def port : Int = 8121
612
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
613
+ }
614
+
615
+ object PisaOneStageServer8122 extends ServerMain {
616
+ override def port : Int = 8122
617
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
618
+ }
619
+
620
+ object PisaOneStageServer8123 extends ServerMain {
621
+ override def port : Int = 8123
622
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
623
+ }
624
+
625
+ object PisaOneStageServer8124 extends ServerMain {
626
+ override def port : Int = 8124
627
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
628
+ }
629
+
630
+ object PisaOneStageServer8125 extends ServerMain {
631
+ override def port : Int = 8125
632
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
633
+ }
634
+
635
+ object PisaOneStageServer8126 extends ServerMain {
636
+ override def port : Int = 8126
637
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
638
+ }
639
+
640
+ object PisaOneStageServer8127 extends ServerMain {
641
+ override def port : Int = 8127
642
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
643
+ }
644
+
645
+ object PisaOneStageServer8128 extends ServerMain {
646
+ override def port : Int = 8128
647
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
648
+ }
649
+
650
+ object PisaOneStageServer8129 extends ServerMain {
651
+ override def port : Int = 8129
652
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
653
+ }
654
+
655
+ object PisaOneStageServer8130 extends ServerMain {
656
+ override def port : Int = 8130
657
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
658
+ }
659
+
660
+ object PisaOneStageServer8131 extends ServerMain {
661
+ override def port : Int = 8131
662
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
663
+ }
664
+
665
+ object PisaOneStageServer8132 extends ServerMain {
666
+ override def port : Int = 8132
667
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
668
+ }
669
+
670
+ object PisaOneStageServer8133 extends ServerMain {
671
+ override def port : Int = 8133
672
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
673
+ }
674
+
675
+ object PisaOneStageServer8134 extends ServerMain {
676
+ override def port : Int = 8134
677
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
678
+ }
679
+
680
+ object PisaOneStageServer8135 extends ServerMain {
681
+ override def port : Int = 8135
682
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
683
+ }
684
+
685
+ object PisaOneStageServer8136 extends ServerMain {
686
+ override def port : Int = 8136
687
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
688
+ }
689
+
690
+ object PisaOneStageServer8137 extends ServerMain {
691
+ override def port : Int = 8137
692
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
693
+ }
694
+
695
+ object PisaOneStageServer8138 extends ServerMain {
696
+ override def port : Int = 8138
697
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
698
+ }
699
+
700
+ object PisaOneStageServer8139 extends ServerMain {
701
+ override def port : Int = 8139
702
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
703
+ }
704
+
705
+ object PisaOneStageServer8140 extends ServerMain {
706
+ override def port : Int = 8140
707
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
708
+ }
709
+
710
+ object PisaOneStageServer8141 extends ServerMain {
711
+ override def port : Int = 8141
712
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
713
+ }
714
+
715
+ object PisaOneStageServer8142 extends ServerMain {
716
+ override def port : Int = 8142
717
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
718
+ }
719
+
720
+ object PisaOneStageServer8143 extends ServerMain {
721
+ override def port : Int = 8143
722
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
723
+ }
724
+
725
+ object PisaOneStageServer8144 extends ServerMain {
726
+ override def port : Int = 8144
727
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
728
+ }
729
+
730
+ object PisaOneStageServer8145 extends ServerMain {
731
+ override def port : Int = 8145
732
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
733
+ }
734
+
735
+ object PisaOneStageServer8146 extends ServerMain {
736
+ override def port : Int = 8146
737
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
738
+ }
739
+
740
+ object PisaOneStageServer8147 extends ServerMain {
741
+ override def port : Int = 8147
742
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
743
+ }
744
+
745
+ object PisaOneStageServer8148 extends ServerMain {
746
+ override def port : Int = 8148
747
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
748
+ }
749
+
750
+ object PisaOneStageServer8149 extends ServerMain {
751
+ override def port : Int = 8149
752
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
753
+ }
754
+
755
+ object PisaOneStageServer8150 extends ServerMain {
756
+ override def port : Int = 8150
757
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
758
+ }
759
+
760
+ object PisaOneStageServer8151 extends ServerMain {
761
+ override def port : Int = 8151
762
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
763
+ }
764
+
765
+ object PisaOneStageServer8152 extends ServerMain {
766
+ override def port : Int = 8152
767
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
768
+ }
769
+
770
+ object PisaOneStageServer8153 extends ServerMain {
771
+ override def port : Int = 8153
772
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
773
+ }
774
+
775
+ object PisaOneStageServer8154 extends ServerMain {
776
+ override def port : Int = 8154
777
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
778
+ }
779
+
780
+ object PisaOneStageServer8155 extends ServerMain {
781
+ override def port : Int = 8155
782
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
783
+ }
784
+
785
+ object PisaOneStageServer8156 extends ServerMain {
786
+ override def port : Int = 8156
787
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
788
+ }
789
+
790
+ object PisaOneStageServer8157 extends ServerMain {
791
+ override def port : Int = 8157
792
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
793
+ }
794
+
795
+ object PisaOneStageServer8158 extends ServerMain {
796
+ override def port : Int = 8158
797
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
798
+ }
799
+
800
+ object PisaOneStageServer8159 extends ServerMain {
801
+ override def port : Int = 8159
802
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
803
+ }
804
+
805
+ object PisaOneStageServer8160 extends ServerMain {
806
+ override def port : Int = 8160
807
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
808
+ }
809
+
810
+ object PisaOneStageServer8161 extends ServerMain {
811
+ override def port : Int = 8161
812
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
813
+ }
814
+
815
+ object PisaOneStageServer8162 extends ServerMain {
816
+ override def port : Int = 8162
817
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
818
+ }
819
+
820
+ object PisaOneStageServer8163 extends ServerMain {
821
+ override def port : Int = 8163
822
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
823
+ }
824
+
825
+ object PisaOneStageServer8164 extends ServerMain {
826
+ override def port : Int = 8164
827
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
828
+ }
829
+
830
+ object PisaOneStageServer8165 extends ServerMain {
831
+ override def port : Int = 8165
832
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
833
+ }
834
+
835
+ object PisaOneStageServer8166 extends ServerMain {
836
+ override def port : Int = 8166
837
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
838
+ }
839
+
840
+ object PisaOneStageServer8167 extends ServerMain {
841
+ override def port : Int = 8167
842
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
843
+ }
844
+
845
+ object PisaOneStageServer8168 extends ServerMain {
846
+ override def port : Int = 8168
847
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
848
+ }
849
+
850
+ object PisaOneStageServer8169 extends ServerMain {
851
+ override def port : Int = 8169
852
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
853
+ }
854
+
855
+ object PisaOneStageServer8170 extends ServerMain {
856
+ override def port : Int = 8170
857
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
858
+ }
859
+
860
+ object PisaOneStageServer8171 extends ServerMain {
861
+ override def port : Int = 8171
862
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
863
+ }
864
+
865
+ object PisaOneStageServer8172 extends ServerMain {
866
+ override def port : Int = 8172
867
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
868
+ }
869
+
870
+ object PisaOneStageServer8173 extends ServerMain {
871
+ override def port : Int = 8173
872
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
873
+ }
874
+
875
+ object PisaOneStageServer8174 extends ServerMain {
876
+ override def port : Int = 8174
877
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
878
+ }
879
+
880
+ object PisaOneStageServer8175 extends ServerMain {
881
+ override def port : Int = 8175
882
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
883
+ }
884
+
885
+ object PisaOneStageServer8176 extends ServerMain {
886
+ override def port : Int = 8176
887
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
888
+ }
889
+
890
+ object PisaOneStageServer8177 extends ServerMain {
891
+ override def port : Int = 8177
892
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
893
+ }
894
+
895
+ object PisaOneStageServer8178 extends ServerMain {
896
+ override def port : Int = 8178
897
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
898
+ }
899
+
900
+ object PisaOneStageServer8179 extends ServerMain {
901
+ override def port : Int = 8179
902
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
903
+ }
904
+
905
+ object PisaOneStageServer8180 extends ServerMain {
906
+ override def port : Int = 8180
907
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
908
+ }
909
+
910
+ object PisaOneStageServer8181 extends ServerMain {
911
+ override def port : Int = 8181
912
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
913
+ }
914
+
915
+ object PisaOneStageServer8182 extends ServerMain {
916
+ override def port : Int = 8182
917
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
918
+ }
919
+
920
+ object PisaOneStageServer8183 extends ServerMain {
921
+ override def port : Int = 8183
922
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
923
+ }
924
+
925
+ object PisaOneStageServer8184 extends ServerMain {
926
+ override def port : Int = 8184
927
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
928
+ }
929
+
930
+ object PisaOneStageServer8185 extends ServerMain {
931
+ override def port : Int = 8185
932
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
933
+ }
934
+
935
+ object PisaOneStageServer8186 extends ServerMain {
936
+ override def port : Int = 8186
937
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
938
+ }
939
+
940
+ object PisaOneStageServer8187 extends ServerMain {
941
+ override def port : Int = 8187
942
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
943
+ }
944
+
945
+ object PisaOneStageServer8188 extends ServerMain {
946
+ override def port : Int = 8188
947
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
948
+ }
949
+
950
+ object PisaOneStageServer8189 extends ServerMain {
951
+ override def port : Int = 8189
952
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
953
+ }
954
+
955
+ object PisaOneStageServer8190 extends ServerMain {
956
+ override def port : Int = 8190
957
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
958
+ }
959
+
960
+ object PisaOneStageServer8191 extends ServerMain {
961
+ override def port : Int = 8191
962
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
963
+ }
964
+
965
+ object PisaOneStageServer8192 extends ServerMain {
966
+ override def port : Int = 8192
967
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
968
+ }
969
+
970
+ object PisaOneStageServer8193 extends ServerMain {
971
+ override def port : Int = 8193
972
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
973
+ }
974
+
975
+ object PisaOneStageServer8194 extends ServerMain {
976
+ override def port : Int = 8194
977
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
978
+ }
979
+
980
+ object PisaOneStageServer8195 extends ServerMain {
981
+ override def port : Int = 8195
982
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
983
+ }
984
+
985
+ object PisaOneStageServer8196 extends ServerMain {
986
+ override def port : Int = 8196
987
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
988
+ }
989
+
990
+ object PisaOneStageServer8197 extends ServerMain {
991
+ override def port : Int = 8197
992
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
993
+ }
994
+
995
+ object PisaOneStageServer8198 extends ServerMain {
996
+ override def port : Int = 8198
997
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
998
+ }
999
+
1000
+ object PisaOneStageServer8199 extends ServerMain {
1001
+ override def port : Int = 8199
1002
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
1003
+ }
1004
+
1005
+ object PisaOneStageServer9000 extends ServerMain {
1006
+ override def port : Int = 9000
1007
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
1008
+ }
1009
+
1010
+ object PisaOneStageServer10000 extends ServerMain {
1011
+ override def port : Int = 10000
1012
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
1013
+ }
1014
+
1015
+ object PisaOneStageServer11000 extends ServerMain {
1016
+ override def port : Int = 11000
1017
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
1018
+ }
1019
+
1020
+ object PisaOneStageServer12000 extends ServerMain {
1021
+ override def port : Int = 12000
1022
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
1023
+ }
1024
+
1025
+ object PisaOneStageServer13000 extends ServerMain {
1026
+ override def port : Int = 13000
1027
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
1028
+ }
1029
+
1030
+ object PisaOneStageServer14000 extends ServerMain {
1031
+ override def port : Int = 14000
1032
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
1033
+ }
1034
+
1035
+ object PisaOneStageServer15000 extends ServerMain {
1036
+ override def port : Int = 15000
1037
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
1038
+ }
1039
+
1040
+ object PisaOneStageServer16000 extends ServerMain {
1041
+ override def port : Int = 16000
1042
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
1043
+ }
1044
+
1045
+ object PisaOneStageServer17000 extends ServerMain {
1046
+ override def port : Int = 17000
1047
+ def services: ServiceList[zio.ZEnv] = ServiceList.add(new OneStageBody)
1048
+ }