org.fife.ui.rsyntaxtextarea.modes.JavaScriptTokenMaker Maven / Gradle / Ivy
Show all versions of rsyntaxtextarea Show documentation
/* The following code was generated by JFlex 1.4.1 on 9/17/22 11:27 AM */
/*
* 02/05/2012
*
* JavaScriptTokenMaker.java - Parses a document into JavaScript tokens.
*
* This library is distributed under a modified BSD license. See the included
* LICENSE file for details.
*/
package org.fife.ui.rsyntaxtextarea.modes;
import java.io.*;
import javax.swing.text.Segment;
import java.util.Stack;
import org.fife.ui.rsyntaxtextarea.*;
/**
* Scanner for JavaScript files. Its states could be simplified, but are
* kept the way they are to keep a degree of similarity (i.e. copy/paste)
* between it and HTML/JSP/PHPTokenMaker. This should cause no difference in
* performance.
*
* This implementation was created using
* JFlex 1.4.1; however, the generated file
* was modified for performance. Memory allocation needs to be almost
* completely removed to be competitive with the handwritten lexers (subclasses
* of AbstractTokenMaker
), so this class has been modified so that
* Strings are never allocated (via yytext()), and the scanner never has to
* worry about refilling its buffer (needlessly copying chars around).
* We can achieve this because RText always scans exactly 1 line of tokens at a
* time, and hands the scanner this line as an array of characters (a Segment
* really). Since tokens contain pointers to char arrays instead of Strings
* holding their contents, there is no need for allocating new memory for
* Strings.
*
* The actual algorithm generated for scanning has, of course, not been
* modified.
*
* If you wish to regenerate this file yourself, keep in mind the following:
*
* - The generated
JavaScriptTokenMaker.java
file will contain two
* definitions of both zzRefill
and yyreset
.
* You should hand-delete the second of each definition (the ones
* generated by the lexer), as these generated methods modify the input
* buffer, which we'll never have to do.
* - You should also change the declaration/definition of zzBuffer to NOT
* be initialized. This is a needless memory allocation for us since we
* will be pointing the array somewhere else anyway.
* - You should NOT call
yylex()
on the generated scanner
* directly; rather, you should use getTokenList
as you would
* with any other TokenMaker
instance.
*
*
* @author Robert Futrell
* @version 0.9
*/
public class JavaScriptTokenMaker extends AbstractJFlexCTokenMaker {
/** This character denotes the end of file */
public static final int YYEOF = -1;
/** lexical states */
public static final int JS_STRING = 1;
public static final int E4X = 6;
public static final int E4X_INTAG = 10;
public static final int E4X_PI = 8;
public static final int JS_MLC = 3;
public static final int JS_CHAR = 2;
public static final int JS_EOL_COMMENT = 5;
public static final int E4X_COMMENT = 7;
public static final int JS_DOCCOMMENT = 4;
public static final int E4X_DTD = 9;
public static final int JS_TEMPLATE_LITERAL = 14;
public static final int E4X_INATTR_SINGLE = 12;
public static final int E4X_INATTR_DOUBLE = 11;
public static final int JS_TEMPLATE_LITERAL_EXPR = 15;
public static final int YYINITIAL = 0;
public static final int E4X_CDATA = 13;
/**
* Translates characters to character classes
*/
private static final String ZZ_CMAP_PACKED =
"\11\0\1\75\1\2\1\0\1\1\1\11\22\0\1\75\1\36\1\77"+
"\1\12\1\15\1\35\1\40\1\107\2\106\1\17\1\30\1\27\1\24"+
"\1\25\1\16\1\5\7\7\2\4\1\41\1\76\1\31\1\32\1\34"+
"\1\37\1\45\1\103\1\6\1\101\1\102\1\23\1\22\2\3\1\112"+
"\2\3\1\21\1\3\1\111\5\3\1\104\3\3\1\20\2\3\1\100"+
"\1\13\1\105\1\33\1\14\1\113\1\46\1\47\1\53\1\65\1\54"+
"\1\70\1\57\1\61\1\56\1\3\1\64\1\55\1\44\1\60\1\62"+
"\1\66\1\73\1\52\1\50\1\51\1\10\1\71\1\63\1\72\1\67"+
"\1\110\1\74\1\43\1\26\1\42\uff81\0";
/**
* Translates characters to character classes
*/
private static final char [] ZZ_CMAP = zzUnpackCMap(ZZ_CMAP_PACKED);
/**
* Translates DFA states to action switch labels.
*/
private static final int [] ZZ_ACTION = zzUnpackAction();
private static final String ZZ_ACTION_PACKED_0 =
"\13\0\2\1\3\0\1\2\1\3\1\4\1\5\2\6"+
"\1\5\1\2\3\7\1\5\1\10\1\5\6\7\2\2"+
"\22\5\1\11\1\12\2\5\1\13\1\1\1\14\1\15"+
"\1\16\1\1\1\17\1\20\1\21\1\1\1\22\5\1"+
"\1\23\10\1\1\24\3\1\2\5\1\25\1\26\1\27"+
"\1\30\1\1\1\31\5\1\1\32\2\1\1\33\1\1"+
"\1\34\1\35\1\36\2\37\1\40\1\41\1\42\1\43"+
"\1\1\1\44\4\1\2\45\1\46\1\47\1\1\1\50"+
"\1\1\1\51\1\2\1\52\1\6\1\53\1\52\1\53"+
"\1\52\1\54\1\52\1\5\2\0\1\55\1\56\2\7"+
"\2\0\1\57\1\7\1\60\35\5\2\61\7\5\1\61"+
"\14\5\1\62\1\63\1\64\1\65\4\0\1\66\2\0"+
"\1\67\32\0\1\70\1\26\1\71\1\72\1\27\5\0"+
"\1\73\2\0\1\74\1\75\1\2\1\53\1\0\2\54"+
"\1\5\1\76\1\77\34\5\1\100\5\5\1\101\26\5"+
"\64\0\1\102\2\0\1\103\5\0\1\104\1\2\1\105"+
"\5\5\1\101\3\5\1\106\5\5\1\107\1\5\1\110"+
"\24\5\1\0\1\1\1\0\1\111\15\0\1\112\45\0"+
"\1\113\4\0\1\114\1\0\1\115\2\0\1\116\1\0"+
"\1\117\1\2\4\5\1\61\16\5\1\61\1\5\15\0"+
"\1\112\20\0\1\112\20\0\1\2\4\5\1\120\13\5"+
"\33\0\10\5\1\112\4\0\1\112\12\0\3\5\6\0"+
"\1\5\2\0\1\121\1\0";
private static int [] zzUnpackAction() {
int [] result = new int[641];
int offset = 0;
offset = zzUnpackAction(ZZ_ACTION_PACKED_0, offset, result);
return result;
}
private static int zzUnpackAction(String packed, int offset, int [] result) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int count = packed.charAt(i++);
int value = packed.charAt(i++);
do result[j++] = value; while (--count > 0);
}
return j;
}
/**
* Translates a state to a row index in the transition table
*/
private static final int [] ZZ_ROWMAP = zzUnpackRowMap();
private static final String ZZ_ROWMAP_PACKED_0 =
"\0\0\0\114\0\230\0\344\0\u0130\0\u017c\0\u01c8\0\u0214"+
"\0\u0260\0\u02ac\0\u02f8\0\u0344\0\u0390\0\u03dc\0\u0428\0\u0474"+
"\0\u04c0\0\u050c\0\u0558\0\u05a4\0\u05f0\0\u063c\0\u0688\0\u0558"+
"\0\u06d4\0\u0720\0\u076c\0\u07b8\0\u0558\0\u0558\0\u0804\0\u0850"+
"\0\u089c\0\u08e8\0\u0558\0\u0934\0\u0980\0\u09cc\0\u0a18\0\u0a64"+
"\0\u0ab0\0\u0afc\0\u0b48\0\u0b94\0\u0be0\0\u0c2c\0\u0c78\0\u0cc4"+
"\0\u0d10\0\u0d5c\0\u0da8\0\u0df4\0\u0e40\0\u0e8c\0\u0ed8\0\u0f24"+
"\0\u0558\0\u0558\0\u0f70\0\u0fbc\0\u0558\0\u1008\0\u0558\0\u1054"+
"\0\u0558\0\u10a0\0\u0558\0\u1054\0\u0558\0\u10ec\0\u0558\0\u1138"+
"\0\u1184\0\u11d0\0\u121c\0\u1268\0\u0558\0\u12b4\0\u1300\0\u134c"+
"\0\u1398\0\u13e4\0\u1430\0\u147c\0\u14c8\0\u0558\0\u1514\0\u1560"+
"\0\u15ac\0\u15f8\0\u1644\0\u0558\0\u1690\0\u16dc\0\u0558\0\u1728"+
"\0\u0558\0\u1774\0\u17c0\0\u180c\0\u1858\0\u18a4\0\u0558\0\u18f0"+
"\0\u193c\0\u0558\0\u1988\0\u0558\0\u0558\0\u0558\0\u19d4\0\u1a20"+
"\0\u1a6c\0\u0558\0\u0558\0\u0558\0\u1ab8\0\u0558\0\u1b04\0\u1b50"+
"\0\u1b9c\0\u1be8\0\u0558\0\u1054\0\u1c34\0\u0558\0\u1c80\0\u0558"+
"\0\u1ccc\0\u0558\0\u1d18\0\u1d64\0\u1d64\0\u1d64\0\u1db0\0\u1dfc"+
"\0\u1e48\0\u1e94\0\u1ee0\0\u1f2c\0\u1f78\0\u1fc4\0\u0558\0\u2010"+
"\0\u1f78\0\u205c\0\u0720\0\u205c\0\u0558\0\u20a8\0\u20f4\0\u2140"+
"\0\u218c\0\u21d8\0\u2224\0\u2270\0\u22bc\0\u2308\0\u2354\0\u23a0"+
"\0\u23ec\0\u2438\0\u2484\0\u24d0\0\u251c\0\u2568\0\u25b4\0\u2600"+
"\0\u264c\0\u2698\0\u26e4\0\u2730\0\u277c\0\u27c8\0\u2814\0\u2860"+
"\0\u28ac\0\u28f8\0\u2944\0\u2990\0\u29dc\0\u05a4\0\u2a28\0\u2a74"+
"\0\u2ac0\0\u2b0c\0\u2b58\0\u2ba4\0\u2bf0\0\u2c3c\0\u2c88\0\u2cd4"+
"\0\u2d20\0\u2d6c\0\u2db8\0\u2e04\0\u2e50\0\u2e9c\0\u2ee8\0\u2f34"+
"\0\u2f80\0\u2fcc\0\u0558\0\u3018\0\u3064\0\u0558\0\u30b0\0\u30fc"+
"\0\u3148\0\u3194\0\u0558\0\u31e0\0\u322c\0\u0558\0\u3278\0\u32c4"+
"\0\u3310\0\u335c\0\u33a8\0\u33f4\0\u3440\0\u348c\0\u34d8\0\u3524"+
"\0\u3570\0\u35bc\0\u3608\0\u3654\0\u36a0\0\u36ec\0\u3738\0\u3784"+
"\0\u37d0\0\u381c\0\u3868\0\u38b4\0\u3900\0\u394c\0\u3998\0\u39e4"+
"\0\u3a30\0\u3a7c\0\u3ac8\0\u0558\0\u0558\0\u3b14\0\u3b60\0\u3bac"+
"\0\u3bf8\0\u3c44\0\u0558\0\u3c90\0\u3cdc\0\u0558\0\u0558\0\u3d28"+
"\0\u3d74\0\u3dc0\0\u1d64\0\u3e0c\0\u3e58\0\u3ea4\0\u3ef0\0\u3f3c"+
"\0\u3f88\0\u3fd4\0\u4020\0\u406c\0\u40b8\0\u4104\0\u4150\0\u419c"+
"\0\u41e8\0\u4234\0\u4280\0\u42cc\0\u4318\0\u4364\0\u43b0\0\u43fc"+
"\0\u4448\0\u4494\0\u44e0\0\u452c\0\u4578\0\u45c4\0\u4610\0\u465c"+
"\0\u46a8\0\u46f4\0\u4740\0\u05a4\0\u478c\0\u47d8\0\u4824\0\u4870"+
"\0\u48bc\0\u4908\0\u4954\0\u49a0\0\u49ec\0\u4a38\0\u4a84\0\u4ad0"+
"\0\u4b1c\0\u4b68\0\u4bb4\0\u4c00\0\u4c4c\0\u4c98\0\u4ce4\0\u4d30"+
"\0\u4d7c\0\u4dc8\0\u4e14\0\u4e60\0\u4eac\0\u4ef8\0\u4f44\0\u4f90"+
"\0\u4fdc\0\u5028\0\u5074\0\u50c0\0\u510c\0\u5158\0\u51a4\0\u51f0"+
"\0\u523c\0\u5288\0\u52d4\0\u5320\0\u536c\0\u53b8\0\u5404\0\u5450"+
"\0\u549c\0\u54e8\0\u5534\0\u5580\0\u55cc\0\u5618\0\u5664\0\u56b0"+
"\0\u56fc\0\u5748\0\u5794\0\u57e0\0\u582c\0\u5878\0\u58c4\0\u5910"+
"\0\u595c\0\u59a8\0\u59f4\0\u5a40\0\u5a8c\0\u5ad8\0\u5b24\0\u5b70"+
"\0\u5bbc\0\u5c08\0\u5c54\0\u5ca0\0\u5cec\0\u5d38\0\u5d84\0\u5dd0"+
"\0\u5e1c\0\u5e68\0\u5eb4\0\u5f00\0\u5f4c\0\u5f98\0\u5fe4\0\u0558"+
"\0\u6030\0\u607c\0\u60c8\0\u6114\0\u6160\0\u0558\0\u61ac\0\u0558"+
"\0\u61f8\0\u6244\0\u6290\0\u62dc\0\u6328\0\u05a4\0\u6374\0\u63c0"+
"\0\u640c\0\u05a4\0\u6458\0\u64a4\0\u64f0\0\u653c\0\u6588\0\u05a4"+
"\0\u65d4\0\u05a4\0\u6620\0\u666c\0\u66b8\0\u6704\0\u6750\0\u679c"+
"\0\u67e8\0\u6834\0\u6880\0\u68cc\0\u6918\0\u6964\0\u69b0\0\u69fc"+
"\0\u6a48\0\u6a94\0\u6ae0\0\u6b2c\0\u6b78\0\u6bc4\0\u3064\0\u0558"+
"\0\u6c10\0\u6c5c\0\u6ca8\0\u6cf4\0\u6d40\0\u6d8c\0\u6dd8\0\u6e24"+
"\0\u6e70\0\u6ebc\0\u6f08\0\u6f54\0\u6fa0\0\u6fec\0\u7038\0\u0558"+
"\0\u7084\0\u70d0\0\u711c\0\u7168\0\u71b4\0\u7200\0\u724c\0\u7298"+
"\0\u72e4\0\u7330\0\u737c\0\u73c8\0\u7414\0\u7460\0\u74ac\0\u74f8"+
"\0\u7544\0\u7590\0\u75dc\0\u7628\0\u7674\0\u76c0\0\u770c\0\u7758"+
"\0\u77a4\0\u77f0\0\u783c\0\u7888\0\u78d4\0\u7920\0\u796c\0\u79b8"+
"\0\u7a04\0\u7a50\0\u7a9c\0\u7ae8\0\u7b34\0\u7b80\0\u7bcc\0\u7c18"+
"\0\u7c64\0\u7cb0\0\u7cfc\0\u7d48\0\u0558\0\u7d94\0\u7de0\0\u7e2c"+
"\0\u7e78\0\u0558\0\u7ec4\0\u7f10\0\u7f5c\0\u7fa8\0\u7ff4\0\u4364"+
"\0\u8040\0\u808c\0\u80d8\0\u8124\0\u8170\0\u81bc\0\u8208\0\u8254"+
"\0\u82a0\0\u82ec\0\u8338\0\u8384\0\u83d0\0\u841c\0\u8468\0\u84b4"+
"\0\u6c5c\0\u8500\0\u854c\0\u8598\0\u85e4\0\u8630\0\u867c\0\u86c8"+
"\0\u8714\0\u8760\0\u87ac\0\u87f8\0\u8844\0\u8890\0\u88dc\0\u8928"+
"\0\u8974\0\u89c0\0\u8a0c\0\u8a58\0\u8aa4\0\u8af0\0\u8b3c\0\u8b88"+
"\0\u8bd4\0\u8c20\0\u8c6c\0\u8cb8\0\u8d04\0\u8d50\0\u8d9c\0\u8de8"+
"\0\u8e34\0\u8e80\0\u8ecc\0\u8f18\0\u8f64\0\u8fb0\0\u7b80\0\u8ffc"+
"\0\u9048\0\u9094\0\u7cfc\0\u90e0\0\u912c\0\u7e2c\0\u9178\0\u91c4"+
"\0\u9210\0\u925c\0\u92a8\0\u92f4\0\u05a4\0\u9340\0\u938c\0\u93d8"+
"\0\u9424\0\u9470\0\u94bc\0\u9508\0\u9554\0\u95a0\0\u95ec\0\u9638"+
"\0\u9684\0\u96d0\0\u971c\0\u9768\0\u97b4\0\u9800\0\u984c\0\u9898"+
"\0\u98e4\0\u9930\0\u997c\0\u99c8\0\u9a14\0\u9a60\0\u9aac\0\u9af8"+
"\0\u9b44\0\u9b90\0\u9bdc\0\u9c28\0\u9c74\0\u9cc0\0\u9d0c\0\u9d58"+
"\0\u9da4\0\u9df0\0\u9e3c\0\u9e88\0\u9ed4\0\u9f20\0\u9f6c\0\u9fb8"+
"\0\ua004\0\ua050\0\ua09c\0\ua0e8\0\ua134\0\ua180\0\ua1cc\0\ua218"+
"\0\u711c\0\ua264\0\ua2b0\0\ua2fc\0\ua348\0\ua394\0\ua3e0\0\ua42c"+
"\0\ua478\0\ua4c4\0\ua510\0\ua55c\0\ua5a8\0\ua5f4\0\ua640\0\ua68c"+
"\0\ua6d8\0\ua724\0\ua770\0\ua7bc\0\ua808\0\ua854\0\ua8a0\0\u0558"+
"\0\ua8ec";
private static int [] zzUnpackRowMap() {
int [] result = new int[641];
int offset = 0;
offset = zzUnpackRowMap(ZZ_ROWMAP_PACKED_0, offset, result);
return result;
}
private static int zzUnpackRowMap(String packed, int offset, int [] result) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int high = packed.charAt(i++) << 16;
result[j++] = high | packed.charAt(i++);
}
return j;
}
/**
* The transition table of the DFA
*/
private static final int [] ZZ_TRANS = zzUnpackTrans();
private static final String ZZ_TRANS_PACKED_0 =
"\1\21\1\22\1\23\1\24\1\25\1\26\1\24\1\25"+
"\1\27\1\30\2\21\2\24\1\31\1\32\4\24\1\33"+
"\1\34\1\35\1\36\1\37\1\40\1\41\1\32\1\42"+
"\2\32\1\43\1\44\2\43\1\45\1\24\1\46\1\47"+
"\1\50\1\51\1\52\1\53\1\54\1\55\1\56\1\57"+
"\1\60\1\61\1\24\1\62\1\63\1\24\1\64\1\65"+
"\1\66\1\67\1\70\2\24\1\35\1\22\1\36\1\71"+
"\1\35\4\24\2\35\1\72\1\24\1\73\1\74\1\75"+
"\2\76\1\77\10\76\1\100\63\76\1\101\14\76\2\102"+
"\1\103\10\102\1\104\73\102\1\105\4\102\2\106\1\107"+
"\14\106\1\110\41\106\1\111\1\106\1\112\4\106\1\113"+
"\23\106\2\114\1\115\14\114\1\116\11\114\1\117\13\114"+
"\1\120\13\114\1\121\1\114\1\122\4\114\1\123\3\114"+
"\1\124\17\114\2\125\1\126\56\125\1\127\1\125\1\130"+
"\4\125\1\131\23\125\1\132\1\133\1\134\26\132\1\135"+
"\6\132\1\136\34\132\1\22\1\137\15\132\2\140\1\141"+
"\21\140\1\142\34\140\1\143\1\140\1\144\4\140\1\145"+
"\23\140\2\146\1\147\34\146\1\150\54\146\2\151\1\152"+
"\26\151\1\153\2\151\1\154\43\151\1\155\4\151\1\156"+
"\6\151\1\157\1\160\1\0\13\157\1\161\13\157\1\43"+
"\1\157\1\162\40\157\1\22\1\157\1\163\7\157\1\164"+
"\4\157\77\165\1\166\14\165\107\167\1\166\4\167\105\170"+
"\1\171\6\170\2\172\1\173\10\172\1\174\1\172\1\175"+
"\75\172\1\176\2\177\1\200\12\177\1\201\10\177\1\202"+
"\65\177\1\21\2\0\6\21\1\0\4\21\2\0\4\21"+
"\20\0\30\21\5\0\4\21\3\0\3\21\2\0\1\22"+
"\73\0\1\22\132\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\26\24"+
"\5\0\4\24\3\0\3\24\1\0\1\204\2\0\1\204"+
"\2\25\1\204\1\25\1\204\1\0\4\204\2\0\1\204"+
"\1\205\1\206\1\207\1\0\1\210\16\0\10\204\1\207"+
"\1\205\7\204\1\206\2\204\1\206\3\204\5\0\1\204"+
"\1\206\2\204\3\0\3\204\1\0\1\204\2\0\1\204"+
"\1\211\1\212\1\204\1\212\1\204\1\0\4\204\2\0"+
"\1\213\1\205\1\206\1\207\1\0\1\210\16\0\10\204"+
"\1\207\1\205\7\204\1\206\2\204\1\206\1\204\1\213"+
"\1\204\5\0\1\204\1\206\2\204\3\0\3\204\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\12\24\1\214\13\24\5\0"+
"\4\24\3\0\3\24\1\0\13\215\1\216\2\215\1\217"+
"\1\220\12\215\1\221\61\215\32\0\1\43\105\0\1\43"+
"\5\0\1\43\65\0\2\210\1\0\1\210\134\0\1\43"+
"\1\0\1\222\112\0\1\223\1\43\62\0\1\224\27\0"+
"\1\225\1\43\42\0\1\224\50\0\1\43\1\0\1\226"+
"\111\0\1\43\5\0\1\43\105\0\1\43\10\0\1\43"+
"\50\0\1\21\2\0\1\227\2\21\1\227\1\21\1\227"+
"\1\0\4\21\2\0\4\227\20\0\1\227\1\21\26\227"+
"\5\0\4\227\3\0\3\227\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\1\24\1\230\1\231\12\24\1\232\10\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\4\24\1\233\7\24\1\234\4\24\1\235\4\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\5\24\1\236"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\3\24\1\237\7\24\1\240\1\24\1\241\3\24"+
"\1\242\4\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\4\24\1\243\6\24\1\244\5\24"+
"\1\245\4\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\6\24\1\246\17\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\1\247"+
"\6\24\1\250\3\24\1\251\1\252\11\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\1\253"+
"\1\24\1\254\4\24\1\255\2\24\1\256\10\24\1\257"+
"\1\260\1\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\6\24\1\261\5\24\1\262\11\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\263"+
"\1\21\2\24\1\264\7\24\1\265\7\24\1\266\3\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\14\24\1\267\11\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\5\24\1\270\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\1\271\5\24"+
"\1\272\17\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\22\24\1\266\3\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\10\24"+
"\1\273\2\24\1\274\12\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\6\24\1\275\5\24"+
"\1\276\11\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\5\24\1\277\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\1\300\3\24\1\301\21\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\10\24\1\302\15\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\5\24\1\303\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\1\304\6\24"+
"\1\305\1\306\3\24\1\307\11\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\1\307\13\24"+
"\1\310\11\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\1\311\25\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\12\24\1\312"+
"\13\24\5\0\4\24\3\0\3\24\1\0\2\76\1\0"+
"\10\76\1\0\63\76\1\0\14\76\2\313\1\0\5\313"+
"\1\314\61\313\1\315\21\313\2\102\1\0\10\102\1\0"+
"\73\102\1\0\4\102\2\106\1\0\14\106\1\0\41\106"+
"\1\0\1\106\1\0\4\106\1\0\23\106\16\0\1\316"+
"\146\0\1\317\125\0\1\320\101\0\1\321\4\0\1\322"+
"\35\0\2\114\1\0\14\114\1\0\11\114\1\0\13\114"+
"\1\0\13\114\1\0\1\114\1\0\4\114\1\0\3\114"+
"\1\0\17\114\16\0\1\323\100\0\1\324\2\0\1\324"+
"\1\0\1\324\5\0\1\325\1\0\4\324\10\0\1\326"+
"\7\0\1\324\1\0\26\324\5\0\4\324\3\0\3\324"+
"\45\0\1\327\1\0\1\330\1\331\1\332\1\333\1\334"+
"\1\335\1\336\1\337\1\340\1\341\1\342\3\0\1\343"+
"\1\344\1\345\1\0\1\346\1\347\73\0\1\350\125\0"+
"\1\351\101\0\1\352\4\0\1\353\102\0\1\354\46\0"+
"\2\125\1\0\56\125\1\0\1\125\1\0\4\125\1\0"+
"\23\125\51\0\1\355\125\0\1\356\101\0\1\357\4\0"+
"\1\360\35\0\2\132\1\0\26\132\1\0\6\132\1\0"+
"\34\132\2\0\16\132\1\133\1\0\26\132\1\0\6\132"+
"\1\0\34\132\1\22\1\0\15\132\3\0\1\361\2\0"+
"\1\361\1\0\1\361\3\0\1\361\1\0\1\362\1\0"+
"\4\361\12\0\1\363\1\364\1\0\1\361\2\0\1\361"+
"\1\0\26\361\5\0\4\361\3\0\3\361\1\0\75\136"+
"\1\0\1\365\15\136\2\140\1\0\21\140\1\0\34\140"+
"\1\0\1\140\1\0\4\140\1\0\23\140\24\0\1\366"+
"\140\0\1\367\125\0\1\370\101\0\1\371\4\0\1\372"+
"\35\0\2\146\1\0\34\146\1\0\54\146\34\0\1\373"+
"\57\0\2\151\1\0\26\151\1\0\2\151\1\0\43\151"+
"\1\0\4\151\1\0\6\151\36\0\1\374\55\0\2\157"+
"\1\0\13\157\1\0\13\157\1\0\1\157\1\0\40\157"+
"\1\0\1\157\1\0\7\157\1\0\5\157\1\160\1\0"+
"\13\157\1\0\13\157\1\0\1\157\1\0\40\157\1\22"+
"\1\157\1\0\7\157\1\0\4\157\34\0\1\162\57\0"+
"\77\165\1\0\14\165\107\167\1\0\4\167\105\170\1\0"+
"\6\170\105\0\1\375\6\0\2\172\1\0\10\172\1\0"+
"\1\172\1\0\75\172\75\0\1\376\17\0\2\177\1\0"+
"\12\177\1\0\10\177\1\0\65\177\74\0\1\377\17\0"+
"\1\21\2\0\5\21\1\u0100\1\0\4\21\2\0\4\21"+
"\20\0\30\21\5\0\4\21\3\0\3\21\1\0\1\204"+
"\2\0\6\204\1\0\4\204\2\0\4\204\20\0\30\204"+
"\5\0\4\204\3\0\3\204\1\0\1\204\2\0\1\204"+
"\2\u0101\1\204\1\u0101\1\204\1\0\4\204\2\0\4\204"+
"\1\u0102\3\0\1\u0102\13\0\30\204\5\0\4\204\3\0"+
"\3\204\1\0\1\204\2\0\1\204\2\210\1\204\1\210"+
"\1\204\1\0\4\204\2\0\2\204\1\206\1\207\20\0"+
"\10\204\1\207\10\204\1\206\2\204\1\206\3\204\5\0"+
"\1\204\1\206\2\204\3\0\3\204\1\0\1\204\2\0"+
"\1\204\2\211\1\204\1\211\1\204\1\0\4\204\2\0"+
"\2\204\1\206\1\207\1\0\1\210\16\0\10\204\1\207"+
"\10\204\1\206\2\204\1\206\3\204\5\0\1\204\1\206"+
"\2\204\3\0\3\204\1\0\1\204\2\0\1\204\1\211"+
"\1\212\1\204\1\212\1\204\1\0\4\204\2\0\1\204"+
"\1\u0103\1\206\1\207\1\0\1\210\16\0\10\204\1\207"+
"\1\u0103\7\204\1\206\2\204\1\206\3\204\5\0\1\204"+
"\1\206\2\204\3\0\3\204\1\0\1\204\2\0\1\204"+
"\4\u0104\1\204\1\0\4\204\2\0\2\204\2\u0104\20\0"+
"\2\204\2\u0104\3\204\2\u0104\10\204\1\u0104\2\204\1\u0104"+
"\3\204\5\0\3\u0104\1\204\3\0\3\204\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\6\24\1\u0105\17\24\5\0\4\24"+
"\3\0\3\24\1\0\13\215\1\216\2\215\1\u0106\77\215"+
"\1\0\111\215\17\0\1\u0107\75\0\1\224\27\0\1\225"+
"\43\0\1\224\50\0\1\43\1\0\1\32\57\0\1\21"+
"\2\0\6\227\1\0\4\21\2\0\4\227\20\0\1\227"+
"\1\21\26\227\5\0\4\227\3\0\3\227\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\2\24\1\u0108\23\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\21\24"+
"\1\u0109\4\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\1\u010a\25\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\6\24\1\u010b"+
"\17\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\14\24\1\u010c\11\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\3\24\1\u010d"+
"\22\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\20\24\1\u010e\5\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\1\u010f\25\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\14\24\1\u0110\11\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\10\24\1\u0111\15\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\12\24\1\u0112\13\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\5\24\1\u0113\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\1\u0114\20\24"+
"\1\266\4\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\4\24\1\u0115\3\24\1\u0116\15\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\20\24\1\u0117\5\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\3\24\1\u0118\22\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\2\24\1\u0119\1\u011a\22\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\1\u011b\25\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\1\u011c\25\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\12\24\1\u011d\13\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\5\24\1\u011e\20\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\5\24\1\u011f\20\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\2\24\1\u0119\23\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\5\24\1\u0120\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\26\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\1\u0121"+
"\25\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\3\24\1\u0122\14\24\1\u0123\5\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\3\24\1\u0124\22\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\12\24\1\u0125\13\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\20\24\1\u0126\5\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\2\24\1\u0127\1\24\20\0\1\24\1\21\26\24\5\0"+
"\4\24\3\0\1\24\1\u0128\1\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\2\24\1\u0129\1\u012a\22\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\3\24"+
"\1\u012b\22\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\7\24\1\u012c\16\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\3\24"+
"\1\u012d\22\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\15\24\1\266\10\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\3\24"+
"\1\u012e\22\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\10\24\1\u012f\15\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\1\24"+
"\1\u0130\5\24\1\u0131\12\24\1\u0132\3\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\5\24\1\u0133\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\26\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\1\24\1\u0134\24\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\4\24\1\u0135"+
"\1\u0136\20\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\10\24\1\u0137\3\24\1\u0138\11\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\6\24\1\u0139\17\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\12\24\1\u013a\13\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\7\24\1\u013b\16\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\14\24\1\u013c\11\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\12\24\1\u013d\13\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\4\24\1\266\21\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\7\24\1\u013e\1\u013f\15\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\26\24\5\0"+
"\4\24\3\0\1\24\1\266\1\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\22\24\1\u0140\3\24\5\0\4\24\3\0"+
"\3\24\5\0\4\u0141\12\0\2\u0141\22\0\2\u0141\3\0"+
"\2\u0141\10\0\1\u0141\2\0\1\u0141\10\0\3\u0141\14\0"+
"\4\u0142\12\0\2\u0142\22\0\2\u0142\3\0\2\u0142\10\0"+
"\1\u0142\2\0\1\u0142\10\0\3\u0142\61\0\1\u0143\125\0"+
"\1\u0144\116\0\1\u0145\102\0\1\u0146\36\0\34\324\1\326"+
"\57\324\3\0\1\324\2\0\1\324\1\0\1\324\7\0"+
"\4\324\10\0\1\326\7\0\1\324\1\0\26\324\5\0"+
"\4\324\3\0\3\324\55\0\1\u0147\1\0\1\u0148\3\0"+
"\1\u0149\41\0\1\u014a\36\0\1\u014b\3\0\1\u014c\1\0"+
"\1\u014d\120\0\1\u014e\41\0\1\u014f\40\0\1\u0150\2\0"+
"\1\u0151\1\0\1\u0152\116\0\1\u0153\1\u0154\4\0\1\u0155"+
"\100\0\1\u0156\105\0\1\u0157\6\0\1\u0158\4\0\1\u0159"+
"\111\0\1\u015a\10\0\1\u015b\1\u015c\75\0\1\u015d\1\0"+
"\1\u015e\114\0\1\u015f\1\u0160\110\0\1\u0161\104\0\1\u0162"+
"\123\0\1\u0163\111\0\1\u0164\47\0\1\u0165\35\0\1\u0166"+
"\3\0\1\u0167\117\0\1\u0168\103\0\1\u0169\5\0\1\u016a"+
"\110\0\1\u016b\125\0\1\u016c\116\0\1\u016d\102\0\1\u016e"+
"\107\0\1\u016f\3\0\1\u0170\107\0\1\u0171\125\0\1\u0172"+
"\116\0\1\u0173\102\0\1\u0174\41\0\6\361\3\0\1\361"+
"\3\0\6\361\13\0\1\361\2\0\1\361\1\0\26\361"+
"\5\0\4\361\3\0\3\361\4\0\1\u0175\2\0\1\u0175"+
"\1\0\1\u0175\3\0\1\u0175\3\0\4\u0175\15\0\1\u0175"+
"\2\0\1\u0175\1\0\26\u0175\5\0\4\u0175\3\0\3\u0175"+
"\25\0\1\u0176\53\0\1\u0177\47\0\1\u0178\130\0\1\u0179"+
"\125\0\1\u017a\116\0\1\u017b\102\0\1\u017c\62\0\1\u017d"+
"\123\0\1\u017e\57\0\1\21\2\0\1\21\4\u017f\1\21"+
"\1\0\4\21\2\0\2\21\2\u017f\20\0\2\21\2\u017f"+
"\3\21\2\u017f\10\21\1\u017f\2\21\1\u017f\3\21\5\0"+
"\3\u017f\1\21\3\0\3\21\1\0\1\204\2\0\1\204"+
"\2\u0101\1\204\1\u0101\1\204\1\0\4\204\2\0\2\204"+
"\1\206\1\204\20\0\21\204\1\206\2\204\1\206\3\204"+
"\5\0\1\204\1\206\2\204\3\0\3\204\5\0\2\u0101"+
"\1\0\1\u0101\104\0\1\204\2\0\1\204\4\u0104\1\204"+
"\1\0\4\204\2\0\1\204\1\u0103\2\u0104\20\0\2\204"+
"\2\u0104\3\204\2\u0104\1\u0103\7\204\1\u0104\2\204\1\u0104"+
"\3\204\5\0\3\u0104\1\204\3\0\3\204\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\2\24\1\254\23\24\5\0\4\24"+
"\3\0\3\24\45\0\1\u0106\11\0\2\u0106\52\0\1\u0180"+
"\75\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\3\24\1\u0181\22\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\12\24\1\u0182\13\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\10\24\1\u0183\15\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\1\u0184\25\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\7\24\1\u0185\16\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\6\24\1\u0186\17\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\6\24\1\307\17\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\3\24\1\u0187\22\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\4\24\1\u0188\21\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\3\24\1\u011a\22\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\5\24\1\u0189\20\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\6\24\1\u018a\17\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\12\24\1\u018b\13\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\14\24\1\u018c\11\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\2\24\1\266\23\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\6\24\1\u018d\17\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\5\24\1\u018e\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\26\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\6\24"+
"\1\266\17\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\5\24\1\u012e\20\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\2\24"+
"\1\u0116\23\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\4\24\1\u0186\21\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\2\24"+
"\1\u0183\1\u018f\22\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\13\24\1\u0190\12\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\1\u0191\25\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\266\1\21\26\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\7\24\1\u0192\16\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\6\24\1\u0193\17\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\14\24\1\u0194\11\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\11\24\1\u0186\14\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\7\24\1\u0195\4\24"+
"\1\u0194\11\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\10\24\1\u0196\15\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\1\u0197"+
"\25\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\3\24\1\u0198\22\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\6\24\1\u0199"+
"\17\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\14\24\1\266\11\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\7\24\1\266"+
"\16\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\10\24\1\u019a\15\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\13\24\1\266"+
"\12\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\7\24\1\u0119\16\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\5\24\1\u019b\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\26\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\6\24\1\u019c\17\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\1\u019d\25\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\1\24\1\u019e\24\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\7\24\1\u0187\16\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\2\24\1\u019f\23\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\16\24\1\u01a0\7\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\23\24\1\u01a1\2\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\3\24\1\u01a2\22\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\7\24\1\u013f\16\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\5\24\1\u01a3\20\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\2\24\1\u0113\23\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\1\u0188\25\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\1\u01a4"+
"\25\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\1\u01a5\25\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\17\24\1\266\6\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\10\24\1\u01a6\15\24\5\0\4\24\3\0\3\24"+
"\5\0\4\u01a7\12\0\2\u01a7\22\0\2\u01a7\3\0\2\u01a7"+
"\10\0\1\u01a7\2\0\1\u01a7\10\0\3\u01a7\14\0\4\u01a8"+
"\12\0\2\u01a8\22\0\2\u01a8\3\0\2\u01a8\10\0\1\u01a8"+
"\2\0\1\u01a8\10\0\3\u01a8\76\0\1\u01a9\52\0\1\u01aa"+
"\127\0\1\u01ab\126\0\1\u0145\103\0\1\u01ac\4\0\1\u01ad"+
"\134\0\1\u01ae\106\0\1\u01af\77\0\1\u01b0\5\0\1\u01b1"+
"\104\0\1\u01b2\116\0\1\u01b3\116\0\1\u01b4\107\0\1\u01b5"+
"\105\0\1\u01b6\115\0\1\u01b7\121\0\1\u01b8\117\0\1\u01b9"+
"\105\0\1\u01ba\3\0\1\u01bb\122\0\1\u01bc\114\0\1\u01bd"+
"\73\0\1\u01be\2\0\1\u01bf\21\0\1\u01c0\75\0\1\u01c1"+
"\104\0\1\u01c2\125\0\1\u01c3\5\0\1\u01c4\35\0\1\u01c5"+
"\157\0\1\u01c6\105\0\1\u01c7\2\0\1\u01c8\14\0\1\u01c9"+
"\105\0\1\u01ca\106\0\1\u01cb\4\0\1\u01cc\113\0\1\u01cd"+
"\103\0\1\u01ce\7\0\1\u01cf\115\0\1\u01d0\75\0\1\u01d1"+
"\127\0\1\u01d2\103\0\1\u01d3\15\0\1\u01d4\1\0\1\u01d5"+
"\72\0\1\u01d6\116\0\1\u01d7\117\0\1\u01d8\3\0\1\u01d9"+
"\103\0\1\u01da\2\0\1\u0151\110\0\1\u01db\113\0\1\u01dc"+
"\127\0\1\u01dd\52\0\1\u01de\127\0\1\u01df\126\0\1\u016d"+
"\47\0\1\u01e0\161\0\1\u01e1\123\0\1\u01e2\52\0\1\u01e3"+
"\127\0\1\u01e4\126\0\1\u0173\42\0\6\u0175\3\0\1\u0175"+
"\3\0\6\u0175\13\0\1\u0175\2\0\1\u0175\1\0\26\u0175"+
"\5\0\4\u0175\3\0\3\u0175\25\0\1\u01e5\170\0\1\u01e6"+
"\100\0\1\u01e7\52\0\1\u01e8\127\0\1\u01e9\126\0\1\u017b"+
"\63\0\1\u01ea\67\0\1\21\2\0\1\21\4\u01eb\1\21"+
"\1\0\4\21\2\0\2\21\2\u01eb\20\0\2\21\2\u01eb"+
"\3\21\2\u01eb\10\21\1\u01eb\2\21\1\u01eb\3\21\5\0"+
"\3\u01eb\1\21\3\0\3\21\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\4\24\1\u01ec\21\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\5\24\1\266\20\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\3\24\1\266\22\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\16\24\1\266\7\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\6\24\1\u01ed\17\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\10\24\1\u0182\15\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\3\24\1\u0186\22\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\13\24\1\u01ee\12\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\2\24\1\u01ef\23\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\15\24\1\u01f0\10\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\14\24\1\62\11\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\4\24\1\u01f1\21\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\10\24\1\u01f2\15\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\20\24\1\u01f3\5\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\12\24\1\u01f4\13\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\4\24\1\u0183\21\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\6\24\1\u01f5\17\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\12\24\1\u01f6\13\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\26\24\5\0\4\24\3\0\1\24\1\u0192\1\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\1\u01f7\25\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\4\24\1\u01f8\21\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\23\24\1\u0119\2\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\11\24\1\u01f9\14\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\3\24\1\u0119\22\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\5\24\1\u01fa"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\26\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\7\24\1\u010d\16\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\6\24"+
"\1\u01fb\17\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\1\u01fc\25\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\1\u019c\25\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\6\24\1\u01fd\17\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\3\24\1\u01fe\22\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\7\24\1\u01ff\16\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\3\24\1\274\22\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\12\24\1\u0200\13\24\5\0\4\24\3\0\3\24"+
"\42\0\1\u01ab\6\0\1\u0145\46\0\6\u01aa\1\0\1\u0201"+
"\1\0\1\u0201\2\u01aa\1\u0201\4\u01aa\2\u0201\1\0\2\u0201"+
"\1\0\1\u0201\2\0\6\u0201\1\0\1\u01aa\1\u0201\26\u01aa"+
"\2\0\1\u0201\1\0\1\u0201\4\u01aa\3\u0201\3\u01aa\17\0"+
"\1\u0202\144\0\1\u0203\125\0\1\u0204\106\0\1\u01bb\1\0"+
"\1\u0205\45\0\1\u0206\164\0\1\u0207\76\0\1\u0208\120\0"+
"\1\u0209\116\0\1\u020a\105\0\1\u01bb\117\0\1\u01ba\105\0"+
"\1\u020b\120\0\1\u020c\115\0\1\u0151\122\0\1\u020d\101\0"+
"\1\u01b8\125\0\1\u01b8\105\0\1\u020e\124\0\1\u020f\36\0"+
"\1\u0210\113\0\1\u0211\160\0\1\u0212\106\0\1\u0213\113\0"+
"\1\u0214\132\0\1\u0215\70\0\1\u01b8\127\0\1\u0216\77\0"+
"\1\u0217\123\0\1\u0218\121\0\1\u0219\116\0\1\u01bb\102\0"+
"\1\u021a\123\0\1\u01b8\111\0\1\u021b\102\0\1\u021c\116\0"+
"\1\u021d\106\0\1\u021e\120\0\1\u021f\124\0\1\u01b8\101\0"+
"\1\u01b8\112\0\1\u0220\107\0\1\u0221\122\0\1\u020c\104\0"+
"\1\u01c5\136\0\1\u0222\73\0\1\u0223\14\0\1\u0224\101\0"+
"\1\u01bb\115\0\1\u0225\105\0\1\u0226\104\0\1\u01df\6\0"+
"\1\u016d\46\0\6\u01de\1\0\1\u0227\1\0\1\u0227\2\u01de"+
"\1\u0227\4\u01de\2\u0227\1\0\2\u0227\1\0\1\u0227\2\0"+
"\6\u0227\1\0\1\u01de\1\u0227\26\u01de\2\0\1\u0227\1\0"+
"\1\u0227\4\u01de\3\u0227\3\u01de\17\0\1\u0228\146\0\1\u0229"+
"\122\0\1\u022a\74\0\1\u01e4\6\0\1\u0173\46\0\6\u01e3"+
"\1\0\1\u022b\1\0\1\u022b\2\u01e3\1\u022b\4\u01e3\2\u022b"+
"\1\0\2\u022b\1\0\1\u022b\2\0\6\u022b\1\0\1\u01e3"+
"\1\u022b\26\u01e3\2\0\1\u022b\1\0\1\u022b\4\u01e3\3\u022b"+
"\3\u01e3\17\0\1\u022c\177\0\1\u022d\52\0\1\u01e9\6\0"+
"\1\u017b\46\0\6\u01e8\1\0\1\u022e\1\0\1\u022e\2\u01e8"+
"\1\u022e\4\u01e8\2\u022e\1\0\2\u022e\1\0\1\u022e\2\0"+
"\6\u022e\1\0\1\u01e8\1\u022e\26\u01e8\2\0\1\u022e\1\0"+
"\1\u022e\4\u01e8\3\u022e\3\u01e8\17\0\1\u022f\75\0\1\21"+
"\2\0\1\21\4\u0230\1\21\1\0\4\21\2\0\2\21"+
"\2\u0230\20\0\2\21\2\u0230\3\21\2\u0230\10\21\1\u0230"+
"\2\21\1\u0230\3\21\5\0\3\u0230\1\21\3\0\3\21"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\1\u0231\25\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\1\u0232\25\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\4\24\1\u0233\21\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\10\24"+
"\1\u0234\15\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\12\24\1\u0235\13\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\12\24"+
"\1\u0236\13\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\6\24\1\u0192\17\24\5\0\4\24"+
"\3\0\3\24\1\0\1\21\2\0\6\24\1\0\1\21"+
"\1\203\2\24\2\0\4\24\20\0\1\24\1\21\17\24"+
"\1\u0116\6\24\5\0\4\24\3\0\3\24\1\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\u0237\1\21\26\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\10\24\1\u0238\15\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\12\24\1\u0239\13\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\22\24\1\u023a\3\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\11\24\1\u010e\14\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\7\24\1\u0183\16\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\2\24\1\u023b\1\24"+
"\20\0\1\24\1\21\26\24\5\0\4\24\3\0\2\24"+
"\1\u023c\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\11\24\1\u0119"+
"\14\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\5\24\1\u023d\20\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\10\24\1\u023e"+
"\15\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\7\24\1\u023f\16\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\10\24\1\u0240"+
"\15\24\5\0\4\24\3\0\3\24\17\0\1\u01aa\151\0"+
"\1\u0241\121\0\1\u01d2\111\0\1\u01b8\110\0\1\u0151\120\0"+
"\1\u021d\105\0\1\u0242\111\0\1\u0243\111\0\1\u01bb\111\0"+
"\1\u0244\123\0\1\u01d3\120\0\1\u01bb\115\0\1\u0245\110\0"+
"\1\u0246\103\0\1\u0247\117\0\1\u0248\104\0\1\u0249\114\0"+
"\1\u024a\114\0\1\u024b\114\0\1\u024c\112\0\1\u01b8\130\0"+
"\1\u0206\77\0\1\u024d\113\0\1\u024e\121\0\1\u024f\105\0"+
"\1\u0151\107\0\1\u0152\117\0\1\u01b8\107\0\1\u0250\115\0"+
"\1\u0251\117\0\1\u0252\47\0\1\u0253\151\0\1\u0254\121\0"+
"\1\u0255\113\0\1\u0256\105\0\1\u0257\123\0\1\u0258\53\0"+
"\1\u01de\157\0\1\u0259\115\0\1\u025a\45\0\1\u01e3\200\0"+
"\1\u025b\26\0\1\u01e8\75\0\1\21\2\0\1\21\4\24"+
"\1\21\1\0\4\21\2\0\2\21\2\24\20\0\2\21"+
"\2\24\3\21\2\24\10\21\1\24\2\21\1\24\3\21"+
"\5\0\3\24\1\21\3\0\3\21\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\5\24\1\u0183\20\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\12\24\1\u0186"+
"\13\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\14\24\1\u025c\11\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\6\24\1\u025d"+
"\17\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\5\24\1\u0119\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\26\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\6\24\1\u025e\17\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\3\24\1\u01f3\22\24\5\0\4\24\3\0\3\24"+
"\1\0\1\21\2\0\6\24\1\0\1\21\1\203\2\24"+
"\2\0\4\24\20\0\1\24\1\21\5\24\1\u0117\20\24"+
"\5\0\4\24\3\0\3\24\1\0\1\21\2\0\6\24"+
"\1\0\1\21\1\203\2\24\2\0\4\24\20\0\1\24"+
"\1\21\1\u025f\25\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\7\24\1\u0260\16\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\12\24\1\u0261\13\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\3\24\1\u0262\22\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\14\24\1\u0263\11\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\21\24\1\266\4\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\3\24\1\u023f\22\24\5\0\4\24\3\0\3\24\53\0"+
"\1\u0264\121\0\1\u024e\101\0\1\u0265\117\0\1\u0266\115\0"+
"\1\u0267\117\0\1\u0268\113\0\1\u0269\105\0\1\u01da\107\0"+
"\1\u026a\132\0\1\u026b\74\0\1\u01c6\3\0\1\u026c\117\0"+
"\1\u026d\115\0\1\u021e\104\0\1\u01bb\112\0\1\u0151\120\0"+
"\1\u01b8\124\0\1\u026e\100\0\1\u026f\115\0\1\u0216\107\0"+
"\1\u0151\115\0\1\u0270\112\0\1\u0271\112\0\1\u0226\124\0"+
"\1\u0205\103\0\1\u0272\41\0\26\u025a\1\u01b8\65\u025a\104\0"+
"\1\u0273\7\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\12\24\1\u0274"+
"\13\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\12\24\1\u0183\13\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\12\24\1\u0275"+
"\13\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\5\24\1\u0119\20\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\14\24\1\u0276"+
"\11\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\3\24\1\u0192\22\24\5\0\4\24\3\0"+
"\3\24\1\0\1\21\2\0\6\24\1\0\1\21\1\203"+
"\2\24\2\0\4\24\20\0\1\24\1\21\6\24\1\u013f"+
"\17\24\5\0\4\24\3\0\3\24\1\0\1\21\2\0"+
"\6\24\1\0\1\21\1\203\2\24\2\0\4\24\20\0"+
"\1\24\1\21\12\24\1\266\13\24\5\0\4\24\3\0"+
"\3\24\63\0\1\u0267\104\0\1\u0216\127\0\1\u01b8\114\0"+
"\1\u01b8\100\0\1\u0266\111\0\1\u01cc\114\0\1\u0277\47\0"+
"\1\u0278\162\0\1\u0279\102\0\1\u01b9\113\0\1\u0270\116\0"+
"\1\u027a\113\0\1\u0266\120\0\1\u027b\140\0\1\u027c\10\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\10\24\1\u027d\15\24\5\0"+
"\4\24\3\0\3\24\1\0\1\21\2\0\6\24\1\0"+
"\1\21\1\203\2\24\2\0\4\24\20\0\1\24\1\21"+
"\3\24\1\u0116\22\24\5\0\4\24\3\0\3\24\1\0"+
"\1\21\2\0\6\24\1\0\1\21\1\203\2\24\2\0"+
"\4\24\20\0\1\24\1\21\1\u0261\25\24\5\0\4\24"+
"\3\0\3\24\51\0\1\u01d3\116\0\1\u027e\121\0\1\u0216"+
"\106\0\1\u01d2\105\0\1\u027f\145\0\1\u0280\13\0\1\21"+
"\2\0\6\24\1\0\1\21\1\203\2\24\2\0\4\24"+
"\20\0\1\24\1\21\26\24\5\0\4\24\3\0\1\u0262"+
"\2\24\52\0\1\u0281\117\0\1\u025a\106\0\1\u01b8\11\0"+
"\1\u021d\31\0";
private static int [] zzUnpackTrans() {
int [] result = new int[43320];
int offset = 0;
offset = zzUnpackTrans(ZZ_TRANS_PACKED_0, offset, result);
return result;
}
private static int zzUnpackTrans(String packed, int offset, int [] result) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int count = packed.charAt(i++);
int value = packed.charAt(i++);
value--;
do result[j++] = value; while (--count > 0);
}
return j;
}
/* error codes */
private static final int ZZ_UNKNOWN_ERROR = 0;
private static final int ZZ_NO_MATCH = 1;
private static final int ZZ_PUSHBACK_2BIG = 2;
/* error messages for the codes above */
private static final String ZZ_ERROR_MSG[] = {
"Unkown internal scanner error",
"Error: could not match input",
"Error: pushback value was too large"
};
/**
* ZZ_ATTRIBUTE[aState] contains the attributes of state aState
*/
private static final int [] ZZ_ATTRIBUTE = zzUnpackAttribute();
private static final String ZZ_ATTRIBUTE_PACKED_0 =
"\13\0\2\1\3\0\2\1\1\11\4\1\1\11\4\1"+
"\2\11\4\1\1\11\25\1\2\11\2\1\1\11\1\1"+
"\1\11\1\1\1\11\1\1\1\11\1\1\1\11\1\1"+
"\1\11\5\1\1\11\10\1\1\11\5\1\1\11\2\1"+
"\1\11\1\1\1\11\5\1\1\11\2\1\1\11\1\1"+
"\3\11\3\1\3\11\1\1\1\11\4\1\1\11\2\1"+
"\1\11\1\1\1\11\1\1\1\11\12\1\2\0\1\11"+
"\3\1\2\0\1\11\65\1\1\11\2\1\1\11\4\0"+
"\1\11\2\0\1\11\32\0\3\1\2\11\5\0\1\11"+
"\2\0\2\11\2\1\1\0\76\1\64\0\1\1\2\0"+
"\1\11\5\0\1\11\1\1\1\11\46\1\1\0\1\11"+
"\1\0\1\1\15\0\1\11\45\0\1\1\4\0\1\1"+
"\1\0\1\11\2\0\1\1\1\0\1\11\26\1\15\0"+
"\1\1\20\0\1\1\20\0\21\1\33\0\11\1\4\0"+
"\1\1\12\0\3\1\6\0\1\1\2\0\1\11\1\0";
private static int [] zzUnpackAttribute() {
int [] result = new int[641];
int offset = 0;
offset = zzUnpackAttribute(ZZ_ATTRIBUTE_PACKED_0, offset, result);
return result;
}
private static int zzUnpackAttribute(String packed, int offset, int [] result) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int count = packed.charAt(i++);
int value = packed.charAt(i++);
do result[j++] = value; while (--count > 0);
}
return j;
}
/** the input device */
private java.io.Reader zzReader;
/** the current state of the DFA */
private int zzState;
/** the current lexical state */
private int zzLexicalState = YYINITIAL;
/** this buffer contains the current text to be matched and is
the source of the yytext() string */
private char zzBuffer[];
/** the textposition at the last accepting state */
private int zzMarkedPos;
/** the current text position in the buffer */
private int zzCurrentPos;
/** startRead marks the beginning of the yytext() string in the buffer */
private int zzStartRead;
/** endRead marks the last character in the buffer, that has been read
from input */
private int zzEndRead;
/** zzAtEOF == true <=> the scanner is at the EOF */
private boolean zzAtEOF;
/* user code: */
/**
* Token type specifying we're in a JavaScript multiline comment.
*/
static final int INTERNAL_IN_JS_MLC = -8;
/**
* Token type specifying we're in a JavaScript documentation comment.
*/
static final int INTERNAL_IN_JS_COMMENT_DOCUMENTATION = -9;
/**
* Token type specifying we're in an invalid multi-line JS string.
*/
static final int INTERNAL_IN_JS_STRING_INVALID = -10;
/**
* Token type specifying we're in a valid multi-line JS string.
*/
static final int INTERNAL_IN_JS_STRING_VALID = -11;
/**
* Token type specifying we're in an invalid multi-line JS single-quoted string.
*/
static final int INTERNAL_IN_JS_CHAR_INVALID = -12;
/**
* Token type specifying we're in a valid multi-line JS single-quoted string.
*/
static final int INTERNAL_IN_JS_CHAR_VALID = -13;
static final int INTERNAL_E4X = -14;
static final int INTERNAL_E4X_INTAG = -15;
static final int INTERNAL_E4X_MARKUP_PROCESSING_INSTRUCTION = -16;
static final int INTERNAL_E4X_COMMENT = -17;
static final int INTERNAL_E4X_DTD = -18;
static final int INTERNAL_E4X_DTD_INTERNAL = -19;
static final int INTERNAL_E4X_ATTR_SINGLE = -20;
static final int INTERNAL_E4X_ATTR_DOUBLE = -21;
static final int INTERNAL_E4X_MARKUP_CDATA = -22;
/**
* Token type specifying we're in a valid multi-line template literal.
*/
static final int INTERNAL_IN_JS_TEMPLATE_LITERAL_VALID = -23;
/**
* Token type specifying we're in an invalid multi-line template literal.
*/
static final int INTERNAL_IN_JS_TEMPLATE_LITERAL_INVALID = -24;
/**
* When in the JS_STRING state, whether the current string is valid.
*/
private boolean validJSString;
/**
* Whether we're in an internal DTD. Only valid if in an e4x DTD.
*/
private boolean e4x_inInternalDtd;
/**
* The previous e4x state. Only valid if in an e4x state.
*/
private int e4x_prevState;
/**
* The version of JavaScript being highlighted.
*/
private static String jsVersion;
/**
* Whether e4x is being highlighted.
*/
private static boolean e4xSupported;
/**
* Language state set on JS tokens. Must be 0.
*/
private static final int LANG_INDEX_DEFAULT = 0;
/**
* Language state set on E4X tokens.
*/
private static final int LANG_INDEX_E4X = 1;
private Stack varDepths;
/**
* Constructor. This must be here because JFlex does not generate a
* no-parameter constructor.
*/
public JavaScriptTokenMaker() {
super();
}
static {
jsVersion = "1.7"; // Many folks using JS tend to be bleeding edge
e4xSupported = true;
}
/**
* Adds the token specified to the current linked list of tokens as an
* "end token;" that is, at zzMarkedPos
.
*
* @param tokenType The token's type.
*/
private void addEndToken(int tokenType) {
addToken(zzMarkedPos,zzMarkedPos, tokenType);
}
/**
* Adds the token specified to the current linked list of tokens.
*
* @param tokenType The token's type.
* @see #addToken(int, int, int)
*/
private void addHyperlinkToken(int start, int end, int tokenType) {
int so = start + offsetShift;
addToken(zzBuffer, start,end, tokenType, so, true);
}
/**
* Adds the token specified to the current linked list of tokens.
*
* @param tokenType The token's type.
*/
private void addToken(int tokenType) {
addToken(zzStartRead, zzMarkedPos-1, tokenType);
}
/**
* Adds the token specified to the current linked list of tokens.
*
* @param tokenType The token's type.
*/
private void addToken(int start, int end, int tokenType) {
int so = start + offsetShift;
addToken(zzBuffer, start,end, tokenType, so);
}
/**
* Adds the token specified to the current linked list of tokens.
*
* @param array The character array.
* @param start The starting offset in the array.
* @param end The ending offset in the array.
* @param tokenType The token's type.
* @param startOffset The offset in the document at which this token
* occurs.
*/
@Override
public void addToken(char[] array, int start, int end, int tokenType, int startOffset) {
super.addToken(array, start,end, tokenType, startOffset);
zzStartRead = zzMarkedPos;
}
/**
* Returns the closest {@link TokenTypes} "standard" token type for a given
* "internal" token type (e.g. one whose value is < 0
).
*/
@Override
public int getClosestStandardTokenTypeForInternalType(int type) {
switch (type) {
case INTERNAL_IN_JS_MLC:
return TokenTypes.COMMENT_MULTILINE;
case INTERNAL_IN_JS_COMMENT_DOCUMENTATION:
return TokenTypes.COMMENT_DOCUMENTATION;
case INTERNAL_IN_JS_STRING_INVALID:
case INTERNAL_IN_JS_STRING_VALID:
case INTERNAL_IN_JS_CHAR_INVALID:
case INTERNAL_IN_JS_CHAR_VALID:
return TokenTypes.LITERAL_STRING_DOUBLE_QUOTE;
case INTERNAL_IN_JS_TEMPLATE_LITERAL_VALID:
return TokenTypes.LITERAL_BACKQUOTE;
case INTERNAL_IN_JS_TEMPLATE_LITERAL_INVALID:
return TokenTypes.ERROR_STRING_DOUBLE;
}
return type;
}
/**
* Returns the JavaScript version being highlighted.
*
* @return Supported JavaScript version.
* @see #isJavaScriptCompatible(String)
*/
public static String getJavaScriptVersion() {
return jsVersion;
}
@Override
public String[] getLineCommentStartAndEnd(int languageIndex) {
return new String[] { "//", null };
}
/**
* Returns the first token in the linked list of tokens generated
* from text
. This method must be implemented by
* subclasses so they can correctly implement syntax highlighting.
*
* @param text The text from which to get tokens.
* @param initialTokenType The token type we should start with.
* @param startOffset The offset into the document at which
* text
starts.
* @return The first Token
in a linked list representing
* the syntax highlighted text.
*/
@Override
public Token getTokenList(Segment text, int initialTokenType, int startOffset) {
resetTokenList();
this.offsetShift = -text.offset + startOffset;
validJSString = true;
e4x_prevState = YYINITIAL;
e4x_inInternalDtd = false;
int languageIndex = LANG_INDEX_DEFAULT;
// Start off in the proper state.
int state;
switch (initialTokenType) {
case INTERNAL_IN_JS_MLC:
state = JS_MLC;
break;
case INTERNAL_IN_JS_COMMENT_DOCUMENTATION:
state = JS_DOCCOMMENT;
start = text.offset;
break;
case INTERNAL_IN_JS_STRING_INVALID:
state = JS_STRING;
validJSString = false;
break;
case INTERNAL_IN_JS_STRING_VALID:
state = JS_STRING;
break;
case INTERNAL_IN_JS_CHAR_INVALID:
state = JS_CHAR;
validJSString = false;
break;
case INTERNAL_IN_JS_CHAR_VALID:
state = JS_CHAR;
break;
case INTERNAL_E4X:
state = E4X;
languageIndex = LANG_INDEX_E4X;
break;
case INTERNAL_E4X_INTAG:
state = E4X_INTAG;
languageIndex = LANG_INDEX_E4X;
break;
case INTERNAL_E4X_MARKUP_PROCESSING_INSTRUCTION:
state = E4X_PI;
languageIndex = LANG_INDEX_E4X;
break;
case INTERNAL_E4X_DTD:
state = E4X_DTD;
languageIndex = LANG_INDEX_E4X;
break;
case INTERNAL_E4X_DTD_INTERNAL:
state = E4X_DTD;
e4x_inInternalDtd = true;
languageIndex = LANG_INDEX_E4X;
break;
case INTERNAL_E4X_ATTR_SINGLE:
state = E4X_INATTR_SINGLE;
languageIndex = LANG_INDEX_E4X;
break;
case INTERNAL_E4X_ATTR_DOUBLE:
state = E4X_INATTR_DOUBLE;
languageIndex = LANG_INDEX_E4X;
break;
case INTERNAL_E4X_MARKUP_CDATA:
state = E4X_CDATA;
languageIndex = LANG_INDEX_E4X;
break;
case INTERNAL_IN_JS_TEMPLATE_LITERAL_VALID:
state = JS_TEMPLATE_LITERAL;
validJSString = true;
break;
case INTERNAL_IN_JS_TEMPLATE_LITERAL_INVALID:
state = JS_TEMPLATE_LITERAL;
validJSString = false;
break;
default:
if (initialTokenType<-1024) { // INTERNAL_E4X_COMMENT - prevState
int main = -(-initialTokenType & 0xffffff00);
switch (main) {
default: // Should never happen
case INTERNAL_E4X_COMMENT:
state = E4X_COMMENT;
break;
}
e4x_prevState = -initialTokenType&0xff;
languageIndex = LANG_INDEX_E4X;
}
else { // Shouldn't happen
state = YYINITIAL;
}
}
setLanguageIndex(languageIndex);
start = text.offset;
s = text;
try {
yyreset(zzReader);
yybegin(state);
return yylex();
} catch (IOException ioe) {
ioe.printStackTrace();
return new TokenImpl();
}
}
/**
* Returns whether e4x is being highlighted.
*
* @return Whether e4x is being highlighted.
* @see #setE4xSupported(boolean)
*/
public static boolean isE4xSupported() {
return e4xSupported;
}
/**
* Returns whether features for a specific JS version should be honored
* while highlighting.
*
* @param version JavaScript version required
* @return Whether the JavaScript version is the same or greater than
* version required.
*/
public static boolean isJavaScriptCompatible(String version) {
return jsVersion.compareTo(version) >= 0;
}
/**
* Sets whether e4x should be highlighted. A repaint should be forced on
* all RSyntaxTextArea
s editing JavaScript if this property
* is changed to see the difference.
*
* @param supported Whether e4x should be highlighted.
* @see #isE4xSupported()
*/
public static void setE4xSupported(boolean supported) {
e4xSupported = supported;
}
/**
* Set the supported JavaScript version because some keywords were
* introduced on or after this version.
*
* @param javaScriptVersion The version of JavaScript to support, such as
* "1.5
" or "1.6
".
* @see #isJavaScriptCompatible(String)
* @see #getJavaScriptVersion()
*/
public static void setJavaScriptVersion(String javaScriptVersion) {
jsVersion = javaScriptVersion;
}
/**
* Refills the input buffer.
*
* @return true
if EOF was reached, otherwise
* false
.
*/
private boolean zzRefill() {
return zzCurrentPos>=s.offset+s.count;
}
/**
* Resets the scanner to read from a new input stream.
* Does not close the old reader.
*
* All internal variables are reset, the old input stream
* cannot be reused (internal buffer is discarded and lost).
* Lexical state is set to YY_INITIAL.
*
* @param reader the new input stream
*/
public final void yyreset(java.io.Reader reader) {
// 's' has been updated.
zzBuffer = s.array;
/*
* We replaced the line below with the two below it because zzRefill
* no longer "refills" the buffer (since the way we do it, it's always
* "full" the first time through, since it points to the segment's
* array). So, we assign zzEndRead here.
*/
//zzStartRead = zzEndRead = s.offset;
zzStartRead = s.offset;
zzEndRead = zzStartRead + s.count - 1;
zzCurrentPos = zzMarkedPos = s.offset;
zzLexicalState = YYINITIAL;
zzReader = reader;
zzAtEOF = false;
}
/**
* Creates a new scanner
* There is also a java.io.InputStream version of this constructor.
*
* @param in the java.io.Reader to read input from.
*/
public JavaScriptTokenMaker(java.io.Reader in) {
this.zzReader = in;
}
/**
* Creates a new scanner.
* There is also java.io.Reader version of this constructor.
*
* @param in the java.io.Inputstream to read input from.
*/
public JavaScriptTokenMaker(java.io.InputStream in) {
this(new java.io.InputStreamReader(in));
}
/**
* Unpacks the compressed character translation table.
*
* @param packed the packed character translation table
* @return the unpacked character translation table
*/
private static char [] zzUnpackCMap(String packed) {
char [] map = new char[0x10000];
int i = 0; /* index in packed string */
int j = 0; /* index in unpacked array */
while (i < 172) {
int count = packed.charAt(i++);
char value = packed.charAt(i++);
do map[j++] = value; while (--count > 0);
}
return map;
}
/**
* Closes the input stream.
*/
public final void yyclose() throws java.io.IOException {
zzAtEOF = true; /* indicate end of file */
zzEndRead = zzStartRead; /* invalidate buffer */
if (zzReader != null)
zzReader.close();
}
/**
* Returns the current lexical state.
*/
public final int yystate() {
return zzLexicalState;
}
/**
* Enters a new lexical state
*
* @param newState the new lexical state
*/
public final void yybegin(int newState) {
zzLexicalState = newState;
}
/**
* Returns the text matched by the current regular expression.
*/
public final String yytext() {
return new String( zzBuffer, zzStartRead, zzMarkedPos-zzStartRead );
}
/**
* Returns the character at position pos from the
* matched text.
*
* It is equivalent to yytext().charAt(pos), but faster
*
* @param pos the position of the character to fetch.
* A value from 0 to yylength()-1.
*
* @return the character at position pos
*/
public final char yycharat(int pos) {
return zzBuffer[zzStartRead+pos];
}
/**
* Returns the length of the matched text region.
*/
public final int yylength() {
return zzMarkedPos-zzStartRead;
}
/**
* Reports an error that occured while scanning.
*
* In a wellformed scanner (no or only correct usage of
* yypushback(int) and a match-all fallback rule) this method
* will only be called with things that "Can't Possibly Happen".
* If this method is called, something is seriously wrong
* (e.g. a JFlex bug producing a faulty scanner etc.).
*
* Usual syntax/scanner level error handling should be done
* in error fallback rules.
*
* @param errorCode the code of the errormessage to display
*/
private void zzScanError(int errorCode) {
String message;
try {
message = ZZ_ERROR_MSG[errorCode];
}
catch (ArrayIndexOutOfBoundsException e) {
message = ZZ_ERROR_MSG[ZZ_UNKNOWN_ERROR];
}
throw new Error(message);
}
/**
* Pushes the specified amount of characters back into the input stream.
*
* They will be read again by then next call of the scanning method
*
* @param number the number of characters to be read again.
* This number must not be greater than yylength()!
*/
public void yypushback(int number) {
if ( number > yylength() )
zzScanError(ZZ_PUSHBACK_2BIG);
zzMarkedPos -= number;
}
/**
* Resumes scanning until the next regular expression is matched,
* the end of input is encountered or an I/O-Error occurs.
*
* @return the next token
* @exception java.io.IOException if any I/O-Error occurs
*/
public org.fife.ui.rsyntaxtextarea.Token yylex() throws java.io.IOException {
int zzInput;
int zzAction;
// cached fields:
int zzCurrentPosL;
int zzMarkedPosL;
int zzEndReadL = zzEndRead;
char [] zzBufferL = zzBuffer;
char [] zzCMapL = ZZ_CMAP;
int [] zzTransL = ZZ_TRANS;
int [] zzRowMapL = ZZ_ROWMAP;
int [] zzAttrL = ZZ_ATTRIBUTE;
while (true) {
zzMarkedPosL = zzMarkedPos;
zzAction = -1;
zzCurrentPosL = zzCurrentPos = zzStartRead = zzMarkedPosL;
zzState = zzLexicalState;
zzForAction: {
while (true) {
if (zzCurrentPosL < zzEndReadL)
zzInput = zzBufferL[zzCurrentPosL++];
else if (zzAtEOF) {
zzInput = YYEOF;
break zzForAction;
}
else {
// store back cached positions
zzCurrentPos = zzCurrentPosL;
zzMarkedPos = zzMarkedPosL;
boolean eof = zzRefill();
// get translated positions and possibly new buffer
zzCurrentPosL = zzCurrentPos;
zzMarkedPosL = zzMarkedPos;
zzBufferL = zzBuffer;
zzEndReadL = zzEndRead;
if (eof) {
zzInput = YYEOF;
break zzForAction;
}
else {
zzInput = zzBufferL[zzCurrentPosL++];
}
}
int zzNext = zzTransL[ zzRowMapL[zzState] + zzCMapL[zzInput] ];
if (zzNext == -1) break zzForAction;
zzState = zzNext;
int zzAttributes = zzAttrL[zzState];
if ( (zzAttributes & 1) == 1 ) {
zzAction = zzState;
zzMarkedPosL = zzCurrentPosL;
if ( (zzAttributes & 8) == 8 ) break zzForAction;
}
}
}
// store back cached position
zzMarkedPos = zzMarkedPosL;
switch (zzAction < 0 ? zzAction : ZZ_ACTION[zzAction]) {
case 35:
{ start = zzMarkedPos-1; yybegin(E4X_INATTR_SINGLE);
}
case 82: break;
case 47:
{ int start = zzStartRead;
int operatorLen = yycharat(0)=='+' ? 2 : 1;
int yylen = yylength(); // Cache before first addToken() invalidates it
//System.out.println("'" + yytext() + "': " + yylength() + ", " + (operatorLen+1));
addToken(zzStartRead,zzStartRead+operatorLen-1, Token.OPERATOR);
if (yylen>operatorLen+1) {
//System.out.println((start+operatorLen) + ", " + (zzMarkedPos-2));
addToken(start+operatorLen,zzMarkedPos-2, Token.WHITESPACE);
}
zzStartRead = zzCurrentPos = zzMarkedPos = zzMarkedPos - 1;
if (isE4xSupported()) {
// Scanning will continue with "<" as markup tag start
yybegin(E4X, LANG_INDEX_E4X);
}
// Found e4x (or syntax error) but option not enabled;
// Scanning will continue at "<" as operator
}
case 83: break;
case 34:
{ start = zzMarkedPos-1; yybegin(E4X_INATTR_DOUBLE);
}
case 84: break;
case 42:
{ addToken(Token.ERROR_NUMBER_FORMAT);
}
case 85: break;
case 80:
{ addToken(Token.RESERVED_WORD_2);
}
case 86: break;
case 27:
{ addToken(start,zzStartRead-1, Token.MARKUP_DTD); addEndToken(e4x_inInternalDtd ? INTERNAL_E4X_DTD_INTERNAL : INTERNAL_E4X_DTD); return firstToken;
}
case 87: break;
case 39:
{ int type = validJSString ? Token.LITERAL_BACKQUOTE : Token.ERROR_STRING_DOUBLE; addToken(start,zzStartRead, type); yybegin(YYINITIAL);
}
case 88: break;
case 3:
{ addToken(Token.WHITESPACE);
}
case 89: break;
case 18:
{ addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); addEndToken(INTERNAL_IN_JS_MLC); return firstToken;
}
case 90: break;
case 72:
{ addToken(Token.FUNCTION);
}
case 91: break;
case 55:
{ int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); addToken(temp,zzMarkedPos-1, Token.COMMENT_MARKUP); start = zzMarkedPos;
}
case 92: break;
case 41:
{ if (!varDepths.empty()) {
varDepths.pop();
if (varDepths.empty()) {
addToken(start,zzStartRead, Token.VARIABLE);
start = zzMarkedPos;
yybegin(JS_TEMPLATE_LITERAL);
}
}
}
case 93: break;
case 38:
{ /* Skip valid '$' that is not part of template literal expression start */
}
case 94: break;
case 11:
{ start = zzMarkedPos-1; validJSString = true; yybegin(JS_TEMPLATE_LITERAL);
}
case 95: break;
case 25:
{ addToken(start,zzStartRead-1, Token.MARKUP_COMMENT); addEndToken(INTERNAL_E4X_COMMENT - e4x_prevState); return firstToken;
}
case 96: break;
case 50:
{ /* Skip all escaped chars. */
}
case 97: break;
case 12:
{ addToken(start,zzStartRead-1, Token.ERROR_STRING_DOUBLE); addNullToken(); return firstToken;
}
case 98: break;
case 77:
{ start = zzStartRead; e4x_prevState = zzLexicalState; yybegin(E4X_COMMENT);
}
case 99: break;
case 68:
{ int temp=zzStartRead; yybegin(E4X); addToken(start,zzStartRead-1, Token.MARKUP_CDATA); addToken(temp,zzMarkedPos-1, Token.MARKUP_CDATA_DELIMITER);
}
case 100: break;
case 60:
{ addToken(start, zzStartRead - 1, Token.LITERAL_BACKQUOTE);
start = zzMarkedPos-2;
if (varDepths==null) {
varDepths = new Stack<>();
}
else {
varDepths.clear();
}
varDepths.push(Boolean.TRUE);
yybegin(JS_TEMPLATE_LITERAL_EXPR);
}
case 101: break;
case 61:
{ varDepths.push(Boolean.TRUE);
}
case 102: break;
case 52:
{ /* Invalid latin-1 character \xXX */ validJSString = false;
}
case 103: break;
case 69:
{ addToken(Token.COMMENT_MULTILINE);
}
case 104: break;
case 58:
{ start = zzMarkedPos-2; yybegin(E4X_PI);
}
case 105: break;
case 36:
{ yybegin(E4X_INTAG); addToken(start,zzStartRead, Token.MARKUP_TAG_ATTRIBUTE_VALUE);
}
case 106: break;
case 14:
{ int type = validJSString ? Token.LITERAL_STRING_DOUBLE_QUOTE : Token.ERROR_STRING_DOUBLE; addToken(start,zzStartRead, type); yybegin(YYINITIAL);
}
case 107: break;
case 62:
{ boolean highlightedAsRegex = false;
if (firstToken==null) {
addToken(Token.REGEX);
highlightedAsRegex = true;
}
else {
// If this is *likely* to be a regex, based on
// the previous token, highlight it as such.
Token t = firstToken.getLastNonCommentNonWhitespaceToken();
if (RSyntaxUtilities.regexCanFollowInJavaScript(t)) {
addToken(Token.REGEX);
highlightedAsRegex = true;
}
}
// If it doesn't *appear* to be a regex, highlight it as
// individual tokens.
if (!highlightedAsRegex) {
int temp = zzStartRead + 1;
addToken(zzStartRead, zzStartRead, Token.OPERATOR);
zzStartRead = zzCurrentPos = zzMarkedPos = temp;
}
}
case 108: break;
case 20:
{ addToken(start,zzStartRead-1, Token.COMMENT_EOL); addNullToken(); return firstToken;
}
case 109: break;
case 24:
{ yybegin(YYINITIAL, LANG_INDEX_DEFAULT); addToken(Token.IDENTIFIER);
}
case 110: break;
case 51:
{ /* Invalid Unicode character \\uXXXX */ validJSString = false;
}
case 111: break;
case 40:
{ // TODO: This isn't right. The expression and its depth should continue to the next line.
addToken(start,zzStartRead-1, Token.VARIABLE); addEndToken(INTERNAL_IN_JS_TEMPLATE_LITERAL_INVALID); return firstToken;
}
case 112: break;
case 79:
{ int temp = zzStartRead; addToken(start,zzStartRead-1, Token.MARKUP_DTD); start = temp; e4x_prevState = zzLexicalState; yybegin(E4X_COMMENT);
}
case 113: break;
case 71:
{ if(e4xSupported){ addToken(Token.RESERVED_WORD);} else {addToken(Token.IDENTIFIER);}
}
case 114: break;
case 66:
{ int count = yylength();
addToken(zzStartRead,zzStartRead+1, Token.MARKUP_TAG_DELIMITER);
addToken(zzMarkedPos-(count-2), zzMarkedPos-1, Token.MARKUP_TAG_NAME);
yybegin(E4X_INTAG);
}
case 115: break;
case 67:
{ int temp = zzMarkedPos; addToken(start,zzStartRead+2, Token.MARKUP_COMMENT); start = temp; yybegin(e4x_prevState);
}
case 116: break;
case 7:
{ addToken(Token.OPERATOR);
}
case 117: break;
case 59:
{ yybegin(E4X); addToken(start,zzStartRead+1, Token.MARKUP_PROCESSING_INSTRUCTION);
}
case 118: break;
case 54:
{ yybegin(YYINITIAL); addToken(start,zzStartRead+1, Token.COMMENT_DOCUMENTATION);
}
case 119: break;
case 19:
{ addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); addEndToken(INTERNAL_IN_JS_COMMENT_DOCUMENTATION); return firstToken;
}
case 120: break;
case 26:
{ addToken(start,zzStartRead-1, Token.MARKUP_PROCESSING_INSTRUCTION); addEndToken(INTERNAL_E4X_MARKUP_PROCESSING_INSTRUCTION); return firstToken;
}
case 121: break;
case 5:
{ addToken(Token.IDENTIFIER);
}
case 122: break;
case 73:
{ int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); addHyperlinkToken(temp,zzMarkedPos-1, Token.COMMENT_MULTILINE); start = zzMarkedPos;
}
case 123: break;
case 48:
{ addToken(isE4xSupported() ? Token.MARKUP_TAG_ATTRIBUTE : Token.ERROR_IDENTIFIER);
}
case 124: break;
case 76:
{ int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_EOL); addHyperlinkToken(temp,zzMarkedPos-1, Token.COMMENT_EOL); start = zzMarkedPos;
}
case 125: break;
case 63:
{ start = zzMarkedPos-3; yybegin(JS_DOCCOMMENT);
}
case 126: break;
case 9:
{ start = zzMarkedPos-1; validJSString = true; yybegin(JS_STRING);
}
case 127: break;
case 57:
{ start = zzMarkedPos-2; e4x_inInternalDtd = false; yybegin(E4X_DTD);
}
case 128: break;
case 10:
{ start = zzMarkedPos-1; validJSString = true; yybegin(JS_CHAR);
}
case 129: break;
case 29:
{ e4x_inInternalDtd = true;
}
case 130: break;
case 75:
{ int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); addHyperlinkToken(temp,zzMarkedPos-1, Token.COMMENT_DOCUMENTATION); start = zzMarkedPos;
}
case 131: break;
case 46:
{ start = zzMarkedPos-2; yybegin(JS_MLC);
}
case 132: break;
case 44:
{ addToken(Token.LITERAL_NUMBER_HEXADECIMAL);
}
case 133: break;
case 81:
{ addToken(Token.MARKUP_CDATA_DELIMITER); start = zzMarkedPos; yybegin(E4X_CDATA);
}
case 134: break;
case 32:
{ addToken(Token.MARKUP_TAG_DELIMITER); /* Not valid but we'll still accept it */
}
case 135: break;
case 2:
{ addToken(Token.ERROR_IDENTIFIER);
}
case 136: break;
case 78:
{ int temp=zzStartRead; addToken(start,zzStartRead-1, Token.MARKUP_COMMENT); addHyperlinkToken(temp,zzMarkedPos-1, Token.MARKUP_COMMENT); start = zzMarkedPos;
}
case 137: break;
case 33:
{ yybegin(E4X); addToken(Token.MARKUP_TAG_DELIMITER);
}
case 138: break;
case 23:
{ addToken(Token.MARKUP_ENTITY_REFERENCE);
}
case 139: break;
case 64:
{ if(isJavaScriptCompatible("1.7")){ addToken(Token.RESERVED_WORD);} else {addToken(Token.IDENTIFIER);}
}
case 140: break;
case 70:
{ addToken(Token.LITERAL_BOOLEAN);
}
case 141: break;
case 4:
{ addNullToken(); return firstToken;
}
case 142: break;
case 49:
{ addToken(Token.RESERVED_WORD);
}
case 143: break;
case 13:
{ /* Line ending in '\' => continue to next line. */
if (validJSString) {
addToken(start,zzStartRead, Token.LITERAL_STRING_DOUBLE_QUOTE);
addEndToken(INTERNAL_IN_JS_STRING_VALID);
}
else {
addToken(start,zzStartRead, Token.ERROR_STRING_DOUBLE);
addEndToken(INTERNAL_IN_JS_STRING_INVALID);
}
return firstToken;
}
case 144: break;
case 53:
{ yybegin(YYINITIAL); addToken(start,zzStartRead+1, Token.COMMENT_MULTILINE);
}
case 145: break;
case 65:
{ addToken(Token.DATA_TYPE);
}
case 146: break;
case 22:
{ addToken(Token.MARKUP_TAG_DELIMITER); yybegin(E4X_INTAG);
}
case 147: break;
case 8:
{ addToken(Token.SEPARATOR);
}
case 148: break;
case 31:
{ addToken(Token.MARKUP_TAG_ATTRIBUTE);
}
case 149: break;
case 16:
{ /* Line ending in '\' => continue to next line. */
if (validJSString) {
addToken(start,zzStartRead, Token.LITERAL_CHAR);
addEndToken(INTERNAL_IN_JS_CHAR_VALID);
}
else {
addToken(start,zzStartRead, Token.ERROR_CHAR);
addEndToken(INTERNAL_IN_JS_CHAR_INVALID);
}
return firstToken;
}
case 150: break;
case 74:
{ int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); addToken(temp,zzMarkedPos-1, Token.COMMENT_KEYWORD); start = zzMarkedPos;
}
case 151: break;
case 17:
{ int type = validJSString ? Token.LITERAL_CHAR : Token.ERROR_CHAR; addToken(start,zzStartRead, type); yybegin(YYINITIAL);
}
case 152: break;
case 45:
{ start = zzMarkedPos-2; yybegin(JS_EOL_COMMENT);
}
case 153: break;
case 21:
{ addEndToken(INTERNAL_E4X); return firstToken;
}
case 154: break;
case 56:
{ int count = yylength();
addToken(zzStartRead,zzStartRead, Token.MARKUP_TAG_DELIMITER);
addToken(zzMarkedPos-(count-1), zzMarkedPos-1, Token.MARKUP_TAG_NAME);
yybegin(E4X_INTAG);
}
case 155: break;
case 43:
{ addToken(Token.LITERAL_NUMBER_FLOAT);
}
case 156: break;
case 28:
{ if (!e4x_inInternalDtd) { yybegin(E4X); addToken(start,zzStartRead, Token.MARKUP_DTD); }
}
case 157: break;
case 6:
{ addToken(Token.LITERAL_NUMBER_DECIMAL_INT);
}
case 158: break;
case 30:
{ e4x_inInternalDtd = false;
}
case 159: break;
case 37:
{ if (validJSString) {
addToken(start, zzStartRead - 1, Token.LITERAL_BACKQUOTE);
addEndToken(INTERNAL_IN_JS_TEMPLATE_LITERAL_VALID);
}
else {
addToken(start,zzStartRead - 1, Token.ERROR_STRING_DOUBLE);
addEndToken(INTERNAL_IN_JS_TEMPLATE_LITERAL_INVALID);
}
return firstToken;
}
case 160: break;
case 15:
{ addToken(start,zzStartRead-1, Token.ERROR_CHAR); addNullToken(); return firstToken;
}
case 161: break;
case 1:
{
}
case 162: break;
default:
if (zzInput == YYEOF && zzStartRead == zzCurrentPos) {
zzAtEOF = true;
switch (zzLexicalState) {
case JS_STRING: {
addToken(start,zzStartRead-1, Token.ERROR_STRING_DOUBLE); addNullToken(); return firstToken;
}
case 642: break;
case E4X: {
addEndToken(INTERNAL_E4X); return firstToken;
}
case 643: break;
case E4X_INTAG: {
addToken(start,zzStartRead-1, INTERNAL_E4X_INTAG); return firstToken;
}
case 644: break;
case E4X_PI: {
addToken(start,zzStartRead-1, Token.MARKUP_PROCESSING_INSTRUCTION); addEndToken(INTERNAL_E4X_MARKUP_PROCESSING_INSTRUCTION); return firstToken;
}
case 645: break;
case JS_MLC: {
addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); addEndToken(INTERNAL_IN_JS_MLC); return firstToken;
}
case 646: break;
case JS_CHAR: {
addToken(start,zzStartRead-1, Token.ERROR_CHAR); addNullToken(); return firstToken;
}
case 647: break;
case JS_EOL_COMMENT: {
addToken(start,zzStartRead-1, Token.COMMENT_EOL); addNullToken(); return firstToken;
}
case 648: break;
case E4X_COMMENT: {
addToken(start,zzStartRead-1, Token.MARKUP_COMMENT); addEndToken(INTERNAL_E4X_COMMENT - e4x_prevState); return firstToken;
}
case 649: break;
case JS_DOCCOMMENT: {
yybegin(YYINITIAL); addToken(start,zzEndRead, Token.COMMENT_DOCUMENTATION); addEndToken(INTERNAL_IN_JS_COMMENT_DOCUMENTATION); return firstToken;
}
case 650: break;
case E4X_DTD: {
addToken(start,zzStartRead-1, Token.MARKUP_DTD); addEndToken(e4x_inInternalDtd ? INTERNAL_E4X_DTD_INTERNAL : INTERNAL_E4X_DTD); return firstToken;
}
case 651: break;
case JS_TEMPLATE_LITERAL: {
if (validJSString) {
addToken(start, zzStartRead - 1, Token.LITERAL_BACKQUOTE);
addEndToken(INTERNAL_IN_JS_TEMPLATE_LITERAL_VALID);
}
else {
addToken(start,zzStartRead - 1, Token.ERROR_STRING_DOUBLE);
addEndToken(INTERNAL_IN_JS_TEMPLATE_LITERAL_INVALID);
}
return firstToken;
}
case 652: break;
case E4X_INATTR_SINGLE: {
addToken(start,zzStartRead-1, Token.MARKUP_TAG_ATTRIBUTE_VALUE); addEndToken(INTERNAL_E4X_ATTR_SINGLE); return firstToken;
}
case 653: break;
case E4X_INATTR_DOUBLE: {
addToken(start,zzStartRead-1, Token.MARKUP_TAG_ATTRIBUTE_VALUE); addEndToken(INTERNAL_E4X_ATTR_DOUBLE); return firstToken;
}
case 654: break;
case JS_TEMPLATE_LITERAL_EXPR: {
// TODO: This isn't right. The expression and its depth should continue to the next line.
addToken(start,zzStartRead-1, Token.VARIABLE); addEndToken(INTERNAL_IN_JS_TEMPLATE_LITERAL_INVALID); return firstToken;
}
case 655: break;
case YYINITIAL: {
addNullToken(); return firstToken;
}
case 656: break;
case E4X_CDATA: {
addToken(start,zzStartRead-1, Token.MARKUP_CDATA); addEndToken(INTERNAL_E4X_MARKUP_CDATA); return firstToken;
}
case 657: break;
default:
return null;
}
}
else {
zzScanError(ZZ_NO_MATCH);
}
}
}
}
}