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