isomorfeus-ferret 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (222) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +612 -0
  3. data/README.md +44 -0
  4. data/ext/isomorfeus_ferret_ext/benchmark.c +223 -0
  5. data/ext/isomorfeus_ferret_ext/benchmark.h +45 -0
  6. data/ext/isomorfeus_ferret_ext/benchmarks_all.h +25 -0
  7. data/ext/isomorfeus_ferret_ext/bm_bitvector.c +123 -0
  8. data/ext/isomorfeus_ferret_ext/bm_hash.c +118 -0
  9. data/ext/isomorfeus_ferret_ext/bm_micro_string.c +40 -0
  10. data/ext/isomorfeus_ferret_ext/bm_store.c +93 -0
  11. data/ext/isomorfeus_ferret_ext/email.rl +21 -0
  12. data/ext/isomorfeus_ferret_ext/extconf.rb +5 -0
  13. data/ext/isomorfeus_ferret_ext/fio_tmpfile.h +53 -0
  14. data/ext/isomorfeus_ferret_ext/frb_analysis.c +2577 -0
  15. data/ext/isomorfeus_ferret_ext/frb_index.c +3457 -0
  16. data/ext/isomorfeus_ferret_ext/frb_lang.c +9 -0
  17. data/ext/isomorfeus_ferret_ext/frb_lang.h +17 -0
  18. data/ext/isomorfeus_ferret_ext/frb_qparser.c +629 -0
  19. data/ext/isomorfeus_ferret_ext/frb_search.c +4460 -0
  20. data/ext/isomorfeus_ferret_ext/frb_store.c +515 -0
  21. data/ext/isomorfeus_ferret_ext/frb_threading.h +30 -0
  22. data/ext/isomorfeus_ferret_ext/frb_utils.c +1127 -0
  23. data/ext/isomorfeus_ferret_ext/frt_analysis.c +1644 -0
  24. data/ext/isomorfeus_ferret_ext/frt_analysis.h +247 -0
  25. data/ext/isomorfeus_ferret_ext/frt_array.c +124 -0
  26. data/ext/isomorfeus_ferret_ext/frt_array.h +54 -0
  27. data/ext/isomorfeus_ferret_ext/frt_bitvector.c +95 -0
  28. data/ext/isomorfeus_ferret_ext/frt_bitvector.h +586 -0
  29. data/ext/isomorfeus_ferret_ext/frt_compound_io.c +374 -0
  30. data/ext/isomorfeus_ferret_ext/frt_config.h +44 -0
  31. data/ext/isomorfeus_ferret_ext/frt_document.c +134 -0
  32. data/ext/isomorfeus_ferret_ext/frt_document.h +52 -0
  33. data/ext/isomorfeus_ferret_ext/frt_except.c +95 -0
  34. data/ext/isomorfeus_ferret_ext/frt_except.h +188 -0
  35. data/ext/isomorfeus_ferret_ext/frt_field_index.c +233 -0
  36. data/ext/isomorfeus_ferret_ext/frt_field_index.h +42 -0
  37. data/ext/isomorfeus_ferret_ext/frt_filter.c +157 -0
  38. data/ext/isomorfeus_ferret_ext/frt_fs_store.c +502 -0
  39. data/ext/isomorfeus_ferret_ext/frt_global.c +427 -0
  40. data/ext/isomorfeus_ferret_ext/frt_global.h +290 -0
  41. data/ext/isomorfeus_ferret_ext/frt_hash.c +518 -0
  42. data/ext/isomorfeus_ferret_ext/frt_hash.h +466 -0
  43. data/ext/isomorfeus_ferret_ext/frt_hashset.c +191 -0
  44. data/ext/isomorfeus_ferret_ext/frt_hashset.h +206 -0
  45. data/ext/isomorfeus_ferret_ext/frt_helper.c +62 -0
  46. data/ext/isomorfeus_ferret_ext/frt_helper.h +13 -0
  47. data/ext/isomorfeus_ferret_ext/frt_ind.c +353 -0
  48. data/ext/isomorfeus_ferret_ext/frt_ind.h +54 -0
  49. data/ext/isomorfeus_ferret_ext/frt_index.c +6377 -0
  50. data/ext/isomorfeus_ferret_ext/frt_index.h +880 -0
  51. data/ext/isomorfeus_ferret_ext/frt_lang.c +104 -0
  52. data/ext/isomorfeus_ferret_ext/frt_lang.h +44 -0
  53. data/ext/isomorfeus_ferret_ext/frt_mempool.c +87 -0
  54. data/ext/isomorfeus_ferret_ext/frt_mempool.h +33 -0
  55. data/ext/isomorfeus_ferret_ext/frt_multimapper.c +349 -0
  56. data/ext/isomorfeus_ferret_ext/frt_multimapper.h +52 -0
  57. data/ext/isomorfeus_ferret_ext/frt_posh.c +1006 -0
  58. data/ext/isomorfeus_ferret_ext/frt_posh.h +973 -0
  59. data/ext/isomorfeus_ferret_ext/frt_priorityqueue.c +147 -0
  60. data/ext/isomorfeus_ferret_ext/frt_priorityqueue.h +147 -0
  61. data/ext/isomorfeus_ferret_ext/frt_q_boolean.c +1612 -0
  62. data/ext/isomorfeus_ferret_ext/frt_q_const_score.c +157 -0
  63. data/ext/isomorfeus_ferret_ext/frt_q_filtered_query.c +209 -0
  64. data/ext/isomorfeus_ferret_ext/frt_q_fuzzy.c +281 -0
  65. data/ext/isomorfeus_ferret_ext/frt_q_match_all.c +147 -0
  66. data/ext/isomorfeus_ferret_ext/frt_q_multi_term.c +672 -0
  67. data/ext/isomorfeus_ferret_ext/frt_q_parser.c +3084 -0
  68. data/ext/isomorfeus_ferret_ext/frt_q_phrase.c +1182 -0
  69. data/ext/isomorfeus_ferret_ext/frt_q_prefix.c +98 -0
  70. data/ext/isomorfeus_ferret_ext/frt_q_range.c +665 -0
  71. data/ext/isomorfeus_ferret_ext/frt_q_span.c +2386 -0
  72. data/ext/isomorfeus_ferret_ext/frt_q_term.c +311 -0
  73. data/ext/isomorfeus_ferret_ext/frt_q_wildcard.c +166 -0
  74. data/ext/isomorfeus_ferret_ext/frt_ram_store.c +460 -0
  75. data/ext/isomorfeus_ferret_ext/frt_scanner.c +899 -0
  76. data/ext/isomorfeus_ferret_ext/frt_scanner.h +28 -0
  77. data/ext/isomorfeus_ferret_ext/frt_scanner_mb.c +6705 -0
  78. data/ext/isomorfeus_ferret_ext/frt_scanner_utf8.c +4419 -0
  79. data/ext/isomorfeus_ferret_ext/frt_search.c +1824 -0
  80. data/ext/isomorfeus_ferret_ext/frt_search.h +924 -0
  81. data/ext/isomorfeus_ferret_ext/frt_similarity.c +150 -0
  82. data/ext/isomorfeus_ferret_ext/frt_similarity.h +79 -0
  83. data/ext/isomorfeus_ferret_ext/frt_sort.c +796 -0
  84. data/ext/isomorfeus_ferret_ext/frt_stopwords.c +395 -0
  85. data/ext/isomorfeus_ferret_ext/frt_store.c +680 -0
  86. data/ext/isomorfeus_ferret_ext/frt_store.h +789 -0
  87. data/ext/isomorfeus_ferret_ext/frt_term_vectors.c +72 -0
  88. data/ext/isomorfeus_ferret_ext/frt_threading.h +23 -0
  89. data/ext/isomorfeus_ferret_ext/frt_win32.h +54 -0
  90. data/ext/isomorfeus_ferret_ext/isomorfeus_ferret.c +409 -0
  91. data/ext/isomorfeus_ferret_ext/isomorfeus_ferret.h +95 -0
  92. data/ext/isomorfeus_ferret_ext/libstemmer.c +93 -0
  93. data/ext/isomorfeus_ferret_ext/libstemmer.h +73 -0
  94. data/ext/isomorfeus_ferret_ext/q_parser.y +1366 -0
  95. data/ext/isomorfeus_ferret_ext/scanner.h +28 -0
  96. data/ext/isomorfeus_ferret_ext/scanner.in +43 -0
  97. data/ext/isomorfeus_ferret_ext/scanner.rl +84 -0
  98. data/ext/isomorfeus_ferret_ext/scanner_mb.rl +200 -0
  99. data/ext/isomorfeus_ferret_ext/scanner_utf8.rl +85 -0
  100. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.c +324 -0
  101. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.h +7 -0
  102. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.c +610 -0
  103. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.h +6 -0
  104. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.c +1104 -0
  105. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.h +6 -0
  106. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.c +749 -0
  107. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.h +7 -0
  108. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.c +1233 -0
  109. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.h +6 -0
  110. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.c +490 -0
  111. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.h +6 -0
  112. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.c +1217 -0
  113. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.h +7 -0
  114. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.c +1052 -0
  115. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.h +6 -0
  116. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.c +283 -0
  117. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.h +6 -0
  118. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.c +735 -0
  119. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.h +6 -0
  120. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.c +1003 -0
  121. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.h +7 -0
  122. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.c +1079 -0
  123. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.h +6 -0
  124. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.c +293 -0
  125. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.h +6 -0
  126. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.c +984 -0
  127. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.h +6 -0
  128. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.c +686 -0
  129. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.h +6 -0
  130. data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.c +325 -0
  131. data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.h +6 -0
  132. data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.c +620 -0
  133. data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.h +6 -0
  134. data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.c +1111 -0
  135. data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.h +6 -0
  136. data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.c +754 -0
  137. data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.h +6 -0
  138. data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.c +1242 -0
  139. data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.h +6 -0
  140. data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.c +495 -0
  141. data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.h +6 -0
  142. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.c +1220 -0
  143. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.h +6 -0
  144. data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.c +1059 -0
  145. data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.h +6 -0
  146. data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.c +285 -0
  147. data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.h +6 -0
  148. data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.c +741 -0
  149. data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.h +6 -0
  150. data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.c +1009 -0
  151. data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.h +6 -0
  152. data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.c +990 -0
  153. data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.h +6 -0
  154. data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.c +680 -0
  155. data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.h +6 -0
  156. data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.c +1083 -0
  157. data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.h +6 -0
  158. data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.c +294 -0
  159. data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.h +6 -0
  160. data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.c +2191 -0
  161. data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.h +6 -0
  162. data/ext/isomorfeus_ferret_ext/stem_api.c +66 -0
  163. data/ext/isomorfeus_ferret_ext/stem_api.h +26 -0
  164. data/ext/isomorfeus_ferret_ext/stem_header.h +57 -0
  165. data/ext/isomorfeus_ferret_ext/stem_modules.h +190 -0
  166. data/ext/isomorfeus_ferret_ext/stem_modules.txt +50 -0
  167. data/ext/isomorfeus_ferret_ext/stem_utilities.c +478 -0
  168. data/ext/isomorfeus_ferret_ext/test.c +850 -0
  169. data/ext/isomorfeus_ferret_ext/test.h +416 -0
  170. data/ext/isomorfeus_ferret_ext/test_1710.c +63 -0
  171. data/ext/isomorfeus_ferret_ext/test_analysis.c +1221 -0
  172. data/ext/isomorfeus_ferret_ext/test_array.c +272 -0
  173. data/ext/isomorfeus_ferret_ext/test_bitvector.c +600 -0
  174. data/ext/isomorfeus_ferret_ext/test_compound_io.c +170 -0
  175. data/ext/isomorfeus_ferret_ext/test_document.c +156 -0
  176. data/ext/isomorfeus_ferret_ext/test_except.c +244 -0
  177. data/ext/isomorfeus_ferret_ext/test_fields.c +522 -0
  178. data/ext/isomorfeus_ferret_ext/test_file_deleter.c +185 -0
  179. data/ext/isomorfeus_ferret_ext/test_filter.c +331 -0
  180. data/ext/isomorfeus_ferret_ext/test_fs_store.c +25 -0
  181. data/ext/isomorfeus_ferret_ext/test_global.c +299 -0
  182. data/ext/isomorfeus_ferret_ext/test_hash.c +485 -0
  183. data/ext/isomorfeus_ferret_ext/test_hashset.c +288 -0
  184. data/ext/isomorfeus_ferret_ext/test_helper.c +47 -0
  185. data/ext/isomorfeus_ferret_ext/test_highlighter.c +548 -0
  186. data/ext/isomorfeus_ferret_ext/test_index.c +2323 -0
  187. data/ext/isomorfeus_ferret_ext/test_lang.c +74 -0
  188. data/ext/isomorfeus_ferret_ext/test_mempool.c +102 -0
  189. data/ext/isomorfeus_ferret_ext/test_multimapper.c +64 -0
  190. data/ext/isomorfeus_ferret_ext/test_priorityqueue.c +213 -0
  191. data/ext/isomorfeus_ferret_ext/test_q_const_score.c +84 -0
  192. data/ext/isomorfeus_ferret_ext/test_q_filtered.c +61 -0
  193. data/ext/isomorfeus_ferret_ext/test_q_fuzzy.c +241 -0
  194. data/ext/isomorfeus_ferret_ext/test_q_parser.c +464 -0
  195. data/ext/isomorfeus_ferret_ext/test_q_span.c +575 -0
  196. data/ext/isomorfeus_ferret_ext/test_ram_store.c +77 -0
  197. data/ext/isomorfeus_ferret_ext/test_search.c +1874 -0
  198. data/ext/isomorfeus_ferret_ext/test_segments.c +167 -0
  199. data/ext/isomorfeus_ferret_ext/test_similarity.c +25 -0
  200. data/ext/isomorfeus_ferret_ext/test_sort.c +333 -0
  201. data/ext/isomorfeus_ferret_ext/test_store.c +591 -0
  202. data/ext/isomorfeus_ferret_ext/test_store.h +3 -0
  203. data/ext/isomorfeus_ferret_ext/test_term.c +351 -0
  204. data/ext/isomorfeus_ferret_ext/test_term_vectors.c +373 -0
  205. data/ext/isomorfeus_ferret_ext/test_test.c +83 -0
  206. data/ext/isomorfeus_ferret_ext/test_threading.c +188 -0
  207. data/ext/isomorfeus_ferret_ext/testhelper.c +561 -0
  208. data/ext/isomorfeus_ferret_ext/testhelper.h +25 -0
  209. data/ext/isomorfeus_ferret_ext/tests_all.h +87 -0
  210. data/ext/isomorfeus_ferret_ext/uchar-ucs4.rl +1854 -0
  211. data/ext/isomorfeus_ferret_ext/uchar-utf8.rl +1999 -0
  212. data/ext/isomorfeus_ferret_ext/url.rl +27 -0
  213. data/ext/isomorfeus_ferret_ext/word_list.h +15156 -0
  214. data/lib/isomorfeus/ferret/document.rb +132 -0
  215. data/lib/isomorfeus/ferret/field_symbol.rb +85 -0
  216. data/lib/isomorfeus/ferret/index/field_infos.rb +48 -0
  217. data/lib/isomorfeus/ferret/index/index.rb +970 -0
  218. data/lib/isomorfeus/ferret/monitor.rb +323 -0
  219. data/lib/isomorfeus/ferret/stdlib_patches.rb +151 -0
  220. data/lib/isomorfeus/ferret/version.rb +5 -0
  221. data/lib/isomorfeus-ferret.rb +8 -0
  222. metadata +307 -0
