mirror of
https://libwebsockets.org/repo/libwebsockets
synced 2024-11-24 01:39:33 +00:00
63d2f844db
Introduce a very lightweight html5 + css2.1+ stateful stream parser, along the same lines as the lws json and cbor ones. This is interesting primarily because of just how low-resource it is for modest css + html, it uses an lwsac to hold the entirity of the css in memory at once but the html is parsed in chunks without any need to keep previous chunks around (chunks may be as small as 1 byte). A user callback receives element entry and exit callbacks with payload and all attributes parsed out, CSS related to the active element stack is parsed to provide a list of active css attributes, which takes heap for the duration of the parsing. In effect this provides rich information about the html and css state to the callback, which has the job of producing the layout in a user-defined way. As such, there is no DOM in memory at one time, there is only a stack of active elements like <html><body><div>xxx with their associated attributes (like class). So as it is, it does not support DOM modification such as JS changing elements after parsing, although elements with interesting IDs could be kept around by the callback. There is a corresponding tiny and relatively flat heap usage regardless of html size. Default CSS is specified as recommended in the CSS 2.1 standard. Inline <style></style> elements are supported, but not pre-html5 style= in element attributes, since these are incompatible with strict CSP. What the attributes should mean on your system, eg, font-size, font-family etc is left for the user callback to decide, along with how to lay out the items using the CSS attributes, and render them. Fixed point 32.32 constants are used (fraction expressed at parts in 100M) instead of floating point. If you have presentation needs, even on a constrained display on a constrained microcontroller, this makes it feasible to use standardized markup and styling instead of roll your own.
1111 lines
50 KiB
C
1111 lines
50 KiB
C
/* 0: above */
|
|
/* 1: absolute */
|
|
/* 2: always */
|
|
/* 3: armenian */
|
|
/* 4: auto */
|
|
/* 5: avoid */
|
|
/* 6: baseline */
|
|
/* 7: behind */
|
|
/* 8: below */
|
|
/* 9: bidi-override */
|
|
/* 10: blink */
|
|
/* 11: block */
|
|
/* 12: bold */
|
|
/* 13: bolder */
|
|
/* 14: both */
|
|
/* 15: bottom */
|
|
/* 16: capitalize */
|
|
/* 17: caption */
|
|
/* 18: center */
|
|
/* 19: circle */
|
|
/* 20: close-quote */
|
|
/* 21: code */
|
|
/* 22: collapse */
|
|
/* 23: continuous */
|
|
/* 24: crosshair */
|
|
/* 25: decimal-leading-zero */
|
|
/* 26: decimal */
|
|
/* 27: digits */
|
|
/* 28: disc */
|
|
/* 29: embed */
|
|
/* 30: e-resize */
|
|
/* 31: fixed */
|
|
/* 32: georgian */
|
|
/* 33: help */
|
|
/* 34: hidden */
|
|
/* 35: hide */
|
|
/* 36: high */
|
|
/* 37: higher */
|
|
/* 38: icon */
|
|
/* 39: inherit */
|
|
/* 40: inline */
|
|
/* 41: inline-block */
|
|
/* 42: inline-table */
|
|
/* 43: invert */
|
|
/* 44: italic */
|
|
/* 45: justify */
|
|
/* 46: left */
|
|
/* 47: lighter */
|
|
/* 48: line-through */
|
|
/* 49: list-item */
|
|
/* 50: low */
|
|
/* 51: lower */
|
|
/* 52: lower-alpha */
|
|
/* 53: lowercase */
|
|
/* 54: lower-greek */
|
|
/* 55: lower-latin */
|
|
/* 56: lower-roman */
|
|
/* 57: ltr */
|
|
/* 58: menu */
|
|
/* 59: message-box */
|
|
/* 60: middle */
|
|
/* 61: mix */
|
|
/* 62: move */
|
|
/* 63: ne-resize */
|
|
/* 64: no-close-quote */
|
|
/* 65: none */
|
|
/* 66: no-open-quote */
|
|
/* 67: no-repeat */
|
|
/* 68: normal */
|
|
/* 69: nowrap */
|
|
/* 70: n-resize */
|
|
/* 71: nw-resize */
|
|
/* 72: oblique */
|
|
/* 73: once */
|
|
/* 74: open-quote */
|
|
/* 75: outside */
|
|
/* 76: overline */
|
|
/* 77: pointer */
|
|
/* 78: pre */
|
|
/* 79: pre-line */
|
|
/* 80: pre-wrap */
|
|
/* 81: progress */
|
|
/* 82: relative */
|
|
/* 83: repeat */
|
|
/* 84: repeat-x */
|
|
/* 85: repeat-y */
|
|
/* 86: right */
|
|
/* 87: rtl */
|
|
/* 88: scroll */
|
|
/* 89: separate */
|
|
/* 90: se-resize */
|
|
/* 91: show */
|
|
/* 92: silent */
|
|
/* 93: small-caps */
|
|
/* 94: small-caption */
|
|
/* 95: spell-out */
|
|
/* 96: square */
|
|
/* 97: s-resize */
|
|
/* 98: static */
|
|
/* 99: status-bar */
|
|
/* 100: sub */
|
|
/* 101: super */
|
|
/* 102: sw-resize */
|
|
/* 103: table */
|
|
/* 104: table-caption */
|
|
/* 105: table-cell */
|
|
/* 106: table-column */
|
|
/* 107: table-column-group */
|
|
/* 108: table-footer-group */
|
|
/* 109: table-header-group */
|
|
/* 110: table-row */
|
|
/* 111: table-row-group */
|
|
/* 112: text-bottom */
|
|
/* 113: text-top */
|
|
/* 114: text */
|
|
/* 115: top */
|
|
/* 116: transparent */
|
|
/* 117: underline */
|
|
/* 118: upper-alpha */
|
|
/* 119: uppercase */
|
|
/* 120: upper-latin */
|
|
/* 121: upper-roman */
|
|
/* 122: visible */
|
|
/* 123: wait */
|
|
/* 124: w-resize */
|
|
/* enum {
|
|
XXXX_ABOVE,
|
|
XXXX_ABSOLUTE,
|
|
XXXX_ALWAYS,
|
|
XXXX_ARMENIAN,
|
|
XXXX_AUTO,
|
|
XXXX_AVOID,
|
|
XXXX_BASELINE,
|
|
XXXX_BEHIND,
|
|
XXXX_BELOW,
|
|
XXXX_BIDI_OVERRIDE,
|
|
XXXX_BLINK,
|
|
XXXX_BLOCK,
|
|
XXXX_BOLD,
|
|
XXXX_BOLDER,
|
|
XXXX_BOTH,
|
|
XXXX_BOTTOM,
|
|
XXXX_CAPITALIZE,
|
|
XXXX_CAPTION,
|
|
XXXX_CENTER,
|
|
XXXX_CIRCLE,
|
|
XXXX_CLOSE_QUOTE,
|
|
XXXX_CODE,
|
|
XXXX_COLLAPSE,
|
|
XXXX_CONTINUOUS,
|
|
XXXX_CROSSHAIR,
|
|
XXXX_DECIMAL_LEADING_ZERO,
|
|
XXXX_DECIMAL,
|
|
XXXX_DIGITS,
|
|
XXXX_DISC,
|
|
XXXX_EMBED,
|
|
XXXX_E_RESIZE,
|
|
XXXX_FIXED,
|
|
XXXX_GEORGIAN,
|
|
XXXX_HELP,
|
|
XXXX_HIDDEN,
|
|
XXXX_HIDE,
|
|
XXXX_HIGH,
|
|
XXXX_HIGHER,
|
|
XXXX_ICON,
|
|
XXXX_INHERIT,
|
|
XXXX_INLINE,
|
|
XXXX_INLINE_BLOCK,
|
|
XXXX_INLINE_TABLE,
|
|
XXXX_INVERT,
|
|
XXXX_ITALIC,
|
|
XXXX_JUSTIFY,
|
|
XXXX_LEFT,
|
|
XXXX_LIGHTER,
|
|
XXXX_LINE_THROUGH,
|
|
XXXX_LIST_ITEM,
|
|
XXXX_LOW,
|
|
XXXX_LOWER,
|
|
XXXX_LOWER_ALPHA,
|
|
XXXX_LOWERCASE,
|
|
XXXX_LOWER_GREEK,
|
|
XXXX_LOWER_LATIN,
|
|
XXXX_LOWER_ROMAN,
|
|
XXXX_LTR,
|
|
XXXX_MENU,
|
|
XXXX_MESSAGE_BOX,
|
|
XXXX_MIDDLE,
|
|
XXXX_MIX,
|
|
XXXX_MOVE,
|
|
XXXX_NE_RESIZE,
|
|
XXXX_NO_CLOSE_QUOTE,
|
|
XXXX_NONE,
|
|
XXXX_NO_OPEN_QUOTE,
|
|
XXXX_NO_REPEAT,
|
|
XXXX_NORMAL,
|
|
XXXX_NOWRAP,
|
|
XXXX_N_RESIZE,
|
|
XXXX_NW_RESIZE,
|
|
XXXX_OBLIQUE,
|
|
XXXX_ONCE,
|
|
XXXX_OPEN_QUOTE,
|
|
XXXX_OUTSIDE,
|
|
XXXX_OVERLINE,
|
|
XXXX_POINTER,
|
|
XXXX_PRE,
|
|
XXXX_PRE_LINE,
|
|
XXXX_PRE_WRAP,
|
|
XXXX_PROGRESS,
|
|
XXXX_RELATIVE,
|
|
XXXX_REPEAT,
|
|
XXXX_REPEAT_X,
|
|
XXXX_REPEAT_Y,
|
|
XXXX_RIGHT,
|
|
XXXX_RTL,
|
|
XXXX_SCROLL,
|
|
XXXX_SEPARATE,
|
|
XXXX_SE_RESIZE,
|
|
XXXX_SHOW,
|
|
XXXX_SILENT,
|
|
XXXX_SMALL_CAPS,
|
|
XXXX_SMALL_CAPTION,
|
|
XXXX_SPELL_OUT,
|
|
XXXX_SQUARE,
|
|
XXXX_S_RESIZE,
|
|
XXXX_STATIC,
|
|
XXXX_STATUS_BAR,
|
|
XXXX_SUB,
|
|
XXXX_SUPER,
|
|
XXXX_SW_RESIZE,
|
|
XXXX_TABLE,
|
|
XXXX_TABLE_CAPTION,
|
|
XXXX_TABLE_CELL,
|
|
XXXX_TABLE_COLUMN,
|
|
XXXX_TABLE_COLUMN_GROUP,
|
|
XXXX_TABLE_FOOTER_GROUP,
|
|
XXXX_TABLE_HEADER_GROUP,
|
|
XXXX_TABLE_ROW,
|
|
XXXX_TABLE_ROW_GROUP,
|
|
XXXX_TEXT_BOTTOM,
|
|
XXXX_TEXT_TOP,
|
|
XXXX_TEXT,
|
|
XXXX_TOP,
|
|
XXXX_TRANSPARENT,
|
|
XXXX_UNDERLINE,
|
|
XXXX_UPPER_ALPHA,
|
|
XXXX_UPPERCASE,
|
|
XXXX_UPPER_LATIN,
|
|
XXXX_UPPER_ROMAN,
|
|
XXXX_VISIBLE,
|
|
XXXX_WAIT,
|
|
XXXX_W_RESIZE,
|
|
}; */
|
|
|
|
/* pos 0000: 0 */ 0x61 /* 'a' */, 0x40, 0x00 /* (to 0x0040 s 1) */,
|
|
0x62 /* 'b' */, 0x76, 0x00 /* (to 0x0079 s 31) */,
|
|
0x63 /* 'c' */, 0xD4, 0x00 /* (to 0x00DA s 76) */,
|
|
0x64 /* 'd' */, 0x36, 0x01 /* (to 0x013F s 135) */,
|
|
0x65 /* 'e' */, 0x61, 0x01 /* (to 0x016D s 162) */,
|
|
0x66 /* 'f' */, 0x72, 0x01 /* (to 0x0181 s 174) */,
|
|
0x67 /* 'g' */, 0x75, 0x01 /* (to 0x0187 s 179) */,
|
|
0x68 /* 'h' */, 0x7B, 0x01 /* (to 0x0190 s 187) */,
|
|
0x69 /* 'i' */, 0xA0, 0x01 /* (to 0x01B8 s 201) */,
|
|
0x6A /* 'j' */, 0xE1, 0x01 /* (to 0x01FC s 235) */,
|
|
0x6C /* 'l' */, 0xE6, 0x01 /* (to 0x0204 s 242) */,
|
|
0x6D /* 'm' */, 0x53, 0x02 /* (to 0x0274 s 300) */,
|
|
0x6E /* 'n' */, 0x80, 0x02 /* (to 0x02A4 s 322) */,
|
|
0x6F /* 'o' */, 0xE6, 0x02 /* (to 0x030D s 385) */,
|
|
0x70 /* 'p' */, 0x17, 0x03 /* (to 0x0341 s 417) */,
|
|
0x72 /* 'r' */, 0x46, 0x03 /* (to 0x0373 s 441) */,
|
|
0x73 /* 's' */, 0x76, 0x03 /* (to 0x03A6 s 462) */,
|
|
0x74 /* 't' */, 0x10, 0x04 /* (to 0x0443 s 547) */,
|
|
0x75 /* 'u' */, 0xA3, 0x04 /* (to 0x04D9 s 632) */,
|
|
0x76 /* 'v' */, 0xDB, 0x04 /* (to 0x0514 s 665) */,
|
|
0x77 /* 'w' */, 0xE0, 0x04 /* (to 0x051C s 672) */,
|
|
0x08, /* fail */
|
|
/* pos 0040: 1 */ 0x62 /* 'b' */, 0x10, 0x00 /* (to 0x0050 s 2) */,
|
|
0x6C /* 'l' */, 0x1F, 0x00 /* (to 0x0062 s 12) */,
|
|
0x72 /* 'r' */, 0x22, 0x00 /* (to 0x0068 s 17) */,
|
|
0x75 /* 'u' */, 0x27, 0x00 /* (to 0x0070 s 24) */,
|
|
0x76 /* 'v' */, 0x28, 0x00 /* (to 0x0074 s 27) */,
|
|
0x08, /* fail */
|
|
/* pos 0050: 2 */ 0x6F /* 'o' */, 0x07, 0x00 /* (to 0x0057 s 3) */,
|
|
0x73 /* 's' */, 0x08, 0x00 /* (to 0x005B s 6) */,
|
|
0x08, /* fail */
|
|
/* pos 0057: 3 */ 0xF6 /* 'v' -> */,
|
|
/* pos 0058: 4 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0059: 5 */ 0x00, 0x00 /* - terminal marker 0 - */,
|
|
/* pos 005b: 6 */ 0xEF /* 'o' -> */,
|
|
/* pos 005c: 7 */ 0xEC /* 'l' -> */,
|
|
/* pos 005d: 8 */ 0xF5 /* 'u' -> */,
|
|
/* pos 005e: 9 */ 0xF4 /* 't' -> */,
|
|
/* pos 005f: 10 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0060: 11 */ 0x00, 0x01 /* - terminal marker 1 - */,
|
|
/* pos 0062: 12 */ 0xF7 /* 'w' -> */,
|
|
/* pos 0063: 13 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0064: 14 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0065: 15 */ 0xF3 /* 's' -> */,
|
|
/* pos 0066: 16 */ 0x00, 0x02 /* - terminal marker 2 - */,
|
|
/* pos 0068: 17 */ 0xED /* 'm' -> */,
|
|
/* pos 0069: 18 */ 0xE5 /* 'e' -> */,
|
|
/* pos 006a: 19 */ 0xEE /* 'n' -> */,
|
|
/* pos 006b: 20 */ 0xE9 /* 'i' -> */,
|
|
/* pos 006c: 21 */ 0xE1 /* 'a' -> */,
|
|
/* pos 006d: 22 */ 0xEE /* 'n' -> */,
|
|
/* pos 006e: 23 */ 0x00, 0x03 /* - terminal marker 3 - */,
|
|
/* pos 0070: 24 */ 0xF4 /* 't' -> */,
|
|
/* pos 0071: 25 */ 0xEF /* 'o' -> */,
|
|
/* pos 0072: 26 */ 0x00, 0x04 /* - terminal marker 4 - */,
|
|
/* pos 0074: 27 */ 0xEF /* 'o' -> */,
|
|
/* pos 0075: 28 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0076: 29 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0077: 30 */ 0x00, 0x05 /* - terminal marker 5 - */,
|
|
/* pos 0079: 31 */ 0x61 /* 'a' */, 0x10, 0x00 /* (to 0x0089 s 32) */,
|
|
0x65 /* 'e' */, 0x15, 0x00 /* (to 0x0091 s 39) */,
|
|
0x69 /* 'i' */, 0x22, 0x00 /* (to 0x00A1 s 47) */,
|
|
0x6C /* 'l' */, 0x2C, 0x00 /* (to 0x00AE s 59) */,
|
|
0x6F /* 'o' */, 0x38, 0x00 /* (to 0x00BD s 66) */,
|
|
0x08, /* fail */
|
|
/* pos 0089: 32 */ 0xF3 /* 's' -> */,
|
|
/* pos 008a: 33 */ 0xE5 /* 'e' -> */,
|
|
/* pos 008b: 34 */ 0xEC /* 'l' -> */,
|
|
/* pos 008c: 35 */ 0xE9 /* 'i' -> */,
|
|
/* pos 008d: 36 */ 0xEE /* 'n' -> */,
|
|
/* pos 008e: 37 */ 0xE5 /* 'e' -> */,
|
|
/* pos 008f: 38 */ 0x00, 0x06 /* - terminal marker 6 - */,
|
|
/* pos 0091: 39 */ 0x68 /* 'h' */, 0x07, 0x00 /* (to 0x0098 s 40) */,
|
|
0x6C /* 'l' */, 0x09, 0x00 /* (to 0x009D s 44) */,
|
|
0x08, /* fail */
|
|
/* pos 0098: 40 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0099: 41 */ 0xEE /* 'n' -> */,
|
|
/* pos 009a: 42 */ 0xE4 /* 'd' -> */,
|
|
/* pos 009b: 43 */ 0x00, 0x07 /* - terminal marker 7 - */,
|
|
/* pos 009d: 44 */ 0xEF /* 'o' -> */,
|
|
/* pos 009e: 45 */ 0xF7 /* 'w' -> */,
|
|
/* pos 009f: 46 */ 0x00, 0x08 /* - terminal marker 8 - */,
|
|
/* pos 00a1: 47 */ 0xE4 /* 'd' -> */,
|
|
/* pos 00a2: 48 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00a3: 49 */ 0xAD /* '-' -> */,
|
|
/* pos 00a4: 50 */ 0xEF /* 'o' -> */,
|
|
/* pos 00a5: 51 */ 0xF6 /* 'v' -> */,
|
|
/* pos 00a6: 52 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00a7: 53 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00a8: 54 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00a9: 55 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00aa: 56 */ 0xE4 /* 'd' -> */,
|
|
/* pos 00ab: 57 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00ac: 58 */ 0x00, 0x09 /* - terminal marker 9 - */,
|
|
/* pos 00ae: 59 */ 0x69 /* 'i' */, 0x07, 0x00 /* (to 0x00B5 s 60) */,
|
|
0x6F /* 'o' */, 0x08, 0x00 /* (to 0x00B9 s 63) */,
|
|
0x08, /* fail */
|
|
/* pos 00b5: 60 */ 0xEE /* 'n' -> */,
|
|
/* pos 00b6: 61 */ 0xEB /* 'k' -> */,
|
|
/* pos 00b7: 62 */ 0x00, 0x0A /* - terminal marker 10 - */,
|
|
/* pos 00b9: 63 */ 0xE3 /* 'c' -> */,
|
|
/* pos 00ba: 64 */ 0xEB /* 'k' -> */,
|
|
/* pos 00bb: 65 */ 0x00, 0x0B /* - terminal marker 11 - */,
|
|
/* pos 00bd: 66 */ 0x6C /* 'l' */, 0x07, 0x00 /* (to 0x00C4 s 67) */,
|
|
0x74 /* 't' */, 0x0D, 0x00 /* (to 0x00CD s 71) */,
|
|
0x08, /* fail */
|
|
/* pos 00c4: 67 */ 0xE4 /* 'd' -> */,
|
|
/* pos 00c5: 68 */ 0x65 /* 'e' */, 0x05, 0x00 /* (to 0x00CA s 69) */,
|
|
0x00, 0x0C /* - terminal marker 12 - */,
|
|
/* pos 00ca: 69 */ 0xF2 /* 'r' -> */,
|
|
/* pos 00cb: 70 */ 0x00, 0x0D /* - terminal marker 13 - */,
|
|
/* pos 00cd: 71 */ 0x68 /* 'h' */, 0x07, 0x00 /* (to 0x00D4 s 72) */,
|
|
0x74 /* 't' */, 0x06, 0x00 /* (to 0x00D6 s 73) */,
|
|
0x08, /* fail */
|
|
/* pos 00d4: 72 */ 0x00, 0x0E /* - terminal marker 14 - */,
|
|
/* pos 00d6: 73 */ 0xEF /* 'o' -> */,
|
|
/* pos 00d7: 74 */ 0xED /* 'm' -> */,
|
|
/* pos 00d8: 75 */ 0x00, 0x0F /* - terminal marker 15 - */,
|
|
/* pos 00da: 76 */ 0x61 /* 'a' */, 0x13, 0x00 /* (to 0x00ED s 77) */,
|
|
0x65 /* 'e' */, 0x25, 0x00 /* (to 0x0102 s 90) */,
|
|
0x69 /* 'i' */, 0x28, 0x00 /* (to 0x0108 s 95) */,
|
|
0x6C /* 'l' */, 0x2B, 0x00 /* (to 0x010E s 100) */,
|
|
0x6F /* 'o' */, 0x33, 0x00 /* (to 0x0119 s 110) */,
|
|
0x72 /* 'r' */, 0x4D, 0x00 /* (to 0x0136 s 127) */,
|
|
0x08, /* fail */
|
|
/* pos 00ed: 77 */ 0xF0 /* 'p' -> */,
|
|
/* pos 00ee: 78 */ 0x69 /* 'i' */, 0x07, 0x00 /* (to 0x00F5 s 79) */,
|
|
0x74 /* 't' */, 0x0C, 0x00 /* (to 0x00FD s 86) */,
|
|
0x08, /* fail */
|
|
/* pos 00f5: 79 */ 0xF4 /* 't' -> */,
|
|
/* pos 00f6: 80 */ 0xE1 /* 'a' -> */,
|
|
/* pos 00f7: 81 */ 0xEC /* 'l' -> */,
|
|
/* pos 00f8: 82 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00f9: 83 */ 0xFA /* 'z' -> */,
|
|
/* pos 00fa: 84 */ 0xE5 /* 'e' -> */,
|
|
/* pos 00fb: 85 */ 0x00, 0x10 /* - terminal marker 16 - */,
|
|
/* pos 00fd: 86 */ 0xE9 /* 'i' -> */,
|
|
/* pos 00fe: 87 */ 0xEF /* 'o' -> */,
|
|
/* pos 00ff: 88 */ 0xEE /* 'n' -> */,
|
|
/* pos 0100: 89 */ 0x00, 0x11 /* - terminal marker 17 - */,
|
|
/* pos 0102: 90 */ 0xEE /* 'n' -> */,
|
|
/* pos 0103: 91 */ 0xF4 /* 't' -> */,
|
|
/* pos 0104: 92 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0105: 93 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0106: 94 */ 0x00, 0x12 /* - terminal marker 18 - */,
|
|
/* pos 0108: 95 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0109: 96 */ 0xE3 /* 'c' -> */,
|
|
/* pos 010a: 97 */ 0xEC /* 'l' -> */,
|
|
/* pos 010b: 98 */ 0xE5 /* 'e' -> */,
|
|
/* pos 010c: 99 */ 0x00, 0x13 /* - terminal marker 19 - */,
|
|
/* pos 010e: 100 */ 0xEF /* 'o' -> */,
|
|
/* pos 010f: 101 */ 0xF3 /* 's' -> */,
|
|
/* pos 0110: 102 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0111: 103 */ 0xAD /* '-' -> */,
|
|
/* pos 0112: 104 */ 0xF1 /* 'q' -> */,
|
|
/* pos 0113: 105 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0114: 106 */ 0xEF /* 'o' -> */,
|
|
/* pos 0115: 107 */ 0xF4 /* 't' -> */,
|
|
/* pos 0116: 108 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0117: 109 */ 0x00, 0x14 /* - terminal marker 20 - */,
|
|
/* pos 0119: 110 */ 0x64 /* 'd' */, 0x0A, 0x00 /* (to 0x0123 s 111) */,
|
|
0x6C /* 'l' */, 0x0A, 0x00 /* (to 0x0126 s 113) */,
|
|
0x6E /* 'n' */, 0x0E, 0x00 /* (to 0x012D s 119) */,
|
|
0x08, /* fail */
|
|
/* pos 0123: 111 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0124: 112 */ 0x00, 0x15 /* - terminal marker 21 - */,
|
|
/* pos 0126: 113 */ 0xEC /* 'l' -> */,
|
|
/* pos 0127: 114 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0128: 115 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0129: 116 */ 0xF3 /* 's' -> */,
|
|
/* pos 012a: 117 */ 0xE5 /* 'e' -> */,
|
|
/* pos 012b: 118 */ 0x00, 0x16 /* - terminal marker 22 - */,
|
|
/* pos 012d: 119 */ 0xF4 /* 't' -> */,
|
|
/* pos 012e: 120 */ 0xE9 /* 'i' -> */,
|
|
/* pos 012f: 121 */ 0xEE /* 'n' -> */,
|
|
/* pos 0130: 122 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0131: 123 */ 0xEF /* 'o' -> */,
|
|
/* pos 0132: 124 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0133: 125 */ 0xF3 /* 's' -> */,
|
|
/* pos 0134: 126 */ 0x00, 0x17 /* - terminal marker 23 - */,
|
|
/* pos 0136: 127 */ 0xEF /* 'o' -> */,
|
|
/* pos 0137: 128 */ 0xF3 /* 's' -> */,
|
|
/* pos 0138: 129 */ 0xF3 /* 's' -> */,
|
|
/* pos 0139: 130 */ 0xE8 /* 'h' -> */,
|
|
/* pos 013a: 131 */ 0xE1 /* 'a' -> */,
|
|
/* pos 013b: 132 */ 0xE9 /* 'i' -> */,
|
|
/* pos 013c: 133 */ 0xF2 /* 'r' -> */,
|
|
/* pos 013d: 134 */ 0x00, 0x18 /* - terminal marker 24 - */,
|
|
/* pos 013f: 135 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0146 s 136) */,
|
|
0x69 /* 'i' */, 0x1C, 0x00 /* (to 0x015E s 155) */,
|
|
0x08, /* fail */
|
|
/* pos 0146: 136 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0147: 137 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0148: 138 */ 0xED /* 'm' -> */,
|
|
/* pos 0149: 139 */ 0xE1 /* 'a' -> */,
|
|
/* pos 014a: 140 */ 0xEC /* 'l' -> */,
|
|
/* pos 014b: 141 */ 0x2D /* '-' */, 0x05, 0x00 /* (to 0x0150 s 142) */,
|
|
0x00, 0x1A /* - terminal marker 26 - */,
|
|
/* pos 0150: 142 */ 0xEC /* 'l' -> */,
|
|
/* pos 0151: 143 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0152: 144 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0153: 145 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0154: 146 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0155: 147 */ 0xEE /* 'n' -> */,
|
|
/* pos 0156: 148 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0157: 149 */ 0xAD /* '-' -> */,
|
|
/* pos 0158: 150 */ 0xFA /* 'z' -> */,
|
|
/* pos 0159: 151 */ 0xE5 /* 'e' -> */,
|
|
/* pos 015a: 152 */ 0xF2 /* 'r' -> */,
|
|
/* pos 015b: 153 */ 0xEF /* 'o' -> */,
|
|
/* pos 015c: 154 */ 0x00, 0x19 /* - terminal marker 25 - */,
|
|
/* pos 015e: 155 */ 0x67 /* 'g' */, 0x07, 0x00 /* (to 0x0165 s 156) */,
|
|
0x73 /* 's' */, 0x09, 0x00 /* (to 0x016A s 160) */,
|
|
0x08, /* fail */
|
|
/* pos 0165: 156 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0166: 157 */ 0xF4 /* 't' -> */,
|
|
/* pos 0167: 158 */ 0xF3 /* 's' -> */,
|
|
/* pos 0168: 159 */ 0x00, 0x1B /* - terminal marker 27 - */,
|
|
/* pos 016a: 160 */ 0xE3 /* 'c' -> */,
|
|
/* pos 016b: 161 */ 0x00, 0x1C /* - terminal marker 28 - */,
|
|
/* pos 016d: 162 */ 0x6D /* 'm' */, 0x07, 0x00 /* (to 0x0174 s 163) */,
|
|
0x2D /* '-' */, 0x09, 0x00 /* (to 0x0179 s 167) */,
|
|
0x08, /* fail */
|
|
/* pos 0174: 163 */ 0xE2 /* 'b' -> */,
|
|
/* pos 0175: 164 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0176: 165 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0177: 166 */ 0x00, 0x1D /* - terminal marker 29 - */,
|
|
/* pos 0179: 167 */ 0xF2 /* 'r' -> */,
|
|
/* pos 017a: 168 */ 0xE5 /* 'e' -> */,
|
|
/* pos 017b: 169 */ 0xF3 /* 's' -> */,
|
|
/* pos 017c: 170 */ 0xE9 /* 'i' -> */,
|
|
/* pos 017d: 171 */ 0xFA /* 'z' -> */,
|
|
/* pos 017e: 172 */ 0xE5 /* 'e' -> */,
|
|
/* pos 017f: 173 */ 0x00, 0x1E /* - terminal marker 30 - */,
|
|
/* pos 0181: 174 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0182: 175 */ 0xF8 /* 'x' -> */,
|
|
/* pos 0183: 176 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0184: 177 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0185: 178 */ 0x00, 0x1F /* - terminal marker 31 - */,
|
|
/* pos 0187: 179 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0188: 180 */ 0xEF /* 'o' -> */,
|
|
/* pos 0189: 181 */ 0xF2 /* 'r' -> */,
|
|
/* pos 018a: 182 */ 0xE7 /* 'g' -> */,
|
|
/* pos 018b: 183 */ 0xE9 /* 'i' -> */,
|
|
/* pos 018c: 184 */ 0xE1 /* 'a' -> */,
|
|
/* pos 018d: 185 */ 0xEE /* 'n' -> */,
|
|
/* pos 018e: 186 */ 0x00, 0x20 /* - terminal marker 32 - */,
|
|
/* pos 0190: 187 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0197 s 188) */,
|
|
0x69 /* 'i' */, 0x08, 0x00 /* (to 0x019B s 191) */,
|
|
0x08, /* fail */
|
|
/* pos 0197: 188 */ 0xEC /* 'l' -> */,
|
|
/* pos 0198: 189 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0199: 190 */ 0x00, 0x21 /* - terminal marker 33 - */,
|
|
/* pos 019b: 191 */ 0x64 /* 'd' */, 0x07, 0x00 /* (to 0x01A2 s 192) */,
|
|
0x67 /* 'g' */, 0x11, 0x00 /* (to 0x01AF s 197) */,
|
|
0x08, /* fail */
|
|
/* pos 01a2: 192 */ 0x64 /* 'd' */, 0x07, 0x00 /* (to 0x01A9 s 193) */,
|
|
0x65 /* 'e' */, 0x08, 0x00 /* (to 0x01AD s 196) */,
|
|
0x08, /* fail */
|
|
/* pos 01a9: 193 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01aa: 194 */ 0xEE /* 'n' -> */,
|
|
/* pos 01ab: 195 */ 0x00, 0x22 /* - terminal marker 34 - */,
|
|
/* pos 01ad: 196 */ 0x00, 0x23 /* - terminal marker 35 - */,
|
|
/* pos 01af: 197 */ 0xE8 /* 'h' -> */,
|
|
/* pos 01b0: 198 */ 0x65 /* 'e' */, 0x05, 0x00 /* (to 0x01B5 s 199) */,
|
|
0x00, 0x24 /* - terminal marker 36 - */,
|
|
/* pos 01b5: 199 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01b6: 200 */ 0x00, 0x25 /* - terminal marker 37 - */,
|
|
/* pos 01b8: 201 */ 0x63 /* 'c' */, 0x0A, 0x00 /* (to 0x01C2 s 202) */,
|
|
0x6E /* 'n' */, 0x0B, 0x00 /* (to 0x01C6 s 205) */,
|
|
0x74 /* 't' */, 0x38, 0x00 /* (to 0x01F6 s 230) */,
|
|
0x08, /* fail */
|
|
/* pos 01c2: 202 */ 0xEF /* 'o' -> */,
|
|
/* pos 01c3: 203 */ 0xEE /* 'n' -> */,
|
|
/* pos 01c4: 204 */ 0x00, 0x26 /* - terminal marker 38 - */,
|
|
/* pos 01c6: 205 */ 0x68 /* 'h' */, 0x0A, 0x00 /* (to 0x01D0 s 206) */,
|
|
0x6C /* 'l' */, 0x0D, 0x00 /* (to 0x01D6 s 211) */,
|
|
0x76 /* 'v' */, 0x25, 0x00 /* (to 0x01F1 s 226) */,
|
|
0x08, /* fail */
|
|
/* pos 01d0: 206 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01d1: 207 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01d2: 208 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01d3: 209 */ 0xF4 /* 't' -> */,
|
|
/* pos 01d4: 210 */ 0x00, 0x27 /* - terminal marker 39 - */,
|
|
/* pos 01d6: 211 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01d7: 212 */ 0xEE /* 'n' -> */,
|
|
/* pos 01d8: 213 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01d9: 214 */ 0x2D /* '-' */, 0x05, 0x00 /* (to 0x01DE s 215) */,
|
|
0x00, 0x28 /* - terminal marker 40 - */,
|
|
/* pos 01de: 215 */ 0x62 /* 'b' */, 0x07, 0x00 /* (to 0x01E5 s 216) */,
|
|
0x74 /* 't' */, 0x0A, 0x00 /* (to 0x01EB s 221) */,
|
|
0x08, /* fail */
|
|
/* pos 01e5: 216 */ 0xEC /* 'l' -> */,
|
|
/* pos 01e6: 217 */ 0xEF /* 'o' -> */,
|
|
/* pos 01e7: 218 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01e8: 219 */ 0xEB /* 'k' -> */,
|
|
/* pos 01e9: 220 */ 0x00, 0x29 /* - terminal marker 41 - */,
|
|
/* pos 01eb: 221 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01ec: 222 */ 0xE2 /* 'b' -> */,
|
|
/* pos 01ed: 223 */ 0xEC /* 'l' -> */,
|
|
/* pos 01ee: 224 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01ef: 225 */ 0x00, 0x2A /* - terminal marker 42 - */,
|
|
/* pos 01f1: 226 */ 0xE5 /* 'e' -> */,
|
|
/* pos 01f2: 227 */ 0xF2 /* 'r' -> */,
|
|
/* pos 01f3: 228 */ 0xF4 /* 't' -> */,
|
|
/* pos 01f4: 229 */ 0x00, 0x2B /* - terminal marker 43 - */,
|
|
/* pos 01f6: 230 */ 0xE1 /* 'a' -> */,
|
|
/* pos 01f7: 231 */ 0xEC /* 'l' -> */,
|
|
/* pos 01f8: 232 */ 0xE9 /* 'i' -> */,
|
|
/* pos 01f9: 233 */ 0xE3 /* 'c' -> */,
|
|
/* pos 01fa: 234 */ 0x00, 0x2C /* - terminal marker 44 - */,
|
|
/* pos 01fc: 235 */ 0xF5 /* 'u' -> */,
|
|
/* pos 01fd: 236 */ 0xF3 /* 's' -> */,
|
|
/* pos 01fe: 237 */ 0xF4 /* 't' -> */,
|
|
/* pos 01ff: 238 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0200: 239 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0201: 240 */ 0xF9 /* 'y' -> */,
|
|
/* pos 0202: 241 */ 0x00, 0x2D /* - terminal marker 45 - */,
|
|
/* pos 0204: 242 */ 0x65 /* 'e' */, 0x0D, 0x00 /* (to 0x0211 s 243) */,
|
|
0x69 /* 'i' */, 0x0E, 0x00 /* (to 0x0215 s 246) */,
|
|
0x6F /* 'o' */, 0x2E, 0x00 /* (to 0x0238 s 269) */,
|
|
0x74 /* 't' */, 0x64, 0x00 /* (to 0x0271 s 298) */,
|
|
0x08, /* fail */
|
|
/* pos 0211: 243 */ 0xE6 /* 'f' -> */,
|
|
/* pos 0212: 244 */ 0xF4 /* 't' -> */,
|
|
/* pos 0213: 245 */ 0x00, 0x2E /* - terminal marker 46 - */,
|
|
/* pos 0215: 246 */ 0x67 /* 'g' */, 0x0A, 0x00 /* (to 0x021F s 247) */,
|
|
0x6E /* 'n' */, 0x0D, 0x00 /* (to 0x0225 s 252) */,
|
|
0x73 /* 's' */, 0x15, 0x00 /* (to 0x0230 s 262) */,
|
|
0x08, /* fail */
|
|
/* pos 021f: 247 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0220: 248 */ 0xF4 /* 't' -> */,
|
|
/* pos 0221: 249 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0222: 250 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0223: 251 */ 0x00, 0x2F /* - terminal marker 47 - */,
|
|
/* pos 0225: 252 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0226: 253 */ 0xAD /* '-' -> */,
|
|
/* pos 0227: 254 */ 0xF4 /* 't' -> */,
|
|
/* pos 0228: 255 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0229: 256 */ 0xF2 /* 'r' -> */,
|
|
/* pos 022a: 257 */ 0xEF /* 'o' -> */,
|
|
/* pos 022b: 258 */ 0xF5 /* 'u' -> */,
|
|
/* pos 022c: 259 */ 0xE7 /* 'g' -> */,
|
|
/* pos 022d: 260 */ 0xE8 /* 'h' -> */,
|
|
/* pos 022e: 261 */ 0x00, 0x30 /* - terminal marker 48 - */,
|
|
/* pos 0230: 262 */ 0xF4 /* 't' -> */,
|
|
/* pos 0231: 263 */ 0xAD /* '-' -> */,
|
|
/* pos 0232: 264 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0233: 265 */ 0xF4 /* 't' -> */,
|
|
/* pos 0234: 266 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0235: 267 */ 0xED /* 'm' -> */,
|
|
/* pos 0236: 268 */ 0x00, 0x31 /* - terminal marker 49 - */,
|
|
/* pos 0238: 269 */ 0xF7 /* 'w' -> */,
|
|
/* pos 0239: 270 */ 0x65 /* 'e' */, 0x05, 0x00 /* (to 0x023E s 271) */,
|
|
0x00, 0x32 /* - terminal marker 50 - */,
|
|
/* pos 023e: 271 */ 0xF2 /* 'r' -> */,
|
|
/* pos 023f: 272 */ 0x2D /* '-' */, 0x08, 0x00 /* (to 0x0247 s 273) */,
|
|
0x63 /* 'c' */, 0x18, 0x00 /* (to 0x025A s 279) */,
|
|
0x00, 0x33 /* - terminal marker 51 - */,
|
|
/* pos 0247: 273 */ 0x61 /* 'a' */, 0x0D, 0x00 /* (to 0x0254 s 274) */,
|
|
0x67 /* 'g' */, 0x15, 0x00 /* (to 0x025F s 283) */,
|
|
0x6C /* 'l' */, 0x18, 0x00 /* (to 0x0265 s 288) */,
|
|
0x72 /* 'r' */, 0x1B, 0x00 /* (to 0x026B s 293) */,
|
|
0x08, /* fail */
|
|
/* pos 0254: 274 */ 0xEC /* 'l' -> */,
|
|
/* pos 0255: 275 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0256: 276 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0257: 277 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0258: 278 */ 0x00, 0x34 /* - terminal marker 52 - */,
|
|
/* pos 025a: 279 */ 0xE1 /* 'a' -> */,
|
|
/* pos 025b: 280 */ 0xF3 /* 's' -> */,
|
|
/* pos 025c: 281 */ 0xE5 /* 'e' -> */,
|
|
/* pos 025d: 282 */ 0x00, 0x35 /* - terminal marker 53 - */,
|
|
/* pos 025f: 283 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0260: 284 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0261: 285 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0262: 286 */ 0xEB /* 'k' -> */,
|
|
/* pos 0263: 287 */ 0x00, 0x36 /* - terminal marker 54 - */,
|
|
/* pos 0265: 288 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0266: 289 */ 0xF4 /* 't' -> */,
|
|
/* pos 0267: 290 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0268: 291 */ 0xEE /* 'n' -> */,
|
|
/* pos 0269: 292 */ 0x00, 0x37 /* - terminal marker 55 - */,
|
|
/* pos 026b: 293 */ 0xEF /* 'o' -> */,
|
|
/* pos 026c: 294 */ 0xED /* 'm' -> */,
|
|
/* pos 026d: 295 */ 0xE1 /* 'a' -> */,
|
|
/* pos 026e: 296 */ 0xEE /* 'n' -> */,
|
|
/* pos 026f: 297 */ 0x00, 0x38 /* - terminal marker 56 - */,
|
|
/* pos 0271: 298 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0272: 299 */ 0x00, 0x39 /* - terminal marker 57 - */,
|
|
/* pos 0274: 300 */ 0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x027E s 301) */,
|
|
0x69 /* 'i' */, 0x1B, 0x00 /* (to 0x0292 s 313) */,
|
|
0x6F /* 'o' */, 0x26, 0x00 /* (to 0x02A0 s 319) */,
|
|
0x08, /* fail */
|
|
/* pos 027e: 301 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x0285 s 302) */,
|
|
0x73 /* 's' */, 0x07, 0x00 /* (to 0x0288 s 304) */,
|
|
0x08, /* fail */
|
|
/* pos 0285: 302 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0286: 303 */ 0x00, 0x3A /* - terminal marker 58 - */,
|
|
/* pos 0288: 304 */ 0xF3 /* 's' -> */,
|
|
/* pos 0289: 305 */ 0xE1 /* 'a' -> */,
|
|
/* pos 028a: 306 */ 0xE7 /* 'g' -> */,
|
|
/* pos 028b: 307 */ 0xE5 /* 'e' -> */,
|
|
/* pos 028c: 308 */ 0xAD /* '-' -> */,
|
|
/* pos 028d: 309 */ 0xE2 /* 'b' -> */,
|
|
/* pos 028e: 310 */ 0xEF /* 'o' -> */,
|
|
/* pos 028f: 311 */ 0xF8 /* 'x' -> */,
|
|
/* pos 0290: 312 */ 0x00, 0x3B /* - terminal marker 59 - */,
|
|
/* pos 0292: 313 */ 0x64 /* 'd' */, 0x07, 0x00 /* (to 0x0299 s 314) */,
|
|
0x78 /* 'x' */, 0x09, 0x00 /* (to 0x029E s 318) */,
|
|
0x08, /* fail */
|
|
/* pos 0299: 314 */ 0xE4 /* 'd' -> */,
|
|
/* pos 029a: 315 */ 0xEC /* 'l' -> */,
|
|
/* pos 029b: 316 */ 0xE5 /* 'e' -> */,
|
|
/* pos 029c: 317 */ 0x00, 0x3C /* - terminal marker 60 - */,
|
|
/* pos 029e: 318 */ 0x00, 0x3D /* - terminal marker 61 - */,
|
|
/* pos 02a0: 319 */ 0xF6 /* 'v' -> */,
|
|
/* pos 02a1: 320 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02a2: 321 */ 0x00, 0x3E /* - terminal marker 62 - */,
|
|
/* pos 02a4: 322 */ 0x65 /* 'e' */, 0x0D, 0x00 /* (to 0x02B1 s 323) */,
|
|
0x6F /* 'o' */, 0x13, 0x00 /* (to 0x02BA s 331) */,
|
|
0x2D /* '-' */, 0x52, 0x00 /* (to 0x02FC s 370) */,
|
|
0x77 /* 'w' */, 0x57, 0x00 /* (to 0x0304 s 377) */,
|
|
0x08, /* fail */
|
|
/* pos 02b1: 323 */ 0xAD /* '-' -> */,
|
|
/* pos 02b2: 324 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02b3: 325 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02b4: 326 */ 0xF3 /* 's' -> */,
|
|
/* pos 02b5: 327 */ 0xE9 /* 'i' -> */,
|
|
/* pos 02b6: 328 */ 0xFA /* 'z' -> */,
|
|
/* pos 02b7: 329 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02b8: 330 */ 0x00, 0x3F /* - terminal marker 63 - */,
|
|
/* pos 02ba: 331 */ 0x2D /* '-' */, 0x0D, 0x00 /* (to 0x02C7 s 332) */,
|
|
0x6E /* 'n' */, 0x20, 0x00 /* (to 0x02DD s 344) */,
|
|
0x72 /* 'r' */, 0x32, 0x00 /* (to 0x02F2 s 362) */,
|
|
0x77 /* 'w' */, 0x34, 0x00 /* (to 0x02F7 s 366) */,
|
|
0x08, /* fail */
|
|
/* pos 02c7: 332 */ 0x63 /* 'c' */, 0x0A, 0x00 /* (to 0x02D1 s 333) */,
|
|
0x6F /* 'o' */, 0x16, 0x00 /* (to 0x02E0 s 346) */,
|
|
0x72 /* 'r' */, 0x1E, 0x00 /* (to 0x02EB s 356) */,
|
|
0x08, /* fail */
|
|
/* pos 02d1: 333 */ 0xEC /* 'l' -> */,
|
|
/* pos 02d2: 334 */ 0xEF /* 'o' -> */,
|
|
/* pos 02d3: 335 */ 0xF3 /* 's' -> */,
|
|
/* pos 02d4: 336 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02d5: 337 */ 0xAD /* '-' -> */,
|
|
/* pos 02d6: 338 */ 0xF1 /* 'q' -> */,
|
|
/* pos 02d7: 339 */ 0xF5 /* 'u' -> */,
|
|
/* pos 02d8: 340 */ 0xEF /* 'o' -> */,
|
|
/* pos 02d9: 341 */ 0xF4 /* 't' -> */,
|
|
/* pos 02da: 342 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02db: 343 */ 0x00, 0x40 /* - terminal marker 64 - */,
|
|
/* pos 02dd: 344 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02de: 345 */ 0x00, 0x41 /* - terminal marker 65 - */,
|
|
/* pos 02e0: 346 */ 0xF0 /* 'p' -> */,
|
|
/* pos 02e1: 347 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02e2: 348 */ 0xEE /* 'n' -> */,
|
|
/* pos 02e3: 349 */ 0xAD /* '-' -> */,
|
|
/* pos 02e4: 350 */ 0xF1 /* 'q' -> */,
|
|
/* pos 02e5: 351 */ 0xF5 /* 'u' -> */,
|
|
/* pos 02e6: 352 */ 0xEF /* 'o' -> */,
|
|
/* pos 02e7: 353 */ 0xF4 /* 't' -> */,
|
|
/* pos 02e8: 354 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02e9: 355 */ 0x00, 0x42 /* - terminal marker 66 - */,
|
|
/* pos 02eb: 356 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02ec: 357 */ 0xF0 /* 'p' -> */,
|
|
/* pos 02ed: 358 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02ee: 359 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02ef: 360 */ 0xF4 /* 't' -> */,
|
|
/* pos 02f0: 361 */ 0x00, 0x43 /* - terminal marker 67 - */,
|
|
/* pos 02f2: 362 */ 0xED /* 'm' -> */,
|
|
/* pos 02f3: 363 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02f4: 364 */ 0xEC /* 'l' -> */,
|
|
/* pos 02f5: 365 */ 0x00, 0x44 /* - terminal marker 68 - */,
|
|
/* pos 02f7: 366 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02f8: 367 */ 0xE1 /* 'a' -> */,
|
|
/* pos 02f9: 368 */ 0xF0 /* 'p' -> */,
|
|
/* pos 02fa: 369 */ 0x00, 0x45 /* - terminal marker 69 - */,
|
|
/* pos 02fc: 370 */ 0xF2 /* 'r' -> */,
|
|
/* pos 02fd: 371 */ 0xE5 /* 'e' -> */,
|
|
/* pos 02fe: 372 */ 0xF3 /* 's' -> */,
|
|
/* pos 02ff: 373 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0300: 374 */ 0xFA /* 'z' -> */,
|
|
/* pos 0301: 375 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0302: 376 */ 0x00, 0x46 /* - terminal marker 70 - */,
|
|
/* pos 0304: 377 */ 0xAD /* '-' -> */,
|
|
/* pos 0305: 378 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0306: 379 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0307: 380 */ 0xF3 /* 's' -> */,
|
|
/* pos 0308: 381 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0309: 382 */ 0xFA /* 'z' -> */,
|
|
/* pos 030a: 383 */ 0xE5 /* 'e' -> */,
|
|
/* pos 030b: 384 */ 0x00, 0x47 /* - terminal marker 71 - */,
|
|
/* pos 030d: 385 */ 0x62 /* 'b' */, 0x10, 0x00 /* (to 0x031D s 386) */,
|
|
0x6E /* 'n' */, 0x14, 0x00 /* (to 0x0324 s 392) */,
|
|
0x70 /* 'p' */, 0x15, 0x00 /* (to 0x0328 s 395) */,
|
|
0x75 /* 'u' */, 0x1C, 0x00 /* (to 0x0332 s 404) */,
|
|
0x76 /* 'v' */, 0x20, 0x00 /* (to 0x0339 s 410) */,
|
|
0x08, /* fail */
|
|
/* pos 031d: 386 */ 0xEC /* 'l' -> */,
|
|
/* pos 031e: 387 */ 0xE9 /* 'i' -> */,
|
|
/* pos 031f: 388 */ 0xF1 /* 'q' -> */,
|
|
/* pos 0320: 389 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0321: 390 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0322: 391 */ 0x00, 0x48 /* - terminal marker 72 - */,
|
|
/* pos 0324: 392 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0325: 393 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0326: 394 */ 0x00, 0x49 /* - terminal marker 73 - */,
|
|
/* pos 0328: 395 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0329: 396 */ 0xEE /* 'n' -> */,
|
|
/* pos 032a: 397 */ 0xAD /* '-' -> */,
|
|
/* pos 032b: 398 */ 0xF1 /* 'q' -> */,
|
|
/* pos 032c: 399 */ 0xF5 /* 'u' -> */,
|
|
/* pos 032d: 400 */ 0xEF /* 'o' -> */,
|
|
/* pos 032e: 401 */ 0xF4 /* 't' -> */,
|
|
/* pos 032f: 402 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0330: 403 */ 0x00, 0x4A /* - terminal marker 74 - */,
|
|
/* pos 0332: 404 */ 0xF4 /* 't' -> */,
|
|
/* pos 0333: 405 */ 0xF3 /* 's' -> */,
|
|
/* pos 0334: 406 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0335: 407 */ 0xE4 /* 'd' -> */,
|
|
/* pos 0336: 408 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0337: 409 */ 0x00, 0x4B /* - terminal marker 75 - */,
|
|
/* pos 0339: 410 */ 0xE5 /* 'e' -> */,
|
|
/* pos 033a: 411 */ 0xF2 /* 'r' -> */,
|
|
/* pos 033b: 412 */ 0xEC /* 'l' -> */,
|
|
/* pos 033c: 413 */ 0xE9 /* 'i' -> */,
|
|
/* pos 033d: 414 */ 0xEE /* 'n' -> */,
|
|
/* pos 033e: 415 */ 0xE5 /* 'e' -> */,
|
|
/* pos 033f: 416 */ 0x00, 0x4C /* - terminal marker 76 - */,
|
|
/* pos 0341: 417 */ 0x6F /* 'o' */, 0x07, 0x00 /* (to 0x0348 s 418) */,
|
|
0x72 /* 'r' */, 0x0B, 0x00 /* (to 0x034F s 424) */,
|
|
0x08, /* fail */
|
|
/* pos 0348: 418 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0349: 419 */ 0xEE /* 'n' -> */,
|
|
/* pos 034a: 420 */ 0xF4 /* 't' -> */,
|
|
/* pos 034b: 421 */ 0xE5 /* 'e' -> */,
|
|
/* pos 034c: 422 */ 0xF2 /* 'r' -> */,
|
|
/* pos 034d: 423 */ 0x00, 0x4D /* - terminal marker 77 - */,
|
|
/* pos 034f: 424 */ 0x65 /* 'e' */, 0x07, 0x00 /* (to 0x0356 s 425) */,
|
|
0x6F /* 'o' */, 0x1A, 0x00 /* (to 0x036C s 435) */,
|
|
0x08, /* fail */
|
|
/* pos 0356: 425 */ 0x2D /* '-' */, 0x05, 0x00 /* (to 0x035B s 426) */,
|
|
0x00, 0x4E /* - terminal marker 78 - */,
|
|
/* pos 035b: 426 */ 0x6C /* 'l' */, 0x07, 0x00 /* (to 0x0362 s 427) */,
|
|
0x77 /* 'w' */, 0x09, 0x00 /* (to 0x0367 s 431) */,
|
|
0x08, /* fail */
|
|
/* pos 0362: 427 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0363: 428 */ 0xEE /* 'n' -> */,
|
|
/* pos 0364: 429 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0365: 430 */ 0x00, 0x4F /* - terminal marker 79 - */,
|
|
/* pos 0367: 431 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0368: 432 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0369: 433 */ 0xF0 /* 'p' -> */,
|
|
/* pos 036a: 434 */ 0x00, 0x50 /* - terminal marker 80 - */,
|
|
/* pos 036c: 435 */ 0xE7 /* 'g' -> */,
|
|
/* pos 036d: 436 */ 0xF2 /* 'r' -> */,
|
|
/* pos 036e: 437 */ 0xE5 /* 'e' -> */,
|
|
/* pos 036f: 438 */ 0xF3 /* 's' -> */,
|
|
/* pos 0370: 439 */ 0xF3 /* 's' -> */,
|
|
/* pos 0371: 440 */ 0x00, 0x51 /* - terminal marker 81 - */,
|
|
/* pos 0373: 441 */ 0x65 /* 'e' */, 0x0A, 0x00 /* (to 0x037D s 442) */,
|
|
0x69 /* 'i' */, 0x28, 0x00 /* (to 0x039E s 456) */,
|
|
0x74 /* 't' */, 0x2A, 0x00 /* (to 0x03A3 s 460) */,
|
|
0x08, /* fail */
|
|
/* pos 037d: 442 */ 0x6C /* 'l' */, 0x07, 0x00 /* (to 0x0384 s 443) */,
|
|
0x70 /* 'p' */, 0x0B, 0x00 /* (to 0x038B s 449) */,
|
|
0x08, /* fail */
|
|
/* pos 0384: 443 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0385: 444 */ 0xF4 /* 't' -> */,
|
|
/* pos 0386: 445 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0387: 446 */ 0xF6 /* 'v' -> */,
|
|
/* pos 0388: 447 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0389: 448 */ 0x00, 0x52 /* - terminal marker 82 - */,
|
|
/* pos 038b: 449 */ 0xE5 /* 'e' -> */,
|
|
/* pos 038c: 450 */ 0xE1 /* 'a' -> */,
|
|
/* pos 038d: 451 */ 0xF4 /* 't' -> */,
|
|
/* pos 038e: 452 */ 0x2D /* '-' */, 0x05, 0x00 /* (to 0x0393 s 453) */,
|
|
0x00, 0x53 /* - terminal marker 83 - */,
|
|
/* pos 0393: 453 */ 0x78 /* 'x' */, 0x07, 0x00 /* (to 0x039A s 454) */,
|
|
0x79 /* 'y' */, 0x06, 0x00 /* (to 0x039C s 455) */,
|
|
0x08, /* fail */
|
|
/* pos 039a: 454 */ 0x00, 0x54 /* - terminal marker 84 - */,
|
|
/* pos 039c: 455 */ 0x00, 0x55 /* - terminal marker 85 - */,
|
|
/* pos 039e: 456 */ 0xE7 /* 'g' -> */,
|
|
/* pos 039f: 457 */ 0xE8 /* 'h' -> */,
|
|
/* pos 03a0: 458 */ 0xF4 /* 't' -> */,
|
|
/* pos 03a1: 459 */ 0x00, 0x56 /* - terminal marker 86 - */,
|
|
/* pos 03a3: 460 */ 0xEC /* 'l' -> */,
|
|
/* pos 03a4: 461 */ 0x00, 0x57 /* - terminal marker 87 - */,
|
|
/* pos 03a6: 462 */ 0x63 /* 'c' */, 0x22, 0x00 /* (to 0x03C8 s 463) */,
|
|
0x65 /* 'e' */, 0x25, 0x00 /* (to 0x03CE s 468) */,
|
|
0x68 /* 'h' */, 0x38, 0x00 /* (to 0x03E4 s 482) */,
|
|
0x69 /* 'i' */, 0x39, 0x00 /* (to 0x03E8 s 485) */,
|
|
0x6D /* 'm' */, 0x3C, 0x00 /* (to 0x03EE s 490) */,
|
|
0x70 /* 'p' */, 0x4E, 0x00 /* (to 0x0403 s 503) */,
|
|
0x71 /* 'q' */, 0x54, 0x00 /* (to 0x040C s 511) */,
|
|
0x2D /* '-' */, 0x57, 0x00 /* (to 0x0412 s 516) */,
|
|
0x74 /* 't' */, 0x5C, 0x00 /* (to 0x041A s 523) */,
|
|
0x75 /* 'u' */, 0x6C, 0x00 /* (to 0x042D s 534) */,
|
|
0x77 /* 'w' */, 0x76, 0x00 /* (to 0x043A s 539) */,
|
|
0x08, /* fail */
|
|
/* pos 03c8: 463 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03c9: 464 */ 0xEF /* 'o' -> */,
|
|
/* pos 03ca: 465 */ 0xEC /* 'l' -> */,
|
|
/* pos 03cb: 466 */ 0xEC /* 'l' -> */,
|
|
/* pos 03cc: 467 */ 0x00, 0x58 /* - terminal marker 88 - */,
|
|
/* pos 03ce: 468 */ 0x70 /* 'p' */, 0x07, 0x00 /* (to 0x03D5 s 469) */,
|
|
0x2D /* '-' */, 0x0B, 0x00 /* (to 0x03DC s 475) */,
|
|
0x08, /* fail */
|
|
/* pos 03d5: 469 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03d6: 470 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03d7: 471 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03d8: 472 */ 0xF4 /* 't' -> */,
|
|
/* pos 03d9: 473 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03da: 474 */ 0x00, 0x59 /* - terminal marker 89 - */,
|
|
/* pos 03dc: 475 */ 0xF2 /* 'r' -> */,
|
|
/* pos 03dd: 476 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03de: 477 */ 0xF3 /* 's' -> */,
|
|
/* pos 03df: 478 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03e0: 479 */ 0xFA /* 'z' -> */,
|
|
/* pos 03e1: 480 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03e2: 481 */ 0x00, 0x5A /* - terminal marker 90 - */,
|
|
/* pos 03e4: 482 */ 0xEF /* 'o' -> */,
|
|
/* pos 03e5: 483 */ 0xF7 /* 'w' -> */,
|
|
/* pos 03e6: 484 */ 0x00, 0x5B /* - terminal marker 91 - */,
|
|
/* pos 03e8: 485 */ 0xEC /* 'l' -> */,
|
|
/* pos 03e9: 486 */ 0xE5 /* 'e' -> */,
|
|
/* pos 03ea: 487 */ 0xEE /* 'n' -> */,
|
|
/* pos 03eb: 488 */ 0xF4 /* 't' -> */,
|
|
/* pos 03ec: 489 */ 0x00, 0x5C /* - terminal marker 92 - */,
|
|
/* pos 03ee: 490 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03ef: 491 */ 0xEC /* 'l' -> */,
|
|
/* pos 03f0: 492 */ 0xEC /* 'l' -> */,
|
|
/* pos 03f1: 493 */ 0xAD /* '-' -> */,
|
|
/* pos 03f2: 494 */ 0xE3 /* 'c' -> */,
|
|
/* pos 03f3: 495 */ 0xE1 /* 'a' -> */,
|
|
/* pos 03f4: 496 */ 0xF0 /* 'p' -> */,
|
|
/* pos 03f5: 497 */ 0x73 /* 's' */, 0x07, 0x00 /* (to 0x03FC s 498) */,
|
|
0x74 /* 't' */, 0x06, 0x00 /* (to 0x03FE s 499) */,
|
|
0x08, /* fail */
|
|
/* pos 03fc: 498 */ 0x00, 0x5D /* - terminal marker 93 - */,
|
|
/* pos 03fe: 499 */ 0xE9 /* 'i' -> */,
|
|
/* pos 03ff: 500 */ 0xEF /* 'o' -> */,
|
|
/* pos 0400: 501 */ 0xEE /* 'n' -> */,
|
|
/* pos 0401: 502 */ 0x00, 0x5E /* - terminal marker 94 - */,
|
|
/* pos 0403: 503 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0404: 504 */ 0xEC /* 'l' -> */,
|
|
/* pos 0405: 505 */ 0xEC /* 'l' -> */,
|
|
/* pos 0406: 506 */ 0xAD /* '-' -> */,
|
|
/* pos 0407: 507 */ 0xEF /* 'o' -> */,
|
|
/* pos 0408: 508 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0409: 509 */ 0xF4 /* 't' -> */,
|
|
/* pos 040a: 510 */ 0x00, 0x5F /* - terminal marker 95 - */,
|
|
/* pos 040c: 511 */ 0xF5 /* 'u' -> */,
|
|
/* pos 040d: 512 */ 0xE1 /* 'a' -> */,
|
|
/* pos 040e: 513 */ 0xF2 /* 'r' -> */,
|
|
/* pos 040f: 514 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0410: 515 */ 0x00, 0x60 /* - terminal marker 96 - */,
|
|
/* pos 0412: 516 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0413: 517 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0414: 518 */ 0xF3 /* 's' -> */,
|
|
/* pos 0415: 519 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0416: 520 */ 0xFA /* 'z' -> */,
|
|
/* pos 0417: 521 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0418: 522 */ 0x00, 0x61 /* - terminal marker 97 - */,
|
|
/* pos 041a: 523 */ 0xE1 /* 'a' -> */,
|
|
/* pos 041b: 524 */ 0xF4 /* 't' -> */,
|
|
/* pos 041c: 525 */ 0x69 /* 'i' */, 0x07, 0x00 /* (to 0x0423 s 526) */,
|
|
0x75 /* 'u' */, 0x07, 0x00 /* (to 0x0426 s 528) */,
|
|
0x08, /* fail */
|
|
/* pos 0423: 526 */ 0xE3 /* 'c' -> */,
|
|
/* pos 0424: 527 */ 0x00, 0x62 /* - terminal marker 98 - */,
|
|
/* pos 0426: 528 */ 0xF3 /* 's' -> */,
|
|
/* pos 0427: 529 */ 0xAD /* '-' -> */,
|
|
/* pos 0428: 530 */ 0xE2 /* 'b' -> */,
|
|
/* pos 0429: 531 */ 0xE1 /* 'a' -> */,
|
|
/* pos 042a: 532 */ 0xF2 /* 'r' -> */,
|
|
/* pos 042b: 533 */ 0x00, 0x63 /* - terminal marker 99 - */,
|
|
/* pos 042d: 534 */ 0x62 /* 'b' */, 0x07, 0x00 /* (to 0x0434 s 535) */,
|
|
0x70 /* 'p' */, 0x06, 0x00 /* (to 0x0436 s 536) */,
|
|
0x08, /* fail */
|
|
/* pos 0434: 535 */ 0x00, 0x64 /* - terminal marker 100 - */,
|
|
/* pos 0436: 536 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0437: 537 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0438: 538 */ 0x00, 0x65 /* - terminal marker 101 - */,
|
|
/* pos 043a: 539 */ 0xAD /* '-' -> */,
|
|
/* pos 043b: 540 */ 0xF2 /* 'r' -> */,
|
|
/* pos 043c: 541 */ 0xE5 /* 'e' -> */,
|
|
/* pos 043d: 542 */ 0xF3 /* 's' -> */,
|
|
/* pos 043e: 543 */ 0xE9 /* 'i' -> */,
|
|
/* pos 043f: 544 */ 0xFA /* 'z' -> */,
|
|
/* pos 0440: 545 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0441: 546 */ 0x00, 0x66 /* - terminal marker 102 - */,
|
|
/* pos 0443: 547 */ 0x61 /* 'a' */, 0x0D, 0x00 /* (to 0x0450 s 548) */,
|
|
0x65 /* 'e' */, 0x6C, 0x00 /* (to 0x04B2 s 607) */,
|
|
0x6F /* 'o' */, 0x82, 0x00 /* (to 0x04CB s 620) */,
|
|
0x72 /* 'r' */, 0x82, 0x00 /* (to 0x04CE s 622) */,
|
|
0x08, /* fail */
|
|
/* pos 0450: 548 */ 0xE2 /* 'b' -> */,
|
|
/* pos 0451: 549 */ 0xEC /* 'l' -> */,
|
|
/* pos 0452: 550 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0453: 551 */ 0x2D /* '-' */, 0x05, 0x00 /* (to 0x0458 s 552) */,
|
|
0x00, 0x67 /* - terminal marker 103 - */,
|
|
/* pos 0458: 552 */ 0x63 /* 'c' */, 0x0D, 0x00 /* (to 0x0465 s 553) */,
|
|
0x66 /* 'f' */, 0x2F, 0x00 /* (to 0x048A s 574) */,
|
|
0x68 /* 'h' */, 0x39, 0x00 /* (to 0x0497 s 586) */,
|
|
0x72 /* 'r' */, 0x43, 0x00 /* (to 0x04A4 s 598) */,
|
|
0x08, /* fail */
|
|
/* pos 0465: 553 */ 0x61 /* 'a' */, 0x0A, 0x00 /* (to 0x046F s 554) */,
|
|
0x65 /* 'e' */, 0x0E, 0x00 /* (to 0x0476 s 560) */,
|
|
0x6F /* 'o' */, 0x0F, 0x00 /* (to 0x047A s 563) */,
|
|
0x08, /* fail */
|
|
/* pos 046f: 554 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0470: 555 */ 0xF4 /* 't' -> */,
|
|
/* pos 0471: 556 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0472: 557 */ 0xEF /* 'o' -> */,
|
|
/* pos 0473: 558 */ 0xEE /* 'n' -> */,
|
|
/* pos 0474: 559 */ 0x00, 0x68 /* - terminal marker 104 - */,
|
|
/* pos 0476: 560 */ 0xEC /* 'l' -> */,
|
|
/* pos 0477: 561 */ 0xEC /* 'l' -> */,
|
|
/* pos 0478: 562 */ 0x00, 0x69 /* - terminal marker 105 - */,
|
|
/* pos 047a: 563 */ 0xEC /* 'l' -> */,
|
|
/* pos 047b: 564 */ 0xF5 /* 'u' -> */,
|
|
/* pos 047c: 565 */ 0xED /* 'm' -> */,
|
|
/* pos 047d: 566 */ 0xEE /* 'n' -> */,
|
|
/* pos 047e: 567 */ 0x2D /* '-' */, 0x05, 0x00 /* (to 0x0483 s 568) */,
|
|
0x00, 0x6A /* - terminal marker 106 - */,
|
|
/* pos 0483: 568 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0484: 569 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0485: 570 */ 0xEF /* 'o' -> */,
|
|
/* pos 0486: 571 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0487: 572 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0488: 573 */ 0x00, 0x6B /* - terminal marker 107 - */,
|
|
/* pos 048a: 574 */ 0xEF /* 'o' -> */,
|
|
/* pos 048b: 575 */ 0xEF /* 'o' -> */,
|
|
/* pos 048c: 576 */ 0xF4 /* 't' -> */,
|
|
/* pos 048d: 577 */ 0xE5 /* 'e' -> */,
|
|
/* pos 048e: 578 */ 0xF2 /* 'r' -> */,
|
|
/* pos 048f: 579 */ 0xAD /* '-' -> */,
|
|
/* pos 0490: 580 */ 0xE7 /* 'g' -> */,
|
|
/* pos 0491: 581 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0492: 582 */ 0xEF /* 'o' -> */,
|
|
/* pos 0493: 583 */ 0xF5 /* 'u' -> */,
|
|
/* pos 0494: 584 */ 0xF0 /* 'p' -> */,
|
|
/* pos 0495: 585 */ 0x00, 0x6C /* - terminal marker 108 - */,
|
|
/* pos 0497: 586 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0498: 587 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0499: 588 */ 0xE4 /* 'd' -> */,
|
|
/* pos 049a: 589 */ 0xE5 /* 'e' -> */,
|
|
/* pos 049b: 590 */ 0xF2 /* 'r' -> */,
|
|
/* pos 049c: 591 */ 0xAD /* '-' -> */,
|
|
/* pos 049d: 592 */ 0xE7 /* 'g' -> */,
|
|
/* pos 049e: 593 */ 0xF2 /* 'r' -> */,
|
|
/* pos 049f: 594 */ 0xEF /* 'o' -> */,
|
|
/* pos 04a0: 595 */ 0xF5 /* 'u' -> */,
|
|
/* pos 04a1: 596 */ 0xF0 /* 'p' -> */,
|
|
/* pos 04a2: 597 */ 0x00, 0x6D /* - terminal marker 109 - */,
|
|
/* pos 04a4: 598 */ 0xEF /* 'o' -> */,
|
|
/* pos 04a5: 599 */ 0xF7 /* 'w' -> */,
|
|
/* pos 04a6: 600 */ 0x2D /* '-' */, 0x05, 0x00 /* (to 0x04AB s 601) */,
|
|
0x00, 0x6E /* - terminal marker 110 - */,
|
|
/* pos 04ab: 601 */ 0xE7 /* 'g' -> */,
|
|
/* pos 04ac: 602 */ 0xF2 /* 'r' -> */,
|
|
/* pos 04ad: 603 */ 0xEF /* 'o' -> */,
|
|
/* pos 04ae: 604 */ 0xF5 /* 'u' -> */,
|
|
/* pos 04af: 605 */ 0xF0 /* 'p' -> */,
|
|
/* pos 04b0: 606 */ 0x00, 0x6F /* - terminal marker 111 - */,
|
|
/* pos 04b2: 607 */ 0xF8 /* 'x' -> */,
|
|
/* pos 04b3: 608 */ 0xF4 /* 't' -> */,
|
|
/* pos 04b4: 609 */ 0x2D /* '-' */, 0x05, 0x00 /* (to 0x04B9 s 610) */,
|
|
0x00, 0x72 /* - terminal marker 114 - */,
|
|
/* pos 04b9: 610 */ 0x62 /* 'b' */, 0x07, 0x00 /* (to 0x04C0 s 611) */,
|
|
0x74 /* 't' */, 0x0B, 0x00 /* (to 0x04C7 s 617) */,
|
|
0x08, /* fail */
|
|
/* pos 04c0: 611 */ 0xEF /* 'o' -> */,
|
|
/* pos 04c1: 612 */ 0xF4 /* 't' -> */,
|
|
/* pos 04c2: 613 */ 0xF4 /* 't' -> */,
|
|
/* pos 04c3: 614 */ 0xEF /* 'o' -> */,
|
|
/* pos 04c4: 615 */ 0xED /* 'm' -> */,
|
|
/* pos 04c5: 616 */ 0x00, 0x70 /* - terminal marker 112 - */,
|
|
/* pos 04c7: 617 */ 0xEF /* 'o' -> */,
|
|
/* pos 04c8: 618 */ 0xF0 /* 'p' -> */,
|
|
/* pos 04c9: 619 */ 0x00, 0x71 /* - terminal marker 113 - */,
|
|
/* pos 04cb: 620 */ 0xF0 /* 'p' -> */,
|
|
/* pos 04cc: 621 */ 0x00, 0x73 /* - terminal marker 115 - */,
|
|
/* pos 04ce: 622 */ 0xE1 /* 'a' -> */,
|
|
/* pos 04cf: 623 */ 0xEE /* 'n' -> */,
|
|
/* pos 04d0: 624 */ 0xF3 /* 's' -> */,
|
|
/* pos 04d1: 625 */ 0xF0 /* 'p' -> */,
|
|
/* pos 04d2: 626 */ 0xE1 /* 'a' -> */,
|
|
/* pos 04d3: 627 */ 0xF2 /* 'r' -> */,
|
|
/* pos 04d4: 628 */ 0xE5 /* 'e' -> */,
|
|
/* pos 04d5: 629 */ 0xEE /* 'n' -> */,
|
|
/* pos 04d6: 630 */ 0xF4 /* 't' -> */,
|
|
/* pos 04d7: 631 */ 0x00, 0x74 /* - terminal marker 116 - */,
|
|
/* pos 04d9: 632 */ 0x6E /* 'n' */, 0x07, 0x00 /* (to 0x04E0 s 633) */,
|
|
0x70 /* 'p' */, 0x0D, 0x00 /* (to 0x04E9 s 641) */,
|
|
0x08, /* fail */
|
|
/* pos 04e0: 633 */ 0xE4 /* 'd' -> */,
|
|
/* pos 04e1: 634 */ 0xE5 /* 'e' -> */,
|
|
/* pos 04e2: 635 */ 0xF2 /* 'r' -> */,
|
|
/* pos 04e3: 636 */ 0xEC /* 'l' -> */,
|
|
/* pos 04e4: 637 */ 0xE9 /* 'i' -> */,
|
|
/* pos 04e5: 638 */ 0xEE /* 'n' -> */,
|
|
/* pos 04e6: 639 */ 0xE5 /* 'e' -> */,
|
|
/* pos 04e7: 640 */ 0x00, 0x75 /* - terminal marker 117 - */,
|
|
/* pos 04e9: 641 */ 0xF0 /* 'p' -> */,
|
|
/* pos 04ea: 642 */ 0xE5 /* 'e' -> */,
|
|
/* pos 04eb: 643 */ 0xF2 /* 'r' -> */,
|
|
/* pos 04ec: 644 */ 0x2D /* '-' */, 0x07, 0x00 /* (to 0x04F3 s 645) */,
|
|
0x63 /* 'c' */, 0x14, 0x00 /* (to 0x0503 s 651) */,
|
|
0x08, /* fail */
|
|
/* pos 04f3: 645 */ 0x61 /* 'a' */, 0x0A, 0x00 /* (to 0x04FD s 646) */,
|
|
0x6C /* 'l' */, 0x12, 0x00 /* (to 0x0508 s 655) */,
|
|
0x72 /* 'r' */, 0x15, 0x00 /* (to 0x050E s 660) */,
|
|
0x08, /* fail */
|
|
/* pos 04fd: 646 */ 0xEC /* 'l' -> */,
|
|
/* pos 04fe: 647 */ 0xF0 /* 'p' -> */,
|
|
/* pos 04ff: 648 */ 0xE8 /* 'h' -> */,
|
|
/* pos 0500: 649 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0501: 650 */ 0x00, 0x76 /* - terminal marker 118 - */,
|
|
/* pos 0503: 651 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0504: 652 */ 0xF3 /* 's' -> */,
|
|
/* pos 0505: 653 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0506: 654 */ 0x00, 0x77 /* - terminal marker 119 - */,
|
|
/* pos 0508: 655 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0509: 656 */ 0xF4 /* 't' -> */,
|
|
/* pos 050a: 657 */ 0xE9 /* 'i' -> */,
|
|
/* pos 050b: 658 */ 0xEE /* 'n' -> */,
|
|
/* pos 050c: 659 */ 0x00, 0x78 /* - terminal marker 120 - */,
|
|
/* pos 050e: 660 */ 0xEF /* 'o' -> */,
|
|
/* pos 050f: 661 */ 0xED /* 'm' -> */,
|
|
/* pos 0510: 662 */ 0xE1 /* 'a' -> */,
|
|
/* pos 0511: 663 */ 0xEE /* 'n' -> */,
|
|
/* pos 0512: 664 */ 0x00, 0x79 /* - terminal marker 121 - */,
|
|
/* pos 0514: 665 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0515: 666 */ 0xF3 /* 's' -> */,
|
|
/* pos 0516: 667 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0517: 668 */ 0xE2 /* 'b' -> */,
|
|
/* pos 0518: 669 */ 0xEC /* 'l' -> */,
|
|
/* pos 0519: 670 */ 0xE5 /* 'e' -> */,
|
|
/* pos 051a: 671 */ 0x00, 0x7A /* - terminal marker 122 - */,
|
|
/* pos 051c: 672 */ 0x61 /* 'a' */, 0x07, 0x00 /* (to 0x0523 s 673) */,
|
|
0x2D /* '-' */, 0x08, 0x00 /* (to 0x0527 s 676) */,
|
|
0x08, /* fail */
|
|
/* pos 0523: 673 */ 0xE9 /* 'i' -> */,
|
|
/* pos 0524: 674 */ 0xF4 /* 't' -> */,
|
|
/* pos 0525: 675 */ 0x00, 0x7B /* - terminal marker 123 - */,
|
|
/* pos 0527: 676 */ 0xF2 /* 'r' -> */,
|
|
/* pos 0528: 677 */ 0xE5 /* 'e' -> */,
|
|
/* pos 0529: 678 */ 0xF3 /* 's' -> */,
|
|
/* pos 052a: 679 */ 0xE9 /* 'i' -> */,
|
|
/* pos 052b: 680 */ 0xFA /* 'z' -> */,
|
|
/* pos 052c: 681 */ 0xE5 /* 'e' -> */,
|
|
/* pos 052d: 682 */ 0x00, 0x7C /* - terminal marker 124 - */,
|
|
/* total size 1327 bytes */
|