source: other-projects/rsyntax-textarea/src/java/org/fife/ui/rsyntaxtextarea/modes/DelphiTokenMaker.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: 63.1 KB
RevLine 
[25584]1/* The following code was generated by JFlex 1.4.1 on 8/19/09 10:23 AM */
2
3/*
4 * 7/28/2009
5 *
6 * DelphiTokenMaker.java - Scanner for the Delphi programming language.
7 *
8 * This library is distributed under a modified BSD license. See the included
9 * RSyntaxTextArea.License.txt file for details.
10 */
11package org.fife.ui.rsyntaxtextarea.modes;
12
13import java.io.*;
14import javax.swing.text.Segment;
15
16import org.fife.ui.rsyntaxtextarea.*;
17
18
19/**
20 * Scanner for the Delphi programming language.<p>
21 *
22 * This implementation was created using
23 * <a href="http://www.jflex.de/">JFlex</a> 1.4.1; however, the generated file
24 * was modified for performance. Memory allocation needs to be almost
25 * completely removed to be competitive with the handwritten lexers (subclasses
26 * of <code>AbstractTokenMaker</code>, so this class has been modified so that
27 * Strings are never allocated (via yytext()), and the scanner never has to
28 * worry about refilling its buffer (needlessly copying chars around).
29 * We can achieve this because RText always scans exactly 1 line of tokens at a
30 * time, and hands the scanner this line as an array of characters (a Segment
31 * really). Since tokens contain pointers to char arrays instead of Strings
32 * holding their contents, there is no need for allocating new memory for
33 * Strings.<p>
34 *
35 * The actual algorithm generated for scanning has, of course, not been
36 * modified.<p>
37 *
38 * If you wish to regenerate this file yourself, keep in mind the following:
39 * <ul>
40 * <li>The generated DelphiTokenMaker.java</code> file will contain two
41 * definitions of both <code>zzRefill</code> and <code>yyreset</code>.
42 * You should hand-delete the second of each definition (the ones
43 * generated by the lexer), as these generated methods modify the input
44 * buffer, which we'll never have to do.</li>
45 * <li>You should also change the declaration/definition of zzBuffer to NOT
46 * be initialized. This is a needless memory allocation for us since we
47 * will be pointing the array somewhere else anyway.</li>
48 * <li>You should NOT call <code>yylex()</code> on the generated scanner
49 * directly; rather, you should use <code>getTokenList</code> as you would
50 * with any other <code>TokenMaker</code> instance.</li>
51 * </ul>
52 *
53 * @author Robert Futrell
54 * @version 0.5
55 *
56 */
57
58public class DelphiTokenMaker extends AbstractJFlexTokenMaker {
59
60 /** This character denotes the end of file */
61 public static final int YYEOF = -1;
62
63 /** lexical states */
64 public static final int COMPILER_DIRECTIVE = 3;
65 public static final int EOL_COMMENT = 5;
66 public static final int YYINITIAL = 0;
67 public static final int COMPILER_DIRECTIVE2 = 4;
68 public static final int MLC = 1;
69 public static final int MLC2 = 2;
70
71 /**
72 * Translates characters to character classes
73 */
74 private static final String ZZ_CMAP_PACKED =
75 "\11\0\1\13\1\12\1\0\1\13\1\7\22\0\1\13\1\42\1\7"+
76 "\1\10\1\11\1\42\1\42\1\14\1\17\1\21\1\20\1\27\1\42"+
77 "\1\27\1\30\1\22\1\4\7\6\2\3\1\45\1\42\1\44\1\46"+
78 "\1\44\1\42\1\43\3\5\1\25\1\26\1\25\5\1\1\24\13\1"+
79 "\1\23\2\1\1\41\1\0\1\41\1\44\1\2\1\0\1\36\1\55"+
80 "\1\60\1\62\1\34\1\35\1\56\1\47\1\51\1\66\1\67\1\37"+
81 "\1\54\1\57\1\61\1\50\1\70\1\32\1\40\1\31\1\33\1\63"+
82 "\1\52\1\64\1\53\1\65\1\15\1\7\1\16\1\42\uff81\0";
83
84 /**
85 * Translates characters to character classes
86 */
87 private static final char [] ZZ_CMAP = zzUnpackCMap(ZZ_CMAP_PACKED);
88
89 /**
90 * Translates DFA states to action switch labels.
91 */
92 private static final int [] ZZ_ACTION = zzUnpackAction();
93
94 private static final String ZZ_ACTION_PACKED_0 =
95 "\6\0\1\1\1\2\2\3\1\2\1\4\1\5\1\6"+
96 "\1\7\1\10\1\11\1\12\1\11\1\12\11\2\1\12"+
97 "\14\2\1\13\1\14\1\15\4\13\1\16\2\13\1\17"+
98 "\1\20\1\13\1\21\2\13\1\22\3\13\1\23\1\3"+
99 "\1\24\1\23\1\24\1\23\1\25\1\23\1\26\1\27"+
100 "\1\30\1\31\3\2\1\32\15\2\1\32\20\2\1\32"+
101 "\31\2\1\32\3\2\4\0\1\33\1\34\4\0\1\24"+
102 "\1\0\2\25\1\35\22\2\1\36\2\2\1\32\73\2"+
103 "\1\32\1\2\10\0\1\37\1\2\1\40\1\36\56\2"+
104 "\1\40\2\2\1\36\16\2\2\0\1\41\2\0\1\42"+
105 "\13\2\1\32\40\2\1\32\10\2\4\0\10\2\1\36"+
106 "\65\2";
107
108 private static int [] zzUnpackAction() {
109 int [] result = new int[437];
110 int offset = 0;
111 offset = zzUnpackAction(ZZ_ACTION_PACKED_0, offset, result);
112 return result;
113 }
114
115 private static int zzUnpackAction(String packed, int offset, int [] result) {
116 int i = 0; /* index in packed string */
117 int j = offset; /* index in unpacked array */
118 int l = packed.length();
119 while (i < l) {
120 int count = packed.charAt(i++);
121 int value = packed.charAt(i++);
122 do result[j++] = value; while (--count > 0);
123 }
124 return j;
125 }
126
127
128 /**
129 * Translates a state to a row index in the transition table
130 */
131 private static final int [] ZZ_ROWMAP = zzUnpackRowMap();
132
133 private static final String ZZ_ROWMAP_PACKED_0 =
134 "\0\0\0\71\0\162\0\253\0\344\0\u011d\0\u0156\0\u018f"+
135 "\0\u01c8\0\u0201\0\u023a\0\u0273\0\u023a\0\u02ac\0\u02e5\0\u031e"+
136 "\0\u0357\0\u023a\0\u023a\0\u0390\0\u03c9\0\u0402\0\u043b\0\u0474"+
137 "\0\u04ad\0\u04e6\0\u051f\0\u0558\0\u0591\0\u0156\0\u05ca\0\u0603"+
138 "\0\u063c\0\u0675\0\u06ae\0\u06e7\0\u0720\0\u0759\0\u0792\0\u07cb"+
139 "\0\u0804\0\u083d\0\u0876\0\u023a\0\u023a\0\u08af\0\u08e8\0\u0921"+
140 "\0\u095a\0\u023a\0\u0993\0\u09cc\0\u023a\0\u023a\0\u0a05\0\u023a"+
141 "\0\u0a3e\0\u0a77\0\u023a\0\u0ab0\0\u0ae9\0\u0b22\0\u0b5b\0\u0b5b"+
142 "\0\u0b5b\0\u0b94\0\u0bcd\0\u0c06\0\u0c3f\0\u0c78\0\u023a\0\u023a"+
143 "\0\u0cb1\0\u023a\0\u0cea\0\u0d23\0\u0d5c\0\u018f\0\u0d95\0\u0dce"+
144 "\0\u0e07\0\u0e40\0\u0e79\0\u0eb2\0\u0eeb\0\u0f24\0\u0f5d\0\u0f96"+
145 "\0\u0fcf\0\u1008\0\u1041\0\u107a\0\u10b3\0\u10ec\0\u1125\0\u115e"+
146 "\0\u1197\0\u11d0\0\u1209\0\u1242\0\u127b\0\u12b4\0\u12ed\0\u1326"+
147 "\0\u135f\0\u1398\0\u13d1\0\u140a\0\u1443\0\u147c\0\u14b5\0\u14ee"+
148 "\0\u1527\0\u1560\0\u1599\0\u15d2\0\u160b\0\u1644\0\u167d\0\u16b6"+
149 "\0\u16ef\0\u1728\0\u1761\0\u179a\0\u17d3\0\u180c\0\u1845\0\u187e"+
150 "\0\u18b7\0\u18f0\0\u1929\0\u1962\0\u199b\0\u19d4\0\u1a0d\0\u1a46"+
151 "\0\u1a7f\0\u1ab8\0\u1af1\0\u1b2a\0\u1b63\0\u1b9c\0\u023a\0\u023a"+
152 "\0\u1bd5\0\u1c0e\0\u1c47\0\u1c80\0\u1cb9\0\u1cf2\0\u0b5b\0\u1d2b"+
153 "\0\u023a\0\u1d64\0\u1d9d\0\u1dd6\0\u1e0f\0\u1e48\0\u1e81\0\u1eba"+
154 "\0\u1ef3\0\u1f2c\0\u1f65\0\u1f9e\0\u1fd7\0\u2010\0\u2049\0\u2082"+
155 "\0\u20bb\0\u20f4\0\u212d\0\u018f\0\u2166\0\u219f\0\u21d8\0\u2211"+
156 "\0\u224a\0\u2283\0\u22bc\0\u22f5\0\u232e\0\u2367\0\u23a0\0\u23d9"+
157 "\0\u2412\0\u244b\0\u2484\0\u24bd\0\u24f6\0\u252f\0\u2568\0\u25a1"+
158 "\0\u25da\0\u2613\0\u264c\0\u2685\0\u26be\0\u26f7\0\u2730\0\u2769"+
159 "\0\u27a2\0\u27db\0\u2814\0\u284d\0\u2886\0\u28bf\0\u28f8\0\u2931"+
160 "\0\u296a\0\u29a3\0\u29dc\0\u2a15\0\u2a4e\0\u2a87\0\u2ac0\0\u2af9"+
161 "\0\u2b32\0\u2b6b\0\u2ba4\0\u2bdd\0\u2c16\0\u2c4f\0\u2c88\0\u2cc1"+
162 "\0\u2cfa\0\u2d33\0\u2d6c\0\u2da5\0\u2dde\0\u2e17\0\u2e50\0\u2e89"+
163 "\0\u2ec2\0\u2efb\0\u2f34\0\u2f6d\0\u2fa6\0\u2fdf\0\u3018\0\u3051"+
164 "\0\u308a\0\u30c3\0\u30fc\0\u3135\0\u018f\0\u316e\0\u018f\0\u31a7"+
165 "\0\u31e0\0\u3219\0\u3252\0\u328b\0\u32c4\0\u32fd\0\u3336\0\u336f"+
166 "\0\u33a8\0\u33e1\0\u341a\0\u3453\0\u348c\0\u34c5\0\u34fe\0\u3537"+
167 "\0\u3570\0\u35a9\0\u35e2\0\u361b\0\u3654\0\u368d\0\u36c6\0\u36ff"+
168 "\0\u3738\0\u3771\0\u37aa\0\u37e3\0\u381c\0\u3855\0\u388e\0\u38c7"+
169 "\0\u3900\0\u3939\0\u3972\0\u39ab\0\u39e4\0\u3a1d\0\u3a56\0\u3a8f"+
170 "\0\u3ac8\0\u3b01\0\u3b3a\0\u3b73\0\u3bac\0\u3be5\0\u3c1e\0\u3c57"+
171 "\0\u3c90\0\u3cc9\0\u3d02\0\u3d3b\0\u3d74\0\u3dad\0\u3de6\0\u3e1f"+
172 "\0\u3e58\0\u3e91\0\u3eca\0\u3f03\0\u3f3c\0\u3f75\0\u3fae\0\u3fe7"+
173 "\0\u4020\0\u4059\0\u4092\0\u40cb\0\u4104\0\u413d\0\u4176\0\u41af"+
174 "\0\u41e8\0\u4221\0\u425a\0\u4293\0\u42cc\0\u4305\0\u433e\0\u4377"+
175 "\0\u43b0\0\u43e9\0\u4422\0\u445b\0\u4494\0\u44cd\0\u4506\0\u453f"+
176 "\0\u4578\0\u45b1\0\u45ea\0\u4623\0\u465c\0\u4695\0\u46ce\0\u4707"+
177 "\0\u4740\0\u4779\0\u47b2\0\u47eb\0\u4824\0\u485d\0\u4896\0\u48cf"+
178 "\0\u4908\0\u4941\0\u497a\0\u49b3\0\u49ec\0\u4a25\0\u4a5e\0\u4a97"+
179 "\0\u4ad0\0\u4b09\0\u3eca\0\u4b42\0\u4b7b\0\u4bb4\0\u4bed\0\u4c26"+
180 "\0\u4c5f\0\u4c98\0\u4cd1\0\u4d0a\0\u4092\0\u4d43\0\u413d\0\u4d7c"+
181 "\0\u4db5\0\u4dee\0\u4e27\0\u4e60\0\u4e99\0\u4ed2\0\u4f0b\0\u1fd7"+
182 "\0\u4f44\0\u4f7d\0\u4fb6\0\u4fef\0\u5028\0\u5061\0\u509a\0\u50d3"+
183 "\0\u510c\0\u5145\0\u517e\0\u51b7\0\u51f0\0\u5229\0\u5262\0\u529b"+
184 "\0\u52d4\0\u530d\0\u5346\0\u537f\0\u53b8\0\u53f1\0\u542a\0\u5463"+
185 "\0\u549c\0\u54d5\0\u550e\0\u5547\0\u5580\0\u55b9\0\u55f2\0\u562b"+
186 "\0\u5664\0\u569d\0\u56d6\0\u570f\0\u5748\0\u5781\0\u57ba\0\u57f3"+
187 "\0\u582c\0\u5865\0\u589e\0\u58d7\0\u5910\0\u5949\0\u5982\0\u59bb"+
188 "\0\u59f4\0\u5a2d\0\u5a66\0\u5a9f\0\u5ad8";
189
190 private static int [] zzUnpackRowMap() {
191 int [] result = new int[437];
192 int offset = 0;
193 offset = zzUnpackRowMap(ZZ_ROWMAP_PACKED_0, offset, result);
194 return result;
195 }
196
197 private static int zzUnpackRowMap(String packed, int offset, int [] result) {
198 int i = 0; /* index in packed string */
199 int j = offset; /* index in unpacked array */
200 int l = packed.length();
201 while (i < l) {
202 int high = packed.charAt(i++) << 16;
203 result[j++] = high | packed.charAt(i++);
204 }
205 return j;
206 }
207
208 /**
209 * The transition table of the DFA
210 */
211 private static final int [] ZZ_TRANS = zzUnpackTrans();
212
213 private static final String ZZ_TRANS_PACKED_0 =
214 "\1\7\2\10\1\11\1\12\1\10\1\11\1\13\1\14"+
215 "\1\10\1\15\1\16\1\17\1\20\1\13\1\21\1\22"+
216 "\1\23\1\24\4\10\1\22\1\25\1\26\1\27\1\30"+
217 "\1\31\1\32\1\33\1\34\1\35\1\23\1\13\1\36"+
218 "\3\22\1\10\1\37\1\40\1\41\1\10\1\42\1\43"+
219 "\1\44\1\45\1\46\1\47\1\50\1\51\1\52\4\10"+
220 "\12\53\1\54\3\53\1\55\16\53\1\56\11\53\1\57"+
221 "\2\53\1\60\16\53\12\61\1\62\5\61\1\63\14\61"+
222 "\1\56\11\61\1\57\2\61\1\60\16\61\12\64\1\65"+
223 "\3\64\1\66\52\64\12\67\1\70\5\67\1\71\50\67"+
224 "\12\72\1\73\22\72\1\74\11\72\1\75\2\72\1\76"+
225 "\16\72\7\7\1\0\2\7\11\0\4\7\2\0\10\7"+
226 "\2\0\1\7\3\0\23\7\6\10\1\0\1\7\1\10"+
227 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\22\10"+
228 "\3\77\2\11\1\77\1\11\1\0\2\77\11\0\1\77"+
229 "\1\100\1\101\1\102\1\0\1\103\3\77\1\102\1\101"+
230 "\1\77\1\100\1\77\2\0\1\77\3\0\13\77\1\101"+
231 "\11\77\1\104\1\105\1\77\1\105\1\0\2\77\11\0"+
232 "\1\106\1\100\1\101\1\102\1\0\1\103\3\77\1\102"+
233 "\1\101\1\77\1\100\1\77\2\0\1\77\3\0\13\77"+
234 "\1\101\1\77\1\106\4\77\71\0\3\7\2\14\1\7"+
235 "\1\14\1\0\2\7\11\0\4\7\2\0\10\7\2\0"+
236 "\1\7\3\0\22\7\13\0\1\16\55\0\14\17\1\107"+
237 "\54\17\11\0\1\110\77\0\1\111\72\0\1\112\51\0"+
238 "\2\103\1\0\1\103\62\0\1\7\6\10\1\0\1\7"+
239 "\1\10\11\0\4\10\2\0\1\10\1\113\6\10\2\0"+
240 "\1\7\3\0\1\114\3\10\1\115\5\10\1\116\7\10"+
241 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
242 "\3\10\1\117\1\10\1\120\2\10\2\0\1\7\3\0"+
243 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
244 "\2\0\7\10\1\121\2\0\1\7\3\0\10\10\1\122"+
245 "\11\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
246 "\2\0\6\10\1\123\1\10\2\0\1\7\3\0\10\10"+
247 "\1\124\4\10\1\125\4\10\1\7\6\10\1\0\1\7"+
248 "\1\10\11\0\4\10\2\0\2\10\1\126\2\10\1\127"+
249 "\2\10\2\0\1\7\3\0\2\10\1\130\7\10\1\131"+
250 "\7\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
251 "\2\0\1\116\1\132\1\133\4\10\1\134\2\0\1\7"+
252 "\3\0\6\10\1\135\13\10\1\7\6\10\1\0\1\7"+
253 "\1\10\11\0\4\10\2\0\5\10\1\136\2\10\2\0"+
254 "\1\7\3\0\2\10\1\137\7\10\1\140\7\10\1\7"+
255 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\1\141"+
256 "\2\10\1\142\1\10\1\143\2\10\2\0\1\7\3\0"+
257 "\1\144\1\10\1\145\2\10\1\146\14\10\1\7\6\10"+
258 "\1\0\1\7\1\10\11\0\4\10\2\0\1\10\1\147"+
259 "\1\150\2\10\1\151\1\152\1\10\2\0\1\7\3\0"+
260 "\12\10\1\153\7\10\1\7\6\10\1\0\1\7\1\10"+
261 "\11\0\4\10\2\0\4\10\1\116\2\10\1\116\2\0"+
262 "\1\7\3\0\5\10\1\154\2\10\1\155\11\10\1\7"+
263 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\1\10"+
264 "\1\156\6\10\2\0\1\7\3\0\1\157\1\10\1\160"+
265 "\7\10\1\161\7\10\1\7\6\10\1\0\1\7\1\10"+
266 "\11\0\4\10\2\0\3\10\1\162\4\10\2\0\1\7"+
267 "\3\0\12\10\1\124\7\10\1\7\6\10\1\0\1\7"+
268 "\1\10\11\0\4\10\2\0\3\10\1\163\4\10\2\0"+
269 "\1\7\3\0\4\10\1\164\5\10\1\165\7\10\1\7"+
270 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
271 "\2\0\1\7\3\0\12\10\1\166\7\10\1\7\6\10"+
272 "\1\0\1\7\1\10\11\0\4\10\2\0\3\10\1\167"+
273 "\1\10\1\170\2\10\2\0\1\7\3\0\2\10\1\171"+
274 "\7\10\1\172\7\10\1\7\6\10\1\0\1\7\1\10"+
275 "\11\0\4\10\2\0\2\10\1\173\2\10\1\174\1\175"+
276 "\1\10\2\0\1\7\3\0\1\176\11\10\1\177\1\200"+
277 "\6\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
278 "\2\0\1\10\1\116\1\201\1\10\1\116\3\10\2\0"+
279 "\1\7\3\0\6\10\1\202\1\10\1\116\3\10\1\203"+
280 "\5\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
281 "\2\0\3\10\1\204\4\10\2\0\1\7\3\0\2\10"+
282 "\1\205\1\10\1\206\5\10\1\207\7\10\1\7\6\10"+
283 "\1\0\1\7\1\10\11\0\4\10\2\0\5\10\1\210"+
284 "\2\10\2\0\1\7\3\0\2\10\1\211\17\10\1\7"+
285 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
286 "\2\0\1\7\3\0\12\10\1\212\7\10\12\53\1\0"+
287 "\3\53\1\0\16\53\1\0\11\53\1\0\2\53\1\0"+
288 "\16\53\31\0\1\213\17\0\1\214\50\0\1\215\111\0"+
289 "\1\216\16\0\12\61\1\0\5\61\1\0\14\61\1\0"+
290 "\11\61\1\0\2\61\1\0\16\61\21\0\1\217\47\0"+
291 "\12\64\1\0\3\64\1\0\52\64\12\67\1\0\5\67"+
292 "\1\0\50\67\21\0\1\220\47\0\12\72\1\0\22\72"+
293 "\1\0\11\72\1\0\2\72\1\0\16\72\31\0\1\221"+
294 "\17\0\1\222\50\0\1\223\111\0\1\224\16\0\7\77"+
295 "\1\0\2\77\11\0\4\77\2\0\10\77\2\0\1\77"+
296 "\3\0\25\77\2\225\1\77\1\225\1\0\2\77\11\0"+
297 "\4\77\1\226\1\0\10\77\2\0\1\77\3\0\25\77"+
298 "\2\103\1\77\1\103\1\0\2\77\11\0\2\77\1\101"+
299 "\1\102\2\0\3\77\1\102\1\101\3\77\2\0\1\77"+
300 "\3\0\13\77\1\101\11\77\2\104\1\77\1\104\1\0"+
301 "\2\77\11\0\2\77\1\101\1\102\1\0\1\103\3\77"+
302 "\1\102\1\101\3\77\2\0\1\77\3\0\13\77\1\101"+
303 "\11\77\1\104\1\105\1\77\1\105\1\0\2\77\11\0"+
304 "\1\77\1\227\1\101\1\102\1\0\1\103\3\77\1\102"+
305 "\1\101\1\77\1\227\1\77\2\0\1\77\3\0\13\77"+
306 "\1\101\11\77\4\230\1\0\2\77\11\0\2\77\2\230"+
307 "\2\0\3\77\3\230\2\77\2\0\1\77\3\0\6\77"+
308 "\1\230\2\77\1\230\1\77\1\230\6\77\11\0\1\231"+
309 "\57\0\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
310 "\2\0\2\10\1\232\5\10\2\0\1\7\3\0\4\10"+
311 "\1\116\15\10\1\7\6\10\1\0\1\7\1\10\11\0"+
312 "\4\10\2\0\1\10\1\233\1\10\1\234\4\10\2\0"+
313 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
314 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\1\10"+
315 "\1\235\20\10\1\7\6\10\1\0\1\7\1\10\11\0"+
316 "\4\10\2\0\5\10\1\236\1\10\1\237\2\0\1\7"+
317 "\3\0\1\10\1\240\1\241\4\10\1\242\1\10\1\243"+
318 "\7\10\1\244\1\7\6\10\1\0\1\7\1\10\11\0"+
319 "\4\10\2\0\10\10\2\0\1\7\3\0\2\10\1\123"+
320 "\17\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
321 "\2\0\3\10\1\245\4\10\2\0\1\7\3\0\22\10"+
322 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
323 "\1\246\6\10\1\247\2\0\1\7\3\0\2\10\1\201"+
324 "\17\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
325 "\2\0\7\10\1\235\2\0\1\7\3\0\22\10\1\7"+
326 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
327 "\2\0\1\7\3\0\13\10\1\116\6\10\1\7\6\10"+
328 "\1\0\1\7\1\10\11\0\4\10\2\0\1\250\7\10"+
329 "\2\0\1\7\3\0\1\10\1\251\7\10\1\252\10\10"+
330 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
331 "\10\10\2\0\1\7\3\0\10\10\1\253\11\10\1\7"+
332 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\1\10"+
333 "\1\254\4\10\1\255\1\10\2\0\1\7\3\0\22\10"+
334 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
335 "\6\10\1\235\1\10\2\0\1\7\3\0\10\10\1\256"+
336 "\11\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
337 "\2\0\1\10\1\257\6\10\2\0\1\7\3\0\22\10"+
338 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
339 "\1\10\1\260\6\10\2\0\1\7\3\0\22\10\1\7"+
340 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\1\261"+
341 "\7\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
342 "\1\7\1\10\11\0\4\10\2\0\7\10\1\262\2\0"+
343 "\1\7\3\0\5\10\1\116\14\10\1\7\6\10\1\0"+
344 "\1\7\1\10\11\0\4\10\2\0\7\10\1\263\2\0"+
345 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
346 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\6\10"+
347 "\1\264\13\10\1\7\6\10\1\0\1\7\1\10\11\0"+
348 "\4\10\2\0\10\10\2\0\1\7\3\0\6\10\1\265"+
349 "\13\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
350 "\2\0\10\10\2\0\1\7\3\0\10\10\1\266\1\267"+
351 "\10\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
352 "\2\0\1\10\1\270\3\10\1\271\2\10\2\0\1\7"+
353 "\3\0\12\10\1\272\1\273\6\10\1\7\6\10\1\0"+
354 "\1\7\1\10\11\0\4\10\2\0\1\116\4\10\1\274"+
355 "\1\275\1\10\2\0\1\7\3\0\22\10\1\7\6\10"+
356 "\1\0\1\7\1\10\11\0\4\10\2\0\4\10\1\276"+
357 "\3\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
358 "\1\7\1\10\11\0\4\10\2\0\1\10\1\116\4\10"+
359 "\1\116\1\10\2\0\1\7\3\0\12\10\1\277\7\10"+
360 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
361 "\10\10\2\0\1\7\3\0\10\10\1\300\11\10\1\7"+
362 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\5\10"+
363 "\1\301\2\10\2\0\1\7\3\0\22\10\1\7\6\10"+
364 "\1\0\1\7\1\10\11\0\4\10\2\0\10\10\2\0"+
365 "\1\7\3\0\2\10\1\302\7\10\1\303\7\10\1\7"+
366 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
367 "\2\0\1\7\3\0\6\10\1\304\13\10\1\7\6\10"+
368 "\1\0\1\7\1\10\11\0\4\10\2\0\7\10\1\305"+
369 "\2\0\1\7\3\0\11\10\1\306\10\10\1\7\6\10"+
370 "\1\0\1\7\1\10\11\0\4\10\2\0\5\10\1\307"+
371 "\2\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
372 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
373 "\3\0\2\10\1\310\17\10\1\7\6\10\1\0\1\7"+
374 "\1\10\11\0\4\10\2\0\10\10\2\0\1\7\3\0"+
375 "\1\10\1\311\20\10\1\7\6\10\1\0\1\7\1\10"+
376 "\11\0\4\10\2\0\1\312\5\10\1\313\1\10\2\0"+
377 "\1\7\3\0\1\314\1\10\1\315\10\10\1\316\6\10"+
378 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
379 "\10\10\2\0\1\7\3\0\2\10\1\317\17\10\1\7"+
380 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
381 "\2\0\1\7\3\0\2\10\1\320\17\10\1\7\6\10"+
382 "\1\0\1\7\1\10\11\0\4\10\2\0\1\321\7\10"+
383 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
384 "\1\10\11\0\4\10\2\0\1\10\1\322\6\10\2\0"+
385 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
386 "\11\0\4\10\2\0\7\10\1\323\2\0\1\7\3\0"+
387 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
388 "\2\0\10\10\2\0\1\7\3\0\7\10\1\324\12\10"+
389 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
390 "\1\325\7\10\2\0\1\7\3\0\22\10\1\7\6\10"+
391 "\1\0\1\7\1\10\11\0\4\10\2\0\10\10\2\0"+
392 "\1\7\3\0\12\10\1\326\7\10\1\7\6\10\1\0"+
393 "\1\7\1\10\11\0\4\10\2\0\1\327\7\10\2\0"+
394 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
395 "\11\0\4\10\2\0\5\10\1\330\2\10\2\0\1\7"+
396 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
397 "\4\10\2\0\10\10\2\0\1\7\3\0\5\10\1\331"+
398 "\14\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
399 "\2\0\6\10\1\254\1\10\2\0\1\7\3\0\22\10"+
400 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
401 "\1\116\7\10\2\0\1\7\3\0\13\10\1\332\6\10"+
402 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
403 "\1\10\1\333\6\10\2\0\1\7\3\0\22\10\1\7"+
404 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\1\10"+
405 "\1\334\5\10\1\235\2\0\1\7\3\0\22\10\1\7"+
406 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\5\10"+
407 "\1\335\2\10\2\0\1\7\3\0\22\10\1\7\6\10"+
408 "\1\0\1\7\1\10\11\0\4\10\2\0\5\10\1\336"+
409 "\2\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
410 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
411 "\3\0\5\10\1\337\2\10\1\340\11\10\1\7\6\10"+
412 "\1\0\1\7\1\10\11\0\4\10\2\0\3\10\1\341"+
413 "\4\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
414 "\1\7\1\10\11\0\4\10\2\0\1\116\7\10\2\0"+
415 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
416 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\17\10"+
417 "\1\342\2\10\1\7\6\10\1\0\1\7\1\10\11\0"+
418 "\4\10\2\0\3\10\1\343\4\10\2\0\1\7\3\0"+
419 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
420 "\2\0\4\10\1\344\2\10\1\345\2\0\1\7\3\0"+
421 "\1\10\1\346\20\10\1\7\6\10\1\0\1\7\1\10"+
422 "\11\0\4\10\2\0\7\10\1\347\2\0\1\7\3\0"+
423 "\14\10\1\116\5\10\1\7\6\10\1\0\1\7\1\10"+
424 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\10\10"+
425 "\1\350\11\10\1\7\6\10\1\0\1\7\1\10\11\0"+
426 "\4\10\2\0\2\10\1\351\5\10\2\0\1\7\3\0"+
427 "\3\10\1\352\16\10\1\7\6\10\1\0\1\7\1\10"+
428 "\11\0\4\10\2\0\1\10\1\353\6\10\2\0\1\7"+
429 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
430 "\4\10\2\0\1\10\1\354\6\10\2\0\1\7\3\0"+
431 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
432 "\2\0\1\10\1\116\6\10\2\0\1\7\3\0\22\10"+
433 "\50\0\1\355\57\0\1\356\62\0\1\357\111\0\1\360"+
434 "\66\0\1\361\57\0\1\362\62\0\1\363\111\0\1\364"+
435 "\16\0\3\77\2\225\1\77\1\225\1\0\2\77\11\0"+
436 "\2\77\1\101\1\77\2\0\4\77\1\101\3\77\2\0"+
437 "\1\77\3\0\13\77\1\101\6\77\3\0\2\225\1\0"+
438 "\1\225\62\0\3\77\4\230\1\0\2\77\11\0\1\77"+
439 "\1\227\2\230\2\0\3\77\3\230\1\227\1\77\2\0"+
440 "\1\77\3\0\6\77\1\230\2\77\1\230\1\77\1\230"+
441 "\6\77\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
442 "\2\0\3\10\1\365\4\10\2\0\1\7\3\0\22\10"+
443 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
444 "\3\10\1\366\4\10\2\0\1\7\3\0\22\10\1\7"+
445 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
446 "\2\0\1\7\3\0\10\10\1\116\11\10\1\7\6\10"+
447 "\1\0\1\7\1\10\11\0\4\10\2\0\3\10\1\116"+
448 "\4\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
449 "\1\7\1\10\11\0\4\10\2\0\6\10\1\367\1\10"+
450 "\2\0\1\7\3\0\13\10\1\370\6\10\1\7\6\10"+
451 "\1\0\1\7\1\10\11\0\4\10\2\0\10\10\2\0"+
452 "\1\7\3\0\2\10\1\371\7\10\1\372\7\10\1\7"+
453 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\3\10"+
454 "\1\373\4\10\2\0\1\7\3\0\22\10\1\7\6\10"+
455 "\1\0\1\7\1\10\11\0\4\10\2\0\10\10\2\0"+
456 "\1\7\3\0\10\10\1\374\11\10\1\7\6\10\1\0"+
457 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
458 "\3\0\2\10\1\375\17\10\1\7\6\10\1\0\1\7"+
459 "\1\10\11\0\4\10\2\0\10\10\2\0\1\7\3\0"+
460 "\12\10\1\376\7\10\1\7\6\10\1\0\1\7\1\10"+
461 "\11\0\4\10\2\0\2\10\1\377\5\10\2\0\1\7"+
462 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
463 "\4\10\2\0\7\10\1\116\2\0\1\7\3\0\22\10"+
464 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
465 "\10\10\2\0\1\7\3\0\2\10\1\u0100\17\10\1\7"+
466 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\5\10"+
467 "\1\u0101\2\10\2\0\1\7\3\0\22\10\1\7\6\10"+
468 "\1\0\1\7\1\10\11\0\4\10\2\0\3\10\1\u0102"+
469 "\4\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
470 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
471 "\3\0\12\10\1\u0103\7\10\1\7\6\10\1\0\1\7"+
472 "\1\10\11\0\4\10\2\0\3\10\1\u0104\4\10\2\0"+
473 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
474 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\11\10"+
475 "\1\u0105\10\10\1\7\6\10\1\0\1\7\1\10\11\0"+
476 "\4\10\2\0\7\10\1\232\2\0\1\7\3\0\22\10"+
477 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
478 "\5\10\1\u0106\2\10\2\0\1\7\3\0\22\10\1\7"+
479 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
480 "\2\0\1\7\3\0\3\10\1\u0107\16\10\1\7\6\10"+
481 "\1\0\1\7\1\10\11\0\4\10\2\0\5\10\1\u0108"+
482 "\2\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
483 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
484 "\3\0\12\10\1\u0109\7\10\1\7\6\10\1\0\1\7"+
485 "\1\10\11\0\4\10\2\0\3\10\1\u010a\4\10\2\0"+
486 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
487 "\11\0\4\10\2\0\1\u010b\7\10\2\0\1\7\3\0"+
488 "\12\10\1\u010c\7\10\1\7\6\10\1\0\1\7\1\10"+
489 "\11\0\4\10\2\0\3\10\1\u0100\4\10\2\0\1\7"+
490 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
491 "\4\10\2\0\1\10\1\u010d\6\10\2\0\1\7\3\0"+
492 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
493 "\2\0\10\10\2\0\1\7\3\0\7\10\1\u010e\12\10"+
494 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
495 "\5\10\1\171\2\10\2\0\1\7\3\0\22\10\1\7"+
496 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
497 "\2\0\1\7\3\0\2\10\1\u010f\17\10\1\7\6\10"+
498 "\1\0\1\7\1\10\11\0\4\10\2\0\1\u0110\7\10"+
499 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
500 "\1\10\11\0\4\10\2\0\1\10\1\u0111\6\10\2\0"+
501 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
502 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\11\10"+
503 "\1\u0112\10\10\1\7\6\10\1\0\1\7\1\10\11\0"+
504 "\4\10\2\0\6\10\1\u0113\1\10\2\0\1\7\3\0"+
505 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
506 "\2\0\4\10\1\254\3\10\2\0\1\7\3\0\22\10"+
507 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
508 "\3\10\1\273\4\10\2\0\1\7\3\0\22\10\1\7"+
509 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\1\10"+
510 "\1\u0114\6\10\2\0\1\7\3\0\22\10\1\7\6\10"+
511 "\1\0\1\7\1\10\11\0\4\10\2\0\10\10\2\0"+
512 "\1\7\3\0\7\10\1\u0115\12\10\1\7\6\10\1\0"+
513 "\1\7\1\10\11\0\4\10\2\0\6\10\1\u0116\1\10"+
514 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
515 "\1\10\11\0\4\10\2\0\10\10\2\0\1\7\3\0"+
516 "\14\10\1\u0117\5\10\1\7\6\10\1\0\1\7\1\10"+
517 "\11\0\4\10\2\0\1\u0118\7\10\2\0\1\7\3\0"+
518 "\1\10\1\u0119\5\10\1\u011a\1\10\1\u011b\10\10\1\7"+
519 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\6\10"+
520 "\1\u011c\1\10\2\0\1\7\3\0\22\10\1\7\6\10"+
521 "\1\0\1\7\1\10\11\0\4\10\2\0\10\10\2\0"+
522 "\1\7\3\0\11\10\1\267\10\10\1\7\6\10\1\0"+
523 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
524 "\3\0\20\10\1\u011d\1\10\1\7\6\10\1\0\1\7"+
525 "\1\10\11\0\4\10\2\0\1\u011e\7\10\2\0\1\7"+
526 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
527 "\4\10\2\0\10\10\2\0\1\7\3\0\10\10\1\u011f"+
528 "\11\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
529 "\2\0\6\10\1\u0120\1\10\2\0\1\7\3\0\22\10"+
530 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
531 "\3\10\1\u0121\4\10\2\0\1\7\3\0\22\10\1\7"+
532 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
533 "\2\0\1\7\3\0\2\10\1\u0122\17\10\1\7\6\10"+
534 "\1\0\1\7\1\10\11\0\4\10\2\0\3\10\1\u0123"+
535 "\4\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
536 "\1\7\1\10\11\0\4\10\2\0\1\u0124\7\10\2\0"+
537 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
538 "\11\0\4\10\2\0\3\10\1\u0125\4\10\2\0\1\7"+
539 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
540 "\4\10\2\0\1\u0126\7\10\2\0\1\7\3\0\22\10"+
541 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
542 "\6\10\1\235\1\10\2\0\1\7\3\0\22\10\1\7"+
543 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
544 "\2\0\1\7\3\0\1\116\21\10\1\7\6\10\1\0"+
545 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
546 "\3\0\13\10\1\u0127\6\10\1\7\6\10\1\0\1\7"+
547 "\1\10\11\0\4\10\2\0\7\10\1\u0128\2\0\1\7"+
548 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
549 "\4\10\2\0\10\10\2\0\1\7\3\0\2\10\1\234"+
550 "\17\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
551 "\2\0\3\10\1\u0127\4\10\2\0\1\7\3\0\22\10"+
552 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
553 "\6\10\1\u0129\1\10\2\0\1\7\3\0\22\10\1\7"+
554 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
555 "\2\0\1\7\3\0\12\10\1\116\7\10\1\7\6\10"+
556 "\1\0\1\7\1\10\11\0\4\10\2\0\1\10\1\254"+
557 "\6\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
558 "\1\7\1\10\11\0\4\10\2\0\3\10\1\u012a\4\10"+
559 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
560 "\1\10\11\0\4\10\2\0\3\10\1\u012b\4\10\2\0"+
561 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
562 "\11\0\4\10\2\0\1\10\1\u012c\6\10\2\0\1\7"+
563 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
564 "\4\10\2\0\10\10\2\0\1\7\3\0\13\10\1\u012d"+
565 "\6\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
566 "\2\0\7\10\1\245\2\0\1\7\3\0\22\10\1\7"+
567 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\1\10"+
568 "\1\367\6\10\2\0\1\7\3\0\22\10\1\7\6\10"+
569 "\1\0\1\7\1\10\11\0\4\10\2\0\10\10\2\0"+
570 "\1\7\3\0\1\10\1\367\20\10\1\7\6\10\1\0"+
571 "\1\7\1\10\11\0\4\10\2\0\1\u012e\6\10\1\u012f"+
572 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
573 "\1\10\11\0\4\10\2\0\10\10\2\0\1\7\3\0"+
574 "\11\10\1\171\10\10\1\7\6\10\1\0\1\7\1\10"+
575 "\11\0\4\10\2\0\3\10\1\u0130\4\10\2\0\1\7"+
576 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
577 "\4\10\2\0\1\10\1\u0131\6\10\2\0\1\7\3\0"+
578 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
579 "\2\0\5\10\1\u0132\2\10\2\0\1\7\3\0\22\10"+
580 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
581 "\1\u0133\7\10\2\0\1\7\3\0\22\10\1\7\6\10"+
582 "\1\0\1\7\1\10\11\0\4\10\2\0\1\10\1\u0134"+
583 "\6\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
584 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
585 "\3\0\1\10\1\u0135\20\10\1\7\6\10\1\0\1\7"+
586 "\1\10\11\0\4\10\2\0\5\10\1\u0136\2\10\2\0"+
587 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
588 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\6\10"+
589 "\1\u0115\13\10\1\7\6\10\1\0\1\7\1\10\11\0"+
590 "\4\10\2\0\10\10\2\0\1\7\3\0\10\10\1\166"+
591 "\11\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
592 "\2\0\5\10\1\u0137\2\10\2\0\1\7\3\0\22\10"+
593 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
594 "\1\u0138\7\10\2\0\1\7\3\0\22\10\45\0\1\u0139"+
595 "\57\0\1\355\104\0\1\u013a\50\0\1\u013b\105\0\1\u013c"+
596 "\57\0\1\361\104\0\1\u013d\50\0\1\u013e\40\0\1\7"+
597 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\5\10"+
598 "\1\u013f\2\10\2\0\1\7\3\0\22\10\1\7\6\10"+
599 "\1\0\1\7\1\10\11\0\4\10\2\0\10\10\2\0"+
600 "\1\7\3\0\12\10\1\u0140\7\10\1\7\6\10\1\0"+
601 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
602 "\3\0\13\10\1\u0141\6\10\1\7\6\10\1\0\1\7"+
603 "\1\10\11\0\4\10\2\0\2\10\1\u0142\5\10\2\0"+
604 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
605 "\11\0\4\10\2\0\5\10\1\201\2\10\2\0\1\7"+
606 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
607 "\4\10\2\0\1\u0143\7\10\2\0\1\7\3\0\22\10"+
608 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
609 "\7\10\1\u0144\2\0\1\7\3\0\22\10\1\7\6\10"+
610 "\1\0\1\7\1\10\11\0\4\10\2\0\1\10\1\124"+
611 "\6\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
612 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
613 "\3\0\2\10\1\u0145\17\10\1\7\6\10\1\0\1\7"+
614 "\1\10\11\0\4\10\2\0\6\10\1\116\1\10\2\0"+
615 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
616 "\11\0\4\10\2\0\4\10\1\235\3\10\2\0\1\7"+
617 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
618 "\4\10\2\0\1\10\1\u0146\6\10\2\0\1\7\3\0"+
619 "\10\10\1\u0147\11\10\1\7\6\10\1\0\1\7\1\10"+
620 "\11\0\4\10\2\0\1\10\1\u0148\6\10\2\0\1\7"+
621 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
622 "\4\10\2\0\10\10\2\0\1\7\3\0\1\10\1\201"+
623 "\20\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
624 "\2\0\1\u0149\7\10\2\0\1\7\3\0\22\10\1\7"+
625 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\6\10"+
626 "\1\u014a\1\10\2\0\1\7\3\0\22\10\1\7\6\10"+
627 "\1\0\1\7\1\10\11\0\4\10\2\0\5\10\1\u014b"+
628 "\2\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
629 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
630 "\3\0\4\10\1\116\15\10\1\7\6\10\1\0\1\7"+
631 "\1\10\11\0\4\10\2\0\10\10\2\0\1\7\3\0"+
632 "\5\10\1\u014c\14\10\1\7\6\10\1\0\1\7\1\10"+
633 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\5\10"+
634 "\1\u014d\14\10\1\7\6\10\1\0\1\7\1\10\11\0"+
635 "\4\10\2\0\1\10\1\u014e\6\10\2\0\1\7\3\0"+
636 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
637 "\2\0\6\10\1\u014f\1\10\2\0\1\7\3\0\22\10"+
638 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
639 "\5\10\1\u0150\2\10\2\0\1\7\3\0\22\10\1\7"+
640 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
641 "\2\0\1\7\3\0\2\10\1\u0151\3\10\1\u0152\13\10"+
642 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
643 "\10\10\2\0\1\7\3\0\10\10\1\u0153\11\10\1\7"+
644 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
645 "\2\0\1\7\3\0\2\10\1\u0154\17\10\1\7\6\10"+
646 "\1\0\1\7\1\10\11\0\4\10\2\0\3\10\1\u0155"+
647 "\4\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
648 "\1\7\1\10\11\0\4\10\2\0\5\10\1\u0156\2\10"+
649 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
650 "\1\10\11\0\4\10\2\0\3\10\1\124\4\10\2\0"+
651 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
652 "\11\0\4\10\2\0\1\u0157\7\10\2\0\1\7\3\0"+
653 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
654 "\2\0\6\10\1\u0158\1\10\2\0\1\7\3\0\22\10"+
655 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
656 "\6\10\1\u0157\1\10\2\0\1\7\3\0\22\10\1\7"+
657 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\5\10"+
658 "\1\u0159\2\10\2\0\1\7\3\0\22\10\1\7\6\10"+
659 "\1\0\1\7\1\10\11\0\4\10\2\0\3\10\1\u015a"+
660 "\4\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
661 "\1\7\1\10\11\0\4\10\2\0\3\10\1\u015b\4\10"+
662 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
663 "\1\10\11\0\4\10\2\0\1\10\1\u015c\6\10\2\0"+
664 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
665 "\11\0\4\10\2\0\3\10\1\u015d\4\10\2\0\1\7"+
666 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
667 "\4\10\2\0\10\10\2\0\1\7\3\0\2\10\1\u015e"+
668 "\17\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
669 "\2\0\3\10\1\124\1\10\1\u015f\2\10\2\0\1\7"+
670 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
671 "\4\10\2\0\4\10\1\u0160\3\10\2\0\1\7\3\0"+
672 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
673 "\2\0\1\u0161\7\10\2\0\1\7\3\0\22\10\1\7"+
674 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\3\10"+
675 "\1\u0162\4\10\2\0\1\7\3\0\22\10\1\7\6\10"+
676 "\1\0\1\7\1\10\11\0\4\10\2\0\1\10\1\u0163"+
677 "\6\10\2\0\1\7\3\0\7\10\1\u0161\12\10\1\7"+
678 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
679 "\2\0\1\7\3\0\10\10\1\235\11\10\1\7\6\10"+
680 "\1\0\1\7\1\10\11\0\4\10\2\0\1\10\1\u0164"+
681 "\6\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
682 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
683 "\3\0\2\10\1\u0165\17\10\1\7\6\10\1\0\1\7"+
684 "\1\10\11\0\4\10\2\0\10\10\2\0\1\7\3\0"+
685 "\15\10\1\254\4\10\1\7\6\10\1\0\1\7\1\10"+
686 "\11\0\4\10\2\0\3\10\1\370\4\10\2\0\1\7"+
687 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
688 "\4\10\2\0\10\10\2\0\1\7\3\0\6\10\1\u0152"+
689 "\13\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
690 "\2\0\5\10\1\u015f\2\10\2\0\1\7\3\0\22\10"+
691 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
692 "\3\10\1\u0166\4\10\2\0\1\7\3\0\22\10\1\7"+
693 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\7\10"+
694 "\1\u0167\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
695 "\1\7\1\10\11\0\4\10\2\0\4\10\1\344\3\10"+
696 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
697 "\1\10\11\0\4\10\2\0\3\10\1\u0168\4\10\2\0"+
698 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
699 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\2\10"+
700 "\1\u0169\17\10\1\7\6\10\1\0\1\7\1\10\11\0"+
701 "\4\10\2\0\5\10\1\u016a\2\10\2\0\1\7\3\0"+
702 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
703 "\2\0\1\u016b\7\10\2\0\1\7\3\0\22\10\1\7"+
704 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
705 "\2\0\1\7\3\0\11\10\1\201\10\10\1\7\6\10"+
706 "\1\0\1\7\1\10\11\0\4\10\2\0\1\10\1\u016c"+
707 "\4\10\1\u016d\1\10\2\0\1\7\3\0\22\10\1\7"+
708 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\2\10"+
709 "\1\u016e\5\10\2\0\1\7\3\0\22\10\1\7\6\10"+
710 "\1\0\1\7\1\10\11\0\4\10\2\0\1\10\1\u016f"+
711 "\6\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
712 "\1\7\1\10\11\0\4\10\2\0\3\10\1\u0170\4\10"+
713 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
714 "\1\10\11\0\4\10\2\0\10\10\2\0\1\7\3\0"+
715 "\2\10\1\u0171\17\10\1\7\6\10\1\0\1\7\1\10"+
716 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\5\10"+
717 "\1\u0172\14\10\1\7\6\10\1\0\1\7\1\10\11\0"+
718 "\4\10\2\0\1\10\1\u0173\6\10\2\0\1\7\3\0"+
719 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
720 "\2\0\2\10\1\267\5\10\2\0\1\7\3\0\22\10"+
721 "\22\0\1\u0174\106\0\1\355\4\0\1\u0139\24\0\1\u013b"+
722 "\1\u0175\4\u013b\1\0\1\u0175\1\u013b\2\0\1\u0175\2\0"+
723 "\3\u0175\5\u013b\2\u0175\10\u013b\3\u0175\1\0\2\u0175\22\u013b"+
724 "\22\0\1\u0176\106\0\1\361\4\0\1\u013c\24\0\1\u013e"+
725 "\1\u0177\4\u013e\1\0\1\u0177\1\u013e\2\0\1\u0177\2\0"+
726 "\3\u0177\5\u013e\2\u0177\10\u013e\3\u0177\1\0\2\u0177\22\u013e"+
727 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
728 "\10\10\2\0\1\7\3\0\13\10\1\u0178\6\10\1\7"+
729 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
730 "\2\0\1\7\3\0\10\10\1\u0179\11\10\1\7\6\10"+
731 "\1\0\1\7\1\10\11\0\4\10\2\0\3\10\1\u017a"+
732 "\4\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
733 "\1\7\1\10\11\0\4\10\2\0\1\10\1\u017b\6\10"+
734 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
735 "\1\10\11\0\4\10\2\0\1\10\1\u017c\6\10\2\0"+
736 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
737 "\11\0\4\10\2\0\1\u017d\7\10\2\0\1\7\3\0"+
738 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
739 "\2\0\1\10\1\u017e\6\10\2\0\1\7\3\0\22\10"+
740 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
741 "\10\10\2\0\1\7\3\0\10\10\1\267\11\10\1\7"+
742 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
743 "\2\0\1\7\3\0\13\10\1\u017f\6\10\1\7\6\10"+
744 "\1\0\1\7\1\10\11\0\4\10\2\0\1\u0180\7\10"+
745 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
746 "\1\10\11\0\4\10\2\0\10\10\2\0\1\7\3\0"+
747 "\2\10\1\u0181\17\10\1\7\6\10\1\0\1\7\1\10"+
748 "\11\0\4\10\2\0\6\10\1\u0108\1\10\2\0\1\7"+
749 "\3\0\2\10\1\u0182\17\10\1\7\6\10\1\0\1\7"+
750 "\1\10\11\0\4\10\2\0\1\10\1\u0155\6\10\2\0"+
751 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
752 "\11\0\4\10\2\0\5\10\1\u0183\2\10\2\0\1\7"+
753 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
754 "\4\10\2\0\10\10\2\0\1\7\3\0\6\10\1\u0184"+
755 "\13\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
756 "\2\0\5\10\1\u0185\2\10\2\0\1\7\3\0\22\10"+
757 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
758 "\2\10\1\u0159\5\10\2\0\1\7\3\0\22\10\1\7"+
759 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\1\10"+
760 "\1\u0186\6\10\2\0\1\7\3\0\22\10\1\7\6\10"+
761 "\1\0\1\7\1\10\11\0\4\10\2\0\10\10\2\0"+
762 "\1\7\3\0\10\10\1\u0187\11\10\1\7\6\10\1\0"+
763 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
764 "\3\0\12\10\1\u0188\7\10\1\7\6\10\1\0\1\7"+
765 "\1\10\11\0\4\10\2\0\10\10\2\0\1\7\3\0"+
766 "\7\10\1\116\12\10\1\7\6\10\1\0\1\7\1\10"+
767 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\11\10"+
768 "\1\116\10\10\1\7\6\10\1\0\1\7\1\10\11\0"+
769 "\4\10\2\0\10\10\2\0\1\7\3\0\13\10\1\254"+
770 "\6\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
771 "\2\0\6\10\1\171\1\10\2\0\1\7\3\0\22\10"+
772 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
773 "\10\10\2\0\1\7\3\0\2\10\1\u0151\17\10\1\7"+
774 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\3\10"+
775 "\1\367\4\10\2\0\1\7\3\0\22\10\1\7\6\10"+
776 "\1\0\1\7\1\10\11\0\4\10\2\0\1\u0189\7\10"+
777 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
778 "\1\10\11\0\4\10\2\0\10\10\2\0\1\7\3\0"+
779 "\11\10\1\u0183\10\10\1\7\6\10\1\0\1\7\1\10"+
780 "\11\0\4\10\2\0\1\10\1\u018a\6\10\2\0\1\7"+
781 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
782 "\4\10\2\0\5\10\1\u018b\2\10\2\0\1\7\3\0"+
783 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
784 "\2\0\10\10\2\0\1\7\3\0\13\10\1\u018c\6\10"+
785 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
786 "\7\10\1\u018d\2\0\1\7\3\0\11\10\1\254\10\10"+
787 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
788 "\10\10\2\0\1\7\3\0\7\10\1\u0189\12\10\1\7"+
789 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
790 "\2\0\1\7\3\0\12\10\1\u018e\7\10\1\7\6\10"+
791 "\1\0\1\7\1\10\11\0\4\10\2\0\3\10\1\336"+
792 "\4\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
793 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
794 "\3\0\5\10\1\u018f\14\10\1\7\6\10\1\0\1\7"+
795 "\1\10\11\0\4\10\2\0\4\10\1\u0190\3\10\2\0"+
796 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
797 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\2\10"+
798 "\1\u0191\17\10\1\7\6\10\1\0\1\7\1\10\11\0"+
799 "\4\10\2\0\5\10\1\u0192\2\10\2\0\1\7\3\0"+
800 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
801 "\2\0\5\10\1\u0193\2\10\2\0\1\7\3\0\22\10"+
802 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
803 "\10\10\2\0\1\7\3\0\1\10\1\u0194\20\10\1\7"+
804 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
805 "\2\0\1\7\3\0\10\10\1\u0195\11\10\1\7\6\10"+
806 "\1\0\1\7\1\10\11\0\4\10\2\0\10\10\2\0"+
807 "\1\7\3\0\10\10\1\u0196\11\10\1\7\6\10\1\0"+
808 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
809 "\3\0\2\10\1\u0197\17\10\1\7\6\10\1\0\1\7"+
810 "\1\10\11\0\4\10\2\0\10\10\2\0\1\7\3\0"+
811 "\2\10\1\u0198\17\10\1\7\6\10\1\0\1\7\1\10"+
812 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\12\10"+
813 "\1\u0199\7\10\1\7\6\10\1\0\1\7\1\10\11\0"+
814 "\4\10\2\0\6\10\1\u019a\1\10\2\0\1\7\3\0"+
815 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
816 "\2\0\2\10\1\u019b\5\10\2\0\1\7\3\0\22\10"+
817 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
818 "\10\10\2\0\1\7\3\0\11\10\1\u014c\10\10\1\7"+
819 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
820 "\2\0\1\7\3\0\10\10\1\u019c\2\10\1\254\6\10"+
821 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
822 "\10\10\2\0\1\7\3\0\2\10\1\u019d\17\10\1\7"+
823 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
824 "\2\0\1\7\3\0\7\10\1\u019e\12\10\22\0\1\u013b"+
825 "\70\0\1\u013e\46\0\1\7\6\10\1\0\1\7\1\10"+
826 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\14\10"+
827 "\1\u019f\5\10\1\7\6\10\1\0\1\7\1\10\11\0"+
828 "\4\10\2\0\6\10\1\u0186\1\10\2\0\1\7\3\0"+
829 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
830 "\2\0\10\10\2\0\1\7\3\0\10\10\1\u019a\11\10"+
831 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
832 "\10\10\2\0\1\7\3\0\11\10\1\u01a0\10\10\1\7"+
833 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
834 "\2\0\1\7\3\0\12\10\1\u01a1\7\10\1\7\6\10"+
835 "\1\0\1\7\1\10\11\0\4\10\2\0\3\10\1\330"+
836 "\4\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
837 "\1\7\1\10\11\0\4\10\2\0\3\10\1\u019e\4\10"+
838 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
839 "\1\10\11\0\4\10\2\0\3\10\1\u01a2\4\10\2\0"+
840 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
841 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\12\10"+
842 "\1\234\7\10\1\7\6\10\1\0\1\7\1\10\11\0"+
843 "\4\10\2\0\10\10\2\0\1\7\3\0\16\10\1\u01a3"+
844 "\3\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
845 "\2\0\1\u0111\7\10\2\0\1\7\3\0\22\10\1\7"+
846 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\6\10"+
847 "\1\u017d\1\10\2\0\1\7\3\0\22\10\1\7\6\10"+
848 "\1\0\1\7\1\10\11\0\4\10\2\0\10\10\2\0"+
849 "\1\7\3\0\11\10\1\u019a\10\10\1\7\6\10\1\0"+
850 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
851 "\3\0\4\10\1\254\15\10\1\7\6\10\1\0\1\7"+
852 "\1\10\11\0\4\10\2\0\1\367\7\10\2\0\1\7"+
853 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
854 "\4\10\2\0\10\10\2\0\1\7\3\0\12\10\1\u01a4"+
855 "\7\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
856 "\2\0\3\10\1\254\4\10\2\0\1\7\3\0\22\10"+
857 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
858 "\1\u0108\7\10\2\0\1\7\3\0\22\10\1\7\6\10"+
859 "\1\0\1\7\1\10\11\0\4\10\2\0\10\10\2\0"+
860 "\1\7\3\0\5\10\1\116\14\10\1\7\6\10\1\0"+
861 "\1\7\1\10\11\0\4\10\2\0\2\10\1\u01a5\5\10"+
862 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
863 "\1\10\11\0\4\10\2\0\10\10\2\0\1\7\3\0"+
864 "\1\u0111\21\10\1\7\6\10\1\0\1\7\1\10\11\0"+
865 "\4\10\2\0\1\10\1\u01a6\6\10\2\0\1\7\3\0"+
866 "\22\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
867 "\2\0\3\10\1\u01a7\4\10\2\0\1\7\3\0\22\10"+
868 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
869 "\5\10\1\u01a8\2\10\2\0\1\7\3\0\22\10\1\7"+
870 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\1\u0113"+
871 "\7\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
872 "\1\7\1\10\11\0\4\10\2\0\6\10\1\u01a9\1\10"+
873 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
874 "\1\10\11\0\4\10\2\0\10\10\2\0\1\7\3\0"+
875 "\10\10\1\367\11\10\1\7\6\10\1\0\1\7\1\10"+
876 "\11\0\4\10\2\0\5\10\1\u01aa\2\10\2\0\1\7"+
877 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
878 "\4\10\2\0\10\10\2\0\1\7\3\0\11\10\1\u01ab"+
879 "\10\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
880 "\2\0\5\10\1\u01a4\2\10\2\0\1\7\3\0\22\10"+
881 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
882 "\10\10\2\0\1\7\3\0\10\10\1\u019e\11\10\1\7"+
883 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\10\10"+
884 "\2\0\1\7\3\0\13\10\1\u0189\6\10\1\7\6\10"+
885 "\1\0\1\7\1\10\11\0\4\10\2\0\5\10\1\u0155"+
886 "\2\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
887 "\1\7\1\10\11\0\4\10\2\0\1\254\7\10\2\0"+
888 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
889 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\11\10"+
890 "\1\u01ac\10\10\1\7\6\10\1\0\1\7\1\10\11\0"+
891 "\4\10\2\0\1\u01ad\7\10\2\0\1\7\3\0\22\10"+
892 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
893 "\10\10\2\0\1\7\3\0\11\10\1\254\10\10\1\7"+
894 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\7\10"+
895 "\1\254\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
896 "\1\7\1\10\11\0\4\10\2\0\5\10\1\212\2\10"+
897 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
898 "\1\10\11\0\4\10\2\0\3\10\1\u01ae\4\10\2\0"+
899 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
900 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\13\10"+
901 "\1\u01af\6\10\1\7\6\10\1\0\1\7\1\10\11\0"+
902 "\4\10\2\0\10\10\2\0\1\7\3\0\13\10\1\367"+
903 "\6\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
904 "\2\0\5\10\1\u0105\2\10\2\0\1\7\3\0\22\10"+
905 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
906 "\6\10\1\367\1\10\2\0\1\7\3\0\22\10\1\7"+
907 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\1\10"+
908 "\1\235\6\10\2\0\1\7\3\0\22\10\1\7\6\10"+
909 "\1\0\1\7\1\10\11\0\4\10\2\0\10\10\2\0"+
910 "\1\7\3\0\5\10\1\254\14\10\1\7\6\10\1\0"+
911 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
912 "\3\0\10\10\1\u01b0\11\10\1\7\6\10\1\0\1\7"+
913 "\1\10\11\0\4\10\2\0\10\10\2\0\1\7\3\0"+
914 "\11\10\1\235\10\10\1\7\6\10\1\0\1\7\1\10"+
915 "\11\0\4\10\2\0\10\10\2\0\1\7\3\0\2\10"+
916 "\1\u0182\17\10\1\7\6\10\1\0\1\7\1\10\11\0"+
917 "\4\10\2\0\10\10\2\0\1\7\3\0\11\10\1\u017e"+
918 "\10\10\1\7\6\10\1\0\1\7\1\10\11\0\4\10"+
919 "\2\0\10\10\2\0\1\7\3\0\4\10\1\367\15\10"+
920 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
921 "\1\52\7\10\2\0\1\7\3\0\22\10\1\7\6\10"+
922 "\1\0\1\7\1\10\11\0\4\10\2\0\3\10\1\u01b1"+
923 "\4\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
924 "\1\7\1\10\11\0\4\10\2\0\7\10\1\u01b2\2\0"+
925 "\1\7\3\0\22\10\1\7\6\10\1\0\1\7\1\10"+
926 "\11\0\4\10\2\0\2\10\1\u01b3\5\10\2\0\1\7"+
927 "\3\0\22\10\1\7\6\10\1\0\1\7\1\10\11\0"+
928 "\4\10\2\0\1\u01b4\7\10\2\0\1\7\3\0\22\10"+
929 "\1\7\6\10\1\0\1\7\1\10\11\0\4\10\2\0"+
930 "\1\10\1\u0163\6\10\2\0\1\7\3\0\22\10\1\7"+
931 "\6\10\1\0\1\7\1\10\11\0\4\10\2\0\1\u01b5"+
932 "\7\10\2\0\1\7\3\0\22\10\1\7\6\10\1\0"+
933 "\1\7\1\10\11\0\4\10\2\0\10\10\2\0\1\7"+
934 "\3\0\11\10\1\u0189\10\10\1\7\6\10\1\0\1\7"+
935 "\1\10\11\0\4\10\2\0\5\10\1\u0105\1\10\1\254"+
936 "\2\0\1\7\3\0\22\10\1\7\6\10\1\0\1\7"+
937 "\1\10\11\0\4\10\2\0\1\10\1\270\6\10\2\0"+
938 "\1\7\3\0\22\10";
939
940 private static int [] zzUnpackTrans() {
941 int [] result = new int[23313];
942 int offset = 0;
943 offset = zzUnpackTrans(ZZ_TRANS_PACKED_0, offset, result);
944 return result;
945 }
946
947 private static int zzUnpackTrans(String packed, int offset, int [] result) {
948 int i = 0; /* index in packed string */
949 int j = offset; /* index in unpacked array */
950 int l = packed.length();
951 while (i < l) {
952 int count = packed.charAt(i++);
953 int value = packed.charAt(i++);
954 value--;
955 do result[j++] = value; while (--count > 0);
956 }
957 return j;
958 }
959
960
961 /* error codes */
962 private static final int ZZ_UNKNOWN_ERROR = 0;
963 private static final int ZZ_NO_MATCH = 1;
964 private static final int ZZ_PUSHBACK_2BIG = 2;
965
966 /* error messages for the codes above */
967 private static final String ZZ_ERROR_MSG[] = {
968 "Unkown internal scanner error",
969 "Error: could not match input",
970 "Error: pushback value was too large"
971 };
972
973 /**
974 * ZZ_ATTRIBUTE[aState] contains the attributes of state <code>aState</code>
975 */
976 private static final int [] ZZ_ATTRIBUTE = zzUnpackAttribute();
977
978 private static final String ZZ_ATTRIBUTE_PACKED_0 =
979 "\6\0\4\1\1\11\1\1\1\11\4\1\2\11\30\1"+
980 "\2\11\4\1\1\11\2\1\2\11\1\1\1\11\2\1"+
981 "\1\11\13\1\2\11\1\1\1\11\100\1\4\0\2\11"+
982 "\4\0\1\1\1\0\2\1\1\11\123\1\10\0\104\1"+
983 "\2\0\1\1\2\0\66\1\4\0\76\1";
984
985 private static int [] zzUnpackAttribute() {
986 int [] result = new int[437];
987 int offset = 0;
988 offset = zzUnpackAttribute(ZZ_ATTRIBUTE_PACKED_0, offset, result);
989 return result;
990 }
991
992 private static int zzUnpackAttribute(String packed, int offset, int [] result) {
993 int i = 0; /* index in packed string */
994 int j = offset; /* index in unpacked array */
995 int l = packed.length();
996 while (i < l) {
997 int count = packed.charAt(i++);
998 int value = packed.charAt(i++);
999 do result[j++] = value; while (--count > 0);
1000 }
1001 return j;
1002 }
1003
1004 /** the input device */
1005 private java.io.Reader zzReader;
1006
1007 /** the current state of the DFA */
1008 private int zzState;
1009
1010 /** the current lexical state */
1011 private int zzLexicalState = YYINITIAL;
1012
1013 /** this buffer contains the current text to be matched and is
1014 the source of the yytext() string */
1015 private char zzBuffer[];
1016
1017 /** the textposition at the last accepting state */
1018 private int zzMarkedPos;
1019
1020 /** the current text position in the buffer */
1021 private int zzCurrentPos;
1022
1023 /** startRead marks the beginning of the yytext() string in the buffer */
1024 private int zzStartRead;
1025
1026 /** endRead marks the last character in the buffer, that has been read
1027 from input */
1028 private int zzEndRead;
1029
1030 /** zzAtEOF == true <=> the scanner is at the EOF */
1031 private boolean zzAtEOF;
1032
1033 /* user code: */
1034
1035
1036 /**
1037 * Token type specific to DelphiTokenMaker; denotes a line ending
1038 * with an unterminated "(*" comment.
1039 */
1040 public static final int INTERNAL_MLC2 = -1;
1041
1042 /**
1043 * Token type specific to DelphiTokenMaker; denotes a line ending
1044 * with an unterminated "{$" compiler directive.
1045 */
1046 public static final int INTERNAL_COMPILER_DIRECTIVE = -2;
1047
1048 /**
1049 * Token type specific to DelphiTokenMaker; denotes a line ending
1050 * with an unterminated "(*$" compiler directive.
1051 */
1052 public static final int INTERNAL_COMPILER_DIRECTIVE2 = -3;
1053
1054
1055 /**
1056 * Constructor. This must be here because JFlex does not generate a
1057 * no-parameter constructor.
1058 */
1059 public DelphiTokenMaker() {
1060 }
1061
1062
1063 /**
1064 * Adds the token specified to the current linked list of tokens as an
1065 * "end token;" that is, at <code>zzMarkedPos</code>.
1066 *
1067 * @param tokenType The token's type.
1068 */
1069 private void addEndToken(int tokenType) {
1070 addToken(zzMarkedPos,zzMarkedPos, tokenType);
1071 }
1072
1073
1074 /**
1075 * Adds the token specified to the current linked list of tokens.
1076 *
1077 * @param tokenType The token's type.
1078 * @see #addToken(int, int, int)
1079 */
1080 private void addHyperlinkToken(int start, int end, int tokenType) {
1081 int so = start + offsetShift;
1082 addToken(zzBuffer, start,end, tokenType, so, true);
1083 }
1084
1085
1086 /**
1087 * Adds the token specified to the current linked list of tokens.
1088 *
1089 * @param tokenType The token's type.
1090 */
1091 private void addToken(int tokenType) {
1092 addToken(zzStartRead, zzMarkedPos-1, tokenType);
1093 }
1094
1095
1096 /**
1097 * Adds the token specified to the current linked list of tokens.
1098 *
1099 * @param tokenType The token's type.
1100 * @see #addHyperlinkToken(int, int, int)
1101 */
1102 private void addToken(int start, int end, int tokenType) {
1103 int so = start + offsetShift;
1104 addToken(zzBuffer, start,end, tokenType, so, false);
1105 }
1106
1107
1108 /**
1109 * Adds the token specified to the current linked list of tokens.
1110 *
1111 * @param array The character array.
1112 * @param start The starting offset in the array.
1113 * @param end The ending offset in the array.
1114 * @param tokenType The token's type.
1115 * @param startOffset The offset in the document at which this token
1116 * occurs.
1117 * @param hyperlink Whether this token is a hyperlink.
1118 */
1119 public void addToken(char[] array, int start, int end, int tokenType,
1120 int startOffset, boolean hyperlink) {
1121 super.addToken(array, start,end, tokenType, startOffset, hyperlink);
1122 zzStartRead = zzMarkedPos;
1123 }
1124
1125
1126 /**
1127 * Returns the text to place at the beginning and end of a
1128 * line to "comment" it in a this programming language.
1129 *
1130 * @return The start and end strings to add to a line to "comment"
1131 * it out.
1132 */
1133 public String[] getLineCommentStartAndEnd() {
1134 return new String[] { "//", null };
1135 }
1136
1137
1138 /**
1139 * Returns the first token in the linked list of tokens generated
1140 * from <code>text</code>. This method must be implemented by
1141 * subclasses so they can correctly implement syntax highlighting.
1142 *
1143 * @param text The text from which to get tokens.
1144 * @param initialTokenType The token type we should start with.
1145 * @param startOffset The offset into the document at which
1146 * <code>text</code> starts.
1147 * @return The first <code>Token</code> in a linked list representing
1148 * the syntax highlighted text.
1149 */
1150 public Token getTokenList(Segment text, int initialTokenType, int startOffset) {
1151
1152 resetTokenList();
1153 this.offsetShift = -text.offset + startOffset;
1154
1155 // Start off in the proper state.
1156 int state = Token.NULL;
1157 switch (initialTokenType) {
1158 case Token.COMMENT_MULTILINE:
1159 state = MLC;
1160 start = text.offset;
1161 break;
1162 case INTERNAL_MLC2:
1163 state = MLC2;
1164 start = text.offset;
1165 break;
1166 case INTERNAL_COMPILER_DIRECTIVE:
1167 state = COMPILER_DIRECTIVE;
1168 start = text.offset;
1169 break;
1170 case INTERNAL_COMPILER_DIRECTIVE2:
1171 state = COMPILER_DIRECTIVE2;
1172 start = text.offset;
1173 break;
1174 default:
1175 state = Token.NULL;
1176 }
1177
1178 s = text;
1179 try {
1180 yyreset(zzReader);
1181 yybegin(state);
1182 return yylex();
1183 } catch (IOException ioe) {
1184 ioe.printStackTrace();
1185 return new DefaultToken();
1186 }
1187
1188 }
1189
1190
1191 /**
1192 * Refills the input buffer.
1193 *
1194 * @return <code>true</code> if EOF was reached, otherwise
1195 * <code>false</code>.
1196 * @exception IOException if any I/O-Error occurs.
1197 */
1198 private boolean zzRefill() throws java.io.IOException {
1199 return zzCurrentPos>=s.offset+s.count;
1200 }
1201
1202
1203 /**
1204 * Resets the scanner to read from a new input stream.
1205 * Does not close the old reader.
1206 *
1207 * All internal variables are reset, the old input stream
1208 * <b>cannot</b> be reused (internal buffer is discarded and lost).
1209 * Lexical state is set to <tt>YY_INITIAL</tt>.
1210 *
1211 * @param reader the new input stream
1212 */
1213 public final void yyreset(java.io.Reader reader) throws java.io.IOException {
1214 // 's' has been updated.
1215 zzBuffer = s.array;
1216 /*
1217 * We replaced the line below with the two below it because zzRefill
1218 * no longer "refills" the buffer (since the way we do it, it's always
1219 * "full" the first time through, since it points to the segment's
1220 * array). So, we assign zzEndRead here.
1221 */
1222 //zzStartRead = zzEndRead = s.offset;
1223 zzStartRead = s.offset;
1224 zzEndRead = zzStartRead + s.count - 1;
1225 zzCurrentPos = zzMarkedPos = s.offset;
1226 zzLexicalState = YYINITIAL;
1227 zzReader = reader;
1228 zzAtEOF = false;
1229 }
1230
1231
1232
1233
1234 /**
1235 * Creates a new scanner
1236 * There is also a java.io.InputStream version of this constructor.
1237 *
1238 * @param in the java.io.Reader to read input from.
1239 */
1240 public DelphiTokenMaker(java.io.Reader in) {
1241 this.zzReader = in;
1242 }
1243
1244 /**
1245 * Creates a new scanner.
1246 * There is also java.io.Reader version of this constructor.
1247 *
1248 * @param in the java.io.Inputstream to read input from.
1249 */
1250 public DelphiTokenMaker(java.io.InputStream in) {
1251 this(new java.io.InputStreamReader(in));
1252 }
1253
1254 /**
1255 * Unpacks the compressed character translation table.
1256 *
1257 * @param packed the packed character translation table
1258 * @return the unpacked character translation table
1259 */
1260 private static char [] zzUnpackCMap(String packed) {
1261 char [] map = new char[0x10000];
1262 int i = 0; /* index in packed string */
1263 int j = 0; /* index in unpacked array */
1264 while (i < 158) {
1265 int count = packed.charAt(i++);
1266 char value = packed.charAt(i++);
1267 do map[j++] = value; while (--count > 0);
1268 }
1269 return map;
1270 }
1271
1272
1273 /**
1274 * Closes the input stream.
1275 */
1276 public final void yyclose() throws java.io.IOException {
1277 zzAtEOF = true; /* indicate end of file */
1278 zzEndRead = zzStartRead; /* invalidate buffer */
1279
1280 if (zzReader != null)
1281 zzReader.close();
1282 }
1283
1284
1285 /**
1286 * Returns the current lexical state.
1287 */
1288 public final int yystate() {
1289 return zzLexicalState;
1290 }
1291
1292
1293 /**
1294 * Enters a new lexical state
1295 *
1296 * @param newState the new lexical state
1297 */
1298 public final void yybegin(int newState) {
1299 zzLexicalState = newState;
1300 }
1301
1302
1303 /**
1304 * Returns the text matched by the current regular expression.
1305 */
1306 public final String yytext() {
1307 return new String( zzBuffer, zzStartRead, zzMarkedPos-zzStartRead );
1308 }
1309
1310
1311 /**
1312 * Returns the character at position <tt>pos</tt> from the
1313 * matched text.
1314 *
1315 * It is equivalent to yytext().charAt(pos), but faster
1316 *
1317 * @param pos the position of the character to fetch.
1318 * A value from 0 to yylength()-1.
1319 *
1320 * @return the character at position pos
1321 */
1322 public final char yycharat(int pos) {
1323 return zzBuffer[zzStartRead+pos];
1324 }
1325
1326
1327 /**
1328 * Returns the length of the matched text region.
1329 */
1330 public final int yylength() {
1331 return zzMarkedPos-zzStartRead;
1332 }
1333
1334
1335 /**
1336 * Reports an error that occured while scanning.
1337 *
1338 * In a wellformed scanner (no or only correct usage of
1339 * yypushback(int) and a match-all fallback rule) this method
1340 * will only be called with things that "Can't Possibly Happen".
1341 * If this method is called, something is seriously wrong
1342 * (e.g. a JFlex bug producing a faulty scanner etc.).
1343 *
1344 * Usual syntax/scanner level error handling should be done
1345 * in error fallback rules.
1346 *
1347 * @param errorCode the code of the errormessage to display
1348 */
1349 private void zzScanError(int errorCode) {
1350 String message;
1351 try {
1352 message = ZZ_ERROR_MSG[errorCode];
1353 }
1354 catch (ArrayIndexOutOfBoundsException e) {
1355 message = ZZ_ERROR_MSG[ZZ_UNKNOWN_ERROR];
1356 }
1357
1358 throw new Error(message);
1359 }
1360
1361
1362 /**
1363 * Pushes the specified amount of characters back into the input stream.
1364 *
1365 * They will be read again by then next call of the scanning method
1366 *
1367 * @param number the number of characters to be read again.
1368 * This number must not be greater than yylength()!
1369 */
1370 public void yypushback(int number) {
1371 if ( number > yylength() )
1372 zzScanError(ZZ_PUSHBACK_2BIG);
1373
1374 zzMarkedPos -= number;
1375 }
1376
1377
1378 /**
1379 * Resumes scanning until the next regular expression is matched,
1380 * the end of input is encountered or an I/O-Error occurs.
1381 *
1382 * @return the next token
1383 * @exception java.io.IOException if any I/O-Error occurs
1384 */
1385 public org.fife.ui.rsyntaxtextarea.Token yylex() throws java.io.IOException {
1386 int zzInput;
1387 int zzAction;
1388
1389 // cached fields:
1390 int zzCurrentPosL;
1391 int zzMarkedPosL;
1392 int zzEndReadL = zzEndRead;
1393 char [] zzBufferL = zzBuffer;
1394 char [] zzCMapL = ZZ_CMAP;
1395
1396 int [] zzTransL = ZZ_TRANS;
1397 int [] zzRowMapL = ZZ_ROWMAP;
1398 int [] zzAttrL = ZZ_ATTRIBUTE;
1399
1400 while (true) {
1401 zzMarkedPosL = zzMarkedPos;
1402
1403 zzAction = -1;
1404
1405 zzCurrentPosL = zzCurrentPos = zzStartRead = zzMarkedPosL;
1406
1407 zzState = zzLexicalState;
1408
1409
1410 zzForAction: {
1411 while (true) {
1412
1413 if (zzCurrentPosL < zzEndReadL)
1414 zzInput = zzBufferL[zzCurrentPosL++];
1415 else if (zzAtEOF) {
1416 zzInput = YYEOF;
1417 break zzForAction;
1418 }
1419 else {
1420 // store back cached positions
1421 zzCurrentPos = zzCurrentPosL;
1422 zzMarkedPos = zzMarkedPosL;
1423 boolean eof = zzRefill();
1424 // get translated positions and possibly new buffer
1425 zzCurrentPosL = zzCurrentPos;
1426 zzMarkedPosL = zzMarkedPos;
1427 zzBufferL = zzBuffer;
1428 zzEndReadL = zzEndRead;
1429 if (eof) {
1430 zzInput = YYEOF;
1431 break zzForAction;
1432 }
1433 else {
1434 zzInput = zzBufferL[zzCurrentPosL++];
1435 }
1436 }
1437 int zzNext = zzTransL[ zzRowMapL[zzState] + zzCMapL[zzInput] ];
1438 if (zzNext == -1) break zzForAction;
1439 zzState = zzNext;
1440
1441 int zzAttributes = zzAttrL[zzState];
1442 if ( (zzAttributes & 1) == 1 ) {
1443 zzAction = zzState;
1444 zzMarkedPosL = zzCurrentPosL;
1445 if ( (zzAttributes & 8) == 8 ) break zzForAction;
1446 }
1447
1448 }
1449 }
1450
1451 // store back cached position
1452 zzMarkedPos = zzMarkedPosL;
1453
1454 switch (zzAction < 0 ? zzAction : ZZ_ACTION[zzAction]) {
1455 case 15:
1456 { addToken(start,zzStartRead-1, Token.PREPROCESSOR); addEndToken(INTERNAL_COMPILER_DIRECTIVE); return firstToken;
1457 }
1458 case 35: break;
1459 case 4:
1460 { addToken(Token.PREPROCESSOR);
1461 }
1462 case 36: break;
1463 case 5:
1464 { addNullToken(); return firstToken;
1465 }
1466 case 37: break;
1467 case 27:
1468 { yybegin(YYINITIAL); addToken(start,zzStartRead+1, Token.COMMENT_MULTILINE);
1469 }
1470 case 38: break;
1471 case 6:
1472 { addToken(Token.WHITESPACE);
1473 }
1474 case 39: break;
1475 case 21:
1476 { addToken(Token.LITERAL_NUMBER_HEXADECIMAL);
1477 }
1478 case 40: break;
1479 case 20:
1480 { addToken(Token.LITERAL_NUMBER_FLOAT);
1481 }
1482 case 41: break;
1483 case 26:
1484 { addToken(Token.RESERVED_WORD);
1485 }
1486 case 42: break;
1487 case 16:
1488 { yybegin(YYINITIAL); addToken(start,zzStartRead, Token.PREPROCESSOR);
1489 }
1490 case 43: break;
1491 case 9:
1492 { addToken(Token.SEPARATOR);
1493 }
1494 case 44: break;
1495 case 17:
1496 { addToken(start,zzStartRead-1, Token.PREPROCESSOR); addEndToken(INTERNAL_COMPILER_DIRECTIVE2); return firstToken;
1497 }
1498 case 45: break;
1499 case 2:
1500 { addToken(Token.IDENTIFIER);
1501 }
1502 case 46: break;
1503 case 18:
1504 { addToken(start,zzStartRead-1, Token.COMMENT_EOL); addNullToken(); return firstToken;
1505 }
1506 case 47: break;
1507 case 25:
1508 { start = zzMarkedPos-2; yybegin(EOL_COMMENT);
1509 }
1510 case 48: break;
1511 case 30:
1512 { addToken(Token.FUNCTION);
1513 }
1514 case 49: break;
1515 case 7:
1516 { addToken(Token.ERROR_STRING_DOUBLE); addNullToken(); return firstToken;
1517 }
1518 case 50: break;
1519 case 14:
1520 { addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); addEndToken(INTERNAL_MLC2); return firstToken;
1521 }
1522 case 51: break;
1523 case 32:
1524 { addToken(Token.DATA_TYPE);
1525 }
1526 case 52: break;
1527 case 1:
1528 { addToken(Token.ERROR_IDENTIFIER);
1529 }
1530 case 53: break;
1531 case 31:
1532 { addToken(Token.LITERAL_BOOLEAN);
1533 }
1534 case 54: break;
1535 case 22:
1536 { addToken(Token.LITERAL_STRING_DOUBLE_QUOTE);
1537 }
1538 case 55: break;
1539 case 34:
1540 { int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_EOL); addHyperlinkToken(temp,zzMarkedPos-1, Token.COMMENT_EOL); start = zzMarkedPos;
1541 }
1542 case 56: break;
1543 case 29:
1544 { start = zzMarkedPos-3; yybegin(COMPILER_DIRECTIVE2);
1545 }
1546 case 57: break;
1547 case 24:
1548 { start = zzMarkedPos-2; yybegin(MLC2);
1549 }
1550 case 58: break;
1551 case 33:
1552 { int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); addHyperlinkToken(temp,zzMarkedPos-1, Token.COMMENT_MULTILINE); start = zzMarkedPos;
1553 }
1554 case 59: break;
1555 case 19:
1556 { addToken(Token.ERROR_NUMBER_FORMAT);
1557 }
1558 case 60: break;
1559 case 28:
1560 { yybegin(YYINITIAL); addToken(start,zzStartRead+1, Token.PREPROCESSOR);
1561 }
1562 case 61: break;
1563 case 13:
1564 { yybegin(YYINITIAL); addToken(start,zzStartRead, Token.COMMENT_MULTILINE);
1565 }
1566 case 62: break;
1567 case 3:
1568 { addToken(Token.LITERAL_NUMBER_DECIMAL_INT);
1569 }
1570 case 63: break;
1571 case 10:
1572 { addToken(Token.OPERATOR);
1573 }
1574 case 64: break;
1575 case 8:
1576 { start = zzMarkedPos-1; yybegin(MLC);
1577 }
1578 case 65: break;
1579 case 23:
1580 { start = zzMarkedPos-2; yybegin(COMPILER_DIRECTIVE);
1581 }
1582 case 66: break;
1583 case 11:
1584 {
1585 }
1586 case 67: break;
1587 case 12:
1588 { addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); return firstToken;
1589 }
1590 case 68: break;
1591 default:
1592 if (zzInput == YYEOF && zzStartRead == zzCurrentPos) {
1593 zzAtEOF = true;
1594 switch (zzLexicalState) {
1595 case COMPILER_DIRECTIVE: {
1596 addToken(start,zzStartRead-1, Token.PREPROCESSOR); addEndToken(INTERNAL_COMPILER_DIRECTIVE); return firstToken;
1597 }
1598 case 438: break;
1599 case EOL_COMMENT: {
1600 addToken(start,zzStartRead-1, Token.COMMENT_EOL); addNullToken(); return firstToken;
1601 }
1602 case 439: break;
1603 case YYINITIAL: {
1604 addNullToken(); return firstToken;
1605 }
1606 case 440: break;
1607 case COMPILER_DIRECTIVE2: {
1608 addToken(start,zzStartRead-1, Token.PREPROCESSOR); addEndToken(INTERNAL_COMPILER_DIRECTIVE2); return firstToken;
1609 }
1610 case 441: break;
1611 case MLC: {
1612 addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); return firstToken;
1613 }
1614 case 442: break;
1615 case MLC2: {
1616 addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); addEndToken(INTERNAL_MLC2); return firstToken;
1617 }
1618 case 443: break;
1619 default:
1620 return null;
1621 }
1622 }
1623 else {
1624 zzScanError(ZZ_NO_MATCH);
1625 }
1626 }
1627 }
1628 }
1629
1630
1631}
Note: See TracBrowser for help on using the repository browser.