source: other-projects/rsyntax-textarea/src/java/org/fife/ui/rsyntaxtextarea/modes/CSharpTokenMaker.java@ 25584

Last change on this file since 25584 was 25584, checked in by davidb, 12 years ago

Initial cut an a text edit area for GLI that supports color syntax highlighting

File size: 62.5 KB
Line 
1/* The following code was generated by JFlex 1.4.1 on 1/21/09 4:27 PM */
2
3/*
4 * 11/13/2004
5 *
6 * CSharpTokenMaker.java - An object that can take a chunk of text and return
7 * a linked list of tokens representing it in the C# programming language.
8 *
9 * This library is distributed under a modified BSD license. See the included
10 * RSyntaxTextArea.License.txt file for details.
11 */
12package org.fife.ui.rsyntaxtextarea.modes;
13
14import java.io.*;
15import javax.swing.text.Segment;
16
17import org.fife.ui.rsyntaxtextarea.*;
18
19
20/**
21 * A lexer for the C# programming language.
22 *
23 * This implementation was created using
24 * <a href="http://www.jflex.de/">JFlex</a> 1.4.1; however, the generated file
25 * was modified for performance. Memory allocation needs to be almost
26 * completely removed to be competitive with the handwritten lexers (subclasses
27 * of <code>AbstractTokenMaker</code>, so this class has been modified so that
28 * Strings are never allocated (via yytext()), and the scanner never has to
29 * worry about refilling its buffer (needlessly copying chars around).
30 * We can achieve this because RText always scans exactly 1 line of tokens at a
31 * time, and hands the scanner this line as an array of characters (a Segment
32 * really). Since tokens contain pointers to char arrays instead of Strings
33 * holding their contents, there is no need for allocating new memory for
34 * Strings.<p>
35 *
36 * The actual algorithm generated for scanning has, of course, not been
37 * modified.<p>
38 *
39 * If you wish to regenerate this file yourself, keep in mind the following:
40 * <ul>
41 * <li>The generated CSharpTokenMaker.java</code> file will contain two
42 * definitions of both <code>zzRefill</code> and <code>yyreset</code>.
43 * You should hand-delete the second of each definition (the ones
44 * generated by the lexer), as these generated methods modify the input
45 * buffer, which we'll never have to do.</li>
46 * <li>You should also change the declaration/definition of zzBuffer to NOT
47 * be initialized. This is a needless memory allocation for us since we
48 * will be pointing the array somewhere else anyway.</li>
49 * <li>You should NOT call <code>yylex()</code> on the generated scanner
50 * directly; rather, you should use <code>getTokenList</code> as you would
51 * with any other <code>TokenMaker</code> instance.</li>
52 * </ul>
53 *
54 * @author Robert Futrell
55 * @version 0.5
56 *
57 */
58
59public class CSharpTokenMaker extends AbstractJFlexCTokenMaker {
60
61 /** This character denotes the end of file */
62 public static final int YYEOF = -1;
63
64 /** lexical states */
65 public static final int VERBATIMSTRING = 3;
66 public static final int DOCUMENTCOMMENT = 2;
67 public static final int YYINITIAL = 0;
68 public static final int DELIMITEDCOMMENT = 1;
69
70 /**
71 * Translates characters to character classes
72 */
73 private static final String ZZ_CMAP_PACKED =
74 "\11\0\1\2\1\1\1\0\2\15\22\0\1\2\1\45\1\41\1\16"+
75 "\1\66\1\45\1\46\1\37\2\65\1\4\1\32\1\56\1\12\1\36"+
76 "\1\3\1\30\11\11\1\44\1\56\1\53\1\52\1\54\1\51\1\14"+
77 "\3\27\1\35\1\33\1\35\5\10\1\26\1\34\7\10\1\7\2\10"+
78 "\1\31\2\10\1\65\1\5\1\65\1\50\1\13\1\0\1\23\1\42"+
79 "\1\71\1\57\1\21\1\22\1\64\1\67\1\60\1\75\1\72\1\24"+
80 "\1\73\1\61\1\62\1\70\1\10\1\20\1\25\1\17\1\6\1\40"+
81 "\1\63\1\43\1\74\1\76\1\55\1\47\1\55\1\51\uff81\0";
82
83 /**
84 * Translates characters to character classes
85 */
86 private static final char [] ZZ_CMAP = zzUnpackCMap(ZZ_CMAP_PACKED);
87
88 /**
89 * Translates DFA states to action switch labels.
90 */
91 private static final int [] ZZ_ACTION = zzUnpackAction();
92
93 private static final String ZZ_ACTION_PACKED_0 =
94 "\2\0\2\1\1\2\1\3\1\4\2\5\2\6\1\7"+
95 "\1\5\3\2\7\6\1\7\1\5\1\2\1\10\1\6"+
96 "\1\11\1\6\5\5\1\12\11\6\1\1\1\13\5\1"+
97 "\1\14\1\1\1\15\3\1\1\16\1\17\1\0\1\20"+
98 "\1\21\5\6\1\22\1\7\1\22\1\23\1\7\1\0"+
99 "\1\24\7\2\14\6\1\25\10\6\1\22\1\23\1\26"+
100 "\1\10\1\27\2\6\2\11\1\30\4\6\2\25\21\6"+
101 "\1\31\7\0\1\32\2\0\1\1\7\0\1\20\1\33"+
102 "\5\6\1\7\1\23\1\0\7\2\1\34\1\2\17\6"+
103 "\1\25\10\6\1\35\1\10\1\36\2\10\1\26\1\10"+
104 "\3\6\1\11\1\37\3\11\7\6\1\40\20\6\20\0"+
105 "\1\6\1\40\2\6\6\2\1\41\12\6\2\35\2\10"+
106 "\1\26\2\6\2\11\16\6\1\0\1\42\2\0\1\43"+
107 "\7\0\3\2\10\6\1\35\2\10\1\26\1\6\2\11"+
108 "\10\6\7\0\2\2\3\6\2\10\1\26\1\11\5\6"+
109 "\2\0\1\2\3\6\1\0\1\6";
110
111 private static int [] zzUnpackAction() {
112 int [] result = new int[364];
113 int offset = 0;
114 offset = zzUnpackAction(ZZ_ACTION_PACKED_0, offset, result);
115 return result;
116 }
117
118 private static int zzUnpackAction(String packed, int offset, int [] result) {
119 int i = 0; /* index in packed string */
120 int j = offset; /* index in unpacked array */
121 int l = packed.length();
122 while (i < l) {
123 int count = packed.charAt(i++);
124 int value = packed.charAt(i++);
125 do result[j++] = value; while (--count > 0);
126 }
127 return j;
128 }
129
130
131 /**
132 * Translates a state to a row index in the transition table
133 */
134 private static final int [] ZZ_ROWMAP = zzUnpackRowMap();
135
136 private static final String ZZ_ROWMAP_PACKED_0 =
137 "\0\0\0\77\0\176\0\275\0\374\0\u013b\0\u017a\0\u01b9"+
138 "\0\u01f8\0\u0237\0\u0276\0\u02b5\0\u02f4\0\u0333\0\u013b\0\u0372"+
139 "\0\u03b1\0\u03f0\0\u042f\0\u046e\0\u04ad\0\u04ec\0\u052b\0\u056a"+
140 "\0\u05a9\0\u05e8\0\u0627\0\u0666\0\u06a5\0\u06e4\0\u013b\0\u0723"+
141 "\0\u0762\0\u07a1\0\u07e0\0\u013b\0\u013b\0\u081f\0\u085e\0\u089d"+
142 "\0\u08dc\0\u091b\0\u095a\0\u0999\0\u09d8\0\u0a17\0\u013b\0\u0a56"+
143 "\0\u0a95\0\u0ad4\0\u0b13\0\u0b52\0\u013b\0\u0b91\0\u0bd0\0\u0c0f"+
144 "\0\u0c4e\0\u0c8d\0\u013b\0\u0ccc\0\u0d0b\0\u0d4a\0\u013b\0\u0d89"+
145 "\0\u0dc8\0\u0e07\0\u0e46\0\u0e85\0\u0ec4\0\u0f03\0\u0f42\0\u0ec4"+
146 "\0\u0f81\0\u05e8\0\u013b\0\u0fc0\0\u0fff\0\u103e\0\u107d\0\u10bc"+
147 "\0\u10fb\0\u113a\0\u1179\0\u11b8\0\u11f7\0\u1236\0\u1275\0\u12b4"+
148 "\0\u12f3\0\u1332\0\u1371\0\u13b0\0\u13ef\0\u142e\0\u0276\0\u146d"+
149 "\0\u14ac\0\u14eb\0\u152a\0\u1569\0\u15a8\0\u15e7\0\u1626\0\u1665"+
150 "\0\u16a4\0\u16e3\0\u1722\0\u013b\0\u1761\0\u17a0\0\u17df\0\u181e"+
151 "\0\u013b\0\u185d\0\u189c\0\u18db\0\u191a\0\u1959\0\u1998\0\u19d7"+
152 "\0\u1a16\0\u1a55\0\u1a94\0\u1ad3\0\u1b12\0\u1b51\0\u1b90\0\u1bcf"+
153 "\0\u1c0e\0\u1c4d\0\u1c8c\0\u1ccb\0\u1d0a\0\u1d49\0\u1d88\0\u1dc7"+
154 "\0\u013b\0\u1e06\0\u1e45\0\u1e84\0\u1ec3\0\u1f02\0\u1f41\0\u0bd0"+
155 "\0\u013b\0\u1f80\0\u1fbf\0\u013b\0\u1ffe\0\u203d\0\u207c\0\u20bb"+
156 "\0\u20fa\0\u2139\0\u2178\0\u21b7\0\u013b\0\u21f6\0\u2235\0\u2274"+
157 "\0\u22b3\0\u22f2\0\u0ec4\0\u2331\0\u2370\0\u23af\0\u23ee\0\u242d"+
158 "\0\u246c\0\u24ab\0\u24ea\0\u2529\0\u2568\0\u25a7\0\u25e6\0\u2625"+
159 "\0\u2664\0\u26a3\0\u26e2\0\u2721\0\u2760\0\u279f\0\u27de\0\u281d"+
160 "\0\u285c\0\u289b\0\u28da\0\u2919\0\u2958\0\u2997\0\u29d6\0\u2a15"+
161 "\0\u2a54\0\u2a93\0\u2ad2\0\u2b11\0\u2b50\0\u2b8f\0\u2bce\0\u2c0d"+
162 "\0\u013b\0\u2c4c\0\u2c8b\0\u2cca\0\u2d09\0\u2d48\0\u2d87\0\u2dc6"+
163 "\0\u2e05\0\u013b\0\u2e44\0\u2e83\0\u2ec2\0\u2f01\0\u2f40\0\u2f7f"+
164 "\0\u2fbe\0\u2ffd\0\u303c\0\u307b\0\u30ba\0\u30f9\0\u3138\0\u3177"+
165 "\0\u31b6\0\u31f5\0\u3234\0\u3273\0\u32b2\0\u32f1\0\u3330\0\u336f"+
166 "\0\u33ae\0\u33ed\0\u342c\0\u346b\0\u34aa\0\u34e9\0\u3528\0\u3567"+
167 "\0\u35a6\0\u35e5\0\u3624\0\u3663\0\u36a2\0\u36e1\0\u3720\0\u375f"+
168 "\0\u379e\0\u37dd\0\u381c\0\u385b\0\u389a\0\u38d9\0\u0276\0\u3918"+
169 "\0\u3957\0\u3996\0\u39d5\0\u3a14\0\u3a53\0\u3a92\0\u3ad1\0\u0276"+
170 "\0\u3b10\0\u3b4f\0\u3b8e\0\u3bcd\0\u3c0c\0\u3c4b\0\u3c8a\0\u3cc9"+
171 "\0\u3d08\0\u3d47\0\u3d86\0\u3dc5\0\u3e04\0\u3e43\0\u3e82\0\u3ec1"+
172 "\0\u3f00\0\u3f3f\0\u3f7e\0\u3fbd\0\u3ffc\0\u403b\0\u407a\0\u40b9"+
173 "\0\u40f8\0\u4137\0\u4176\0\u41b5\0\u41f4\0\u4233\0\u4272\0\u42b1"+
174 "\0\u42f0\0\u432f\0\u436e\0\u43ad\0\u43ec\0\u442b\0\u446a\0\u44a9"+
175 "\0\u44e8\0\u4527\0\u4566\0\u45a5\0\u45e4\0\u4623\0\u4662\0\u46a1"+
176 "\0\u46e0\0\u471f\0\u475e\0\u479d\0\u47dc\0\u481b\0\u485a\0\u4899"+
177 "\0\u0ec4\0\u48d8\0\u4917\0\u4956\0\u4995\0\u49d4\0\u4a13\0\u4a52"+
178 "\0\u4a91\0\u4ad0\0\u4b0f\0\u4b4e\0\u4b8d\0\u4bcc\0\u4c0b\0\u4c4a"+
179 "\0\u436e\0\u4c89\0\u442b\0\u4cc8\0\u4d07\0\u4d46\0\u4d85\0\u4dc4"+
180 "\0\u4e03\0\u4e42\0\u4e81\0\u4ec0\0\u4eff\0\u4f3e\0\u4f7d\0\u4fbc"+
181 "\0\u4ffb\0\u503a\0\u5079\0\u50b8\0\u50f7\0\u5136\0\u5175\0\u51b4"+
182 "\0\u51f3\0\u5232\0\u5271\0\u52b0";
183
184 private static int [] zzUnpackRowMap() {
185 int [] result = new int[364];
186 int offset = 0;
187 offset = zzUnpackRowMap(ZZ_ROWMAP_PACKED_0, offset, result);
188 return result;
189 }
190
191 private static int zzUnpackRowMap(String packed, int offset, int [] result) {
192 int i = 0; /* index in packed string */
193 int j = offset; /* index in unpacked array */
194 int l = packed.length();
195 while (i < l) {
196 int high = packed.charAt(i++) << 16;
197 result[j++] = high | packed.charAt(i++);
198 }
199 return j;
200 }
201
202 /**
203 * The transition table of the DFA
204 */
205 private static final int [] ZZ_TRANS = zzUnpackTrans();
206
207 private static final String ZZ_TRANS_PACKED_0 =
208 "\1\5\1\6\1\7\1\10\1\11\1\5\1\12\2\13"+
209 "\1\14\1\15\1\13\1\16\1\17\1\20\1\21\1\22"+
210 "\1\23\1\24\1\25\1\26\1\27\2\13\1\30\1\13"+
211 "\1\31\3\13\1\32\1\33\1\34\1\35\1\36\1\13"+
212 "\1\37\1\11\1\40\1\41\1\11\1\37\1\11\1\42"+
213 "\1\43\1\44\1\45\1\46\1\47\1\50\1\51\1\52"+
214 "\1\53\1\44\1\5\1\13\1\54\1\55\5\13\1\56"+
215 "\1\57\2\56\1\60\15\56\1\61\40\56\1\62\3\56"+
216 "\1\63\7\56\1\64\1\65\20\64\1\66\30\64\1\67"+
217 "\7\64\1\70\3\64\1\71\7\64\1\72\1\73\37\72"+
218 "\1\74\35\72\1\5\4\0\5\5\1\0\2\5\1\0"+
219 "\14\5\1\0\3\5\2\0\1\5\1\0\2\5\13\0"+
220 "\6\5\1\0\11\5\101\0\1\7\13\0\1\75\63\0"+
221 "\1\76\1\77\45\0\1\37\76\0\1\37\24\0\1\5"+
222 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
223 "\5\13\1\101\1\102\4\13\1\0\3\13\2\0\1\13"+
224 "\1\0\2\13\13\0\1\13\1\103\1\104\3\13\1\0"+
225 "\1\5\10\13\1\5\4\0\1\5\4\13\1\100\1\13"+
226 "\1\5\1\0\1\5\13\13\1\0\3\13\2\0\1\13"+
227 "\1\0\2\13\13\0\6\13\1\0\1\5\10\13\1\105"+
228 "\4\0\1\105\2\106\1\105\1\14\1\0\2\105\1\0"+
229 "\3\105\1\107\1\110\1\105\1\111\1\105\1\111\1\105"+
230 "\1\14\1\105\1\0\1\107\2\110\1\112\1\0\1\105"+
231 "\1\0\2\105\13\0\1\110\5\105\1\0\5\105\1\110"+
232 "\3\105\12\0\1\37\37\0\1\37\1\0\1\37\22\0"+
233 "\1\5\4\0\1\5\3\13\1\5\1\0\1\13\1\5"+
234 "\1\0\1\5\11\13\1\5\1\13\1\0\3\13\2\0"+
235 "\1\13\1\113\2\13\13\0\6\13\1\0\1\5\10\13"+
236 "\1\5\1\0\1\75\2\0\1\5\1\114\3\5\1\0"+
237 "\2\5\1\0\2\5\1\115\1\116\2\5\1\117\5\5"+
238 "\1\0\3\5\2\0\1\5\1\0\2\5\13\0\1\120"+
239 "\1\121\2\5\1\122\1\5\1\0\12\5\4\0\1\5"+
240 "\4\13\1\100\1\13\1\5\1\0\1\5\1\13\1\123"+
241 "\11\13\1\0\3\13\2\0\1\13\1\0\2\13\13\0"+
242 "\6\13\1\0\1\5\1\124\4\13\1\125\2\13\1\5"+
243 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
244 "\2\13\1\126\10\13\1\0\3\13\2\0\1\13\1\0"+
245 "\2\13\13\0\6\13\1\0\1\5\10\13\1\5\4\0"+
246 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\5\13"+
247 "\1\127\5\13\1\0\3\13\2\0\1\130\1\0\1\13"+
248 "\1\131\13\0\2\13\1\132\3\13\1\0\1\5\10\13"+
249 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
250 "\1\5\4\13\1\133\1\134\5\13\1\0\3\13\2\0"+
251 "\1\13\1\0\2\13\13\0\1\13\1\135\1\13\1\136"+
252 "\2\13\1\0\1\5\10\13\1\5\4\0\1\5\4\13"+
253 "\1\100\1\13\1\5\1\0\1\5\6\13\1\137\4\13"+
254 "\1\0\3\13\2\0\1\13\1\0\1\140\1\13\13\0"+
255 "\6\13\1\0\1\5\10\13\1\5\4\0\1\5\4\13"+
256 "\1\100\1\13\1\5\1\0\1\5\13\13\1\0\3\13"+
257 "\2\0\1\13\1\0\2\13\13\0\3\13\1\141\2\13"+
258 "\1\0\1\5\10\13\1\5\4\0\1\5\4\13\1\100"+
259 "\1\13\1\5\1\0\1\5\1\142\1\13\1\143\10\13"+
260 "\1\0\3\13\2\0\1\13\1\0\1\144\1\13\13\0"+
261 "\1\13\1\145\2\13\1\146\1\13\1\0\1\5\1\147"+
262 "\7\13\1\105\4\0\1\105\2\106\1\105\1\14\1\0"+
263 "\2\105\1\0\3\105\1\107\1\110\1\105\1\111\1\105"+
264 "\1\111\1\105\1\14\1\150\1\0\1\107\2\110\1\112"+
265 "\1\0\1\105\1\0\1\105\1\150\13\0\1\110\5\105"+
266 "\1\0\5\105\1\110\3\105\32\0\1\37\17\0\1\37"+
267 "\35\0\1\151\16\0\1\151\46\0\1\152\1\0\3\152"+
268 "\1\153\31\152\1\154\37\152\1\5\4\0\1\5\4\13"+
269 "\1\100\1\13\1\5\1\0\1\5\13\13\1\0\3\13"+
270 "\2\0\1\13\1\0\2\13\13\0\1\13\1\155\1\13"+
271 "\1\156\2\13\1\0\1\5\10\13\1\35\1\157\3\35"+
272 "\1\160\33\35\1\161\35\35\1\5\4\0\1\5\4\13"+
273 "\1\100\1\13\1\5\1\0\1\5\1\13\1\162\2\13"+
274 "\1\127\6\13\1\0\3\13\2\0\1\13\1\0\2\13"+
275 "\13\0\3\13\1\163\2\13\1\0\1\5\5\13\1\164"+
276 "\2\13\46\0\1\37\3\0\1\37\73\0\1\37\2\0"+
277 "\1\37\76\0\1\37\1\11\75\0\1\37\1\0\1\11"+
278 "\22\0\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
279 "\1\0\1\5\2\13\1\165\10\13\1\0\3\13\2\0"+
280 "\1\13\1\0\2\13\13\0\3\13\1\166\2\13\1\0"+
281 "\1\5\10\13\1\5\4\0\1\5\4\13\1\100\1\13"+
282 "\1\5\1\0\1\5\3\13\1\137\2\13\1\137\4\13"+
283 "\1\0\3\13\2\0\1\13\1\0\2\13\13\0\2\13"+
284 "\1\167\3\13\1\0\1\5\4\13\1\170\3\13\1\5"+
285 "\4\0\1\5\1\171\3\13\1\100\1\13\1\5\1\0"+
286 "\1\5\2\13\1\172\1\13\1\173\6\13\1\0\3\13"+
287 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
288 "\10\13\1\5\4\0\1\5\1\174\3\13\1\100\1\13"+
289 "\1\5\1\0\1\5\13\13\1\0\3\13\2\0\1\175"+
290 "\1\0\1\176\1\13\13\0\6\13\1\0\1\5\1\13"+
291 "\1\177\6\13\1\5\4\0\1\5\4\13\1\100\1\13"+
292 "\1\5\1\0\1\5\13\13\1\0\3\13\2\0\1\13"+
293 "\1\0\2\13\13\0\6\13\1\0\1\5\1\200\7\13"+
294 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
295 "\1\5\13\13\1\0\3\13\2\0\1\13\1\0\2\13"+
296 "\13\0\3\13\1\201\2\13\1\0\1\5\10\13\1\5"+
297 "\4\0\1\5\1\202\3\13\1\100\1\13\1\5\1\0"+
298 "\1\5\1\13\1\203\2\13\1\204\6\13\1\0\3\13"+
299 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
300 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
301 "\1\0\1\5\4\13\1\205\1\206\5\13\1\0\3\13"+
302 "\2\0\1\13\1\0\2\13\13\0\3\13\1\207\2\13"+
303 "\1\0\1\5\1\210\7\13\1\56\1\0\2\56\1\0"+
304 "\15\56\1\0\40\56\1\0\3\56\1\0\7\56\3\0"+
305 "\1\211\112\0\1\212\40\0\1\213\101\0\1\214\32\0"+
306 "\1\215\57\0\1\64\1\0\20\64\1\0\30\64\1\0"+
307 "\7\64\1\0\3\64\1\0\7\64\17\0\1\216\40\0"+
308 "\1\217\16\0\54\220\1\221\22\220\63\0\1\222\32\0"+
309 "\1\223\57\0\1\72\1\0\37\72\1\0\35\72\41\0"+
310 "\1\224\37\0\1\75\3\0\1\225\11\0\1\226\1\227"+
311 "\2\0\1\230\32\0\1\231\1\232\2\0\1\233\13\0"+
312 "\3\234\1\235\73\234\6\0\6\100\3\0\13\100\1\0"+
313 "\3\100\2\0\1\100\1\0\2\100\13\0\6\100\2\0"+
314 "\10\100\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
315 "\1\0\1\5\13\13\1\0\3\13\2\0\1\13\1\0"+
316 "\2\13\13\0\3\13\1\236\2\13\1\0\1\5\10\13"+
317 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
318 "\1\5\13\13\1\0\3\13\2\0\1\13\1\0\2\13"+
319 "\13\0\1\13\1\237\4\13\1\0\1\5\1\147\7\13"+
320 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
321 "\1\5\13\13\1\0\3\13\2\0\1\13\1\0\2\13"+
322 "\13\0\2\13\1\240\3\13\1\0\1\5\10\13\1\5"+
323 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
324 "\6\13\1\241\4\13\1\0\3\13\2\0\1\13\1\0"+
325 "\2\13\13\0\6\13\1\0\1\5\2\13\1\242\5\13"+
326 "\1\105\4\0\5\105\1\0\2\105\1\0\14\105\1\0"+
327 "\3\105\2\0\1\105\1\0\2\105\13\0\6\105\1\0"+
328 "\12\105\4\0\5\105\1\0\2\105\1\0\6\105\1\243"+
329 "\1\105\1\243\3\105\1\0\3\105\2\0\1\105\1\0"+
330 "\2\105\13\0\6\105\1\0\12\105\4\0\4\105\1\244"+
331 "\1\245\2\105\1\0\12\105\1\244\1\105\1\245\3\105"+
332 "\2\0\1\105\1\0\2\105\13\0\6\105\1\0\12\105"+
333 "\4\0\1\105\2\243\2\105\1\0\2\105\1\0\14\105"+
334 "\1\0\3\105\2\0\1\105\1\0\2\105\13\0\6\105"+
335 "\1\0\11\105\1\5\4\0\5\5\1\0\2\5\1\0"+
336 "\14\5\1\0\3\5\2\0\1\5\1\0\2\5\13\0"+
337 "\2\5\1\246\3\5\1\0\12\5\4\0\5\5\1\0"+
338 "\2\5\1\0\3\5\1\247\10\5\1\0\3\5\2\0"+
339 "\1\5\1\0\2\5\13\0\6\5\1\0\12\5\4\0"+
340 "\5\5\1\0\2\5\1\0\2\5\1\250\3\5\1\251"+
341 "\5\5\1\0\3\5\2\0\1\5\1\0\2\5\13\0"+
342 "\2\5\1\252\3\5\1\0\12\5\4\0\5\5\1\0"+
343 "\2\5\1\0\14\5\1\0\3\5\2\0\1\5\1\0"+
344 "\2\5\13\0\1\5\1\253\4\5\1\0\12\5\4\0"+
345 "\5\5\1\0\2\5\1\0\3\5\1\254\10\5\1\0"+
346 "\3\5\2\0\1\5\1\0\2\5\13\0\6\5\1\0"+
347 "\12\5\4\0\5\5\1\0\2\5\1\0\4\5\1\255"+
348 "\7\5\1\0\3\5\2\0\1\5\1\0\2\5\13\0"+
349 "\6\5\1\0\12\5\4\0\5\5\1\0\2\5\1\0"+
350 "\5\5\1\256\6\5\1\0\3\5\2\0\1\5\1\0"+
351 "\2\5\13\0\6\5\1\0\12\5\4\0\1\5\1\257"+
352 "\3\13\1\100\1\13\1\5\1\0\1\5\13\13\1\0"+
353 "\3\13\2\0\1\13\1\0\2\13\13\0\6\13\1\0"+
354 "\1\5\5\13\1\137\2\13\1\5\4\0\1\5\4\13"+
355 "\1\100\1\13\1\5\1\0\1\5\1\13\1\260\11\13"+
356 "\1\0\3\13\2\0\1\13\1\0\2\13\13\0\1\13"+
357 "\1\261\4\13\1\0\1\5\10\13\1\5\4\0\1\5"+
358 "\4\13\1\100\1\13\1\5\1\0\1\5\13\13\1\0"+
359 "\3\13\2\0\1\13\1\0\2\13\13\0\6\13\1\0"+
360 "\1\5\1\13\1\262\6\13\1\5\4\0\1\5\4\13"+
361 "\1\100\1\13\1\5\1\0\1\5\1\263\2\13\1\137"+
362 "\1\264\6\13\1\0\3\13\2\0\1\13\1\0\2\13"+
363 "\13\0\6\13\1\0\1\5\10\13\1\5\4\0\1\5"+
364 "\4\13\1\100\1\13\1\5\1\0\1\5\6\13\1\265"+
365 "\4\13\1\0\3\13\2\0\1\13\1\0\2\13\13\0"+
366 "\6\13\1\0\1\5\10\13\1\5\4\0\1\5\4\13"+
367 "\1\100\1\13\1\5\1\0\1\5\2\13\1\266\10\13"+
368 "\1\0\3\13\2\0\1\13\1\0\2\13\13\0\6\13"+
369 "\1\0\1\5\10\13\1\5\4\0\1\5\4\13\1\100"+
370 "\1\13\1\5\1\0\1\5\1\267\12\13\1\0\3\13"+
371 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
372 "\1\13\1\270\6\13\1\5\4\0\1\5\1\271\3\13"+
373 "\1\100\1\13\1\5\1\0\1\5\13\13\1\0\3\13"+
374 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
375 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
376 "\1\0\1\5\5\13\1\272\5\13\1\0\3\13\2\0"+
377 "\1\13\1\0\2\13\13\0\6\13\1\0\1\5\10\13"+
378 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
379 "\1\5\13\13\1\0\3\13\2\0\1\13\1\0\2\13"+
380 "\13\0\3\13\1\273\2\13\1\0\1\5\10\13\1\5"+
381 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
382 "\13\13\1\0\3\13\2\0\1\13\1\0\1\13\1\274"+
383 "\13\0\2\13\1\275\3\13\1\0\1\5\10\13\1\5"+
384 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
385 "\1\13\1\276\11\13\1\0\3\13\2\0\1\13\1\0"+
386 "\2\13\13\0\6\13\1\0\1\5\10\13\1\5\4\0"+
387 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\6\13"+
388 "\1\277\4\13\1\0\3\13\2\0\1\13\1\0\2\13"+
389 "\13\0\6\13\1\0\1\5\10\13\1\5\4\0\1\5"+
390 "\4\13\1\100\1\13\1\5\1\0\1\5\13\13\1\0"+
391 "\3\13\2\0\1\13\1\0\2\13\13\0\2\13\1\300"+
392 "\3\13\1\0\1\5\2\13\1\301\5\13\1\5\4\0"+
393 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\1\13"+
394 "\1\302\2\13\1\303\6\13\1\0\3\13\2\0\1\13"+
395 "\1\0\2\13\13\0\6\13\1\0\1\5\10\13\1\5"+
396 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
397 "\4\13\1\304\6\13\1\0\3\13\2\0\1\13\1\0"+
398 "\2\13\13\0\6\13\1\0\1\5\10\13\1\5\4\0"+
399 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\13\13"+
400 "\1\0\3\13\2\0\1\13\1\0\2\13\13\0\6\13"+
401 "\1\0\1\5\5\13\1\164\2\13\1\5\4\0\1\5"+
402 "\4\13\1\100\1\13\1\5\1\0\1\5\13\13\1\0"+
403 "\3\13\2\0\1\13\1\0\2\13\13\0\6\13\1\0"+
404 "\1\5\7\13\1\262\1\5\4\0\1\5\4\13\1\100"+
405 "\1\13\1\5\1\0\1\5\13\13\1\0\3\13\2\0"+
406 "\1\13\1\0\2\13\13\0\1\13\1\305\4\13\1\0"+
407 "\1\5\10\13\1\5\4\0\1\5\4\13\1\100\1\13"+
408 "\1\5\1\0\1\5\13\13\1\0\3\13\2\0\1\13"+
409 "\1\0\2\13\13\0\3\13\1\306\2\13\1\0\1\5"+
410 "\10\13\1\105\4\0\4\105\1\307\1\0\2\105\1\0"+
411 "\3\105\3\307\3\105\2\307\1\105\1\0\1\307\1\105"+
412 "\1\307\2\0\1\105\1\0\1\307\1\105\13\0\1\307"+
413 "\5\105\1\0\3\105\1\307\6\105\4\0\4\105\1\151"+
414 "\1\0\2\105\1\0\3\105\1\107\1\110\5\105\1\151"+
415 "\1\105\1\0\1\107\2\110\2\0\1\105\1\0\2\105"+
416 "\13\0\1\110\5\105\1\0\5\105\1\110\3\105\1\310"+
417 "\1\0\35\310\1\311\40\310\1\0\3\310\1\152\1\312"+
418 "\1\313\7\310\2\152\1\310\2\152\4\310\1\152\6\310"+
419 "\1\314\3\152\1\315\15\310\1\152\15\310\1\5\4\0"+
420 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\1\13"+
421 "\1\316\11\13\1\0\3\13\2\0\1\13\1\0\2\13"+
422 "\13\0\6\13\1\0\1\5\10\13\1\5\4\0\1\5"+
423 "\4\13\1\100\1\13\1\5\1\0\1\5\5\13\1\317"+
424 "\5\13\1\0\3\13\2\0\1\13\1\0\2\13\13\0"+
425 "\1\13\1\320\4\13\1\0\1\5\10\13\5\157\1\321"+
426 "\33\157\1\322\36\157\1\0\3\157\1\35\1\323\1\324"+
427 "\7\157\2\35\1\157\2\35\4\157\1\35\6\157\4\35"+
428 "\1\325\15\157\1\35\15\157\1\5\4\0\1\5\4\13"+
429 "\1\100\1\13\1\5\1\0\1\5\2\13\1\326\10\13"+
430 "\1\0\3\13\2\0\1\13\1\0\2\13\13\0\6\13"+
431 "\1\0\1\5\10\13\1\5\4\0\1\5\4\13\1\100"+
432 "\1\13\1\5\1\0\1\5\13\13\1\0\3\13\2\0"+
433 "\1\13\1\0\2\13\13\0\3\13\1\327\2\13\1\0"+
434 "\1\5\10\13\1\5\4\0\1\5\4\13\1\100\1\13"+
435 "\1\5\1\0\1\5\1\330\12\13\1\0\3\13\2\0"+
436 "\1\13\1\0\2\13\13\0\6\13\1\0\1\5\10\13"+
437 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
438 "\1\5\3\13\1\331\1\13\1\332\5\13\1\0\3\13"+
439 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
440 "\2\13\1\333\5\13\1\5\4\0\1\5\1\334\3\13"+
441 "\1\100\1\13\1\5\1\0\1\5\13\13\1\0\3\13"+
442 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
443 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
444 "\1\0\1\5\1\335\12\13\1\0\3\13\2\0\1\13"+
445 "\1\0\2\13\13\0\6\13\1\0\1\5\10\13\1\5"+
446 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
447 "\13\13\1\0\3\13\2\0\1\13\1\0\2\13\13\0"+
448 "\6\13\1\0\1\5\1\13\1\270\6\13\1\5\4\0"+
449 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\5\13"+
450 "\1\336\5\13\1\0\3\13\2\0\1\13\1\0\2\13"+
451 "\13\0\6\13\1\0\1\5\10\13\1\5\4\0\1\5"+
452 "\4\13\1\100\1\13\1\5\1\0\1\5\13\13\1\0"+
453 "\3\13\2\0\1\13\1\0\2\13\13\0\4\13\1\137"+
454 "\1\13\1\0\1\5\10\13\1\5\4\0\1\5\4\13"+
455 "\1\100\1\13\1\5\1\0\1\5\13\13\1\0\3\13"+
456 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
457 "\4\13\1\337\3\13\1\5\4\0\1\5\4\13\1\100"+
458 "\1\13\1\5\1\0\1\5\1\137\12\13\1\0\3\13"+
459 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
460 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
461 "\1\0\1\5\2\13\1\340\10\13\1\0\3\13\2\0"+
462 "\1\13\1\0\2\13\13\0\6\13\1\0\1\5\10\13"+
463 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
464 "\1\5\13\13\1\0\3\13\2\0\1\13\1\0\2\13"+
465 "\13\0\6\13\1\0\1\5\6\13\1\341\1\13\1\5"+
466 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
467 "\2\13\1\342\10\13\1\0\3\13\2\0\1\13\1\0"+
468 "\2\13\13\0\6\13\1\0\1\5\10\13\1\5\4\0"+
469 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\13\13"+
470 "\1\0\3\13\2\0\1\13\1\0\2\13\13\0\1\13"+
471 "\1\343\4\13\1\0\1\5\10\13\1\5\4\0\1\5"+
472 "\4\13\1\100\1\13\1\5\1\0\1\5\1\344\12\13"+
473 "\1\0\3\13\2\0\1\13\1\0\2\13\13\0\6\13"+
474 "\1\0\1\5\10\13\1\5\4\0\1\5\4\13\1\100"+
475 "\1\13\1\5\1\0\1\5\13\13\1\0\3\13\2\0"+
476 "\1\13\1\0\1\345\1\13\13\0\6\13\1\0\1\5"+
477 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
478 "\1\0\1\5\13\13\1\0\3\13\2\0\1\13\1\0"+
479 "\2\13\13\0\1\13\1\346\1\13\1\347\2\13\1\0"+
480 "\1\5\10\13\1\5\4\0\1\5\4\13\1\100\1\13"+
481 "\1\5\1\0\1\5\1\13\1\350\11\13\1\0\3\13"+
482 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
483 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
484 "\1\0\1\5\1\351\5\13\1\265\4\13\1\0\3\13"+
485 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
486 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
487 "\1\0\1\5\4\13\1\352\6\13\1\0\3\13\2\0"+
488 "\1\13\1\0\2\13\13\0\6\13\1\0\1\5\10\13"+
489 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
490 "\1\5\13\13\1\0\3\13\2\0\1\13\1\0\2\13"+
491 "\13\0\2\13\1\353\3\13\1\0\1\5\10\13\1\5"+
492 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
493 "\2\13\1\354\1\13\1\355\6\13\1\0\3\13\2\0"+
494 "\1\13\1\0\2\13\13\0\6\13\1\0\1\5\10\13"+
495 "\70\0\1\356\32\0\1\357\135\0\1\360\32\0\1\361"+
496 "\147\0\1\362\32\0\1\363\135\0\1\364\32\0\1\365"+
497 "\140\0\1\366\36\0\1\367\75\0\1\370\3\0\1\371"+
498 "\34\0\1\372\75\0\1\373\37\0\1\374\77\0\1\255"+
499 "\77\0\1\375\53\0\1\234\1\0\75\234\1\5\4\0"+
500 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\13\13"+
501 "\1\0\3\13\2\0\1\13\1\0\2\13\13\0\2\13"+
502 "\1\300\3\13\1\0\1\5\10\13\1\5\4\0\1\5"+
503 "\4\13\1\100\1\13\1\5\1\0\1\5\13\13\1\0"+
504 "\3\13\2\0\1\13\1\0\2\13\13\0\2\13\1\376"+
505 "\3\13\1\0\1\5\10\13\1\5\4\0\1\5\4\13"+
506 "\1\100\1\13\1\5\1\0\1\5\1\377\12\13\1\0"+
507 "\3\13\2\0\1\13\1\0\2\13\13\0\6\13\1\0"+
508 "\1\5\10\13\1\5\4\0\1\5\4\13\1\100\1\13"+
509 "\1\5\1\0\1\5\4\13\1\u0100\6\13\1\0\3\13"+
510 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
511 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
512 "\1\0\1\5\13\13\1\0\3\13\2\0\1\13\1\0"+
513 "\2\13\13\0\6\13\1\0\1\5\1\u0101\7\13\1\105"+
514 "\4\0\4\105\1\244\1\0\2\105\1\0\4\105\1\110"+
515 "\5\105\1\244\1\105\1\0\1\105\2\110\2\0\1\105"+
516 "\1\0\2\105\13\0\1\110\5\105\1\0\5\105\1\110"+
517 "\3\105\11\0\1\244\16\0\1\244\46\0\1\5\4\0"+
518 "\5\5\1\0\2\5\1\0\14\5\1\0\3\5\2\0"+
519 "\1\5\1\0\2\5\13\0\1\u0102\5\5\1\0\12\5"+
520 "\4\0\5\5\1\0\2\5\1\0\14\5\1\0\3\5"+
521 "\2\0\1\5\1\0\2\5\13\0\5\5\1\u0103\1\0"+
522 "\12\5\4\0\5\5\1\0\2\5\1\0\2\5\1\u0104"+
523 "\11\5\1\0\3\5\2\0\1\5\1\0\2\5\13\0"+
524 "\6\5\1\0\12\5\4\0\5\5\1\0\2\5\1\0"+
525 "\7\5\1\u0105\4\5\1\0\3\5\2\0\1\5\1\0"+
526 "\2\5\13\0\1\5\1\121\4\5\1\0\12\5\4\0"+
527 "\5\5\1\0\2\5\1\0\14\5\1\0\3\5\2\0"+
528 "\1\5\1\0\2\5\13\0\1\u0106\5\5\1\0\12\5"+
529 "\4\0\5\5\1\0\2\5\1\0\14\5\1\0\3\5"+
530 "\2\0\1\5\1\0\2\5\13\0\2\5\1\u0105\3\5"+
531 "\1\0\12\5\4\0\5\5\1\0\2\5\1\0\4\5"+
532 "\1\117\7\5\1\0\3\5\2\0\1\5\1\0\2\5"+
533 "\13\0\6\5\1\0\11\5\1\255\1\0\75\255\1\5"+
534 "\4\0\5\5\1\0\2\5\1\0\2\5\1\u0107\11\5"+
535 "\1\0\3\5\2\0\1\5\1\0\2\5\13\0\6\5"+
536 "\1\0\12\5\4\0\1\5\4\13\1\100\1\13\1\5"+
537 "\1\0\1\5\2\13\1\u0108\10\13\1\0\3\13\2\0"+
538 "\1\13\1\0\2\13\13\0\6\13\1\0\1\5\10\13"+
539 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
540 "\1\5\13\13\1\0\3\13\2\0\1\13\1\0\2\13"+
541 "\13\0\3\13\1\172\2\13\1\0\1\5\10\13\1\5"+
542 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
543 "\6\13\1\137\4\13\1\0\3\13\2\0\1\13\1\0"+
544 "\2\13\13\0\6\13\1\0\1\5\10\13\1\5\4\0"+
545 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\2\13"+
546 "\1\u0109\10\13\1\0\3\13\2\0\1\13\1\0\2\13"+
547 "\13\0\6\13\1\0\1\5\10\13\1\5\4\0\1\5"+
548 "\1\u010a\3\13\1\100\1\13\1\5\1\0\1\5\13\13"+
549 "\1\0\3\13\2\0\1\13\1\0\2\13\13\0\6\13"+
550 "\1\0\1\5\10\13\1\5\4\0\1\5\4\13\1\100"+
551 "\1\13\1\5\1\0\1\5\13\13\1\0\3\13\2\0"+
552 "\1\13\1\0\2\13\13\0\1\u010b\5\13\1\0\1\5"+
553 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
554 "\1\0\1\5\2\13\1\137\10\13\1\0\3\13\2\0"+
555 "\1\13\1\0\2\13\13\0\6\13\1\0\1\5\10\13"+
556 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
557 "\1\5\13\13\1\0\3\13\2\0\1\13\1\0\2\13"+
558 "\13\0\2\13\1\174\3\13\1\0\1\5\10\13\1\5"+
559 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
560 "\2\13\1\u010a\10\13\1\0\3\13\2\0\1\13\1\0"+
561 "\2\13\13\0\6\13\1\0\1\5\10\13\1\5\4\0"+
562 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\5\13"+
563 "\1\u010c\5\13\1\0\3\13\2\0\1\13\1\0\2\13"+
564 "\13\0\6\13\1\0\1\5\10\13\1\5\4\0\1\5"+
565 "\4\13\1\100\1\13\1\5\1\0\1\5\13\13\1\0"+
566 "\3\13\2\0\1\13\1\0\2\13\13\0\6\13\1\0"+
567 "\1\5\4\13\1\137\3\13\1\5\4\0\1\5\4\13"+
568 "\1\100\1\13\1\5\1\0\1\5\6\13\1\257\4\13"+
569 "\1\0\3\13\2\0\1\13\1\0\2\13\13\0\6\13"+
570 "\1\0\1\5\10\13\1\5\4\0\1\5\4\13\1\100"+
571 "\1\13\1\5\1\0\1\5\4\13\1\240\6\13\1\0"+
572 "\3\13\2\0\1\13\1\0\2\13\13\0\6\13\1\0"+
573 "\1\5\10\13\1\5\4\0\1\5\4\13\1\100\1\13"+
574 "\1\5\1\0\1\5\2\13\1\320\10\13\1\0\3\13"+
575 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
576 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
577 "\1\0\1\5\4\13\1\u010d\6\13\1\0\3\13\2\0"+
578 "\1\13\1\0\2\13\13\0\6\13\1\0\1\5\10\13"+
579 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
580 "\1\5\2\13\1\u010e\10\13\1\0\3\13\2\0\1\13"+
581 "\1\0\2\13\13\0\6\13\1\0\1\5\10\13\1\5"+
582 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
583 "\1\u010f\12\13\1\0\3\13\2\0\1\13\1\0\2\13"+
584 "\13\0\6\13\1\0\1\5\10\13\1\5\4\0\1\5"+
585 "\4\13\1\100\1\13\1\5\1\0\1\5\13\13\1\0"+
586 "\3\13\2\0\1\13\1\0\2\13\13\0\5\13\1\377"+
587 "\1\0\1\5\10\13\1\5\4\0\1\5\4\13\1\100"+
588 "\1\13\1\5\1\0\1\5\13\13\1\0\3\13\2\0"+
589 "\1\13\1\0\2\13\13\0\6\13\1\0\1\5\3\13"+
590 "\1\137\4\13\1\5\4\0\1\5\1\u0110\3\13\1\100"+
591 "\1\13\1\5\1\0\1\5\13\13\1\0\3\13\2\0"+
592 "\1\13\1\0\2\13\13\0\1\13\1\237\4\13\1\0"+
593 "\1\5\10\13\1\5\4\0\1\5\4\13\1\100\1\13"+
594 "\1\5\1\0\1\5\1\u0111\12\13\1\0\3\13\2\0"+
595 "\1\13\1\0\2\13\13\0\6\13\1\0\1\5\2\13"+
596 "\1\u0112\5\13\1\5\4\0\1\5\4\13\1\100\1\13"+
597 "\1\5\1\0\1\5\5\13\1\274\5\13\1\0\3\13"+
598 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
599 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
600 "\1\0\1\5\1\351\12\13\1\0\3\13\2\0\1\13"+
601 "\1\0\2\13\13\0\6\13\1\0\1\5\10\13\1\5"+
602 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
603 "\1\13\1\240\11\13\1\0\3\13\2\0\1\13\1\0"+
604 "\2\13\13\0\6\13\1\0\1\5\10\13\1\105\4\0"+
605 "\1\105\2\u0113\1\105\1\307\1\0\2\105\1\0\3\105"+
606 "\3\307\1\u0114\1\105\1\u0114\2\307\1\105\1\0\1\307"+
607 "\1\105\1\307\2\0\1\105\1\0\1\307\1\105\13\0"+
608 "\1\307\5\105\1\0\3\105\1\307\5\105\1\310\1\0"+
609 "\35\310\1\154\40\310\1\0\7\310\1\u0115\7\310\3\u0115"+
610 "\3\310\2\u0115\2\310\1\u0115\1\310\1\u0115\1\310\1\154"+
611 "\2\310\1\u0115\14\310\1\u0115\11\310\1\u0115\6\310\1\0"+
612 "\7\310\1\u0116\7\310\3\u0116\3\310\2\u0116\2\310\1\u0116"+
613 "\1\310\1\u0116\1\310\1\154\2\310\1\u0116\14\310\1\u0116"+
614 "\11\310\1\u0116\5\310\37\0\1\311\37\0\1\310\1\0"+
615 "\7\310\1\u0117\7\310\3\u0117\3\310\2\u0117\2\310\1\u0117"+
616 "\1\310\1\u0117\1\310\1\154\2\310\1\u0117\14\310\1\u0117"+
617 "\11\310\1\u0117\5\310\1\5\4\0\1\5\4\13\1\100"+
618 "\1\13\1\5\1\0\1\5\1\u0118\12\13\1\0\3\13"+
619 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
620 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
621 "\1\0\1\5\4\13\1\u0119\6\13\1\0\3\13\2\0"+
622 "\1\13\1\0\2\13\13\0\6\13\1\0\1\5\10\13"+
623 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
624 "\1\5\13\13\1\0\3\13\2\0\1\13\1\0\2\13"+
625 "\13\0\1\137\5\13\1\0\1\5\10\13\1\157\1\0"+
626 "\102\157\1\321\3\157\1\u011a\7\157\3\u011a\3\157\2\u011a"+
627 "\2\157\1\u011a\1\157\1\u011a\3\157\1\322\1\u011a\14\157"+
628 "\1\u011a\11\157\1\u011a\12\157\1\321\3\157\1\u011b\7\157"+
629 "\3\u011b\3\157\2\u011b\2\157\1\u011b\1\157\1\u011b\3\157"+
630 "\1\322\1\u011b\14\157\1\u011b\11\157\1\u011b\12\157\1\321"+
631 "\3\157\1\35\7\157\3\35\3\157\2\35\2\157\1\35"+
632 "\1\157\1\35\3\157\1\322\1\35\14\157\1\35\11\157"+
633 "\1\35\5\157\1\5\4\0\1\5\4\13\1\100\1\13"+
634 "\1\5\1\0\1\5\4\13\1\301\6\13\1\0\3\13"+
635 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
636 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
637 "\1\0\1\5\5\13\1\377\5\13\1\0\3\13\2\0"+
638 "\1\13\1\0\2\13\13\0\6\13\1\0\1\5\10\13"+
639 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
640 "\1\5\2\13\1\377\10\13\1\0\3\13\2\0\1\13"+
641 "\1\0\2\13\13\0\6\13\1\0\1\5\10\13\1\5"+
642 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
643 "\4\13\1\u011c\6\13\1\0\3\13\2\0\1\13\1\0"+
644 "\2\13\13\0\6\13\1\0\1\5\10\13\1\5\4\0"+
645 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\2\13"+
646 "\1\u011d\10\13\1\0\3\13\2\0\1\13\1\0\2\13"+
647 "\13\0\6\13\1\0\1\5\10\13\1\5\4\0\1\5"+
648 "\4\13\1\100\1\13\1\5\1\0\1\5\13\13\1\0"+
649 "\3\13\2\0\1\13\1\0\2\13\13\0\1\13\1\u011e"+
650 "\4\13\1\0\1\5\10\13\1\5\4\0\1\5\4\13"+
651 "\1\100\1\13\1\5\1\0\1\5\13\13\1\0\3\13"+
652 "\2\0\1\13\1\0\1\u011f\1\13\13\0\6\13\1\0"+
653 "\1\5\10\13\1\5\4\0\1\5\4\13\1\100\1\13"+
654 "\1\5\1\0\1\5\2\13\1\u0120\10\13\1\0\3\13"+
655 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
656 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
657 "\1\0\1\5\5\13\1\137\5\13\1\0\3\13\2\0"+
658 "\1\13\1\0\2\13\13\0\6\13\1\0\1\5\10\13"+
659 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
660 "\1\5\2\13\1\u0121\10\13\1\0\3\13\2\0\1\13"+
661 "\1\0\2\13\13\0\6\13\1\0\1\5\10\13\1\5"+
662 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
663 "\1\13\1\u0122\11\13\1\0\3\13\2\0\1\13\1\0"+
664 "\2\13\13\0\6\13\1\0\1\5\10\13\1\5\4\0"+
665 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\2\13"+
666 "\1\u0110\10\13\1\0\3\13\2\0\1\13\1\0\2\13"+
667 "\13\0\6\13\1\0\1\5\10\13\1\5\4\0\1\5"+
668 "\4\13\1\100\1\13\1\5\1\0\1\5\1\13\1\u0123"+
669 "\11\13\1\0\3\13\2\0\1\13\1\0\2\13\13\0"+
670 "\6\13\1\0\1\5\10\13\1\5\4\0\1\5\4\13"+
671 "\1\100\1\13\1\5\1\0\1\5\5\13\1\265\5\13"+
672 "\1\0\3\13\2\0\1\13\1\0\2\13\13\0\6\13"+
673 "\1\0\1\5\10\13\1\5\4\0\1\5\4\13\1\100"+
674 "\1\13\1\5\1\0\1\5\13\13\1\0\3\13\2\0"+
675 "\1\13\1\0\2\13\13\0\3\13\1\137\2\13\1\0"+
676 "\1\5\10\13\1\5\4\0\1\5\4\13\1\100\1\13"+
677 "\1\5\1\0\1\5\5\13\1\u0111\5\13\1\0\3\13"+
678 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
679 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
680 "\1\0\1\5\13\13\1\0\3\13\2\0\1\u0124\1\0"+
681 "\2\13\13\0\6\13\1\0\1\5\10\13\1\5\4\0"+
682 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\1\u0125"+
683 "\12\13\1\0\3\13\2\0\1\13\1\0\2\13\13\0"+
684 "\6\13\1\0\1\5\10\13\1\5\4\0\1\5\4\13"+
685 "\1\100\1\13\1\5\1\0\1\5\4\13\1\u0126\6\13"+
686 "\1\0\3\13\2\0\1\13\1\0\2\13\13\0\6\13"+
687 "\1\0\1\5\10\13\1\5\4\0\1\5\4\13\1\100"+
688 "\1\13\1\5\1\0\1\5\13\13\1\0\3\13\2\0"+
689 "\1\13\1\0\2\13\13\0\6\13\1\0\1\5\2\13"+
690 "\1\u0127\5\13\1\5\4\0\1\5\4\13\1\100\1\13"+
691 "\1\5\1\0\1\5\6\13\1\261\4\13\1\0\3\13"+
692 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
693 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
694 "\1\0\1\5\1\u0128\5\13\1\174\4\13\1\0\3\13"+
695 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
696 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
697 "\1\0\1\5\13\13\1\0\3\13\2\0\1\13\1\0"+
698 "\2\13\13\0\6\13\1\0\1\5\2\13\1\u0129\5\13"+
699 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
700 "\1\5\1\13\1\377\11\13\1\0\3\13\2\0\1\13"+
701 "\1\0\2\13\13\0\6\13\1\0\1\5\10\13\44\0"+
702 "\1\u012a\53\0\1\356\113\0\1\u012b\130\0\1\u012c\52\0"+
703 "\1\u012d\53\0\1\362\113\0\1\u012e\130\0\1\u012f\65\0"+
704 "\1\u0130\103\0\1\u0131\32\0\1\u0132\103\0\1\u0133\32\0"+
705 "\1\232\75\0\1\u0134\100\0\1\u0133\37\0\1\230\74\0"+
706 "\1\u0135\56\0\1\5\4\0\1\5\4\13\1\100\1\13"+
707 "\1\5\1\0\1\5\13\13\1\0\3\13\2\0\1\13"+
708 "\1\0\2\13\13\0\5\13\1\137\1\0\1\5\10\13"+
709 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
710 "\1\5\3\13\1\265\7\13\1\0\3\13\2\0\1\13"+
711 "\1\0\2\13\13\0\6\13\1\0\1\5\10\13\1\5"+
712 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
713 "\2\13\1\354\10\13\1\0\3\13\2\0\1\13\1\0"+
714 "\2\13\13\0\6\13\1\0\1\5\10\13\1\5\4\0"+
715 "\5\5\1\0\2\5\1\0\3\5\1\121\10\5\1\0"+
716 "\3\5\2\0\1\5\1\0\2\5\13\0\6\5\1\0"+
717 "\12\5\4\0\5\5\1\0\2\5\1\0\14\5\1\0"+
718 "\3\5\2\0\1\5\1\0\2\5\13\0\1\5\1\u0136"+
719 "\4\5\1\0\12\5\4\0\5\5\1\0\2\5\1\0"+
720 "\14\5\1\0\3\5\2\0\1\5\1\0\2\5\13\0"+
721 "\3\5\1\u0137\2\5\1\0\12\5\4\0\5\5\1\0"+
722 "\2\5\1\0\3\5\1\255\10\5\1\0\3\5\2\0"+
723 "\1\5\1\0\2\5\13\0\6\5\1\0\12\5\4\0"+
724 "\5\5\1\0\2\5\1\0\2\5\1\115\11\5\1\0"+
725 "\3\5\2\0\1\5\1\0\2\5\13\0\1\5\1\121"+
726 "\4\5\1\0\12\5\4\0\5\5\1\0\2\5\1\0"+
727 "\14\5\1\0\3\5\2\0\1\5\1\0\2\5\13\0"+
728 "\2\5\1\u0138\3\5\1\0\12\5\4\0\1\5\4\13"+
729 "\1\100\1\13\1\5\1\0\1\5\13\13\1\0\3\13"+
730 "\2\0\1\13\1\0\2\13\13\0\3\13\1\u0139\2\13"+
731 "\1\0\1\5\10\13\1\5\4\0\1\5\4\13\1\100"+
732 "\1\13\1\5\1\0\1\5\1\13\1\u013a\11\13\1\0"+
733 "\3\13\2\0\1\13\1\0\2\13\13\0\6\13\1\0"+
734 "\1\5\10\13\1\5\4\0\1\5\4\13\1\100\1\13"+
735 "\1\5\1\0\1\5\13\13\1\0\3\13\2\0\1\13"+
736 "\1\0\2\13\13\0\3\13\1\u013b\2\13\1\0\1\5"+
737 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
738 "\1\0\1\5\13\13\1\0\3\13\2\0\1\13\1\0"+
739 "\2\13\13\0\1\13\1\u013c\4\13\1\0\1\5\10\13"+
740 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
741 "\1\5\5\13\1\u013d\5\13\1\0\3\13\2\0\1\13"+
742 "\1\0\2\13\13\0\6\13\1\0\1\5\10\13\1\5"+
743 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
744 "\4\13\1\351\6\13\1\0\3\13\2\0\1\13\1\0"+
745 "\2\13\13\0\6\13\1\0\1\5\10\13\1\5\4\0"+
746 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\1\13"+
747 "\1\u013e\11\13\1\0\3\13\2\0\1\13\1\0\2\13"+
748 "\13\0\6\13\1\0\1\5\10\13\1\5\4\0\1\5"+
749 "\4\13\1\100\1\13\1\5\1\0\1\5\13\13\1\0"+
750 "\3\13\2\0\1\13\1\0\2\13\13\0\6\13\1\0"+
751 "\1\5\2\13\1\174\5\13\1\5\4\0\1\5\4\13"+
752 "\1\100\1\13\1\5\1\0\1\5\13\13\1\0\3\13"+
753 "\2\0\1\13\1\0\2\13\13\0\1\13\1\u013f\4\13"+
754 "\1\0\1\5\10\13\1\5\4\0\1\5\4\13\1\100"+
755 "\1\13\1\5\1\0\1\5\13\13\1\0\3\13\2\0"+
756 "\1\13\1\0\2\13\13\0\6\13\1\0\1\5\3\13"+
757 "\1\u0140\4\13\1\105\4\0\5\105\1\0\2\105\1\0"+
758 "\6\105\1\u0141\1\105\1\u0141\3\105\1\0\3\105\2\0"+
759 "\1\105\1\0\2\105\13\0\6\105\1\0\12\105\4\0"+
760 "\1\105\2\u0141\2\105\1\0\2\105\1\0\14\105\1\0"+
761 "\3\105\2\0\1\105\1\0\2\105\13\0\6\105\1\0"+
762 "\11\105\1\310\1\0\7\310\1\u0142\7\310\3\u0142\3\310"+
763 "\2\u0142\2\310\1\u0142\1\310\1\u0142\1\310\1\154\2\310"+
764 "\1\u0142\14\310\1\u0142\11\310\1\u0142\6\310\1\0\7\310"+
765 "\1\u0143\7\310\3\u0143\3\310\2\u0143\2\310\1\u0143\1\310"+
766 "\1\u0143\1\310\1\154\2\310\1\u0143\14\310\1\u0143\11\310"+
767 "\1\u0143\6\310\1\0\7\310\1\u0144\7\310\3\u0144\3\310"+
768 "\2\u0144\2\310\1\u0144\1\310\1\u0144\1\310\1\311\2\310"+
769 "\1\u0144\14\310\1\u0144\11\310\1\u0144\5\310\1\5\4\0"+
770 "\1\5\1\u0145\3\13\1\100\1\13\1\5\1\0\1\5"+
771 "\13\13\1\0\3\13\2\0\1\13\1\0\2\13\13\0"+
772 "\6\13\1\0\1\5\10\13\1\5\4\0\1\5\4\13"+
773 "\1\100\1\13\1\5\1\0\1\5\1\200\12\13\1\0"+
774 "\3\13\2\0\1\13\1\0\2\13\13\0\6\13\1\0"+
775 "\1\5\10\13\5\157\1\321\3\157\1\u0146\7\157\3\u0146"+
776 "\3\157\2\u0146\2\157\1\u0146\1\157\1\u0146\3\157\1\322"+
777 "\1\u0146\14\157\1\u0146\11\157\1\u0146\12\157\1\321\3\157"+
778 "\1\u0147\7\157\3\u0147\3\157\2\u0147\2\157\1\u0147\1\157"+
779 "\1\u0147\3\157\1\322\1\u0147\14\157\1\u0147\11\157\1\u0147"+
780 "\5\157\1\5\4\0\1\5\1\u0148\3\13\1\100\1\13"+
781 "\1\5\1\0\1\5\13\13\1\0\3\13\2\0\1\13"+
782 "\1\0\2\13\13\0\6\13\1\0\1\5\10\13\1\5"+
783 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
784 "\13\13\1\0\3\13\2\0\1\13\1\0\2\13\13\0"+
785 "\5\13\1\u0124\1\0\1\5\10\13\1\5\4\0\1\5"+
786 "\4\13\1\100\1\13\1\5\1\0\1\5\13\13\1\0"+
787 "\3\13\2\0\1\13\1\0\2\13\13\0\6\13\1\0"+
788 "\1\5\4\13\1\u0145\3\13\1\5\4\0\1\5\4\13"+
789 "\1\100\1\13\1\5\1\0\1\5\5\13\1\330\5\13"+
790 "\1\0\3\13\2\0\1\13\1\0\2\13\13\0\6\13"+
791 "\1\0\1\5\10\13\1\5\4\0\1\5\4\13\1\100"+
792 "\1\13\1\5\1\0\1\5\1\13\1\u0149\11\13\1\0"+
793 "\3\13\2\0\1\13\1\0\2\13\13\0\6\13\1\0"+
794 "\1\5\10\13\1\5\4\0\1\5\4\13\1\100\1\13"+
795 "\1\5\1\0\1\5\6\13\1\u014a\4\13\1\0\3\13"+
796 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
797 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
798 "\1\0\1\5\1\13\1\u014b\11\13\1\0\3\13\2\0"+
799 "\1\13\1\0\2\13\13\0\6\13\1\0\1\5\10\13"+
800 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
801 "\1\5\4\13\1\u014c\6\13\1\0\3\13\2\0\1\13"+
802 "\1\0\2\13\13\0\6\13\1\0\1\5\10\13\1\5"+
803 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
804 "\4\13\1\u014d\6\13\1\0\3\13\2\0\1\13\1\0"+
805 "\2\13\13\0\6\13\1\0\1\5\10\13\1\5\4\0"+
806 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\2\13"+
807 "\1\u014e\10\13\1\0\3\13\2\0\1\13\1\0\2\13"+
808 "\13\0\6\13\1\0\1\5\10\13\1\5\4\0\1\5"+
809 "\4\13\1\100\1\13\1\5\1\0\1\5\13\13\1\0"+
810 "\3\13\2\0\1\13\1\0\2\13\13\0\6\13\1\0"+
811 "\1\5\4\13\1\261\3\13\1\5\4\0\1\5\4\13"+
812 "\1\100\1\13\1\5\1\0\1\5\13\13\1\0\3\13"+
813 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
814 "\1\137\7\13\1\5\4\0\1\5\4\13\1\100\1\13"+
815 "\1\5\1\0\1\5\13\13\1\0\3\13\2\0\1\13"+
816 "\1\0\2\13\13\0\1\13\1\u014f\4\13\1\0\1\5"+
817 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
818 "\1\0\1\5\13\13\1\0\3\13\2\0\1\13\1\0"+
819 "\2\13\13\0\6\13\1\0\1\5\3\13\1\274\4\13"+
820 "\3\0\1\u0150\76\0\1\u012b\1\u0151\1\0\4\u012b\3\u0151"+
821 "\1\0\1\u0151\13\u012b\1\u0151\3\u012b\2\u0151\1\u012b\1\0"+
822 "\2\u012b\3\u0151\2\0\2\u0151\3\0\1\u0151\6\u012b\1\u0151"+
823 "\11\u012b\25\0\1\356\16\0\1\u012a\35\0\1\u0152\76\0"+
824 "\1\u012e\1\u0153\1\0\4\u012e\3\u0153\1\0\1\u0153\13\u012e"+
825 "\1\u0153\3\u012e\2\u0153\1\u012e\1\0\2\u012e\3\u0153\2\0"+
826 "\2\u0153\3\0\1\u0153\6\u012e\1\u0153\11\u012e\25\0\1\362"+
827 "\16\0\1\u012d\53\0\1\232\135\0\1\u0154\100\0\1\u0155"+
828 "\35\0\1\255\75\0\1\226\37\0\1\232\77\0\1\u0156"+
829 "\15\0\1\5\4\0\5\5\1\0\2\5\1\0\14\5"+
830 "\1\0\3\5\2\0\1\5\1\0\2\5\13\0\3\5"+
831 "\1\u0157\2\5\1\0\12\5\4\0\5\5\1\0\2\5"+
832 "\1\0\2\5\1\255\11\5\1\0\3\5\2\0\1\5"+
833 "\1\0\2\5\13\0\6\5\1\0\12\5\4\0\5\5"+
834 "\1\0\2\5\1\0\14\5\1\0\3\5\2\0\1\5"+
835 "\1\0\2\5\13\0\1\5\1\u0158\4\5\1\0\12\5"+
836 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
837 "\3\13\1\137\7\13\1\0\3\13\2\0\1\13\1\0"+
838 "\2\13\13\0\6\13\1\0\1\5\10\13\1\5\4\0"+
839 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\13\13"+
840 "\1\0\3\13\2\0\1\13\1\0\2\13\13\0\2\13"+
841 "\1\137\3\13\1\0\1\5\10\13\1\5\4\0\1\5"+
842 "\4\13\1\100\1\13\1\5\1\0\1\5\13\13\1\0"+
843 "\3\13\2\0\1\13\1\0\2\13\13\0\2\13\1\u013d"+
844 "\3\13\1\0\1\5\10\13\1\5\4\0\1\5\4\13"+
845 "\1\100\1\13\1\5\1\0\1\5\13\13\1\0\3\13"+
846 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
847 "\2\13\1\u0159\5\13\1\5\4\0\1\5\4\13\1\100"+
848 "\1\13\1\5\1\0\1\5\5\13\1\u015a\5\13\1\0"+
849 "\3\13\2\0\1\13\1\0\2\13\13\0\6\13\1\0"+
850 "\1\5\10\13\1\5\4\0\1\5\4\13\1\100\1\13"+
851 "\1\5\1\0\1\5\4\13\1\u0110\6\13\1\0\3\13"+
852 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
853 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
854 "\1\0\1\5\13\13\1\0\3\13\2\0\1\13\1\0"+
855 "\2\13\13\0\6\13\1\0\1\5\2\13\1\137\5\13"+
856 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
857 "\1\5\4\13\1\u015b\6\13\1\0\3\13\2\0\1\13"+
858 "\1\0\2\13\13\0\6\13\1\0\1\5\10\13\1\310"+
859 "\1\0\7\310\1\u015c\7\310\3\u015c\3\310\2\u015c\2\310"+
860 "\1\u015c\1\310\1\u015c\1\310\1\154\2\310\1\u015c\14\310"+
861 "\1\u015c\11\310\1\u015c\6\310\1\0\7\310\1\u015d\7\310"+
862 "\3\u015d\3\310\2\u015d\2\310\1\u015d\1\310\1\u015d\1\310"+
863 "\1\154\2\310\1\u015d\14\310\1\u015d\11\310\1\u015d\6\310"+
864 "\1\0\7\310\1\u015e\7\310\3\u015e\3\310\2\u015e\2\310"+
865 "\1\u015e\1\310\1\u015e\1\310\1\311\2\310\1\u015e\14\310"+
866 "\1\u015e\11\310\1\u015e\5\310\1\5\4\0\1\5\4\13"+
867 "\1\100\1\13\1\5\1\0\1\5\4\13\1\336\6\13"+
868 "\1\0\3\13\2\0\1\13\1\0\2\13\13\0\6\13"+
869 "\1\0\1\5\10\13\5\157\1\321\3\157\1\325\7\157"+
870 "\3\325\3\157\2\325\2\157\1\325\1\157\1\325\3\157"+
871 "\1\322\1\325\14\157\1\325\11\157\1\325\12\157\1\321"+
872 "\3\157\1\u015f\7\157\3\u015f\3\157\2\u015f\2\157\1\u015f"+
873 "\1\157\1\u015f\3\157\1\322\1\u015f\14\157\1\u015f\11\157"+
874 "\1\u015f\5\157\1\5\4\0\1\5\4\13\1\100\1\13"+
875 "\1\5\1\0\1\5\5\13\1\174\5\13\1\0\3\13"+
876 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
877 "\10\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
878 "\1\0\1\5\3\13\1\u0160\7\13\1\0\3\13\2\0"+
879 "\1\13\1\0\2\13\13\0\2\13\1\u0145\3\13\1\0"+
880 "\1\5\10\13\1\5\4\0\1\5\4\13\1\100\1\13"+
881 "\1\5\1\0\1\5\13\13\1\0\3\13\2\0\1\13"+
882 "\1\0\2\13\13\0\6\13\1\0\1\5\1\13\1\u0160"+
883 "\6\13\1\5\4\0\1\5\4\13\1\100\1\13\1\5"+
884 "\1\0\1\5\13\13\1\0\3\13\2\0\1\13\1\0"+
885 "\2\13\13\0\1\13\1\u0161\4\13\1\0\1\5\10\13"+
886 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
887 "\1\5\1\u0162\12\13\1\0\3\13\2\0\1\13\1\0"+
888 "\2\13\13\0\6\13\1\0\1\5\10\13\1\5\4\0"+
889 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\1\265"+
890 "\12\13\1\0\3\13\2\0\1\13\1\0\2\13\13\0"+
891 "\6\13\1\0\1\5\10\13\1\5\4\0\1\5\4\13"+
892 "\1\100\1\13\1\5\1\0\1\5\13\13\1\0\3\13"+
893 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
894 "\2\13\1\u0163\5\13\1\5\4\0\1\5\4\13\1\100"+
895 "\1\13\1\5\1\0\1\5\13\13\1\0\3\13\2\0"+
896 "\1\13\1\0\2\13\13\0\2\13\1\u0164\3\13\1\0"+
897 "\1\5\10\13\3\0\1\u012b\76\0\1\u012e\155\0\1\u0165"+
898 "\34\0\1\255\136\0\1\u0166\16\0\1\5\4\0\5\5"+
899 "\1\0\2\5\1\0\14\5\1\0\3\5\2\0\1\5"+
900 "\1\0\2\5\13\0\2\5\1\255\3\5\1\0\12\5"+
901 "\4\0\5\5\1\0\2\5\1\0\14\5\1\0\3\5"+
902 "\2\0\1\5\1\0\2\5\13\0\2\5\1\u0167\3\5"+
903 "\1\0\12\5\4\0\1\5\4\13\1\100\1\13\1\5"+
904 "\1\0\1\5\13\13\1\0\3\13\2\0\1\13\1\0"+
905 "\2\13\13\0\1\13\1\174\4\13\1\0\1\5\10\13"+
906 "\1\5\4\0\1\5\4\13\1\100\1\13\1\5\1\0"+
907 "\1\5\13\13\1\0\3\13\2\0\1\13\1\0\2\13"+
908 "\13\0\6\13\1\0\1\5\5\13\1\137\2\13\1\5"+
909 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
910 "\5\13\1\u0168\5\13\1\0\3\13\2\0\1\13\1\0"+
911 "\2\13\13\0\6\13\1\0\1\5\10\13\1\310\1\0"+
912 "\7\310\1\152\7\310\3\152\3\310\2\152\2\310\1\152"+
913 "\1\310\1\152\1\310\1\154\2\310\1\152\14\310\1\152"+
914 "\11\310\1\152\6\310\1\0\7\310\1\312\7\310\3\312"+
915 "\3\310\2\312\2\310\1\312\1\310\1\312\1\310\1\154"+
916 "\2\310\1\312\14\310\1\312\11\310\1\312\6\310\1\0"+
917 "\7\310\1\152\7\310\3\152\3\310\2\152\2\310\1\152"+
918 "\1\310\1\152\1\310\1\311\2\310\1\152\14\310\1\152"+
919 "\11\310\1\152\5\310\5\157\1\321\3\157\1\323\7\157"+
920 "\3\323\3\157\2\323\2\157\1\323\1\157\1\323\3\157"+
921 "\1\322\1\323\14\157\1\323\11\157\1\323\5\157\1\5"+
922 "\4\0\1\5\4\13\1\100\1\13\1\5\1\0\1\5"+
923 "\4\13\1\u0169\6\13\1\0\3\13\2\0\1\13\1\0"+
924 "\2\13\13\0\6\13\1\0\1\5\10\13\1\5\4\0"+
925 "\1\5\4\13\1\100\1\13\1\5\1\0\1\5\13\13"+
926 "\1\0\3\13\2\0\1\13\1\0\2\13\13\0\1\265"+
927 "\5\13\1\0\1\5\10\13\1\5\4\0\1\5\4\13"+
928 "\1\100\1\13\1\5\1\0\1\5\13\13\1\0\3\13"+
929 "\2\0\1\13\1\0\2\13\13\0\3\13\1\u016a\2\13"+
930 "\1\0\1\5\10\13\1\5\4\0\1\5\4\13\1\100"+
931 "\1\13\1\5\1\0\1\5\1\274\12\13\1\0\3\13"+
932 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
933 "\10\13\1\5\4\0\1\5\1\265\3\13\1\100\1\13"+
934 "\1\5\1\0\1\5\13\13\1\0\3\13\2\0\1\13"+
935 "\1\0\2\13\13\0\6\13\1\0\1\5\10\13\61\0"+
936 "\1\255\76\0\1\u016b\15\0\1\5\4\0\5\5\1\0"+
937 "\2\5\1\0\14\5\1\0\3\5\2\0\1\5\1\0"+
938 "\2\5\13\0\5\5\1\255\1\0\12\5\4\0\1\5"+
939 "\4\13\1\100\1\13\1\5\1\0\1\5\5\13\1\u016c"+
940 "\5\13\1\0\3\13\2\0\1\13\1\0\2\13\13\0"+
941 "\6\13\1\0\1\5\10\13\1\5\4\0\1\5\4\13"+
942 "\1\100\1\13\1\5\1\0\1\5\13\13\1\0\3\13"+
943 "\2\0\1\13\1\0\2\13\13\0\6\13\1\0\1\5"+
944 "\2\13\1\265\5\13\1\5\4\0\1\5\4\13\1\100"+
945 "\1\13\1\5\1\0\1\5\1\13\1\137\11\13\1\0"+
946 "\3\13\2\0\1\13\1\0\2\13\13\0\6\13\1\0"+
947 "\1\5\10\13\64\0\1\255\12\0\1\5\4\0\1\5"+
948 "\4\13\1\100\1\13\1\5\1\0\1\5\13\13\1\0"+
949 "\3\13\2\0\1\13\1\0\2\13\13\0\3\13\1\u013f"+
950 "\2\13\1\0\1\5\10\13";
951
952 private static int [] zzUnpackTrans() {
953 int [] result = new int[21231];
954 int offset = 0;
955 offset = zzUnpackTrans(ZZ_TRANS_PACKED_0, offset, result);
956 return result;
957 }
958
959 private static int zzUnpackTrans(String packed, int offset, int [] result) {
960 int i = 0; /* index in packed string */
961 int j = offset; /* index in unpacked array */
962 int l = packed.length();
963 while (i < l) {
964 int count = packed.charAt(i++);
965 int value = packed.charAt(i++);
966 value--;
967 do result[j++] = value; while (--count > 0);
968 }
969 return j;
970 }
971
972
973 /* error codes */
974 private static final int ZZ_UNKNOWN_ERROR = 0;
975 private static final int ZZ_NO_MATCH = 1;
976 private static final int ZZ_PUSHBACK_2BIG = 2;
977
978 /* error messages for the codes above */
979 private static final String ZZ_ERROR_MSG[] = {
980 "Unkown internal scanner error",
981 "Error: could not match input",
982 "Error: pushback value was too large"
983 };
984
985 /**
986 * ZZ_ATTRIBUTE[aState] contains the attributes of state <code>aState</code>
987 */
988 private static final int [] ZZ_ATTRIBUTE = zzUnpackAttribute();
989
990 private static final String ZZ_ATTRIBUTE_PACKED_0 =
991 "\2\0\3\1\1\11\10\1\1\11\17\1\1\11\4\1"+
992 "\2\11\11\1\1\11\5\1\1\11\5\1\1\11\1\1"+
993 "\1\0\1\1\1\11\12\1\1\0\1\11\40\1\1\11"+
994 "\4\1\1\11\27\1\1\11\7\0\1\11\2\0\1\11"+
995 "\7\0\1\1\1\11\7\1\1\0\43\1\1\11\10\1"+
996 "\1\11\33\1\20\0\54\1\1\0\1\1\2\0\1\1"+
997 "\7\0\32\1\7\0\16\1\2\0\4\1\1\0\1\1";
998
999 private static int [] zzUnpackAttribute() {
1000 int [] result = new int[364];
1001 int offset = 0;
1002 offset = zzUnpackAttribute(ZZ_ATTRIBUTE_PACKED_0, offset, result);
1003 return result;
1004 }
1005
1006 private static int zzUnpackAttribute(String packed, int offset, int [] result) {
1007 int i = 0; /* index in packed string */
1008 int j = offset; /* index in unpacked array */
1009 int l = packed.length();
1010 while (i < l) {
1011 int count = packed.charAt(i++);
1012 int value = packed.charAt(i++);
1013 do result[j++] = value; while (--count > 0);
1014 }
1015 return j;
1016 }
1017
1018 /** the input device */
1019 private java.io.Reader zzReader;
1020
1021 /** the current state of the DFA */
1022 private int zzState;
1023
1024 /** the current lexical state */
1025 private int zzLexicalState = YYINITIAL;
1026
1027 /** this buffer contains the current text to be matched and is
1028 the source of the yytext() string */
1029 private char zzBuffer[];
1030
1031 /** the textposition at the last accepting state */
1032 private int zzMarkedPos;
1033
1034 /** the current text position in the buffer */
1035 private int zzCurrentPos;
1036
1037 /** startRead marks the beginning of the yytext() string in the buffer */
1038 private int zzStartRead;
1039
1040 /** endRead marks the last character in the buffer, that has been read
1041 from input */
1042 private int zzEndRead;
1043
1044 /** zzAtEOF == true <=> the scanner is at the EOF */
1045 private boolean zzAtEOF;
1046
1047 /* user code: */
1048
1049
1050 /**
1051 * Constructor. This must be here because JFlex does not generate a
1052 * no-parameter constructor.
1053 */
1054 public CSharpTokenMaker() {
1055 super();
1056 }
1057
1058
1059 /**
1060 * Adds the token specified to the current linked list of tokens.
1061 *
1062 * @param tokenType The token's type.
1063 * @see #addToken(int, int, int)
1064 */
1065 private void addHyperlinkToken(int start, int end, int tokenType) {
1066 int so = start + offsetShift;
1067 addToken(zzBuffer, start,end, tokenType, so, true);
1068 }
1069
1070
1071 /**
1072 * Adds the token specified to the current linked list of tokens.
1073 *
1074 * @param tokenType The token's type.
1075 */
1076 private void addToken(int tokenType) {
1077 addToken(zzStartRead, zzMarkedPos-1, tokenType);
1078 }
1079
1080
1081 /**
1082 * Adds the token specified to the current linked list of tokens.
1083 *
1084 * @param tokenType The token's type.
1085 */
1086 private void addToken(int start, int end, int tokenType) {
1087 int so = start + offsetShift;
1088 addToken(zzBuffer, start,end, tokenType, so);
1089 }
1090
1091
1092 /**
1093 * Adds the token specified to the current linked list of tokens.
1094 *
1095 * @param array The character array.
1096 * @param start The starting offset in the array.
1097 * @param end The ending offset in the array.
1098 * @param tokenType The token's type.
1099 * @param startOffset The offset in the document at which this token
1100 * occurs.
1101 */
1102 public void addToken(char[] array, int start, int end, int tokenType, int startOffset) {
1103 super.addToken(array, start,end, tokenType, startOffset);
1104 zzStartRead = zzMarkedPos;
1105 }
1106
1107
1108 /**
1109 * Returns the text to place at the beginning and end of a
1110 * line to "comment" it in a this programming language.
1111 *
1112 * @return The start and end strings to add to a line to "comment"
1113 * it out.
1114 */
1115 public String[] getLineCommentStartAndEnd() {
1116 return new String[] { "//", null };
1117 }
1118
1119
1120 /**
1121 * Returns the first token in the linked list of tokens generated
1122 * from <code>text</code>. This method must be implemented by
1123 * subclasses so they can correctly implement syntax highlighting.
1124 *
1125 * @param text The text from which to get tokens.
1126 * @param initialTokenType The token type we should start with.
1127 * @param startOffset The offset into the document at which
1128 * <code>text</code> starts.
1129 * @return The first <code>Token</code> in a linked list representing
1130 * the syntax highlighted text.
1131 */
1132 public Token getTokenList(Segment text, int initialTokenType, int startOffset) {
1133
1134 resetTokenList();
1135 this.offsetShift = -text.offset + startOffset;
1136
1137 // Start off in the proper state.
1138 int state = Token.NULL;
1139 switch (initialTokenType) {
1140 case Token.LITERAL_STRING_DOUBLE_QUOTE:
1141 state = VERBATIMSTRING;
1142 start = text.offset;
1143 break;
1144 case Token.COMMENT_MULTILINE:
1145 state = DELIMITEDCOMMENT;
1146 start = text.offset;
1147 break;
1148 default:
1149 state = Token.NULL;
1150 }
1151
1152 s = text;
1153 try {
1154 yyreset(zzReader);
1155 yybegin(state);
1156 return yylex();
1157 } catch (IOException ioe) {
1158 ioe.printStackTrace();
1159 return new DefaultToken();
1160 }
1161
1162 }
1163
1164
1165 /**
1166 * Refills the input buffer.
1167 *
1168 * @return <code>true</code> if EOF was reached, otherwise
1169 * <code>false</code>.
1170 */
1171 private boolean zzRefill() {
1172 return zzCurrentPos>=s.offset+s.count;
1173 }
1174
1175
1176 /**
1177 * Resets the scanner to read from a new input stream.
1178 * Does not close the old reader.
1179 *
1180 * All internal variables are reset, the old input stream
1181 * <b>cannot</b> be reused (internal buffer is discarded and lost).
1182 * Lexical state is set to <tt>YY_INITIAL</tt>.
1183 *
1184 * @param reader the new input stream
1185 */
1186 public final void yyreset(java.io.Reader reader) {
1187 // 's' has been updated.
1188 zzBuffer = s.array;
1189 /*
1190 * We replaced the line below with the two below it because zzRefill
1191 * no longer "refills" the buffer (since the way we do it, it's always
1192 * "full" the first time through, since it points to the segment's
1193 * array). So, we assign zzEndRead here.
1194 */
1195 //zzStartRead = zzEndRead = s.offset;
1196 zzStartRead = s.offset;
1197 zzEndRead = zzStartRead + s.count - 1;
1198 zzCurrentPos = zzMarkedPos = s.offset;
1199 zzLexicalState = YYINITIAL;
1200 zzReader = reader;
1201 zzAtEOF = false;
1202 }
1203
1204
1205
1206
1207 /**
1208 * Creates a new scanner
1209 * There is also a java.io.InputStream version of this constructor.
1210 *
1211 * @param in the java.io.Reader to read input from.
1212 */
1213 public CSharpTokenMaker(java.io.Reader in) {
1214 this.zzReader = in;
1215 }
1216
1217 /**
1218 * Creates a new scanner.
1219 * There is also java.io.Reader version of this constructor.
1220 *
1221 * @param in the java.io.Inputstream to read input from.
1222 */
1223 public CSharpTokenMaker(java.io.InputStream in) {
1224 this(new java.io.InputStreamReader(in));
1225 }
1226
1227 /**
1228 * Unpacks the compressed character translation table.
1229 *
1230 * @param packed the packed character translation table
1231 * @return the unpacked character translation table
1232 */
1233 private static char [] zzUnpackCMap(String packed) {
1234 char [] map = new char[0x10000];
1235 int i = 0; /* index in packed string */
1236 int j = 0; /* index in unpacked array */
1237 while (i < 158) {
1238 int count = packed.charAt(i++);
1239 char value = packed.charAt(i++);
1240 do map[j++] = value; while (--count > 0);
1241 }
1242 return map;
1243 }
1244
1245
1246 /**
1247 * Closes the input stream.
1248 */
1249 public final void yyclose() throws java.io.IOException {
1250 zzAtEOF = true; /* indicate end of file */
1251 zzEndRead = zzStartRead; /* invalidate buffer */
1252
1253 if (zzReader != null)
1254 zzReader.close();
1255 }
1256
1257
1258 /**
1259 * Returns the current lexical state.
1260 */
1261 public final int yystate() {
1262 return zzLexicalState;
1263 }
1264
1265
1266 /**
1267 * Enters a new lexical state
1268 *
1269 * @param newState the new lexical state
1270 */
1271 public final void yybegin(int newState) {
1272 zzLexicalState = newState;
1273 }
1274
1275
1276 /**
1277 * Returns the text matched by the current regular expression.
1278 */
1279 public final String yytext() {
1280 return new String( zzBuffer, zzStartRead, zzMarkedPos-zzStartRead );
1281 }
1282
1283
1284 /**
1285 * Returns the character at position <tt>pos</tt> from the
1286 * matched text.
1287 *
1288 * It is equivalent to yytext().charAt(pos), but faster
1289 *
1290 * @param pos the position of the character to fetch.
1291 * A value from 0 to yylength()-1.
1292 *
1293 * @return the character at position pos
1294 */
1295 public final char yycharat(int pos) {
1296 return zzBuffer[zzStartRead+pos];
1297 }
1298
1299
1300 /**
1301 * Returns the length of the matched text region.
1302 */
1303 public final int yylength() {
1304 return zzMarkedPos-zzStartRead;
1305 }
1306
1307
1308 /**
1309 * Reports an error that occured while scanning.
1310 *
1311 * In a wellformed scanner (no or only correct usage of
1312 * yypushback(int) and a match-all fallback rule) this method
1313 * will only be called with things that "Can't Possibly Happen".
1314 * If this method is called, something is seriously wrong
1315 * (e.g. a JFlex bug producing a faulty scanner etc.).
1316 *
1317 * Usual syntax/scanner level error handling should be done
1318 * in error fallback rules.
1319 *
1320 * @param errorCode the code of the errormessage to display
1321 */
1322 private void zzScanError(int errorCode) {
1323 String message;
1324 try {
1325 message = ZZ_ERROR_MSG[errorCode];
1326 }
1327 catch (ArrayIndexOutOfBoundsException e) {
1328 message = ZZ_ERROR_MSG[ZZ_UNKNOWN_ERROR];
1329 }
1330
1331 throw new Error(message);
1332 }
1333
1334
1335 /**
1336 * Pushes the specified amount of characters back into the input stream.
1337 *
1338 * They will be read again by then next call of the scanning method
1339 *
1340 * @param number the number of characters to be read again.
1341 * This number must not be greater than yylength()!
1342 */
1343 public void yypushback(int number) {
1344 if ( number > yylength() )
1345 zzScanError(ZZ_PUSHBACK_2BIG);
1346
1347 zzMarkedPos -= number;
1348 }
1349
1350
1351 /**
1352 * Resumes scanning until the next regular expression is matched,
1353 * the end of input is encountered or an I/O-Error occurs.
1354 *
1355 * @return the next token
1356 * @exception java.io.IOException if any I/O-Error occurs
1357 */
1358 public org.fife.ui.rsyntaxtextarea.Token yylex() throws java.io.IOException {
1359 int zzInput;
1360 int zzAction;
1361
1362 // cached fields:
1363 int zzCurrentPosL;
1364 int zzMarkedPosL;
1365 int zzEndReadL = zzEndRead;
1366 char [] zzBufferL = zzBuffer;
1367 char [] zzCMapL = ZZ_CMAP;
1368
1369 int [] zzTransL = ZZ_TRANS;
1370 int [] zzRowMapL = ZZ_ROWMAP;
1371 int [] zzAttrL = ZZ_ATTRIBUTE;
1372
1373 while (true) {
1374 zzMarkedPosL = zzMarkedPos;
1375
1376 zzAction = -1;
1377
1378 zzCurrentPosL = zzCurrentPos = zzStartRead = zzMarkedPosL;
1379
1380 zzState = zzLexicalState;
1381
1382
1383 zzForAction: {
1384 while (true) {
1385
1386 if (zzCurrentPosL < zzEndReadL)
1387 zzInput = zzBufferL[zzCurrentPosL++];
1388 else if (zzAtEOF) {
1389 zzInput = YYEOF;
1390 break zzForAction;
1391 }
1392 else {
1393 // store back cached positions
1394 zzCurrentPos = zzCurrentPosL;
1395 zzMarkedPos = zzMarkedPosL;
1396 boolean eof = zzRefill();
1397 // get translated positions and possibly new buffer
1398 zzCurrentPosL = zzCurrentPos;
1399 zzMarkedPosL = zzMarkedPos;
1400 zzBufferL = zzBuffer;
1401 zzEndReadL = zzEndRead;
1402 if (eof) {
1403 zzInput = YYEOF;
1404 break zzForAction;
1405 }
1406 else {
1407 zzInput = zzBufferL[zzCurrentPosL++];
1408 }
1409 }
1410 int zzNext = zzTransL[ zzRowMapL[zzState] + zzCMapL[zzInput] ];
1411 if (zzNext == -1) break zzForAction;
1412 zzState = zzNext;
1413
1414 int zzAttributes = zzAttrL[zzState];
1415 if ( (zzAttributes & 1) == 1 ) {
1416 zzAction = zzState;
1417 zzMarkedPosL = zzCurrentPosL;
1418 if ( (zzAttributes & 8) == 8 ) break zzForAction;
1419 }
1420
1421 }
1422 }
1423
1424 // store back cached position
1425 zzMarkedPos = zzMarkedPosL;
1426
1427 switch (zzAction < 0 ? zzAction : ZZ_ACTION[zzAction]) {
1428 case 35:
1429 { int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); addHyperlinkToken(temp,zzMarkedPos-1, Token.COMMENT_DOCUMENTATION); start = zzMarkedPos;
1430 }
1431 case 36: break;
1432 case 28:
1433 { addToken(Token.PREPROCESSOR);
1434 }
1435 case 37: break;
1436 case 3:
1437 { addNullToken(); return firstToken;
1438 }
1439 case 38: break;
1440 case 30:
1441 { addToken(Token.LITERAL_CHAR);
1442 }
1443 case 39: break;
1444 case 25:
1445 { yybegin(YYINITIAL); addToken(start,zzStartRead+1, Token.COMMENT_MULTILINE);
1446 }
1447 case 40: break;
1448 case 4:
1449 { addToken(Token.WHITESPACE);
1450 }
1451 case 41: break;
1452 case 29:
1453 { addToken(Token.LITERAL_NUMBER_HEXADECIMAL);
1454 }
1455 case 42: break;
1456 case 22:
1457 { addToken(Token.ERROR_CHAR); /*addNullToken(); return firstToken;*/
1458 }
1459 case 43: break;
1460 case 31:
1461 { addToken(Token.ERROR_STRING_DOUBLE);
1462 }
1463 case 44: break;
1464 case 19:
1465 { addToken(Token.LITERAL_NUMBER_FLOAT);
1466 }
1467 case 45: break;
1468 case 21:
1469 { addToken(Token.RESERVED_WORD);
1470 }
1471 case 46: break;
1472 case 10:
1473 { addToken(Token.SEPARATOR);
1474 }
1475 case 47: break;
1476 case 12:
1477 { addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); addNullToken(); return firstToken;
1478 }
1479 case 48: break;
1480 case 6:
1481 { addToken(Token.IDENTIFIER);
1482 }
1483 case 49: break;
1484 case 13:
1485 { int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); addToken(temp,zzEndRead, Token.PREPROCESSOR); addNullToken(); return firstToken;
1486 }
1487 case 50: break;
1488 case 8:
1489 { addToken(Token.ERROR_CHAR); addNullToken(); return firstToken;
1490 }
1491 case 51: break;
1492 case 9:
1493 { addToken(Token.ERROR_STRING_DOUBLE); addNullToken(); return firstToken;
1494 }
1495 case 52: break;
1496 case 32:
1497 { addToken(Token.DATA_TYPE);
1498 }
1499 case 53: break;
1500 case 2:
1501 { addToken(Token.ERROR_IDENTIFIER);
1502 }
1503 case 54: break;
1504 case 23:
1505 { addToken(Token.ERROR_CHAR);
1506 }
1507 case 55: break;
1508 case 33:
1509 { addToken(Token.LITERAL_BOOLEAN);
1510 }
1511 case 56: break;
1512 case 20:
1513 { start = zzMarkedPos-2; yybegin(VERBATIMSTRING);
1514 }
1515 case 57: break;
1516 case 24:
1517 { addToken(Token.LITERAL_STRING_DOUBLE_QUOTE);
1518 }
1519 case 58: break;
1520 case 14:
1521 { addToken(start,zzStartRead-1, Token.LITERAL_STRING_DOUBLE_QUOTE); return firstToken;
1522 }
1523 case 59: break;
1524 case 34:
1525 { int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); addHyperlinkToken(temp,zzMarkedPos-1, Token.COMMENT_MULTILINE); start = zzMarkedPos;
1526 }
1527 case 60: break;
1528 case 16:
1529 { addToken(Token.COMMENT_EOL); addNullToken(); return firstToken;
1530 }
1531 case 61: break;
1532 case 18:
1533 { addToken(Token.ERROR_NUMBER_FORMAT);
1534 }
1535 case 62: break;
1536 case 27:
1537 { start = zzMarkedPos-3; yybegin(DOCUMENTCOMMENT);
1538 }
1539 case 63: break;
1540 case 17:
1541 { start = zzMarkedPos-2; yybegin(DELIMITEDCOMMENT);
1542 }
1543 case 64: break;
1544 case 7:
1545 { addToken(Token.LITERAL_NUMBER_DECIMAL_INT);
1546 }
1547 case 65: break;
1548 case 5:
1549 { addToken(Token.OPERATOR);
1550 }
1551 case 66: break;
1552 case 26:
1553 { int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); addToken(temp,zzMarkedPos-1, Token.PREPROCESSOR); start = zzMarkedPos;
1554 }
1555 case 67: break;
1556 case 15:
1557 { yybegin(YYINITIAL); addToken(start,zzStartRead, Token.LITERAL_STRING_DOUBLE_QUOTE);
1558 }
1559 case 68: break;
1560 case 1:
1561 {
1562 }
1563 case 69: break;
1564 case 11:
1565 { addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); return firstToken;
1566 }
1567 case 70: break;
1568 default:
1569 if (zzInput == YYEOF && zzStartRead == zzCurrentPos) {
1570 zzAtEOF = true;
1571 switch (zzLexicalState) {
1572 case VERBATIMSTRING: {
1573 addToken(start,zzStartRead-1, Token.LITERAL_STRING_DOUBLE_QUOTE); return firstToken;
1574 }
1575 case 365: break;
1576 case DOCUMENTCOMMENT: {
1577 addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); addNullToken(); return firstToken;
1578 }
1579 case 366: break;
1580 case YYINITIAL: {
1581 addNullToken(); return firstToken;
1582 }
1583 case 367: break;
1584 case DELIMITEDCOMMENT: {
1585 addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); return firstToken;
1586 }
1587 case 368: break;
1588 default:
1589 return null;
1590 }
1591 }
1592 else {
1593 zzScanError(ZZ_NO_MATCH);
1594 }
1595 }
1596 }
1597 }
1598
1599
1600}
Note: See TracBrowser for help on using the repository browser.