@@ -0,0 +1,1052 @@
1
+
2
+ /* This file was generated automatically by the Snowball to ANSI C compiler */
3
+
4
+ #include "stem_header.h"
5
+
6
+ extern int italian_ISO_8859_1_stem(struct SN_env * z);
7
+
8
+ static int r_vowel_suffix(struct SN_env * z);
9
+ static int r_verb_suffix(struct SN_env * z);
10
+ static int r_standard_suffix(struct SN_env * z);
11
+ static int r_attached_pronoun(struct SN_env * z);
12
+ static int r_R2(struct SN_env * z);
13
+ static int r_R1(struct SN_env * z);
14
+ static int r_RV(struct SN_env * z);
15
+ static int r_mark_regions(struct SN_env * z);
16
+ static int r_postlude(struct SN_env * z);
17
+ static int r_prelude(struct SN_env * z);
18
+
19
+ extern struct SN_env * italian_ISO_8859_1_create_env(void);
20
+ extern void italian_ISO_8859_1_close_env(struct SN_env * z);
21
+
22
+ static const symbol s_0_1[2] = { 'q', 'u' };
23
+ static const symbol s_0_2[1] = { 0xE1 };
24
+ static const symbol s_0_3[1] = { 0xE9 };
25
+ static const symbol s_0_4[1] = { 0xED };
26
+ static const symbol s_0_5[1] = { 0xF3 };
27
+ static const symbol s_0_6[1] = { 0xFA };
28
+
29
+ static const struct among a_0[7] =
30
+ {
31
+ /* 0 */ { 0, 0, -1, 7, 0},
32
+ /* 1 */ { 2, s_0_1, 0, 6, 0},
33
+ /* 2 */ { 1, s_0_2, 0, 1, 0},
34
+ /* 3 */ { 1, s_0_3, 0, 2, 0},
35
+ /* 4 */ { 1, s_0_4, 0, 3, 0},
36
+ /* 5 */ { 1, s_0_5, 0, 4, 0},
37
+ /* 6 */ { 1, s_0_6, 0, 5, 0}
38
+ };
39
+
40
+ static const symbol s_1_1[1] = { 'I' };
41
+ static const symbol s_1_2[1] = { 'U' };
42
+
43
+ static const struct among a_1[3] =
44
+ {
45
+ /* 0 */ { 0, 0, -1, 3, 0},
46
+ /* 1 */ { 1, s_1_1, 0, 1, 0},
47
+ /* 2 */ { 1, s_1_2, 0, 2, 0}
48
+ };
49
+
50
+ static const symbol s_2_0[2] = { 'l', 'a' };
51
+ static const symbol s_2_1[4] = { 'c', 'e', 'l', 'a' };
52
+ static const symbol s_2_2[6] = { 'g', 'l', 'i', 'e', 'l', 'a' };
53
+ static const symbol s_2_3[4] = { 'm', 'e', 'l', 'a' };
54
+ static const symbol s_2_4[4] = { 't', 'e', 'l', 'a' };
55
+ static const symbol s_2_5[4] = { 'v', 'e', 'l', 'a' };
56
+ static const symbol s_2_6[2] = { 'l', 'e' };
57
+ static const symbol s_2_7[4] = { 'c', 'e', 'l', 'e' };
58
+ static const symbol s_2_8[6] = { 'g', 'l', 'i', 'e', 'l', 'e' };
59
+ static const symbol s_2_9[4] = { 'm', 'e', 'l', 'e' };
60
+ static const symbol s_2_10[4] = { 't', 'e', 'l', 'e' };
61
+ static const symbol s_2_11[4] = { 'v', 'e', 'l', 'e' };
62
+ static const symbol s_2_12[2] = { 'n', 'e' };
63
+ static const symbol s_2_13[4] = { 'c', 'e', 'n', 'e' };
64
+ static const symbol s_2_14[6] = { 'g', 'l', 'i', 'e', 'n', 'e' };
65
+ static const symbol s_2_15[4] = { 'm', 'e', 'n', 'e' };
66
+ static const symbol s_2_16[4] = { 's', 'e', 'n', 'e' };
67
+ static const symbol s_2_17[4] = { 't', 'e', 'n', 'e' };
68
+ static const symbol s_2_18[4] = { 'v', 'e', 'n', 'e' };
69
+ static const symbol s_2_19[2] = { 'c', 'i' };
70
+ static const symbol s_2_20[2] = { 'l', 'i' };
71
+ static const symbol s_2_21[4] = { 'c', 'e', 'l', 'i' };
72
+ static const symbol s_2_22[6] = { 'g', 'l', 'i', 'e', 'l', 'i' };
73
+ static const symbol s_2_23[4] = { 'm', 'e', 'l', 'i' };
74
+ static const symbol s_2_24[4] = { 't', 'e', 'l', 'i' };
75
+ static const symbol s_2_25[4] = { 'v', 'e', 'l', 'i' };
76
+ static const symbol s_2_26[3] = { 'g', 'l', 'i' };
77
+ static const symbol s_2_27[2] = { 'm', 'i' };
78
+ static const symbol s_2_28[2] = { 's', 'i' };
79
+ static const symbol s_2_29[2] = { 't', 'i' };
80
+ static const symbol s_2_30[2] = { 'v', 'i' };
81
+ static const symbol s_2_31[2] = { 'l', 'o' };
82
+ static const symbol s_2_32[4] = { 'c', 'e', 'l', 'o' };
83
+ static const symbol s_2_33[6] = { 'g', 'l', 'i', 'e', 'l', 'o' };
84
+ static const symbol s_2_34[4] = { 'm', 'e', 'l', 'o' };
85
+ static const symbol s_2_35[4] = { 't', 'e', 'l', 'o' };
86
+ static const symbol s_2_36[4] = { 'v', 'e', 'l', 'o' };
87
+
88
+ static const struct among a_2[37] =
89
+ {
90
+ /* 0 */ { 2, s_2_0, -1, -1, 0},
91
+ /* 1 */ { 4, s_2_1, 0, -1, 0},
92
+ /* 2 */ { 6, s_2_2, 0, -1, 0},
93
+ /* 3 */ { 4, s_2_3, 0, -1, 0},
94
+ /* 4 */ { 4, s_2_4, 0, -1, 0},
95
+ /* 5 */ { 4, s_2_5, 0, -1, 0},
96
+ /* 6 */ { 2, s_2_6, -1, -1, 0},
97
+ /* 7 */ { 4, s_2_7, 6, -1, 0},
98
+ /* 8 */ { 6, s_2_8, 6, -1, 0},
99
+ /* 9 */ { 4, s_2_9, 6, -1, 0},
100
+ /* 10 */ { 4, s_2_10, 6, -1, 0},
101
+ /* 11 */ { 4, s_2_11, 6, -1, 0},
102
+ /* 12 */ { 2, s_2_12, -1, -1, 0},
103
+ /* 13 */ { 4, s_2_13, 12, -1, 0},
104
+ /* 14 */ { 6, s_2_14, 12, -1, 0},
105
+ /* 15 */ { 4, s_2_15, 12, -1, 0},
106
+ /* 16 */ { 4, s_2_16, 12, -1, 0},
107
+ /* 17 */ { 4, s_2_17, 12, -1, 0},
108
+ /* 18 */ { 4, s_2_18, 12, -1, 0},
109
+ /* 19 */ { 2, s_2_19, -1, -1, 0},
110
+ /* 20 */ { 2, s_2_20, -1, -1, 0},
111
+ /* 21 */ { 4, s_2_21, 20, -1, 0},
112
+ /* 22 */ { 6, s_2_22, 20, -1, 0},
113
+ /* 23 */ { 4, s_2_23, 20, -1, 0},
114
+ /* 24 */ { 4, s_2_24, 20, -1, 0},
115
+ /* 25 */ { 4, s_2_25, 20, -1, 0},
116
+ /* 26 */ { 3, s_2_26, 20, -1, 0},
117
+ /* 27 */ { 2, s_2_27, -1, -1, 0},
118
+ /* 28 */ { 2, s_2_28, -1, -1, 0},
119
+ /* 29 */ { 2, s_2_29, -1, -1, 0},
120
+ /* 30 */ { 2, s_2_30, -1, -1, 0},
121
+ /* 31 */ { 2, s_2_31, -1, -1, 0},
122
+ /* 32 */ { 4, s_2_32, 31, -1, 0},
123
+ /* 33 */ { 6, s_2_33, 31, -1, 0},
124
+ /* 34 */ { 4, s_2_34, 31, -1, 0},
125
+ /* 35 */ { 4, s_2_35, 31, -1, 0},
126
+ /* 36 */ { 4, s_2_36, 31, -1, 0}
127
+ };
128
+
129
+ static const symbol s_3_0[4] = { 'a', 'n', 'd', 'o' };
130
+ static const symbol s_3_1[4] = { 'e', 'n', 'd', 'o' };
131
+ static const symbol s_3_2[2] = { 'a', 'r' };
132
+ static const symbol s_3_3[2] = { 'e', 'r' };
133
+ static const symbol s_3_4[2] = { 'i', 'r' };
134
+
135
+ static const struct among a_3[5] =
136
+ {
137
+ /* 0 */ { 4, s_3_0, -1, 1, 0},
138
+ /* 1 */ { 4, s_3_1, -1, 1, 0},
139
+ /* 2 */ { 2, s_3_2, -1, 2, 0},
140
+ /* 3 */ { 2, s_3_3, -1, 2, 0},
141
+ /* 4 */ { 2, s_3_4, -1, 2, 0}
142
+ };
143
+
144
+ static const symbol s_4_0[2] = { 'i', 'c' };
145
+ static const symbol s_4_1[4] = { 'a', 'b', 'i', 'l' };
146
+ static const symbol s_4_2[2] = { 'o', 's' };
147
+ static const symbol s_4_3[2] = { 'i', 'v' };
148
+
149
+ static const struct among a_4[4] =
150
+ {
151
+ /* 0 */ { 2, s_4_0, -1, -1, 0},
152
+ /* 1 */ { 4, s_4_1, -1, -1, 0},
153
+ /* 2 */ { 2, s_4_2, -1, -1, 0},
154
+ /* 3 */ { 2, s_4_3, -1, 1, 0}
155
+ };
156
+
157
+ static const symbol s_5_0[2] = { 'i', 'c' };
158
+ static const symbol s_5_1[4] = { 'a', 'b', 'i', 'l' };
159
+ static const symbol s_5_2[2] = { 'i', 'v' };
160
+
161
+ static const struct among a_5[3] =
162
+ {
163
+ /* 0 */ { 2, s_5_0, -1, 1, 0},
164
+ /* 1 */ { 4, s_5_1, -1, 1, 0},
165
+ /* 2 */ { 2, s_5_2, -1, 1, 0}
166
+ };
167
+
168
+ static const symbol s_6_0[3] = { 'i', 'c', 'a' };
169
+ static const symbol s_6_1[5] = { 'l', 'o', 'g', 'i', 'a' };
170
+ static const symbol s_6_2[3] = { 'o', 's', 'a' };
171
+ static const symbol s_6_3[4] = { 'i', 's', 't', 'a' };
172
+ static const symbol s_6_4[3] = { 'i', 'v', 'a' };
173
+ static const symbol s_6_5[4] = { 'a', 'n', 'z', 'a' };
174
+ static const symbol s_6_6[4] = { 'e', 'n', 'z', 'a' };
175
+ static const symbol s_6_7[3] = { 'i', 'c', 'e' };
176
+ static const symbol s_6_8[6] = { 'a', 't', 'r', 'i', 'c', 'e' };
177
+ static const symbol s_6_9[4] = { 'i', 'c', 'h', 'e' };
178
+ static const symbol s_6_10[5] = { 'l', 'o', 'g', 'i', 'e' };
179
+ static const symbol s_6_11[5] = { 'a', 'b', 'i', 'l', 'e' };
180
+ static const symbol s_6_12[5] = { 'i', 'b', 'i', 'l', 'e' };
181
+ static const symbol s_6_13[6] = { 'u', 's', 'i', 'o', 'n', 'e' };
182
+ static const symbol s_6_14[6] = { 'a', 'z', 'i', 'o', 'n', 'e' };
183
+ static const symbol s_6_15[6] = { 'u', 'z', 'i', 'o', 'n', 'e' };
184
+ static const symbol s_6_16[5] = { 'a', 't', 'o', 'r', 'e' };
185
+ static const symbol s_6_17[3] = { 'o', 's', 'e' };
186
+ static const symbol s_6_18[4] = { 'a', 'n', 't', 'e' };
187
+ static const symbol s_6_19[5] = { 'm', 'e', 'n', 't', 'e' };
188
+ static const symbol s_6_20[6] = { 'a', 'm', 'e', 'n', 't', 'e' };
189
+ static const symbol s_6_21[4] = { 'i', 's', 't', 'e' };
190
+ static const symbol s_6_22[3] = { 'i', 'v', 'e' };
191
+ static const symbol s_6_23[4] = { 'a', 'n', 'z', 'e' };
192
+ static const symbol s_6_24[4] = { 'e', 'n', 'z', 'e' };
193
+ static const symbol s_6_25[3] = { 'i', 'c', 'i' };
194
+ static const symbol s_6_26[6] = { 'a', 't', 'r', 'i', 'c', 'i' };
195
+ static const symbol s_6_27[4] = { 'i', 'c', 'h', 'i' };
196
+ static const symbol s_6_28[5] = { 'a', 'b', 'i', 'l', 'i' };
197
+ static const symbol s_6_29[5] = { 'i', 'b', 'i', 'l', 'i' };
198
+ static const symbol s_6_30[4] = { 'i', 's', 'm', 'i' };
199
+ static const symbol s_6_31[6] = { 'u', 's', 'i', 'o', 'n', 'i' };
200
+ static const symbol s_6_32[6] = { 'a', 'z', 'i', 'o', 'n', 'i' };
201
+ static const symbol s_6_33[6] = { 'u', 'z', 'i', 'o', 'n', 'i' };
202
+ static const symbol s_6_34[5] = { 'a', 't', 'o', 'r', 'i' };
203
+ static const symbol s_6_35[3] = { 'o', 's', 'i' };
204
+ static const symbol s_6_36[4] = { 'a', 'n', 't', 'i' };
205
+ static const symbol s_6_37[6] = { 'a', 'm', 'e', 'n', 't', 'i' };
206
+ static const symbol s_6_38[6] = { 'i', 'm', 'e', 'n', 't', 'i' };
207
+ static const symbol s_6_39[4] = { 'i', 's', 't', 'i' };
208
+ static const symbol s_6_40[3] = { 'i', 'v', 'i' };
209
+ static const symbol s_6_41[3] = { 'i', 'c', 'o' };
210
+ static const symbol s_6_42[4] = { 'i', 's', 'm', 'o' };
211
+ static const symbol s_6_43[3] = { 'o', 's', 'o' };
212
+ static const symbol s_6_44[6] = { 'a', 'm', 'e', 'n', 't', 'o' };
213
+ static const symbol s_6_45[6] = { 'i', 'm', 'e', 'n', 't', 'o' };
214
+ static const symbol s_6_46[3] = { 'i', 'v', 'o' };
215
+ static const symbol s_6_47[3] = { 'i', 't', 0xE0 };
216
+ static const symbol s_6_48[4] = { 'i', 's', 't', 0xE0 };
217
+ static const symbol s_6_49[4] = { 'i', 's', 't', 0xE8 };
218
+ static const symbol s_6_50[4] = { 'i', 's', 't', 0xEC };
219
+
220
+ static const struct among a_6[51] =
221
+ {
222
+ /* 0 */ { 3, s_6_0, -1, 1, 0},
223
+ /* 1 */ { 5, s_6_1, -1, 3, 0},
224
+ /* 2 */ { 3, s_6_2, -1, 1, 0},
225
+ /* 3 */ { 4, s_6_3, -1, 1, 0},
226
+ /* 4 */ { 3, s_6_4, -1, 9, 0},
227
+ /* 5 */ { 4, s_6_5, -1, 1, 0},
228
+ /* 6 */ { 4, s_6_6, -1, 5, 0},
229
+ /* 7 */ { 3, s_6_7, -1, 1, 0},
230
+ /* 8 */ { 6, s_6_8, 7, 1, 0},
231
+ /* 9 */ { 4, s_6_9, -1, 1, 0},
232
+ /* 10 */ { 5, s_6_10, -1, 3, 0},
233
+ /* 11 */ { 5, s_6_11, -1, 1, 0},
234
+ /* 12 */ { 5, s_6_12, -1, 1, 0},
235
+ /* 13 */ { 6, s_6_13, -1, 4, 0},
236
+ /* 14 */ { 6, s_6_14, -1, 2, 0},
237
+ /* 15 */ { 6, s_6_15, -1, 4, 0},
238
+ /* 16 */ { 5, s_6_16, -1, 2, 0},
239
+ /* 17 */ { 3, s_6_17, -1, 1, 0},
240
+ /* 18 */ { 4, s_6_18, -1, 1, 0},
241
+ /* 19 */ { 5, s_6_19, -1, 1, 0},
242
+ /* 20 */ { 6, s_6_20, 19, 7, 0},
243
+ /* 21 */ { 4, s_6_21, -1, 1, 0},
244
+ /* 22 */ { 3, s_6_22, -1, 9, 0},
245
+ /* 23 */ { 4, s_6_23, -1, 1, 0},
246
+ /* 24 */ { 4, s_6_24, -1, 5, 0},
247
+ /* 25 */ { 3, s_6_25, -1, 1, 0},
248
+ /* 26 */ { 6, s_6_26, 25, 1, 0},
249
+ /* 27 */ { 4, s_6_27, -1, 1, 0},
250
+ /* 28 */ { 5, s_6_28, -1, 1, 0},
251
+ /* 29 */ { 5, s_6_29, -1, 1, 0},
252
+ /* 30 */ { 4, s_6_30, -1, 1, 0},
253
+ /* 31 */ { 6, s_6_31, -1, 4, 0},
254
+ /* 32 */ { 6, s_6_32, -1, 2, 0},
255
+ /* 33 */ { 6, s_6_33, -1, 4, 0},
256
+ /* 34 */ { 5, s_6_34, -1, 2, 0},
257
+ /* 35 */ { 3, s_6_35, -1, 1, 0},
258
+ /* 36 */ { 4, s_6_36, -1, 1, 0},
259
+ /* 37 */ { 6, s_6_37, -1, 6, 0},
260
+ /* 38 */ { 6, s_6_38, -1, 6, 0},
261
+ /* 39 */ { 4, s_6_39, -1, 1, 0},
262
+ /* 40 */ { 3, s_6_40, -1, 9, 0},
263
+ /* 41 */ { 3, s_6_41, -1, 1, 0},
264
+ /* 42 */ { 4, s_6_42, -1, 1, 0},
265
+ /* 43 */ { 3, s_6_43, -1, 1, 0},
266
+ /* 44 */ { 6, s_6_44, -1, 6, 0},
267
+ /* 45 */ { 6, s_6_45, -1, 6, 0},
268
+ /* 46 */ { 3, s_6_46, -1, 9, 0},
269
+ /* 47 */ { 3, s_6_47, -1, 8, 0},
270
+ /* 48 */ { 4, s_6_48, -1, 1, 0},
271
+ /* 49 */ { 4, s_6_49, -1, 1, 0},
272
+ /* 50 */ { 4, s_6_50, -1, 1, 0}
273
+ };
274
+
275
+ static const symbol s_7_0[4] = { 'i', 's', 'c', 'a' };
276
+ static const symbol s_7_1[4] = { 'e', 'n', 'd', 'a' };
277
+ static const symbol s_7_2[3] = { 'a', 't', 'a' };
278
+ static const symbol s_7_3[3] = { 'i', 't', 'a' };
279
+ static const symbol s_7_4[3] = { 'u', 't', 'a' };
280
+ static const symbol s_7_5[3] = { 'a', 'v', 'a' };
281
+ static const symbol s_7_6[3] = { 'e', 'v', 'a' };
282
+ static const symbol s_7_7[3] = { 'i', 'v', 'a' };
283
+ static const symbol s_7_8[6] = { 'e', 'r', 'e', 'b', 'b', 'e' };
284
+ static const symbol s_7_9[6] = { 'i', 'r', 'e', 'b', 'b', 'e' };
285
+ static const symbol s_7_10[4] = { 'i', 's', 'c', 'e' };
286
+ static const symbol s_7_11[4] = { 'e', 'n', 'd', 'e' };
287
+ static const symbol s_7_12[3] = { 'a', 'r', 'e' };
288
+ static const symbol s_7_13[3] = { 'e', 'r', 'e' };
289
+ static const symbol s_7_14[3] = { 'i', 'r', 'e' };
290
+ static const symbol s_7_15[4] = { 'a', 's', 's', 'e' };
291
+ static const symbol s_7_16[3] = { 'a', 't', 'e' };
292
+ static const symbol s_7_17[5] = { 'a', 'v', 'a', 't', 'e' };
293
+ static const symbol s_7_18[5] = { 'e', 'v', 'a', 't', 'e' };
294
+ static const symbol s_7_19[5] = { 'i', 'v', 'a', 't', 'e' };
295
+ static const symbol s_7_20[3] = { 'e', 't', 'e' };
296
+ static const symbol s_7_21[5] = { 'e', 'r', 'e', 't', 'e' };
297
+ static const symbol s_7_22[5] = { 'i', 'r', 'e', 't', 'e' };
298
+ static const symbol s_7_23[3] = { 'i', 't', 'e' };
299
+ static const symbol s_7_24[6] = { 'e', 'r', 'e', 's', 't', 'e' };
300
+ static const symbol s_7_25[6] = { 'i', 'r', 'e', 's', 't', 'e' };
301
+ static const symbol s_7_26[3] = { 'u', 't', 'e' };
302
+ static const symbol s_7_27[4] = { 'e', 'r', 'a', 'i' };
303
+ static const symbol s_7_28[4] = { 'i', 'r', 'a', 'i' };
304
+ static const symbol s_7_29[4] = { 'i', 's', 'c', 'i' };
305
+ static const symbol s_7_30[4] = { 'e', 'n', 'd', 'i' };
306
+ static const symbol s_7_31[4] = { 'e', 'r', 'e', 'i' };
307
+ static const symbol s_7_32[4] = { 'i', 'r', 'e', 'i' };
308
+ static const symbol s_7_33[4] = { 'a', 's', 's', 'i' };
309
+ static const symbol s_7_34[3] = { 'a', 't', 'i' };
310
+ static const symbol s_7_35[3] = { 'i', 't', 'i' };
311
+ static const symbol s_7_36[6] = { 'e', 'r', 'e', 's', 't', 'i' };
312
+ static const symbol s_7_37[6] = { 'i', 'r', 'e', 's', 't', 'i' };
313
+ static const symbol s_7_38[3] = { 'u', 't', 'i' };
314
+ static const symbol s_7_39[3] = { 'a', 'v', 'i' };
315
+ static const symbol s_7_40[3] = { 'e', 'v', 'i' };
316
+ static const symbol s_7_41[3] = { 'i', 'v', 'i' };
317
+ static const symbol s_7_42[4] = { 'i', 's', 'c', 'o' };
318
+ static const symbol s_7_43[4] = { 'a', 'n', 'd', 'o' };
319
+ static const symbol s_7_44[4] = { 'e', 'n', 'd', 'o' };
320
+ static const symbol s_7_45[4] = { 'Y', 'a', 'm', 'o' };
321
+ static const symbol s_7_46[4] = { 'i', 'a', 'm', 'o' };
322
+ static const symbol s_7_47[5] = { 'a', 'v', 'a', 'm', 'o' };
323
+ static const symbol s_7_48[5] = { 'e', 'v', 'a', 'm', 'o' };
324
+ static const symbol s_7_49[5] = { 'i', 'v', 'a', 'm', 'o' };
325
+ static const symbol s_7_50[5] = { 'e', 'r', 'e', 'm', 'o' };
326
+ static const symbol s_7_51[5] = { 'i', 'r', 'e', 'm', 'o' };
327
+ static const symbol s_7_52[6] = { 'a', 's', 's', 'i', 'm', 'o' };
328
+ static const symbol s_7_53[4] = { 'a', 'm', 'm', 'o' };
329
+ static const symbol s_7_54[4] = { 'e', 'm', 'm', 'o' };
330
+ static const symbol s_7_55[6] = { 'e', 'r', 'e', 'm', 'm', 'o' };
331
+ static const symbol s_7_56[6] = { 'i', 'r', 'e', 'm', 'm', 'o' };
332
+ static const symbol s_7_57[4] = { 'i', 'm', 'm', 'o' };
333
+ static const symbol s_7_58[3] = { 'a', 'n', 'o' };
334
+ static const symbol s_7_59[6] = { 'i', 's', 'c', 'a', 'n', 'o' };
335
+ static const symbol s_7_60[5] = { 'a', 'v', 'a', 'n', 'o' };
336
+ static const symbol s_7_61[5] = { 'e', 'v', 'a', 'n', 'o' };
337
+ static const symbol s_7_62[5] = { 'i', 'v', 'a', 'n', 'o' };
338
+ static const symbol s_7_63[6] = { 'e', 'r', 'a', 'n', 'n', 'o' };
339
+ static const symbol s_7_64[6] = { 'i', 'r', 'a', 'n', 'n', 'o' };
340
+ static const symbol s_7_65[3] = { 'o', 'n', 'o' };
341
+ static const symbol s_7_66[6] = { 'i', 's', 'c', 'o', 'n', 'o' };
342
+ static const symbol s_7_67[5] = { 'a', 'r', 'o', 'n', 'o' };
343
+ static const symbol s_7_68[5] = { 'e', 'r', 'o', 'n', 'o' };
344
+ static const symbol s_7_69[5] = { 'i', 'r', 'o', 'n', 'o' };
345
+ static const symbol s_7_70[8] = { 'e', 'r', 'e', 'b', 'b', 'e', 'r', 'o' };
346
+ static const symbol s_7_71[8] = { 'i', 'r', 'e', 'b', 'b', 'e', 'r', 'o' };
347
+ static const symbol s_7_72[6] = { 'a', 's', 's', 'e', 'r', 'o' };
348
+ static const symbol s_7_73[6] = { 'e', 's', 's', 'e', 'r', 'o' };
349
+ static const symbol s_7_74[6] = { 'i', 's', 's', 'e', 'r', 'o' };
350
+ static const symbol s_7_75[3] = { 'a', 't', 'o' };
351
+ static const symbol s_7_76[3] = { 'i', 't', 'o' };
352
+ static const symbol s_7_77[3] = { 'u', 't', 'o' };
353
+ static const symbol s_7_78[3] = { 'a', 'v', 'o' };
354
+ static const symbol s_7_79[3] = { 'e', 'v', 'o' };
355
+ static const symbol s_7_80[3] = { 'i', 'v', 'o' };
356
+ static const symbol s_7_81[2] = { 'a', 'r' };
357
+ static const symbol s_7_82[2] = { 'i', 'r' };
358
+ static const symbol s_7_83[3] = { 'e', 'r', 0xE0 };
359
+ static const symbol s_7_84[3] = { 'i', 'r', 0xE0 };
360
+ static const symbol s_7_85[3] = { 'e', 'r', 0xF2 };
361
+ static const symbol s_7_86[3] = { 'i', 'r', 0xF2 };
362
+
363
+ static const struct among a_7[87] =
364
+ {
365
+ /* 0 */ { 4, s_7_0, -1, 1, 0},
366
+ /* 1 */ { 4, s_7_1, -1, 1, 0},
367
+ /* 2 */ { 3, s_7_2, -1, 1, 0},
368
+ /* 3 */ { 3, s_7_3, -1, 1, 0},
369
+ /* 4 */ { 3, s_7_4, -1, 1, 0},
370
+ /* 5 */ { 3, s_7_5, -1, 1, 0},
371
+ /* 6 */ { 3, s_7_6, -1, 1, 0},
372
+ /* 7 */ { 3, s_7_7, -1, 1, 0},
373
+ /* 8 */ { 6, s_7_8, -1, 1, 0},
374
+ /* 9 */ { 6, s_7_9, -1, 1, 0},
375
+ /* 10 */ { 4, s_7_10, -1, 1, 0},
376
+ /* 11 */ { 4, s_7_11, -1, 1, 0},
377
+ /* 12 */ { 3, s_7_12, -1, 1, 0},
378
+ /* 13 */ { 3, s_7_13, -1, 1, 0},
379
+ /* 14 */ { 3, s_7_14, -1, 1, 0},
380
+ /* 15 */ { 4, s_7_15, -1, 1, 0},
381
+ /* 16 */ { 3, s_7_16, -1, 1, 0},
382
+ /* 17 */ { 5, s_7_17, 16, 1, 0},
383
+ /* 18 */ { 5, s_7_18, 16, 1, 0},
384
+ /* 19 */ { 5, s_7_19, 16, 1, 0},
385
+ /* 20 */ { 3, s_7_20, -1, 1, 0},
386
+ /* 21 */ { 5, s_7_21, 20, 1, 0},
387
+ /* 22 */ { 5, s_7_22, 20, 1, 0},
388
+ /* 23 */ { 3, s_7_23, -1, 1, 0},
389
+ /* 24 */ { 6, s_7_24, -1, 1, 0},
390
+ /* 25 */ { 6, s_7_25, -1, 1, 0},
391
+ /* 26 */ { 3, s_7_26, -1, 1, 0},
392
+ /* 27 */ { 4, s_7_27, -1, 1, 0},
393
+ /* 28 */ { 4, s_7_28, -1, 1, 0},
394
+ /* 29 */ { 4, s_7_29, -1, 1, 0},
395
+ /* 30 */ { 4, s_7_30, -1, 1, 0},
396
+ /* 31 */ { 4, s_7_31, -1, 1, 0},
397
+ /* 32 */ { 4, s_7_32, -1, 1, 0},
398
+ /* 33 */ { 4, s_7_33, -1, 1, 0},
399
+ /* 34 */ { 3, s_7_34, -1, 1, 0},
400
+ /* 35 */ { 3, s_7_35, -1, 1, 0},
401
+ /* 36 */ { 6, s_7_36, -1, 1, 0},
402
+ /* 37 */ { 6, s_7_37, -1, 1, 0},
403
+ /* 38 */ { 3, s_7_38, -1, 1, 0},
404
+ /* 39 */ { 3, s_7_39, -1, 1, 0},
405
+ /* 40 */ { 3, s_7_40, -1, 1, 0},
406
+ /* 41 */ { 3, s_7_41, -1, 1, 0},
407
+ /* 42 */ { 4, s_7_42, -1, 1, 0},
408
+ /* 43 */ { 4, s_7_43, -1, 1, 0},
409
+ /* 44 */ { 4, s_7_44, -1, 1, 0},
410
+ /* 45 */ { 4, s_7_45, -1, 1, 0},
411
+ /* 46 */ { 4, s_7_46, -1, 1, 0},
412
+ /* 47 */ { 5, s_7_47, -1, 1, 0},
413
+ /* 48 */ { 5, s_7_48, -1, 1, 0},
414
+ /* 49 */ { 5, s_7_49, -1, 1, 0},
415
+ /* 50 */ { 5, s_7_50, -1, 1, 0},
416
+ /* 51 */ { 5, s_7_51, -1, 1, 0},
417
+ /* 52 */ { 6, s_7_52, -1, 1, 0},
418
+ /* 53 */ { 4, s_7_53, -1, 1, 0},
419
+ /* 54 */ { 4, s_7_54, -1, 1, 0},
420
+ /* 55 */ { 6, s_7_55, 54, 1, 0},
421
+ /* 56 */ { 6, s_7_56, 54, 1, 0},
422
+ /* 57 */ { 4, s_7_57, -1, 1, 0},
423
+ /* 58 */ { 3, s_7_58, -1, 1, 0},
424
+ /* 59 */ { 6, s_7_59, 58, 1, 0},
425
+ /* 60 */ { 5, s_7_60, 58, 1, 0},
426
+ /* 61 */ { 5, s_7_61, 58, 1, 0},
427
+ /* 62 */ { 5, s_7_62, 58, 1, 0},
428
+ /* 63 */ { 6, s_7_63, -1, 1, 0},
429
+ /* 64 */ { 6, s_7_64, -1, 1, 0},
430
+ /* 65 */ { 3, s_7_65, -1, 1, 0},
431
+ /* 66 */ { 6, s_7_66, 65, 1, 0},
432
+ /* 67 */ { 5, s_7_67, 65, 1, 0},
433
+ /* 68 */ { 5, s_7_68, 65, 1, 0},
434
+ /* 69 */ { 5, s_7_69, 65, 1, 0},
435
+ /* 70 */ { 8, s_7_70, -1, 1, 0},
436
+ /* 71 */ { 8, s_7_71, -1, 1, 0},
437
+ /* 72 */ { 6, s_7_72, -1, 1, 0},
438
+ /* 73 */ { 6, s_7_73, -1, 1, 0},
439
+ /* 74 */ { 6, s_7_74, -1, 1, 0},
440
+ /* 75 */ { 3, s_7_75, -1, 1, 0},
441
+ /* 76 */ { 3, s_7_76, -1, 1, 0},
442
+ /* 77 */ { 3, s_7_77, -1, 1, 0},
443
+ /* 78 */ { 3, s_7_78, -1, 1, 0},
444
+ /* 79 */ { 3, s_7_79, -1, 1, 0},
445
+ /* 80 */ { 3, s_7_80, -1, 1, 0},
446
+ /* 81 */ { 2, s_7_81, -1, 1, 0},
447
+ /* 82 */ { 2, s_7_82, -1, 1, 0},
448
+ /* 83 */ { 3, s_7_83, -1, 1, 0},
449
+ /* 84 */ { 3, s_7_84, -1, 1, 0},
450
+ /* 85 */ { 3, s_7_85, -1, 1, 0},
451
+ /* 86 */ { 3, s_7_86, -1, 1, 0}
452
+ };
453
+
454
+ static const unsigned char g_v[] = { 17, 65, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 128, 8, 2, 1 };
455
+
456
+ static const unsigned char g_AEIO[] = { 17, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 128, 8, 2 };
457
+
458
+ static const unsigned char g_CG[] = { 17 };
459
+
460
+ static const symbol s_0[] = { 0xE0 };
461
+ static const symbol s_1[] = { 0xE8 };
462
+ static const symbol s_2[] = { 0xEC };
463
+ static const symbol s_3[] = { 0xF2 };
464
+ static const symbol s_4[] = { 0xF9 };
465
+ static const symbol s_5[] = { 'q', 'U' };
466
+ static const symbol s_6[] = { 'u' };
467
+ static const symbol s_7[] = { 'U' };
468
+ static const symbol s_8[] = { 'i' };
469
+ static const symbol s_9[] = { 'I' };
470
+ static const symbol s_10[] = { 'i' };
471
+ static const symbol s_11[] = { 'u' };
472
+ static const symbol s_12[] = { 'e' };
473
+ static const symbol s_13[] = { 'i', 'c' };
474
+ static const symbol s_14[] = { 'l', 'o', 'g' };
475
+ static const symbol s_15[] = { 'u' };
476
+ static const symbol s_16[] = { 'e', 'n', 't', 'e' };
477
+ static const symbol s_17[] = { 'a', 't' };
478
+ static const symbol s_18[] = { 'a', 't' };
479
+ static const symbol s_19[] = { 'i', 'c' };
480
+ static const symbol s_20[] = { 'i' };
481
+ static const symbol s_21[] = { 'h' };
482
+
483
+ static int r_prelude(struct SN_env * z) {
484
+ int among_var;
485
+ { int c_test = z->c; /* test, line 35 */
486
+ while(1) { /* repeat, line 35 */
487
+ int c1 = z->c;
488
+ z->bra = z->c; /* [, line 36 */
489
+ among_var = find_among(z, a_0, 7); /* substring, line 36 */
490
+ if (!(among_var)) goto lab0;
491
+ z->ket = z->c; /* ], line 36 */
492
+ switch(among_var) {
493
+ case 0: goto lab0;
494
+ case 1:
495
+ { int ret = slice_from_s(z, 1, s_0); /* <-, line 37 */
496
+ if (ret < 0) return ret;
497
+ }
498
+ break;
499
+ case 2:
500
+ { int ret = slice_from_s(z, 1, s_1); /* <-, line 38 */
501
+ if (ret < 0) return ret;
502
+ }
503
+ break;
504
+ case 3:
505
+ { int ret = slice_from_s(z, 1, s_2); /* <-, line 39 */
506
+ if (ret < 0) return ret;
507
+ }
508
+ break;
509
+ case 4:
510
+ { int ret = slice_from_s(z, 1, s_3); /* <-, line 40 */
511
+ if (ret < 0) return ret;
512
+ }
513
+ break;
514
+ case 5:
515
+ { int ret = slice_from_s(z, 1, s_4); /* <-, line 41 */
516
+ if (ret < 0) return ret;
517
+ }
518
+ break;
519
+ case 6:
520
+ { int ret = slice_from_s(z, 2, s_5); /* <-, line 42 */
521
+ if (ret < 0) return ret;
522
+ }
523
+ break;
524
+ case 7:
525
+ if (z->c >= z->l) goto lab0;
526
+ z->c++; /* next, line 43 */
527
+ break;
528
+ }
529
+ continue;
530
+ lab0:
531
+ z->c = c1;
532
+ break;
533
+ }
534
+ z->c = c_test;
535
+ }
536
+ while(1) { /* repeat, line 46 */
537
+ int c2 = z->c;
538
+ while(1) { /* goto, line 46 */
539
+ int c3 = z->c;
540
+ if (in_grouping(z, g_v, 97, 249, 0)) goto lab2;
541
+ z->bra = z->c; /* [, line 47 */
542
+ { int c4 = z->c; /* or, line 47 */
543
+ if (!(eq_s(z, 1, s_6))) goto lab4;
544
+ z->ket = z->c; /* ], line 47 */
545
+ if (in_grouping(z, g_v, 97, 249, 0)) goto lab4;
546
+ { int ret = slice_from_s(z, 1, s_7); /* <-, line 47 */
547
+ if (ret < 0) return ret;
548
+ }
549
+ goto lab3;
550
+ lab4:
551
+ z->c = c4;
552
+ if (!(eq_s(z, 1, s_8))) goto lab2;
553
+ z->ket = z->c; /* ], line 48 */
554
+ if (in_grouping(z, g_v, 97, 249, 0)) goto lab2;
555
+ { int ret = slice_from_s(z, 1, s_9); /* <-, line 48 */
556
+ if (ret < 0) return ret;
557
+ }
558
+ }
559
+ lab3:
560
+ z->c = c3;
561
+ break;
562
+ lab2:
563
+ z->c = c3;
564
+ if (z->c >= z->l) goto lab1;
565
+ z->c++; /* goto, line 46 */
566
+ }
567
+ continue;
568
+ lab1:
569
+ z->c = c2;
570
+ break;
571
+ }
572
+ return 1;
573
+ }
574
+
575
+ static int r_mark_regions(struct SN_env * z) {
576
+ z->I[0] = z->l;
577
+ z->I[1] = z->l;
578
+ z->I[2] = z->l;
579
+ { int c1 = z->c; /* do, line 58 */
580
+ { int c2 = z->c; /* or, line 60 */
581
+ if (in_grouping(z, g_v, 97, 249, 0)) goto lab2;
582
+ { int c3 = z->c; /* or, line 59 */
583
+ if (out_grouping(z, g_v, 97, 249, 0)) goto lab4;
584
+ { /* gopast */ /* grouping v, line 59 */
585
+ int ret = out_grouping(z, g_v, 97, 249, 1);
586
+ if (ret < 0) goto lab4;
587
+ z->c += ret;
588
+ }
589
+ goto lab3;
590
+ lab4:
591
+ z->c = c3;
592
+ if (in_grouping(z, g_v, 97, 249, 0)) goto lab2;
593
+ { /* gopast */ /* non v, line 59 */
594
+ int ret = in_grouping(z, g_v, 97, 249, 1);
595
+ if (ret < 0) goto lab2;
596
+ z->c += ret;
597
+ }
598
+ }
599
+ lab3:
600
+ goto lab1;
601
+ lab2:
602
+ z->c = c2;
603
+ if (out_grouping(z, g_v, 97, 249, 0)) goto lab0;
604
+ { int c4 = z->c; /* or, line 61 */
605
+ if (out_grouping(z, g_v, 97, 249, 0)) goto lab6;
606
+ { /* gopast */ /* grouping v, line 61 */
607
+ int ret = out_grouping(z, g_v, 97, 249, 1);
608
+ if (ret < 0) goto lab6;
609
+ z->c += ret;
610
+ }
611
+ goto lab5;
612
+ lab6:
613
+ z->c = c4;
614
+ if (in_grouping(z, g_v, 97, 249, 0)) goto lab0;
615
+ if (z->c >= z->l) goto lab0;
616
+ z->c++; /* next, line 61 */
617
+ }
618
+ lab5:
619
+ ;
620
+ }
621
+ lab1:
622
+ z->I[0] = z->c; /* setmark pV, line 62 */
623
+ lab0:
624
+ z->c = c1;
625
+ }
626
+ { int c5 = z->c; /* do, line 64 */
627
+ { /* gopast */ /* grouping v, line 65 */
628
+ int ret = out_grouping(z, g_v, 97, 249, 1);
629
+ if (ret < 0) goto lab7;
630
+ z->c += ret;
631
+ }
632
+ { /* gopast */ /* non v, line 65 */
633
+ int ret = in_grouping(z, g_v, 97, 249, 1);
634
+ if (ret < 0) goto lab7;
635
+ z->c += ret;
636
+ }
637
+ z->I[1] = z->c; /* setmark p1, line 65 */
638
+ { /* gopast */ /* grouping v, line 66 */
639
+ int ret = out_grouping(z, g_v, 97, 249, 1);
640
+ if (ret < 0) goto lab7;
641
+ z->c += ret;
642
+ }
643
+ { /* gopast */ /* non v, line 66 */
644
+ int ret = in_grouping(z, g_v, 97, 249, 1);
645
+ if (ret < 0) goto lab7;
646
+ z->c += ret;
647
+ }
648
+ z->I[2] = z->c; /* setmark p2, line 66 */
649
+ lab7:
650
+ z->c = c5;
651
+ }
652
+ return 1;
653
+ }
654
+
655
+ static int r_postlude(struct SN_env * z) {
656
+ int among_var;
657
+ while(1) { /* repeat, line 70 */
658
+ int c1 = z->c;
659
+ z->bra = z->c; /* [, line 72 */
660
+ if (z->c >= z->l || (z->p[z->c + 0] != 73 && z->p[z->c + 0] != 85)) among_var = 3; else
661
+ among_var = find_among(z, a_1, 3); /* substring, line 72 */
662
+ if (!(among_var)) goto lab0;
663
+ z->ket = z->c; /* ], line 72 */
664
+ switch(among_var) {
665
+ case 0: goto lab0;
666
+ case 1:
667
+ { int ret = slice_from_s(z, 1, s_10); /* <-, line 73 */
668
+ if (ret < 0) return ret;
669
+ }
670
+ break;
671
+ case 2:
672
+ { int ret = slice_from_s(z, 1, s_11); /* <-, line 74 */
673
+ if (ret < 0) return ret;
674
+ }
675
+ break;
676
+ case 3:
677
+ if (z->c >= z->l) goto lab0;
678
+ z->c++; /* next, line 75 */
679
+ break;
680
+ }
681
+ continue;
682
+ lab0:
683
+ z->c = c1;
684
+ break;
685
+ }
686
+ return 1;
687
+ }
688
+
689
+ static int r_RV(struct SN_env * z) {
690
+ if (!(z->I[0] <= z->c)) return 0;
691
+ return 1;
692
+ }
693
+
694
+ static int r_R1(struct SN_env * z) {
695
+ if (!(z->I[1] <= z->c)) return 0;
696
+ return 1;
697
+ }
698
+
699
+ static int r_R2(struct SN_env * z) {
700
+ if (!(z->I[2] <= z->c)) return 0;
701
+ return 1;
702
+ }
703
+
704
+ static int r_attached_pronoun(struct SN_env * z) {
705
+ int among_var;
706
+ z->ket = z->c; /* [, line 87 */
707
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((33314 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
708
+ if (!(find_among_b(z, a_2, 37))) return 0; /* substring, line 87 */
709
+ z->bra = z->c; /* ], line 87 */
710
+ if (z->c - 1 <= z->lb || (z->p[z->c - 1] != 111 && z->p[z->c - 1] != 114)) return 0;
711
+ among_var = find_among_b(z, a_3, 5); /* among, line 97 */
712
+ if (!(among_var)) return 0;
713
+ { int ret = r_RV(z);
714
+ if (ret == 0) return 0; /* call RV, line 97 */
715
+ if (ret < 0) return ret;
716
+ }
717
+ switch(among_var) {
718
+ case 0: return 0;
719
+ case 1:
720
+ { int ret = slice_del(z); /* delete, line 98 */
721
+ if (ret < 0) return ret;
722
+ }
723
+ break;
724
+ case 2:
725
+ { int ret = slice_from_s(z, 1, s_12); /* <-, line 99 */
726
+ if (ret < 0) return ret;
727
+ }
728
+ break;
729
+ }
730
+ return 1;
731
+ }
732
+
733
+ static int r_standard_suffix(struct SN_env * z) {
734
+ int among_var;
735
+ z->ket = z->c; /* [, line 104 */
736
+ among_var = find_among_b(z, a_6, 51); /* substring, line 104 */
737
+ if (!(among_var)) return 0;
738
+ z->bra = z->c; /* ], line 104 */
739
+ switch(among_var) {
740
+ case 0: return 0;
741
+ case 1:
742
+ { int ret = r_R2(z);
743
+ if (ret == 0) return 0; /* call R2, line 111 */
744
+ if (ret < 0) return ret;
745
+ }
746
+ { int ret = slice_del(z); /* delete, line 111 */
747
+ if (ret < 0) return ret;
748
+ }
749
+ break;
750
+ case 2:
751
+ { int ret = r_R2(z);
752
+ if (ret == 0) return 0; /* call R2, line 113 */
753
+ if (ret < 0) return ret;
754
+ }
755
+ { int ret = slice_del(z); /* delete, line 113 */
756
+ if (ret < 0) return ret;
757
+ }
758
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 114 */
759
+ z->ket = z->c; /* [, line 114 */
760
+ if (!(eq_s_b(z, 2, s_13))) { z->c = z->l - m_keep; goto lab0; }
761
+ z->bra = z->c; /* ], line 114 */
762
+ { int ret = r_R2(z);
763
+ if (ret == 0) { z->c = z->l - m_keep; goto lab0; } /* call R2, line 114 */
764
+ if (ret < 0) return ret;
765
+ }
766
+ { int ret = slice_del(z); /* delete, line 114 */
767
+ if (ret < 0) return ret;
768
+ }
769
+ lab0:
770
+ ;
771
+ }
772
+ break;
773
+ case 3:
774
+ { int ret = r_R2(z);
775
+ if (ret == 0) return 0; /* call R2, line 117 */
776
+ if (ret < 0) return ret;
777
+ }
778
+ { int ret = slice_from_s(z, 3, s_14); /* <-, line 117 */
779
+ if (ret < 0) return ret;
780
+ }
781
+ break;
782
+ case 4:
783
+ { int ret = r_R2(z);
784
+ if (ret == 0) return 0; /* call R2, line 119 */
785
+ if (ret < 0) return ret;
786
+ }
787
+ { int ret = slice_from_s(z, 1, s_15); /* <-, line 119 */
788
+ if (ret < 0) return ret;
789
+ }
790
+ break;
791
+ case 5:
792
+ { int ret = r_R2(z);
793
+ if (ret == 0) return 0; /* call R2, line 121 */
794
+ if (ret < 0) return ret;
795
+ }
796
+ { int ret = slice_from_s(z, 4, s_16); /* <-, line 121 */
797
+ if (ret < 0) return ret;
798
+ }
799
+ break;
800
+ case 6:
801
+ { int ret = r_RV(z);
802
+ if (ret == 0) return 0; /* call RV, line 123 */
803
+ if (ret < 0) return ret;
804
+ }
805
+ { int ret = slice_del(z); /* delete, line 123 */
806
+ if (ret < 0) return ret;
807
+ }
808
+ break;
809
+ case 7:
810
+ { int ret = r_R1(z);
811
+ if (ret == 0) return 0; /* call R1, line 125 */
812
+ if (ret < 0) return ret;
813
+ }
814
+ { int ret = slice_del(z); /* delete, line 125 */
815
+ if (ret < 0) return ret;
816
+ }
817
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 126 */
818
+ z->ket = z->c; /* [, line 127 */
819
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((4722696 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->c = z->l - m_keep; goto lab1; }
820
+ among_var = find_among_b(z, a_4, 4); /* substring, line 127 */
821
+ if (!(among_var)) { z->c = z->l - m_keep; goto lab1; }
822
+ z->bra = z->c; /* ], line 127 */
823
+ { int ret = r_R2(z);
824
+ if (ret == 0) { z->c = z->l - m_keep; goto lab1; } /* call R2, line 127 */
825
+ if (ret < 0) return ret;
826
+ }
827
+ { int ret = slice_del(z); /* delete, line 127 */
828
+ if (ret < 0) return ret;
829
+ }
830
+ switch(among_var) {
831
+ case 0: { z->c = z->l - m_keep; goto lab1; }
832
+ case 1:
833
+ z->ket = z->c; /* [, line 128 */
834
+ if (!(eq_s_b(z, 2, s_17))) { z->c = z->l - m_keep; goto lab1; }
835
+ z->bra = z->c; /* ], line 128 */
836
+ { int ret = r_R2(z);
837
+ if (ret == 0) { z->c = z->l - m_keep; goto lab1; } /* call R2, line 128 */
838
+ if (ret < 0) return ret;
839
+ }
840
+ { int ret = slice_del(z); /* delete, line 128 */
841
+ if (ret < 0) return ret;
842
+ }
843
+ break;
844
+ }
845
+ lab1:
846
+ ;
847
+ }
848
+ break;
849
+ case 8:
850
+ { int ret = r_R2(z);
851
+ if (ret == 0) return 0; /* call R2, line 134 */
852
+ if (ret < 0) return ret;
853
+ }
854
+ { int ret = slice_del(z); /* delete, line 134 */
855
+ if (ret < 0) return ret;
856
+ }
857
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 135 */
858
+ z->ket = z->c; /* [, line 136 */
859
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((4198408 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->c = z->l - m_keep; goto lab2; }
860
+ among_var = find_among_b(z, a_5, 3); /* substring, line 136 */
861
+ if (!(among_var)) { z->c = z->l - m_keep; goto lab2; }
862
+ z->bra = z->c; /* ], line 136 */
863
+ switch(among_var) {
864
+ case 0: { z->c = z->l - m_keep; goto lab2; }
865
+ case 1:
866
+ { int ret = r_R2(z);
867
+ if (ret == 0) { z->c = z->l - m_keep; goto lab2; } /* call R2, line 137 */
868
+ if (ret < 0) return ret;
869
+ }
870
+ { int ret = slice_del(z); /* delete, line 137 */
871
+ if (ret < 0) return ret;
872
+ }
873
+ break;
874
+ }
875
+ lab2:
876
+ ;
877
+ }
878
+ break;
879
+ case 9:
880
+ { int ret = r_R2(z);
881
+ if (ret == 0) return 0; /* call R2, line 142 */
882
+ if (ret < 0) return ret;
883
+ }
884
+ { int ret = slice_del(z); /* delete, line 142 */
885
+ if (ret < 0) return ret;
886
+ }
887
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 143 */
888
+ z->ket = z->c; /* [, line 143 */
889
+ if (!(eq_s_b(z, 2, s_18))) { z->c = z->l - m_keep; goto lab3; }
890
+ z->bra = z->c; /* ], line 143 */
891
+ { int ret = r_R2(z);
892
+ if (ret == 0) { z->c = z->l - m_keep; goto lab3; } /* call R2, line 143 */
893
+ if (ret < 0) return ret;
894
+ }
895
+ { int ret = slice_del(z); /* delete, line 143 */
896
+ if (ret < 0) return ret;
897
+ }
898
+ z->ket = z->c; /* [, line 143 */
899
+ if (!(eq_s_b(z, 2, s_19))) { z->c = z->l - m_keep; goto lab3; }
900
+ z->bra = z->c; /* ], line 143 */
901
+ { int ret = r_R2(z);
902
+ if (ret == 0) { z->c = z->l - m_keep; goto lab3; } /* call R2, line 143 */
903
+ if (ret < 0) return ret;
904
+ }
905
+ { int ret = slice_del(z); /* delete, line 143 */
906
+ if (ret < 0) return ret;
907
+ }
908
+ lab3:
909
+ ;
910
+ }
911
+ break;
912
+ }
913
+ return 1;
914
+ }
915
+
916
+ static int r_verb_suffix(struct SN_env * z) {
917
+ int among_var;
918
+ { int mlimit; /* setlimit, line 148 */
919
+ int m1 = z->l - z->c; (void)m1;
920
+ if (z->c < z->I[0]) return 0;
921
+ z->c = z->I[0]; /* tomark, line 148 */
922
+ mlimit = z->lb; z->lb = z->c;
923
+ z->c = z->l - m1;
924
+ z->ket = z->c; /* [, line 149 */
925
+ among_var = find_among_b(z, a_7, 87); /* substring, line 149 */
926
+ if (!(among_var)) { z->lb = mlimit; return 0; }
927
+ z->bra = z->c; /* ], line 149 */
928
+ switch(among_var) {
929
+ case 0: { z->lb = mlimit; return 0; }
930
+ case 1:
931
+ { int ret = slice_del(z); /* delete, line 163 */
932
+ if (ret < 0) return ret;
933
+ }
934
+ break;
935
+ }
936
+ z->lb = mlimit;
937
+ }
938
+ return 1;
939
+ }
940
+
941
+ static int r_vowel_suffix(struct SN_env * z) {
942
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 171 */
943
+ z->ket = z->c; /* [, line 172 */
944
+ if (in_grouping_b(z, g_AEIO, 97, 242, 0)) { z->c = z->l - m_keep; goto lab0; }
945
+ z->bra = z->c; /* ], line 172 */
946
+ { int ret = r_RV(z);
947
+ if (ret == 0) { z->c = z->l - m_keep; goto lab0; } /* call RV, line 172 */
948
+ if (ret < 0) return ret;
949
+ }
950
+ { int ret = slice_del(z); /* delete, line 172 */
951
+ if (ret < 0) return ret;
952
+ }
953
+ z->ket = z->c; /* [, line 173 */
954
+ if (!(eq_s_b(z, 1, s_20))) { z->c = z->l - m_keep; goto lab0; }
955
+ z->bra = z->c; /* ], line 173 */
956
+ { int ret = r_RV(z);
957
+ if (ret == 0) { z->c = z->l - m_keep; goto lab0; } /* call RV, line 173 */
958
+ if (ret < 0) return ret;
959
+ }
960
+ { int ret = slice_del(z); /* delete, line 173 */
961
+ if (ret < 0) return ret;
962
+ }
963
+ lab0:
964
+ ;
965
+ }
966
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 175 */
967
+ z->ket = z->c; /* [, line 176 */
968
+ if (!(eq_s_b(z, 1, s_21))) { z->c = z->l - m_keep; goto lab1; }
969
+ z->bra = z->c; /* ], line 176 */
970
+ if (in_grouping_b(z, g_CG, 99, 103, 0)) { z->c = z->l - m_keep; goto lab1; }
971
+ { int ret = r_RV(z);
972
+ if (ret == 0) { z->c = z->l - m_keep; goto lab1; } /* call RV, line 176 */
973
+ if (ret < 0) return ret;
974
+ }
975
+ { int ret = slice_del(z); /* delete, line 176 */
976
+ if (ret < 0) return ret;
977
+ }
978
+ lab1:
979
+ ;
980
+ }
981
+ return 1;
982
+ }
983
+
984
+ extern int italian_ISO_8859_1_stem(struct SN_env * z) {
985
+ { int c1 = z->c; /* do, line 182 */
986
+ { int ret = r_prelude(z);
987
+ if (ret == 0) goto lab0; /* call prelude, line 182 */
988
+ if (ret < 0) return ret;
989
+ }
990
+ lab0:
991
+ z->c = c1;
992
+ }
993
+ { int c2 = z->c; /* do, line 183 */
994
+ { int ret = r_mark_regions(z);
995
+ if (ret == 0) goto lab1; /* call mark_regions, line 183 */
996
+ if (ret < 0) return ret;
997
+ }
998
+ lab1:
999
+ z->c = c2;
1000
+ }
1001
+ z->lb = z->c; z->c = z->l; /* backwards, line 184 */
1002
+
1003
+ { int m3 = z->l - z->c; (void)m3; /* do, line 185 */
1004
+ { int ret = r_attached_pronoun(z);
1005
+ if (ret == 0) goto lab2; /* call attached_pronoun, line 185 */
1006
+ if (ret < 0) return ret;
1007
+ }
1008
+ lab2:
1009
+ z->c = z->l - m3;
1010
+ }
1011
+ { int m4 = z->l - z->c; (void)m4; /* do, line 186 */
1012
+ { int m5 = z->l - z->c; (void)m5; /* or, line 186 */
1013
+ { int ret = r_standard_suffix(z);
1014
+ if (ret == 0) goto lab5; /* call standard_suffix, line 186 */
1015
+ if (ret < 0) return ret;
1016
+ }
1017
+ goto lab4;
1018
+ lab5:
1019
+ z->c = z->l - m5;
1020
+ { int ret = r_verb_suffix(z);
1021
+ if (ret == 0) goto lab3; /* call verb_suffix, line 186 */
1022
+ if (ret < 0) return ret;
1023
+ }
1024
+ }
1025
+ lab4:
1026
+ lab3:
1027
+ z->c = z->l - m4;
1028
+ }
1029
+ { int m6 = z->l - z->c; (void)m6; /* do, line 187 */
1030
+ { int ret = r_vowel_suffix(z);
1031
+ if (ret == 0) goto lab6; /* call vowel_suffix, line 187 */
1032
+ if (ret < 0) return ret;
1033
+ }
1034
+ lab6:
1035
+ z->c = z->l - m6;
1036
+ }
1037
+ z->c = z->lb;
1038
+ { int c7 = z->c; /* do, line 189 */
1039
+ { int ret = r_postlude(z);
1040
+ if (ret == 0) goto lab7; /* call postlude, line 189 */
1041
+ if (ret < 0) return ret;
1042
+ }
1043
+ lab7:
1044
+ z->c = c7;
1045
+ }
1046
+ return 1;
1047
+ }
1048
+
1049
+ extern struct SN_env * italian_ISO_8859_1_create_env(void) { return SN_create_env(0, 3, 0); }
1050
+
1051
+ extern void italian_ISO_8859_1_close_env(struct SN_env * z) { SN_close_env(z, 0); }
1052
+