summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2015-01-11 01:08:02 +0100
committerNick Wellnhofer <wellnhofer@aevum.de>2015-01-12 02:11:16 +0100
commit491b7775b273daf1325a1b050345dbf75b394315 (patch)
treeef1e1b3e2f60e80c71c09948196b37b6f7585eb4 /src
parent009fe0141445275c495d0825a1d5c0a374fc9d90 (diff)
Reduce size of gperf entity table
Don't store length of UTF-8 string. It can be computed by NULL-terminating strings shorter than 4 bytes and using strnlen. Use gperf's string pool option. This allows to use an 'int' index into the string pool instead of a pointer and is helpful on 64-bit systems. Shaves about 75 KB off the 32-bit binaries on Linux and 128 KB off the 64-bit binaries on OS X.
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt2
-rw-r--r--src/houdini_html_u.c3
-rw-r--r--src/html_unescape.gperf4253
-rw-r--r--src/html_unescape.h21253
4 files changed, 14052 insertions, 11459 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index b4a0fe8..254c065 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -124,7 +124,7 @@ if(MSVC)
endif()
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4127 /wd4244 /wd4267 /wd4706 /wd4800 /D_CRT_SECURE_NO_WARNINGS")
elseif(CMAKE_COMPILER_IS_GNUCC OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -std=c99 -pedantic")
+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -std=c99 -pedantic -D_GNU_SOURCE")
endif()
# Compile as C++ under MSVC
diff --git a/src/houdini_html_u.c b/src/houdini_html_u.c
index 9a2e262..ecd7faa 100644
--- a/src/houdini_html_u.c
+++ b/src/houdini_html_u.c
@@ -55,7 +55,8 @@ houdini_unescape_ent(cmark_strbuf *ob, const uint8_t *src, size_t size)
const struct html_ent *entity = find_entity((char *)src, i);
if (entity != NULL) {
- cmark_strbuf_put(ob, entity->utf8, entity->utf8_len);
+ size_t len = strnlen((const char *)entity->utf8, 4);
+ cmark_strbuf_put(ob, entity->utf8, len);
return i + 1;
}
diff --git a/src/html_unescape.gperf b/src/html_unescape.gperf
index 4d46f67..74173a6 100644
--- a/src/html_unescape.gperf
+++ b/src/html_unescape.gperf
@@ -1,2131 +1,2130 @@
struct html_ent {
- const char *entity;
- unsigned int utf8_len;
+ int entity;
unsigned char utf8[4];
};
%%
-"Aacute", 2, {195, 129}
-"aacute", 2, {195, 161}
-"Abreve", 2, {196, 130}
-"abreve", 2, {196, 131}
-"ac", 3, {226, 136, 190}
-"acd", 3, {226, 136, 191}
-"acE", 3, {226, 136, 190}
-"Acirc", 2, {195, 130}
-"acirc", 2, {195, 162}
-"acute", 2, {194, 180}
-"Acy", 2, {208, 144}
-"acy", 2, {208, 176}
-"AElig", 2, {195, 134}
-"aelig", 2, {195, 166}
-"af", 3, {226, 129, 161}
-"Afr", 4, {240, 157, 148, 132}
-"afr", 4, {240, 157, 148, 158}
-"Agrave", 2, {195, 128}
-"agrave", 2, {195, 160}
-"alefsym", 3, {226, 132, 181}
-"aleph", 3, {226, 132, 181}
-"Alpha", 2, {206, 145}
-"alpha", 2, {206, 177}
-"Amacr", 2, {196, 128}
-"amacr", 2, {196, 129}
-"amalg", 3, {226, 168, 191}
-"amp", 1, {38}
-"AMP", 1, {38}
-"andand", 3, {226, 169, 149}
-"And", 3, {226, 169, 147}
-"and", 3, {226, 136, 167}
-"andd", 3, {226, 169, 156}
-"andslope", 3, {226, 169, 152}
-"andv", 3, {226, 169, 154}
-"ang", 3, {226, 136, 160}
-"ange", 3, {226, 166, 164}
-"angle", 3, {226, 136, 160}
-"angmsdaa", 3, {226, 166, 168}
-"angmsdab", 3, {226, 166, 169}
-"angmsdac", 3, {226, 166, 170}
-"angmsdad", 3, {226, 166, 171}
-"angmsdae", 3, {226, 166, 172}
-"angmsdaf", 3, {226, 166, 173}
-"angmsdag", 3, {226, 166, 174}
-"angmsdah", 3, {226, 166, 175}
-"angmsd", 3, {226, 136, 161}
-"angrt", 3, {226, 136, 159}
-"angrtvb", 3, {226, 138, 190}
-"angrtvbd", 3, {226, 166, 157}
-"angsph", 3, {226, 136, 162}
-"angst", 2, {195, 133}
-"angzarr", 3, {226, 141, 188}
-"Aogon", 2, {196, 132}
-"aogon", 2, {196, 133}
-"Aopf", 4, {240, 157, 148, 184}
-"aopf", 4, {240, 157, 149, 146}
-"apacir", 3, {226, 169, 175}
-"ap", 3, {226, 137, 136}
-"apE", 3, {226, 169, 176}
-"ape", 3, {226, 137, 138}
-"apid", 3, {226, 137, 139}
-"apos", 1, {39}
-"ApplyFunction", 3, {226, 129, 161}
-"approx", 3, {226, 137, 136}
-"approxeq", 3, {226, 137, 138}
-"Aring", 2, {195, 133}
-"aring", 2, {195, 165}
-"Ascr", 4, {240, 157, 146, 156}
-"ascr", 4, {240, 157, 146, 182}
-"Assign", 3, {226, 137, 148}
-"ast", 1, {42}
-"asymp", 3, {226, 137, 136}
-"asympeq", 3, {226, 137, 141}
-"Atilde", 2, {195, 131}
-"atilde", 2, {195, 163}
-"Auml", 2, {195, 132}
-"auml", 2, {195, 164}
-"awconint", 3, {226, 136, 179}
-"awint", 3, {226, 168, 145}
-"backcong", 3, {226, 137, 140}
-"backepsilon", 2, {207, 182}
-"backprime", 3, {226, 128, 181}
-"backsim", 3, {226, 136, 189}
-"backsimeq", 3, {226, 139, 141}
-"Backslash", 3, {226, 136, 150}
-"Barv", 3, {226, 171, 167}
-"barvee", 3, {226, 138, 189}
-"barwed", 3, {226, 140, 133}
-"Barwed", 3, {226, 140, 134}
-"barwedge", 3, {226, 140, 133}
-"bbrk", 3, {226, 142, 181}
-"bbrktbrk", 3, {226, 142, 182}
-"bcong", 3, {226, 137, 140}
-"Bcy", 2, {208, 145}
-"bcy", 2, {208, 177}
-"bdquo", 3, {226, 128, 158}
-"becaus", 3, {226, 136, 181}
-"because", 3, {226, 136, 181}
-"Because", 3, {226, 136, 181}
-"bemptyv", 3, {226, 166, 176}
-"bepsi", 2, {207, 182}
-"bernou", 3, {226, 132, 172}
-"Bernoullis", 3, {226, 132, 172}
-"Beta", 2, {206, 146}
-"beta", 2, {206, 178}
-"beth", 3, {226, 132, 182}
-"between", 3, {226, 137, 172}
-"Bfr", 4, {240, 157, 148, 133}
-"bfr", 4, {240, 157, 148, 159}
-"bigcap", 3, {226, 139, 130}
-"bigcirc", 3, {226, 151, 175}
-"bigcup", 3, {226, 139, 131}
-"bigodot", 3, {226, 168, 128}
-"bigoplus", 3, {226, 168, 129}
-"bigotimes", 3, {226, 168, 130}
-"bigsqcup", 3, {226, 168, 134}
-"bigstar", 3, {226, 152, 133}
-"bigtriangledown", 3, {226, 150, 189}
-"bigtriangleup", 3, {226, 150, 179}
-"biguplus", 3, {226, 168, 132}
-"bigvee", 3, {226, 139, 129}
-"bigwedge", 3, {226, 139, 128}
-"bkarow", 3, {226, 164, 141}
-"blacklozenge", 3, {226, 167, 171}
-"blacksquare", 3, {226, 150, 170}
-"blacktriangle", 3, {226, 150, 180}
-"blacktriangledown", 3, {226, 150, 190}
-"blacktriangleleft", 3, {226, 151, 130}
-"blacktriangleright", 3, {226, 150, 184}
-"blank", 3, {226, 144, 163}
-"blk12", 3, {226, 150, 146}
-"blk14", 3, {226, 150, 145}
-"blk34", 3, {226, 150, 147}
-"block", 3, {226, 150, 136}
-"bne", 1, {61}
-"bnequiv", 3, {226, 137, 161}
-"bNot", 3, {226, 171, 173}
-"bnot", 3, {226, 140, 144}
-"Bopf", 4, {240, 157, 148, 185}
-"bopf", 4, {240, 157, 149, 147}
-"bot", 3, {226, 138, 165}
-"bottom", 3, {226, 138, 165}
-"bowtie", 3, {226, 139, 136}
-"boxbox", 3, {226, 167, 137}
-"boxdl", 3, {226, 148, 144}
-"boxdL", 3, {226, 149, 149}
-"boxDl", 3, {226, 149, 150}
-"boxDL", 3, {226, 149, 151}
-"boxdr", 3, {226, 148, 140}
-"boxdR", 3, {226, 149, 146}
-"boxDr", 3, {226, 149, 147}
-"boxDR", 3, {226, 149, 148}
-"boxh", 3, {226, 148, 128}
-"boxH", 3, {226, 149, 144}
-"boxhd", 3, {226, 148, 172}
-"boxHd", 3, {226, 149, 164}
-"boxhD", 3, {226, 149, 165}
-"boxHD", 3, {226, 149, 166}
-"boxhu", 3, {226, 148, 180}
-"boxHu", 3, {226, 149, 167}
-"boxhU", 3, {226, 149, 168}
-"boxHU", 3, {226, 149, 169}
-"boxminus", 3, {226, 138, 159}
-"boxplus", 3, {226, 138, 158}
-"boxtimes", 3, {226, 138, 160}
-"boxul", 3, {226, 148, 152}
-"boxuL", 3, {226, 149, 155}
-"boxUl", 3, {226, 149, 156}
-"boxUL", 3, {226, 149, 157}
-"boxur", 3, {226, 148, 148}
-"boxuR", 3, {226, 149, 152}
-"boxUr", 3, {226, 149, 153}
-"boxUR", 3, {226, 149, 154}
-"boxv", 3, {226, 148, 130}
-"boxV", 3, {226, 149, 145}
-"boxvh", 3, {226, 148, 188}
-"boxvH", 3, {226, 149, 170}
-"boxVh", 3, {226, 149, 171}
-"boxVH", 3, {226, 149, 172}
-"boxvl", 3, {226, 148, 164}
-"boxvL", 3, {226, 149, 161}
-"boxVl", 3, {226, 149, 162}
-"boxVL", 3, {226, 149, 163}
-"boxvr", 3, {226, 148, 156}
-"boxvR", 3, {226, 149, 158}
-"boxVr", 3, {226, 149, 159}
-"boxVR", 3, {226, 149, 160}
-"bprime", 3, {226, 128, 181}
-"breve", 2, {203, 152}
-"Breve", 2, {203, 152}
-"brvbar", 2, {194, 166}
-"bscr", 4, {240, 157, 146, 183}
-"Bscr", 3, {226, 132, 172}
-"bsemi", 3, {226, 129, 143}
-"bsim", 3, {226, 136, 189}
-"bsime", 3, {226, 139, 141}
-"bsolb", 3, {226, 167, 133}
-"bsol", 1, {92}
-"bsolhsub", 3, {226, 159, 136}
-"bull", 3, {226, 128, 162}
-"bullet", 3, {226, 128, 162}
-"bump", 3, {226, 137, 142}
-"bumpE", 3, {226, 170, 174}
-"bumpe", 3, {226, 137, 143}
-"Bumpeq", 3, {226, 137, 142}
-"bumpeq", 3, {226, 137, 143}
-"Cacute", 2, {196, 134}
-"cacute", 2, {196, 135}
-"capand", 3, {226, 169, 132}
-"capbrcup", 3, {226, 169, 137}
-"capcap", 3, {226, 169, 139}
-"cap", 3, {226, 136, 169}
-"Cap", 3, {226, 139, 146}
-"capcup", 3, {226, 169, 135}
-"capdot", 3, {226, 169, 128}
-"CapitalDifferentialD", 3, {226, 133, 133}
-"caps", 3, {226, 136, 169}
-"caret", 3, {226, 129, 129}
-"caron", 2, {203, 135}
-"Cayleys", 3, {226, 132, 173}
-"ccaps", 3, {226, 169, 141}
-"Ccaron", 2, {196, 140}
-"ccaron", 2, {196, 141}
-"Ccedil", 2, {195, 135}
-"ccedil", 2, {195, 167}
-"Ccirc", 2, {196, 136}
-"ccirc", 2, {196, 137}
-"Cconint", 3, {226, 136, 176}
-"ccups", 3, {226, 169, 140}
-"ccupssm", 3, {226, 169, 144}
-"Cdot", 2, {196, 138}
-"cdot", 2, {196, 139}
-"cedil", 2, {194, 184}
-"Cedilla", 2, {194, 184}
-"cemptyv", 3, {226, 166, 178}
-"cent", 2, {194, 162}
-"centerdot", 2, {194, 183}
-"CenterDot", 2, {194, 183}
-"cfr", 4, {240, 157, 148, 160}
-"Cfr", 3, {226, 132, 173}
-"CHcy", 2, {208, 167}
-"chcy", 2, {209, 135}
-"check", 3, {226, 156, 147}
-"checkmark", 3, {226, 156, 147}
-"Chi", 2, {206, 167}
-"chi", 2, {207, 135}
-"circ", 2, {203, 134}
-"circeq", 3, {226, 137, 151}
-"circlearrowleft", 3, {226, 134, 186}
-"circlearrowright", 3, {226, 134, 187}
-"circledast", 3, {226, 138, 155}
-"circledcirc", 3, {226, 138, 154}
-"circleddash", 3, {226, 138, 157}
-"CircleDot", 3, {226, 138, 153}
-"circledR", 2, {194, 174}
-"circledS", 3, {226, 147, 136}
-"CircleMinus", 3, {226, 138, 150}
-"CirclePlus", 3, {226, 138, 149}
-"CircleTimes", 3, {226, 138, 151}
-"cir", 3, {226, 151, 139}
-"cirE", 3, {226, 167, 131}
-"cire", 3, {226, 137, 151}
-"cirfnint", 3, {226, 168, 144}
-"cirmid", 3, {226, 171, 175}
-"cirscir", 3, {226, 167, 130}
-"ClockwiseContourIntegral", 3, {226, 136, 178}
-"CloseCurlyDoubleQuote", 3, {226, 128, 157}
-"CloseCurlyQuote", 3, {226, 128, 153}
-"clubs", 3, {226, 153, 163}
-"clubsuit", 3, {226, 153, 163}
-"colon", 1, {58}
-"Colon", 3, {226, 136, 183}
-"Colone", 3, {226, 169, 180}
-"colone", 3, {226, 137, 148}
-"coloneq", 3, {226, 137, 148}
-"comma", 1, {44}
-"commat", 1, {64}
-"comp", 3, {226, 136, 129}
-"compfn", 3, {226, 136, 152}
-"complement", 3, {226, 136, 129}
-"complexes", 3, {226, 132, 130}
-"cong", 3, {226, 137, 133}
-"congdot", 3, {226, 169, 173}
-"Congruent", 3, {226, 137, 161}
-"conint", 3, {226, 136, 174}
-"Conint", 3, {226, 136, 175}
-"ContourIntegral", 3, {226, 136, 174}
-"copf", 4, {240, 157, 149, 148}
-"Copf", 3, {226, 132, 130}
-"coprod", 3, {226, 136, 144}
-"Coproduct", 3, {226, 136, 144}
-"copy", 2, {194, 169}
-"COPY", 2, {194, 169}
-"copysr", 3, {226, 132, 151}
-"CounterClockwiseContourIntegral", 3, {226, 136, 179}
-"crarr", 3, {226, 134, 181}
-"cross", 3, {226, 156, 151}
-"Cross", 3, {226, 168, 175}
-"Cscr", 4, {240, 157, 146, 158}
-"cscr", 4, {240, 157, 146, 184}
-"csub", 3, {226, 171, 143}
-"csube", 3, {226, 171, 145}
-"csup", 3, {226, 171, 144}
-"csupe", 3, {226, 171, 146}
-"ctdot", 3, {226, 139, 175}
-"cudarrl", 3, {226, 164, 184}
-"cudarrr", 3, {226, 164, 181}
-"cuepr", 3, {226, 139, 158}
-"cuesc", 3, {226, 139, 159}
-"cularr", 3, {226, 134, 182}
-"cularrp", 3, {226, 164, 189}
-"cupbrcap", 3, {226, 169, 136}
-"cupcap", 3, {226, 169, 134}
-"CupCap", 3, {226, 137, 141}
-"cup", 3, {226, 136, 170}
-"Cup", 3, {226, 139, 147}
-"cupcup", 3, {226, 169, 138}
-"cupdot", 3, {226, 138, 141}
-"cupor", 3, {226, 169, 133}
-"cups", 3, {226, 136, 170}
-"curarr", 3, {226, 134, 183}
-"curarrm", 3, {226, 164, 188}
-"curlyeqprec", 3, {226, 139, 158}
-"curlyeqsucc", 3, {226, 139, 159}
-"curlyvee", 3, {226, 139, 142}
-"curlywedge", 3, {226, 139, 143}
-"curren", 2, {194, 164}
-"curvearrowleft", 3, {226, 134, 182}
-"curvearrowright", 3, {226, 134, 183}
-"cuvee", 3, {226, 139, 142}
-"cuwed", 3, {226, 139, 143}
-"cwconint", 3, {226, 136, 178}
-"cwint", 3, {226, 136, 177}
-"cylcty", 3, {226, 140, 173}
-"dagger", 3, {226, 128, 160}
-"Dagger", 3, {226, 128, 161}
-"daleth", 3, {226, 132, 184}
-"darr", 3, {226, 134, 147}
-"Darr", 3, {226, 134, 161}
-"dArr", 3, {226, 135, 147}
-"dash", 3, {226, 128, 144}
-"Dashv", 3, {226, 171, 164}
-"dashv", 3, {226, 138, 163}
-"dbkarow", 3, {226, 164, 143}
-"dblac", 2, {203, 157}
-"Dcaron", 2, {196, 142}
-"dcaron", 2, {196, 143}
-"Dcy", 2, {208, 148}
-"dcy", 2, {208, 180}
-"ddagger", 3, {226, 128, 161}
-"ddarr", 3, {226, 135, 138}
-"DD", 3, {226, 133, 133}
-"dd", 3, {226, 133, 134}
-"DDotrahd", 3, {226, 164, 145}
-"ddotseq", 3, {226, 169, 183}
-"deg", 2, {194, 176}
-"Del", 3, {226, 136, 135}
-"Delta", 2, {206, 148}
-"delta", 2, {206, 180}
-"demptyv", 3, {226, 166, 177}
-"dfisht", 3, {226, 165, 191}
-"Dfr", 4, {240, 157, 148, 135}
-"dfr", 4, {240, 157, 148, 161}
-"dHar", 3, {226, 165, 165}
-"dharl", 3, {226, 135, 131}
-"dharr", 3, {226, 135, 130}
-"DiacriticalAcute", 2, {194, 180}
-"DiacriticalDot", 2, {203, 153}
-"DiacriticalDoubleAcute", 2, {203, 157}
-"DiacriticalGrave", 1, {96}
-"DiacriticalTilde", 2, {203, 156}
-"diam", 3, {226, 139, 132}
-"diamond", 3, {226, 139, 132}
-"Diamond", 3, {226, 139, 132}
-"diamondsuit", 3, {226, 153, 166}
-"diams", 3, {226, 153, 166}
-"die", 2, {194, 168}
-"DifferentialD", 3, {226, 133, 134}
-"digamma", 2, {207, 157}
-"disin", 3, {226, 139, 178}
-"div", 2, {195, 183}
-"divide", 2, {195, 183}
-"divideontimes", 3, {226, 139, 135}
-"divonx", 3, {226, 139, 135}
-"DJcy", 2, {208, 130}
-"djcy", 2, {209, 146}
-"dlcorn", 3, {226, 140, 158}
-"dlcrop", 3, {226, 140, 141}
-"dollar", 1, {36}
-"Dopf", 4, {240, 157, 148, 187}
-"dopf", 4, {240, 157, 149, 149}
-"Dot", 2, {194, 168}
-"dot", 2, {203, 153}
-"DotDot", 3, {226, 131, 156}
-"doteq", 3, {226, 137, 144}
-"doteqdot", 3, {226, 137, 145}
-"DotEqual", 3, {226, 137, 144}
-"dotminus", 3, {226, 136, 184}
-"dotplus", 3, {226, 136, 148}
-"dotsquare", 3, {226, 138, 161}
-"doublebarwedge", 3, {226, 140, 134}
-"DoubleContourIntegral", 3, {226, 136, 175}
-"DoubleDot", 2, {194, 168}
-"DoubleDownArrow", 3, {226, 135, 147}
-"DoubleLeftArrow", 3, {226, 135, 144}
-"DoubleLeftRightArrow", 3, {226, 135, 148}
-"DoubleLeftTee", 3, {226, 171, 164}
-"DoubleLongLeftArrow", 3, {226, 159, 184}
-"DoubleLongLeftRightArrow", 3, {226, 159, 186}
-"DoubleLongRightArrow", 3, {226, 159, 185}
-"DoubleRightArrow", 3, {226, 135, 146}
-"DoubleRightTee", 3, {226, 138, 168}
-"DoubleUpArrow", 3, {226, 135, 145}
-"DoubleUpDownArrow", 3, {226, 135, 149}
-"DoubleVerticalBar", 3, {226, 136, 165}
-"DownArrowBar", 3, {226, 164, 147}
-"downarrow", 3, {226, 134, 147}
-"DownArrow", 3, {226, 134, 147}
-"Downarrow", 3, {226, 135, 147}
-"DownArrowUpArrow", 3, {226, 135, 181}
-"DownBreve", 2, {204, 145}
-"downdownarrows", 3, {226, 135, 138}
-"downharpoonleft", 3, {226, 135, 131}
-"downharpoonright", 3, {226, 135, 130}
-"DownLeftRightVector", 3, {226, 165, 144}
-"DownLeftTeeVector", 3, {226, 165, 158}
-"DownLeftVectorBar", 3, {226, 165, 150}
-"DownLeftVector", 3, {226, 134, 189}
-"DownRightTeeVector", 3, {226, 165, 159}
-"DownRightVectorBar", 3, {226, 165, 151}
-"DownRightVector", 3, {226, 135, 129}
-"DownTeeArrow", 3, {226, 134, 167}
-"DownTee", 3, {226, 138, 164}
-"drbkarow", 3, {226, 164, 144}
-"drcorn", 3, {226, 140, 159}
-"drcrop", 3, {226, 140, 140}
-"Dscr", 4, {240, 157, 146, 159}
-"dscr", 4, {240, 157, 146, 185}
-"DScy", 2, {208, 133}
-"dscy", 2, {209, 149}
-"dsol", 3, {226, 167, 182}
-"Dstrok", 2, {196, 144}
-"dstrok", 2, {196, 145}
-"dtdot", 3, {226, 139, 177}
-"dtri", 3, {226, 150, 191}
-"dtrif", 3, {226, 150, 190}
-"duarr", 3, {226, 135, 181}
-"duhar", 3, {226, 165, 175}
-"dwangle", 3, {226, 166, 166}
-"DZcy", 2, {208, 143}
-"dzcy", 2, {209, 159}
-"dzigrarr", 3, {226, 159, 191}
-"Eacute", 2, {195, 137}
-"eacute", 2, {195, 169}
-"easter", 3, {226, 169, 174}
-"Ecaron", 2, {196, 154}
-"ecaron", 2, {196, 155}
-"Ecirc", 2, {195, 138}
-"ecirc", 2, {195, 170}
-"ecir", 3, {226, 137, 150}
-"ecolon", 3, {226, 137, 149}
-"Ecy", 2, {208, 173}
-"ecy", 2, {209, 141}
-"eDDot", 3, {226, 169, 183}
-"Edot", 2, {196, 150}
-"edot", 2, {196, 151}
-"eDot", 3, {226, 137, 145}
-"ee", 3, {226, 133, 135}
-"efDot", 3, {226, 137, 146}
-"Efr", 4, {240, 157, 148, 136}
-"efr", 4, {240, 157, 148, 162}
-"eg", 3, {226, 170, 154}
-"Egrave", 2, {195, 136}
-"egrave", 2, {195, 168}
-"egs", 3, {226, 170, 150}
-"egsdot", 3, {226, 170, 152}
-"el", 3, {226, 170, 153}
-"Element", 3, {226, 136, 136}
-"elinters", 3, {226, 143, 167}
-"ell", 3, {226, 132, 147}
-"els", 3, {226, 170, 149}
-"elsdot", 3, {226, 170, 151}
-"Emacr", 2, {196, 146}
-"emacr", 2, {196, 147}
-"empty", 3, {226, 136, 133}
-"emptyset", 3, {226, 136, 133}
-"EmptySmallSquare", 3, {226, 151, 187}
-"emptyv", 3, {226, 136, 133}
-"EmptyVerySmallSquare", 3, {226, 150, 171}
-"emsp13", 3, {226, 128, 132}
-"emsp14", 3, {226, 128, 133}
-"emsp", 3, {226, 128, 131}
-"ENG", 2, {197, 138}
-"eng", 2, {197, 139}
-"ensp", 3, {226, 128, 130}
-"Eogon", 2, {196, 152}
-"eogon", 2, {196, 153}
-"Eopf", 4, {240, 157, 148, 188}
-"eopf", 4, {240, 157, 149, 150}
-"epar", 3, {226, 139, 149}
-"eparsl", 3, {226, 167, 163}
-"eplus", 3, {226, 169, 177}
-"epsi", 2, {206, 181}
-"Epsilon", 2, {206, 149}
-"epsilon", 2, {206, 181}
-"epsiv", 2, {207, 181}
-"eqcirc", 3, {226, 137, 150}
-"eqcolon", 3, {226, 137, 149}
-"eqsim", 3, {226, 137, 130}
-"eqslantgtr", 3, {226, 170, 150}
-"eqslantless", 3, {226, 170, 149}
-"Equal", 3, {226, 169, 181}
-"equals", 1, {61}
-"EqualTilde", 3, {226, 137, 130}
-"equest", 3, {226, 137, 159}
-"Equilibrium", 3, {226, 135, 140}
-"equiv", 3, {226, 137, 161}
-"equivDD", 3, {226, 169, 184}
-"eqvparsl", 3, {226, 167, 165}
-"erarr", 3, {226, 165, 177}
-"erDot", 3, {226, 137, 147}
-"escr", 3, {226, 132, 175}
-"Escr", 3, {226, 132, 176}
-"esdot", 3, {226, 137, 144}
-"Esim", 3, {226, 169, 179}
-"esim", 3, {226, 137, 130}
-"Eta", 2, {206, 151}
-"eta", 2, {206, 183}
-"ETH", 2, {195, 144}
-"eth", 2, {195, 176}
-"Euml", 2, {195, 139}
-"euml", 2, {195, 171}
-"euro", 3, {226, 130, 172}
-"excl", 1, {33}
-"exist", 3, {226, 136, 131}
-"Exists", 3, {226, 136, 131}
-"expectation", 3, {226, 132, 176}
-"exponentiale", 3, {226, 133, 135}
-"ExponentialE", 3, {226, 133, 135}
-"fallingdotseq", 3, {226, 137, 146}
-"Fcy", 2, {208, 164}
-"fcy", 2, {209, 132}
-"female", 3, {226, 153, 128}
-"ffilig", 3, {239, 172, 131}
-"fflig", 3, {239, 172, 128}
-"ffllig", 3, {239, 172, 132}
-"Ffr", 4, {240, 157, 148, 137}
-"ffr", 4, {240, 157, 148, 163}
-"filig", 3, {239, 172, 129}
-"FilledSmallSquare", 3, {226, 151, 188}
-"FilledVerySmallSquare", 3, {226, 150, 170}
-"fjlig", 1, {102}
-"flat", 3, {226, 153, 173}
-"fllig", 3, {239, 172, 130}
-"fltns", 3, {226, 150, 177}
-"fnof", 2, {198, 146}
-"Fopf", 4, {240, 157, 148, 189}
-"fopf", 4, {240, 157, 149, 151}
-"forall", 3, {226, 136, 128}
-"ForAll", 3, {226, 136, 128}
-"fork", 3, {226, 139, 148}
-"forkv", 3, {226, 171, 153}
-"Fouriertrf", 3, {226, 132, 177}
-"fpartint", 3, {226, 168, 141}
-"frac12", 2, {194, 189}
-"frac13", 3, {226, 133, 147}
-"frac14", 2, {194, 188}
-"frac15", 3, {226, 133, 149}
-"frac16", 3, {226, 133, 153}
-"frac18", 3, {226, 133, 155}
-"frac23", 3, {226, 133, 148}
-"frac25", 3, {226, 133, 150}
-"frac34", 2, {194, 190}
-"frac35", 3, {226, 133, 151}
-"frac38", 3, {226, 133, 156}
-"frac45", 3, {226, 133, 152}
-"frac56", 3, {226, 133, 154}
-"frac58", 3, {226, 133, 157}
-"frac78", 3, {226, 133, 158}
-"frasl", 3, {226, 129, 132}
-"frown", 3, {226, 140, 162}
-"fscr", 4, {240, 157, 146, 187}
-"Fscr", 3, {226, 132, 177}
-"gacute", 2, {199, 181}
-"Gamma", 2, {206, 147}
-"gamma", 2, {206, 179}
-"Gammad", 2, {207, 156}
-"gammad", 2, {207, 157}
-"gap", 3, {226, 170, 134}
-"Gbreve", 2, {196, 158}
-"gbreve", 2, {196, 159}
-"Gcedil", 2, {196, 162}
-"Gcirc", 2, {196, 156}
-"gcirc", 2, {196, 157}
-"Gcy", 2, {208, 147}
-"gcy", 2, {208, 179}
-"Gdot", 2, {196, 160}
-"gdot", 2, {196, 161}
-"ge", 3, {226, 137, 165}
-"gE", 3, {226, 137, 167}
-"gEl", 3, {226, 170, 140}
-"gel", 3, {226, 139, 155}
-"geq", 3, {226, 137, 165}
-"geqq", 3, {226, 137, 167}
-"geqslant", 3, {226, 169, 190}
-"gescc", 3, {226, 170, 169}
-"ges", 3, {226, 169, 190}
-"gesdot", 3, {226, 170, 128}
-"gesdoto", 3, {226, 170, 130}
-"gesdotol", 3, {226, 170, 132}
-"gesl", 3, {226, 139, 155}
-"gesles", 3, {226, 170, 148}
-"Gfr", 4, {240, 157, 148, 138}
-"gfr", 4, {240, 157, 148, 164}
-"gg", 3, {226, 137, 171}
-"Gg", 3, {226, 139, 153}
-"ggg", 3, {226, 139, 153}
-"gimel", 3, {226, 132, 183}
-"GJcy", 2, {208, 131}
-"gjcy", 2, {209, 147}
-"gla", 3, {226, 170, 165}
-"gl", 3, {226, 137, 183}
-"glE", 3, {226, 170, 146}
-"glj", 3, {226, 170, 164}
-"gnap", 3, {226, 170, 138}
-"gnapprox", 3, {226, 170, 138}
-"gne", 3, {226, 170, 136}
-"gnE", 3, {226, 137, 169}
-"gneq", 3, {226, 170, 136}
-"gneqq", 3, {226, 137, 169}
-"gnsim", 3, {226, 139, 167}
-"Gopf", 4, {240, 157, 148, 190}
-"gopf", 4, {240, 157, 149, 152}
-"grave", 1, {96}
-"GreaterEqual", 3, {226, 137, 165}
-"GreaterEqualLess", 3, {226, 139, 155}
-"GreaterFullEqual", 3, {226, 137, 167}
-"GreaterGreater", 3, {226, 170, 162}
-"GreaterLess", 3, {226, 137, 183}
-"GreaterSlantEqual", 3, {226, 169, 190}
-"GreaterTilde", 3, {226, 137, 179}
-"Gscr", 4, {240, 157, 146, 162}
-"gscr", 3, {226, 132, 138}
-"gsim", 3, {226, 137, 179}
-"gsime", 3, {226, 170, 142}
-"gsiml", 3, {226, 170, 144}
-"gtcc", 3, {226, 170, 167}
-"gtcir", 3, {226, 169, 186}
-"gt", 1, {62}
-"GT", 1, {62}
-"Gt", 3, {226, 137, 171}
-"gtdot", 3, {226, 139, 151}
-"gtlPar", 3, {226, 166, 149}
-"gtquest", 3, {226, 169, 188}
-"gtrapprox", 3, {226, 170, 134}
-"gtrarr", 3, {226, 165, 184}
-"gtrdot", 3, {226, 139, 151}
-"gtreqless", 3, {226, 139, 155}
-"gtreqqless", 3, {226, 170, 140}
-"gtrless", 3, {226, 137, 183}
-"gtrsim", 3, {226, 137, 179}
-"gvertneqq", 3, {226, 137, 169}
-"gvnE", 3, {226, 137, 169}
-"Hacek", 2, {203, 135}
-"hairsp", 3, {226, 128, 138}
-"half", 2, {194, 189}
-"hamilt", 3, {226, 132, 139}
-"HARDcy", 2, {208, 170}
-"hardcy", 2, {209, 138}
-"harrcir", 3, {226, 165, 136}
-"harr", 3, {226, 134, 148}
-"hArr", 3, {226, 135, 148}
-"harrw", 3, {226, 134, 173}
-"Hat", 1, {94}
-"hbar", 3, {226, 132, 143}
-"Hcirc", 2, {196, 164}
-"hcirc", 2, {196, 165}
-"hearts", 3, {226, 153, 165}
-"heartsuit", 3, {226, 153, 165}
-"hellip", 3, {226, 128, 166}
-"hercon", 3, {226, 138, 185}
-"hfr", 4, {240, 157, 148, 165}
-"Hfr", 3, {226, 132, 140}
-"HilbertSpace", 3, {226, 132, 139}
-"hksearow", 3, {226, 164, 165}
-"hkswarow", 3, {226, 164, 166}
-"hoarr", 3, {226, 135, 191}
-"homtht", 3, {226, 136, 187}
-"hookleftarrow", 3, {226, 134, 169}
-"hookrightarrow", 3, {226, 134, 170}
-"hopf", 4, {240, 157, 149, 153}
-"Hopf", 3, {226, 132, 141}
-"horbar", 3, {226, 128, 149}
-"HorizontalLine", 3, {226, 148, 128}
-"hscr", 4, {240, 157, 146, 189}
-"Hscr", 3, {226, 132, 139}
-"hslash", 3, {226, 132, 143}
-"Hstrok", 2, {196, 166}
-"hstrok", 2, {196, 167}
-"HumpDownHump", 3, {226, 137, 142}
-"HumpEqual", 3, {226, 137, 143}
-"hybull", 3, {226, 129, 131}
-"hyphen", 3, {226, 128, 144}
-"Iacute", 2, {195, 141}
-"iacute", 2, {195, 173}
-"ic", 3, {226, 129, 163}
-"Icirc", 2, {195, 142}
-"icirc", 2, {195, 174}
-"Icy", 2, {208, 152}
-"icy", 2, {208, 184}
-"Idot", 2, {196, 176}
-"IEcy", 2, {208, 149}
-"iecy", 2, {208, 181}
-"iexcl", 2, {194, 161}
-"iff", 3, {226, 135, 148}
-"ifr", 4, {240, 157, 148, 166}
-"Ifr", 3, {226, 132, 145}
-"Igrave", 2, {195, 140}
-"igrave", 2, {195, 172}
-"ii", 3, {226, 133, 136}
-"iiiint", 3, {226, 168, 140}
-"iiint", 3, {226, 136, 173}
-"iinfin", 3, {226, 167, 156}
-"iiota", 3, {226, 132, 169}
-"IJlig", 2, {196, 178}
-"ijlig", 2, {196, 179}
-"Imacr", 2, {196, 170}
-"imacr", 2, {196, 171}
-"image", 3, {226, 132, 145}
-"ImaginaryI", 3, {226, 133, 136}
-"imagline", 3, {226, 132, 144}
-"imagpart", 3, {226, 132, 145}
-"imath", 2, {196, 177}
-"Im", 3, {226, 132, 145}
-"imof", 3, {226, 138, 183}
-"imped", 2, {198, 181}
-"Implies", 3, {226, 135, 146}
-"incare", 3, {226, 132, 133}
-"in", 3, {226, 136, 136}
-"infin", 3, {226, 136, 158}
-"infintie", 3, {226, 167, 157}
-"inodot", 2, {196, 177}
-"intcal", 3, {226, 138, 186}
-"int", 3, {226, 136, 171}
-"Int", 3, {226, 136, 172}
-"integers", 3, {226, 132, 164}
-"Integral", 3, {226, 136, 171}
-"intercal", 3, {226, 138, 186}
-"Intersection", 3, {226, 139, 130}
-"intlarhk", 3, {226, 168, 151}
-"intprod", 3, {226, 168, 188}
-"InvisibleComma", 3, {226, 129, 163}
-"InvisibleTimes", 3, {226, 129, 162}
-"IOcy", 2, {208, 129}
-"iocy", 2, {209, 145}
-"Iogon", 2, {196, 174}
-"iogon", 2, {196, 175}
-"Iopf", 4, {240, 157, 149, 128}
-"iopf", 4, {240, 157, 149, 154}
-"Iota", 2, {206, 153}
-"iota", 2, {206, 185}
-"iprod", 3, {226, 168, 188}
-"iquest", 2, {194, 191}
-"iscr", 4, {240, 157, 146, 190}
-"Iscr", 3, {226, 132, 144}
-"isin", 3, {226, 136, 136}
-"isindot", 3, {226, 139, 181}
-"isinE", 3, {226, 139, 185}
-"isins", 3, {226, 139, 180}
-"isinsv", 3, {226, 139, 179}
-"isinv", 3, {226, 136, 136}
-"it", 3, {226, 129, 162}
-"Itilde", 2, {196, 168}
-"itilde", 2, {196, 169}
-"Iukcy", 2, {208, 134}
-"iukcy", 2, {209, 150}
-"Iuml", 2, {195, 143}
-"iuml", 2, {195, 175}
-"Jcirc", 2, {196, 180}
-"jcirc", 2, {196, 181}
-"Jcy", 2, {208, 153}
-"jcy", 2, {208, 185}
-"Jfr", 4, {240, 157, 148, 141}
-"jfr", 4, {240, 157, 148, 167}
-"jmath", 2, {200, 183}
-"Jopf", 4, {240, 157, 149, 129}
-"jopf", 4, {240, 157, 149, 155}
-"Jscr", 4, {240, 157, 146, 165}
-"jscr", 4, {240, 157, 146, 191}
-"Jsercy", 2, {208, 136}
-"jsercy", 2, {209, 152}
-"Jukcy", 2, {208, 132}
-"jukcy", 2, {209, 148}
-"Kappa", 2, {206, 154}
-"kappa", 2, {206, 186}
-"kappav", 2, {207, 176}
-"Kcedil", 2, {196, 182}
-"kcedil", 2, {196, 183}
-"Kcy", 2, {208, 154}
-"kcy", 2, {208, 186}
-"Kfr", 4, {240, 157, 148, 142}
-"kfr", 4, {240, 157, 148, 168}
-"kgreen", 2, {196, 184}
-"KHcy", 2, {208, 165}
-"khcy", 2, {209, 133}
-"KJcy", 2, {208, 140}
-"kjcy", 2, {209, 156}
-"Kopf", 4, {240, 157, 149, 130}
-"kopf", 4, {240, 157, 149, 156}
-"Kscr", 4, {240, 157, 146, 166}
-"kscr", 4, {240, 157, 147, 128}
-"lAarr", 3, {226, 135, 154}
-"Lacute", 2, {196, 185}
-"lacute", 2, {196, 186}
-"laemptyv", 3, {226, 166, 180}
-"lagran", 3, {226, 132, 146}
-"Lambda", 2, {206, 155}
-"lambda", 2, {206, 187}
-"lang", 3, {226, 159, 168}
-"Lang", 3, {226, 159, 170}
-"langd", 3, {226, 166, 145}
-"langle", 3, {226, 159, 168}
-"lap", 3, {226, 170, 133}
-"Laplacetrf", 3, {226, 132, 146}
-"laquo", 2, {194, 171}
-"larrb", 3, {226, 135, 164}
-"larrbfs", 3, {226, 164, 159}
-"larr", 3, {226, 134, 144}
-"Larr", 3, {226, 134, 158}
-"lArr", 3, {226, 135, 144}
-"larrfs", 3, {226, 164, 157}
-"larrhk", 3, {226, 134, 169}
-"larrlp", 3, {226, 134, 171}
-"larrpl", 3, {226, 164, 185}
-"larrsim", 3, {226, 165, 179}
-"larrtl", 3, {226, 134, 162}
-"latail", 3, {226, 164, 153}
-"lAtail", 3, {226, 164, 155}
-"lat", 3, {226, 170, 171}
-"late", 3, {226, 170, 173}
-"lates", 3, {226, 170, 173}
-"lbarr", 3, {226, 164, 140}
-"lBarr", 3, {226, 164, 142}
-"lbbrk", 3, {226, 157, 178}
-"lbrace", 1, {123}
-"lbrack", 1, {91}
-"lbrke", 3, {226, 166, 139}
-"lbrksld", 3, {226, 166, 143}
-"lbrkslu", 3, {226, 166, 141}
-"Lcaron", 2, {196, 189}
-"lcaron", 2, {196, 190}
-"Lcedil", 2, {196, 187}
-"lcedil", 2, {196, 188}
-"lceil", 3, {226, 140, 136}
-"lcub", 1, {123}
-"Lcy", 2, {208, 155}
-"lcy", 2, {208, 187}
-"ldca", 3, {226, 164, 182}
-"ldquo", 3, {226, 128, 156}
-"ldquor", 3, {226, 128, 158}
-"ldrdhar", 3, {226, 165, 167}
-"ldrushar", 3, {226, 165, 139}
-"ldsh", 3, {226, 134, 178}
-"le", 3, {226, 137, 164}
-"lE", 3, {226, 137, 166}
-"LeftAngleBracket", 3, {226, 159, 168}
-"LeftArrowBar", 3, {226, 135, 164}
-"leftarrow", 3, {226, 134, 144}
-"LeftArrow", 3, {226, 134, 144}
-"Leftarrow", 3, {226, 135, 144}
-"LeftArrowRightArrow", 3, {226, 135, 134}
-"leftarrowtail", 3, {226, 134, 162}
-"LeftCeiling", 3, {226, 140, 136}
-"LeftDoubleBracket", 3, {226, 159, 166}
-"LeftDownTeeVector", 3, {226, 165, 161}
-"LeftDownVectorBar", 3, {226, 165, 153}
-"LeftDownVector", 3, {226, 135, 131}
-"LeftFloor", 3, {226, 140, 138}
-"leftharpoondown", 3, {226, 134, 189}
-"leftharpoonup", 3, {226, 134, 188}
-"leftleftarrows", 3, {226, 135, 135}
-"leftrightarrow", 3, {226, 134, 148}
-"LeftRightArrow", 3, {226, 134, 148}
-"Leftrightarrow", 3, {226, 135, 148}
-"leftrightarrows", 3, {226, 135, 134}
-"leftrightharpoons", 3, {226, 135, 139}
-"leftrightsquigarrow", 3, {226, 134, 173}
-"LeftRightVector", 3, {226, 165, 142}
-"LeftTeeArrow", 3, {226, 134, 164}
-"LeftTee", 3, {226, 138, 163}
-"LeftTeeVector", 3, {226, 165, 154}
-"leftthreetimes", 3, {226, 139, 139}
-"LeftTriangleBar", 3, {226, 167, 143}
-"LeftTriangle", 3, {226, 138, 178}
-"LeftTriangleEqual", 3, {226, 138, 180}
-"LeftUpDownVector", 3, {226, 165, 145}
-"LeftUpTeeVector", 3, {226, 165, 160}
-"LeftUpVectorBar", 3, {226, 165, 152}
-"LeftUpVector", 3, {226, 134, 191}
-"LeftVectorBar", 3, {226, 165, 146}
-"LeftVector", 3, {226, 134, 188}
-"lEg", 3, {226, 170, 139}
-"leg", 3, {226, 139, 154}
-"leq", 3, {226, 137, 164}
-"leqq", 3, {226, 137, 166}
-"leqslant", 3, {226, 169, 189}
-"lescc", 3, {226, 170, 168}
-"les", 3, {226, 169, 189}
-"lesdot", 3, {226, 169, 191}
-"lesdoto", 3, {226, 170, 129}
-"lesdotor", 3, {226, 170, 131}
-"lesg", 3, {226, 139, 154}
-"lesges", 3, {226, 170, 147}
-"lessapprox", 3, {226, 170, 133}
-"lessdot", 3, {226, 139, 150}
-"lesseqgtr", 3, {226, 139, 154}
-"lesseqqgtr", 3, {226, 170, 139}
-"LessEqualGreater", 3, {226, 139, 154}
-"LessFullEqual", 3, {226, 137, 166}
-"LessGreater", 3, {226, 137, 182}
-"lessgtr", 3, {226, 137, 182}
-"LessLess", 3, {226, 170, 161}
-"lesssim", 3, {226, 137, 178}
-"LessSlantEqual", 3, {226, 169, 189}
-"LessTilde", 3, {226, 137, 178}
-"lfisht", 3, {226, 165, 188}
-"lfloor", 3, {226, 140, 138}
-"Lfr", 4, {240, 157, 148, 143}
-"lfr", 4, {240, 157, 148, 169}
-"lg", 3, {226, 137, 182}
-"lgE", 3, {226, 170, 145}
-"lHar", 3, {226, 165, 162}
-"lhard", 3, {226, 134, 189}
-"lharu", 3, {226, 134, 188}
-"lharul", 3, {226, 165, 170}
-"lhblk", 3, {226, 150, 132}
-"LJcy", 2, {208, 137}
-"ljcy", 2, {209, 153}
-"llarr", 3, {226, 135, 135}
-"ll", 3, {226, 137, 170}
-"Ll", 3, {226, 139, 152}
-"llcorner", 3, {226, 140, 158}
-"Lleftarrow", 3, {226, 135, 154}
-"llhard", 3, {226, 165, 171}
-"lltri", 3, {226, 151, 186}
-"Lmidot", 2, {196, 191}
-"lmidot", 2, {197, 128}
-"lmoustache", 3, {226, 142, 176}
-"lmoust", 3, {226, 142, 176}
-"lnap", 3, {226, 170, 137}
-"lnapprox", 3, {226, 170, 137}
-"lne", 3, {226, 170, 135}
-"lnE", 3, {226, 137, 168}
-"lneq", 3, {226, 170, 135}
-"lneqq", 3, {226, 137, 168}
-"lnsim", 3, {226, 139, 166}
-"loang", 3, {226, 159, 172}
-"loarr", 3, {226, 135, 189}
-"lobrk", 3, {226, 159, 166}
-"longleftarrow", 3, {226, 159, 181}
-"LongLeftArrow", 3, {226, 159, 181}
-"Longleftarrow", 3, {226, 159, 184}
-"longleftrightarrow", 3, {226, 159, 183}
-"LongLeftRightArrow", 3, {226, 159, 183}
-"Longleftrightarrow", 3, {226, 159, 186}
-"longmapsto", 3, {226, 159, 188}
-"longrightarrow", 3, {226, 159, 182}
-"LongRightArrow", 3, {226, 159, 182}
-"Longrightarrow", 3, {226, 159, 185}
-"looparrowleft", 3, {226, 134, 171}
-"looparrowright", 3, {226, 134, 172}
-"lopar", 3, {226, 166, 133}
-"Lopf", 4, {240, 157, 149, 131}
-"lopf", 4, {240, 157, 149, 157}
-"loplus", 3, {226, 168, 173}
-"lotimes", 3, {226, 168, 180}
-"lowast", 3, {226, 136, 151}
-"lowbar", 1, {95}
-"LowerLeftArrow", 3, {226, 134, 153}
-"LowerRightArrow", 3, {226, 134, 152}
-"loz", 3, {226, 151, 138}
-"lozenge", 3, {226, 151, 138}
-"lozf", 3, {226, 167, 171}
-"lpar", 1, {40}
-"lparlt", 3, {226, 166, 147}
-"lrarr", 3, {226, 135, 134}
-"lrcorner", 3, {226, 140, 159}
-"lrhar", 3, {226, 135, 139}
-"lrhard", 3, {226, 165, 173}
-"lrm", 3, {226, 128, 142}
-"lrtri", 3, {226, 138, 191}
-"lsaquo", 3, {226, 128, 185}
-"lscr", 4, {240, 157, 147, 129}
-"Lscr", 3, {226, 132, 146}
-"lsh", 3, {226, 134, 176}
-"Lsh", 3, {226, 134, 176}
-"lsim", 3, {226, 137, 178}
-"lsime", 3, {226, 170, 141}
-"lsimg", 3, {226, 170, 143}
-"lsqb", 1, {91}
-"lsquo", 3, {226, 128, 152}
-"lsquor", 3, {226, 128, 154}
-"Lstrok", 2, {197, 129}
-"lstrok", 2, {197, 130}
-"ltcc", 3, {226, 170, 166}
-"ltcir", 3, {226, 169, 185}
-"lt", 1, {60}
-"LT", 1, {60}
-"Lt", 3, {226, 137, 170}
-"ltdot", 3, {226, 139, 150}
-"lthree", 3, {226, 139, 139}
-"ltimes", 3, {226, 139, 137}
-"ltlarr", 3, {226, 165, 182}
-"ltquest", 3, {226, 169, 187}
-"ltri", 3, {226, 151, 131}
-"ltrie", 3, {226, 138, 180}
-"ltrif", 3, {226, 151, 130}
-"ltrPar", 3, {226, 166, 150}
-"lurdshar", 3, {226, 165, 138}
-"luruhar", 3, {226, 165, 166}
-"lvertneqq", 3, {226, 137, 168}
-"lvnE", 3, {226, 137, 168}
-"macr", 2, {194, 175}
-"male", 3, {226, 153, 130}
-"malt", 3, {226, 156, 160}
-"maltese", 3, {226, 156, 160}
-"Map", 3, {226, 164, 133}
-"map", 3, {226, 134, 166}
-"mapsto", 3, {226, 134, 166}
-"mapstodown", 3, {226, 134, 167}
-"mapstoleft", 3, {226, 134, 164}
-"mapstoup", 3, {226, 134, 165}
-"marker", 3, {226, 150, 174}
-"mcomma", 3, {226, 168, 169}
-"Mcy", 2, {208, 156}
-"mcy", 2, {208, 188}
-"mdash", 3, {226, 128, 148}
-"mDDot", 3, {226, 136, 186}
-"measuredangle", 3, {226, 136, 161}
-"MediumSpace", 3, {226, 129, 159}
-"Mellintrf", 3, {226, 132, 179}
-"Mfr", 4, {240, 157, 148, 144}
-"mfr", 4, {240, 157, 148, 170}
-"mho", 3, {226, 132, 167}
-"micro", 2, {194, 181}
-"midast", 1, {42}
-"midcir", 3, {226, 171, 176}
-"mid", 3, {226, 136, 163}
-"middot", 2, {194, 183}
-"minusb", 3, {226, 138, 159}
-"minus", 3, {226, 136, 146}
-"minusd", 3, {226, 136, 184}
-"minusdu", 3, {226, 168, 170}
-"MinusPlus", 3, {226, 136, 147}
-"mlcp", 3, {226, 171, 155}
-"mldr", 3, {226, 128, 166}
-"mnplus", 3, {226, 136, 147}
-"models", 3, {226, 138, 167}
-"Mopf", 4, {240, 157, 149, 132}
-"mopf", 4, {240, 157, 149, 158}
-"mp", 3, {226, 136, 147}
-"mscr", 4, {240, 157, 147, 130}
-"Mscr", 3, {226, 132, 179}
-"mstpos", 3, {226, 136, 190}
-"Mu", 2, {206, 156}
-"mu", 2, {206, 188}
-"multimap", 3, {226, 138, 184}
-"mumap", 3, {226, 138, 184}
-"nabla", 3, {226, 136, 135}
-"Nacute", 2, {197, 131}
-"nacute", 2, {197, 132}
-"nang", 3, {226, 136, 160}
-"nap", 3, {226, 137, 137}
-"napE", 3, {226, 169, 176}
-"napid", 3, {226, 137, 139}
-"napos", 2, {197, 137}
-"napprox", 3, {226, 137, 137}
-"natural", 3, {226, 153, 174}
-"naturals", 3, {226, 132, 149}
-"natur", 3, {226, 153, 174}
-"nbsp", 2, {194, 160}
-"nbump", 3, {226, 137, 142}
-"nbumpe", 3, {226, 137, 143}
-"ncap", 3, {226, 169, 131}
-"Ncaron", 2, {197, 135}
-"ncaron", 2, {197, 136}
-"Ncedil", 2, {197, 133}
-"ncedil", 2, {197, 134}
-"ncong", 3, {226, 137, 135}
-"ncongdot", 3, {226, 169, 173}
-"ncup", 3, {226, 169, 130}
-"Ncy", 2, {208, 157}
-"ncy", 2, {208, 189}
-"ndash", 3, {226, 128, 147}
-"nearhk", 3, {226, 164, 164}
-"nearr", 3, {226, 134, 151}
-"neArr", 3, {226, 135, 151}
-"nearrow", 3, {226, 134, 151}
-"ne", 3, {226, 137, 160}
-"nedot", 3, {226, 137, 144}
-"NegativeMediumSpace", 3, {226, 128, 139}
-"NegativeThickSpace", 3, {226, 128, 139}
-"NegativeThinSpace", 3, {226, 128, 139}
-"NegativeVeryThinSpace", 3, {226, 128, 139}
-"nequiv", 3, {226, 137, 162}
-"nesear", 3, {226, 164, 168}
-"nesim", 3, {226, 137, 130}
-"NestedGreaterGreater", 3, {226, 137, 171}
-"NestedLessLess", 3, {226, 137, 170}
-"NewLine", 1, {10}
-"nexist", 3, {226, 136, 132}
-"nexists", 3, {226, 136, 132}
-"Nfr", 4, {240, 157, 148, 145}
-"nfr", 4, {240, 157, 148, 171}
-"ngE", 3, {226, 137, 167}
-"nge", 3, {226, 137, 177}
-"ngeq", 3, {226, 137, 177}
-"ngeqq", 3, {226, 137, 167}
-"ngeqslant", 3, {226, 169, 190}
-"nges", 3, {226, 169, 190}
-"nGg", 3, {226, 139, 153}
-"ngsim", 3, {226, 137, 181}
-"nGt", 3, {226, 137, 171}
-"ngt", 3, {226, 137, 175}
-"ngtr", 3, {226, 137, 175}
-"nGtv", 3, {226, 137, 171}
-"nharr", 3, {226, 134, 174}
-"nhArr", 3, {226, 135, 142}
-"nhpar", 3, {226, 171, 178}
-"ni", 3, {226, 136, 139}
-"nis", 3, {226, 139, 188}
-"nisd", 3, {226, 139, 186}
-"niv", 3, {226, 136, 139}
-"NJcy", 2, {208, 138}
-"njcy", 2, {209, 154}
-"nlarr", 3, {226, 134, 154}
-"nlArr", 3, {226, 135, 141}
-"nldr", 3, {226, 128, 165}
-"nlE", 3, {226, 137, 166}
-"nle", 3, {226, 137, 176}
-"nleftarrow", 3, {226, 134, 154}
-"nLeftarrow", 3, {226, 135, 141}
-"nleftrightarrow", 3, {226, 134, 174}
-"nLeftrightarrow", 3, {226, 135, 142}
-"nleq", 3, {226, 137, 176}
-"nleqq", 3, {226, 137, 166}
-"nleqslant", 3, {226, 169, 189}
-"nles", 3, {226, 169, 189}
-"nless", 3, {226, 137, 174}
-"nLl", 3, {226, 139, 152}
-"nlsim", 3, {226, 137, 180}
-"nLt", 3, {226, 137, 170}
-"nlt", 3, {226, 137, 174}
-"nltri", 3, {226, 139, 170}
-"nltrie", 3, {226, 139, 172}
-"nLtv", 3, {226, 137, 170}
-"nmid", 3, {226, 136, 164}
-"NoBreak", 3, {226, 129, 160}
-"NonBreakingSpace", 2, {194, 160}
-"nopf", 4, {240, 157, 149, 159}
-"Nopf", 3, {226, 132, 149}
-"Not", 3, {226, 171, 172}
-"not", 2, {194, 172}
-"NotCongruent", 3, {226, 137, 162}
-"NotCupCap", 3, {226, 137, 173}
-"NotDoubleVerticalBar", 3, {226, 136, 166}
-"NotElement", 3, {226, 136, 137}
-"NotEqual", 3, {226, 137, 160}
-"NotEqualTilde", 3, {226, 137, 130}
-"NotExists", 3, {226, 136, 132}
-"NotGreater", 3, {226, 137, 175}
-"NotGreaterEqual", 3, {226, 137, 177}
-"NotGreaterFullEqual", 3, {226, 137, 167}
-"NotGreaterGreater", 3, {226, 137, 171}
-"NotGreaterLess", 3, {226, 137, 185}
-"NotGreaterSlantEqual", 3, {226, 169, 190}
-"NotGreaterTilde", 3, {226, 137, 181}
-"NotHumpDownHump", 3, {226, 137, 142}
-"NotHumpEqual", 3, {226, 137, 143}
-"notin", 3, {226, 136, 137}
-"notindot", 3, {226, 139, 181}
-"notinE", 3, {226, 139, 185}
-"notinva", 3, {226, 136, 137}
-"notinvb", 3, {226, 139, 183}
-"notinvc", 3, {226, 139, 182}
-"NotLeftTriangleBar", 3, {226, 167, 143}
-"NotLeftTriangle", 3, {226, 139, 170}
-"NotLeftTriangleEqual", 3, {226, 139, 172}
-"NotLess", 3, {226, 137, 174}
-"NotLessEqual", 3, {226, 137, 176}
-"NotLessGreater", 3, {226, 137, 184}
-"NotLessLess", 3, {226, 137, 170}
-"NotLessSlantEqual", 3, {226, 169, 189}
-"NotLessTilde", 3, {226, 137, 180}
-"NotNestedGreaterGreater", 3, {226, 170, 162}
-"NotNestedLessLess", 3, {226, 170, 161}
-"notni", 3, {226, 136, 140}
-"notniva", 3, {226, 136, 140}
-"notnivb", 3, {226, 139, 190}
-"notnivc", 3, {226, 139, 189}
-"NotPrecedes", 3, {226, 138, 128}
-"NotPrecedesEqual", 3, {226, 170, 175}
-"NotPrecedesSlantEqual", 3, {226, 139, 160}
-"NotReverseElement", 3, {226, 136, 140}
-"NotRightTriangleBar", 3, {226, 167, 144}
-"NotRightTriangle", 3, {226, 139, 171}
-"NotRightTriangleEqual", 3, {226, 139, 173}
-"NotSquareSubset", 3, {226, 138, 143}
-"NotSquareSubsetEqual", 3, {226, 139, 162}
-"NotSquareSuperset", 3, {226, 138, 144}
-"NotSquareSupersetEqual", 3, {226, 139, 163}
-"NotSubset", 3, {226, 138, 130}
-"NotSubsetEqual", 3, {226, 138, 136}
-"NotSucceeds", 3, {226, 138, 129}
-"NotSucceedsEqual", 3, {226, 170, 176}
-"NotSucceedsSlantEqual", 3, {226, 139, 161}
-"NotSucceedsTilde", 3, {226, 137, 191}
-"NotSuperset", 3, {226, 138, 131}
-"NotSupersetEqual", 3, {226, 138, 137}
-"NotTilde", 3, {226, 137, 129}
-"NotTildeEqual", 3, {226, 137, 132}
-"NotTildeFullEqual", 3, {226, 137, 135}
-"NotTildeTilde", 3, {226, 137, 137}
-"NotVerticalBar", 3, {226, 136, 164}
-"nparallel", 3, {226, 136, 166}
-"npar", 3, {226, 136, 166}
-"nparsl", 3, {226, 171, 189}
-"npart", 3, {226, 136, 130}
-"npolint", 3, {226, 168, 148}
-"npr", 3, {226, 138, 128}
-"nprcue", 3, {226, 139, 160}
-"nprec", 3, {226, 138, 128}
-"npreceq", 3, {226, 170, 175}
-"npre", 3, {226, 170, 175}
-"nrarrc", 3, {226, 164, 179}
-"nrarr", 3, {226, 134, 155}
-"nrArr", 3, {226, 135, 143}
-"nrarrw", 3, {226, 134, 157}
-"nrightarrow", 3, {226, 134, 155}
-"nRightarrow", 3, {226, 135, 143}
-"nrtri", 3, {226, 139, 171}
-"nrtrie", 3, {226, 139, 173}
-"nsc", 3, {226, 138, 129}
-"nsccue", 3, {226, 139, 161}
-"nsce", 3, {226, 170, 176}
-"Nscr", 4, {240, 157, 146, 169}
-"nscr", 4, {240, 157, 147, 131}
-"nshortmid", 3, {226, 136, 164}
-"nshortparallel", 3, {226, 136, 166}
-"nsim", 3, {226, 137, 129}
-"nsime", 3, {226, 137, 132}
-"nsimeq", 3, {226, 137, 132}
-"nsmid", 3, {226, 136, 164}
-"nspar", 3, {226, 136, 166}
-"nsqsube", 3, {226, 139, 162}
-"nsqsupe", 3, {226, 139, 163}
-"nsub", 3, {226, 138, 132}
-"nsubE", 3, {226, 171, 133}
-"nsube", 3, {226, 138, 136}
-"nsubset", 3, {226, 138, 130}
-"nsubseteq", 3, {226, 138, 136}
-"nsubseteqq", 3, {226, 171, 133}
-"nsucc", 3, {226, 138, 129}
-"nsucceq", 3, {226, 170, 176}
-"nsup", 3, {226, 138, 133}
-"nsupE", 3, {226, 171, 134}
-"nsupe", 3, {226, 138, 137}
-"nsupset", 3, {226, 138, 131}
-"nsupseteq", 3, {226, 138, 137}
-"nsupseteqq", 3, {226, 171, 134}
-"ntgl", 3, {226, 137, 185}
-"Ntilde", 2, {195, 145}
-"ntilde", 2, {195, 177}
-"ntlg", 3, {226, 137, 184}
-"ntriangleleft", 3, {226, 139, 170}
-"ntrianglelefteq", 3, {226, 139, 172}
-"ntriangleright", 3, {226, 139, 171}
-"ntrianglerighteq", 3, {226, 139, 173}
-"Nu", 2, {206, 157}
-"nu", 2, {206, 189}
-"num", 1, {35}
-"numero", 3, {226, 132, 150}
-"numsp", 3, {226, 128, 135}
-"nvap", 3, {226, 137, 141}
-"nvdash", 3, {226, 138, 172}
-"nvDash", 3, {226, 138, 173}
-"nVdash", 3, {226, 138, 174}
-"nVDash", 3, {226, 138, 175}
-"nvge", 3, {226, 137, 165}
-"nvgt", 1, {62}
-"nvHarr", 3, {226, 164, 132}
-"nvinfin", 3, {226, 167, 158}
-"nvlArr", 3, {226, 164, 130}
-"nvle", 3, {226, 137, 164}
-"nvlt", 1, {60}
-"nvltrie", 3, {226, 138, 180}
-"nvrArr", 3, {226, 164, 131}
-"nvrtrie", 3, {226, 138, 181}
-"nvsim", 3, {226, 136, 188}
-"nwarhk", 3, {226, 164, 163}
-"nwarr", 3, {226, 134, 150}
-"nwArr", 3, {226, 135, 150}
-"nwarrow", 3, {226, 134, 150}
-"nwnear", 3, {226, 164, 167}
-"Oacute", 2, {195, 147}
-"oacute", 2, {195, 179}
-"oast", 3, {226, 138, 155}
-"Ocirc", 2, {195, 148}
-"ocirc", 2, {195, 180}
-"ocir", 3, {226, 138, 154}
-"Ocy", 2, {208, 158}
-"ocy", 2, {208, 190}
-"odash", 3, {226, 138, 157}
-"Odblac", 2, {197, 144}
-"odblac", 2, {197, 145}
-"odiv", 3, {226, 168, 184}
-"odot", 3, {226, 138, 153}
-"odsold", 3, {226, 166, 188}
-"OElig", 2, {197, 146}
-"oelig", 2, {197, 147}
-"ofcir", 3, {226, 166, 191}
-"Ofr", 4, {240, 157, 148, 146}
-"ofr", 4, {240, 157, 148, 172}
-"ogon", 2, {203, 155}
-"Ograve", 2, {195, 146}
-"ograve", 2, {195, 178}
-"ogt", 3, {226, 167, 129}
-"ohbar", 3, {226, 166, 181}
-"ohm", 2, {206, 169}
-"oint", 3, {226, 136, 174}
-"olarr", 3, {226, 134, 186}
-"olcir", 3, {226, 166, 190}
-"olcross", 3, {226, 166, 187}
-"oline", 3, {226, 128, 190}
-"olt", 3, {226, 167, 128}
-"Omacr", 2, {197, 140}
-"omacr", 2, {197, 141}
-"Omega", 2, {206, 169}
-"omega", 2, {207, 137}
-"Omicron", 2, {206, 159}
-"omicron", 2, {206, 191}
-"omid", 3, {226, 166, 182}
-"ominus", 3, {226, 138, 150}
-"Oopf", 4, {240, 157, 149, 134}
-"oopf", 4, {240, 157, 149, 160}
-"opar", 3, {226, 166, 183}
-"OpenCurlyDoubleQuote", 3, {226, 128, 156}
-"OpenCurlyQuote", 3, {226, 128, 152}
-"operp", 3, {226, 166, 185}
-"oplus", 3, {226, 138, 149}
-"orarr", 3, {226, 134, 187}
-"Or", 3, {226, 169, 148}
-"or", 3, {226, 136, 168}
-"ord", 3, {226, 169, 157}
-"order", 3, {226, 132, 180}
-"orderof", 3, {226, 132, 180}
-"ordf", 2, {194, 170}
-"ordm", 2, {194, 186}
-"origof", 3, {226, 138, 182}
-"oror", 3, {226, 169, 150}
-"orslope", 3, {226, 169, 151}
-"orv", 3, {226, 169, 155}
-"oS", 3, {226, 147, 136}
-"Oscr", 4, {240, 157, 146, 170}
-"oscr", 3, {226, 132, 180}
-"Oslash", 2, {195, 152}
-"oslash", 2, {195, 184}
-"osol", 3, {226, 138, 152}
-"Otilde", 2, {195, 149}
-"otilde", 2, {195, 181}
-"otimesas", 3, {226, 168, 182}
-"Otimes", 3, {226, 168, 183}
-"otimes", 3, {226, 138, 151}
-"Ouml", 2, {195, 150}
-"ouml", 2, {195, 182}
-"ovbar", 3, {226, 140, 189}
-"OverBar", 3, {226, 128, 190}
-"OverBrace", 3, {226, 143, 158}
-"OverBracket", 3, {226, 142, 180}
-"OverParenthesis", 3, {226, 143, 156}
-"para", 2, {194, 182}
-"parallel", 3, {226, 136, 165}
-"par", 3, {226, 136, 165}
-"parsim", 3, {226, 171, 179}
-"parsl", 3, {226, 171, 189}
-"part", 3, {226, 136, 130}
-"PartialD", 3, {226, 136, 130}
-"Pcy", 2, {208, 159}
-"pcy", 2, {208, 191}
-"percnt", 1, {37}
-"period", 1, {46}
-"permil", 3, {226, 128, 176}
-"perp", 3, {226, 138, 165}
-"pertenk", 3, {226, 128, 177}
-"Pfr", 4, {240, 157, 148, 147}
-"pfr", 4, {240, 157, 148, 173}
-"Phi", 2, {206, 166}
-"phi", 2, {207, 134}
-"phiv", 2, {207, 149}
-"phmmat", 3, {226, 132, 179}
-"phone", 3, {226, 152, 142}
-"Pi", 2, {206, 160}
-"pi", 2, {207, 128}
-"pitchfork", 3, {226, 139, 148}
-"piv", 2, {207, 150}
-"planck", 3, {226, 132, 143}
-"planckh", 3, {226, 132, 142}
-"plankv", 3, {226, 132, 143}
-"plusacir", 3, {226, 168, 163}
-"plusb", 3, {226, 138, 158}
-"pluscir", 3, {226, 168, 162}
-"plus", 1, {43}
-"plusdo", 3, {226, 136, 148}
-"plusdu", 3, {226, 168, 165}
-"pluse", 3, {226, 169, 178}
-"PlusMinus", 2, {194, 177}
-"plusmn", 2, {194, 177}
-"plussim", 3, {226, 168, 166}
-"plustwo", 3, {226, 168, 167}
-"pm", 2, {194, 177}
-"Poincareplane", 3, {226, 132, 140}
-"pointint", 3, {226, 168, 149}
-"popf", 4, {240, 157, 149, 161}
-"Popf", 3, {226, 132, 153}
-"pound", 2, {194, 163}
-"prap", 3, {226, 170, 183}
-"Pr", 3, {226, 170, 187}
-"pr", 3, {226, 137, 186}
-"prcue", 3, {226, 137, 188}
-"precapprox", 3, {226, 170, 183}
-"prec", 3, {226, 137, 186}
-"preccurlyeq", 3, {226, 137, 188}
-"Precedes", 3, {226, 137, 186}
-"PrecedesEqual", 3, {226, 170, 175}
-"PrecedesSlantEqual", 3, {226, 137, 188}
-"PrecedesTilde", 3, {226, 137, 190}
-"preceq", 3, {226, 170, 175}
-"precnapprox", 3, {226, 170, 185}
-"precneqq", 3, {226, 170, 181}
-"precnsim", 3, {226, 139, 168}
-"pre", 3, {226, 170, 175}
-"prE", 3, {226, 170, 179}
-"precsim", 3, {226, 137, 190}
-"prime", 3, {226, 128, 178}
-"Prime", 3, {226, 128, 179}
-"primes", 3, {226, 132, 153}
-"prnap", 3, {226, 170, 185}
-"prnE", 3, {226, 170, 181}
-"prnsim", 3, {226, 139, 168}
-"prod", 3, {226, 136, 143}
-"Product", 3, {226, 136, 143}
-"profalar", 3, {226, 140, 174}
-"profline", 3, {226, 140, 146}
-"profsurf", 3, {226, 140, 147}
-"prop", 3, {226, 136, 157}
-"Proportional", 3, {226, 136, 157}
-"Proportion", 3, {226, 136, 183}
-"propto", 3, {226, 136, 157}
-"prsim", 3, {226, 137, 190}
-"prurel", 3, {226, 138, 176}
-"Pscr", 4, {240, 157, 146, 171}
-"pscr", 4, {240, 157, 147, 133}
-"Psi", 2, {206, 168}
-"psi", 2, {207, 136}
-"puncsp", 3, {226, 128, 136}
-"Qfr", 4, {240, 157, 148, 148}
-"qfr", 4, {240, 157, 148, 174}
-"qint", 3, {226, 168, 140}
-"qopf", 4, {240, 157, 149, 162}
-"Qopf", 3, {226, 132, 154}
-"qprime", 3, {226, 129, 151}
-"Qscr", 4, {240, 157, 146, 172}
-"qscr", 4, {240, 157, 147, 134}
-"quaternions", 3, {226, 132, 141}
-"quatint", 3, {226, 168, 150}
-"quest", 1, {63}
-"questeq", 3, {226, 137, 159}
-"quot", 1, {34}
-"QUOT", 1, {34}
-"rAarr", 3, {226, 135, 155}
-"race", 3, {226, 136, 189}
-"Racute", 2, {197, 148}
-"racute", 2, {197, 149}
-"radic", 3, {226, 136, 154}
-"raemptyv", 3, {226, 166, 179}
-"rang", 3, {226, 159, 169}
-"Rang", 3, {226, 159, 171}
-"rangd", 3, {226, 166, 146}
-"range", 3, {226, 166, 165}
-"rangle", 3, {226, 159, 169}
-"raquo", 2, {194, 187}
-"rarrap", 3, {226, 165, 181}
-"rarrb", 3, {226, 135, 165}
-"rarrbfs", 3, {226, 164, 160}
-"rarrc", 3, {226, 164, 179}
-"rarr", 3, {226, 134, 146}
-"Rarr", 3, {226, 134, 160}
-"rArr", 3, {226, 135, 146}
-"rarrfs", 3, {226, 164, 158}
-"rarrhk", 3, {226, 134, 170}
-"rarrlp", 3, {226, 134, 172}
-"rarrpl", 3, {226, 165, 133}
-"rarrsim", 3, {226, 165, 180}
-"Rarrtl", 3, {226, 164, 150}
-"rarrtl", 3, {226, 134, 163}
-"rarrw", 3, {226, 134, 157}
-"ratail", 3, {226, 164, 154}
-"rAtail", 3, {226, 164, 156}
-"ratio", 3, {226, 136, 182}
-"rationals", 3, {226, 132, 154}
-"rbarr", 3, {226, 164, 141}
-"rBarr", 3, {226, 164, 143}
-"RBarr", 3, {226, 164, 144}
-"rbbrk", 3, {226, 157, 179}
-"rbrace", 1, {125}
-"rbrack", 1, {93}
-"rbrke", 3, {226, 166, 140}
-"rbrksld", 3, {226, 166, 142}
-"rbrkslu", 3, {226, 166, 144}
-"Rcaron", 2, {197, 152}
-"rcaron", 2, {197, 153}
-"Rcedil", 2, {197, 150}
-"rcedil", 2, {197, 151}
-"rceil", 3, {226, 140, 137}
-"rcub", 1, {125}
-"Rcy", 2, {208, 160}
-"rcy", 2, {209, 128}
-"rdca", 3, {226, 164, 183}
-"rdldhar", 3, {226, 165, 169}
-"rdquo", 3, {226, 128, 157}
-"rdquor", 3, {226, 128, 157}
-"rdsh", 3, {226, 134, 179}
-"real", 3, {226, 132, 156}
-"realine", 3, {226, 132, 155}
-"realpart", 3, {226, 132, 156}
-"reals", 3, {226, 132, 157}
-"Re", 3, {226, 132, 156}
-"rect", 3, {226, 150, 173}
-"reg", 2, {194, 174}
-"REG", 2, {194, 174}
-"ReverseElement", 3, {226, 136, 139}
-"ReverseEquilibrium", 3, {226, 135, 139}
-"ReverseUpEquilibrium", 3, {226, 165, 175}
-"rfisht", 3, {226, 165, 189}
-"rfloor", 3, {226, 140, 139}
-"rfr", 4, {240, 157, 148, 175}
-"Rfr", 3, {226, 132, 156}
-"rHar", 3, {226, 165, 164}
-"rhard", 3, {226, 135, 129}
-"rharu", 3, {226, 135, 128}
-"rharul", 3, {226, 165, 172}
-"Rho", 2, {206, 161}
-"rho", 2, {207, 129}
-"rhov", 2, {207, 177}
-"RightAngleBracket", 3, {226, 159, 169}
-"RightArrowBar", 3, {226, 135, 165}
-"rightarrow", 3, {226, 134, 146}
-"RightArrow", 3, {226, 134, 146}
-"Rightarrow", 3, {226, 135, 146}
-"RightArrowLeftArrow", 3, {226, 135, 132}
-"rightarrowtail", 3, {226, 134, 163}
-"RightCeiling", 3, {226, 140, 137}
-"RightDoubleBracket", 3, {226, 159, 167}
-"RightDownTeeVector", 3, {226, 165, 157}
-"RightDownVectorBar", 3, {226, 165, 149}
-"RightDownVector", 3, {226, 135, 130}
-"RightFloor", 3, {226, 140, 139}
-"rightharpoondown", 3, {226, 135, 129}
-"rightharpoonup", 3, {226, 135, 128}
-"rightleftarrows", 3, {226, 135, 132}
-"rightleftharpoons", 3, {226, 135, 140}
-"rightrightarrows", 3, {226, 135, 137}
-"rightsquigarrow", 3, {226, 134, 157}
-"RightTeeArrow", 3, {226, 134, 166}
-"RightTee", 3, {226, 138, 162}
-"RightTeeVector", 3, {226, 165, 155}
-"rightthreetimes", 3, {226, 139, 140}
-"RightTriangleBar", 3, {226, 167, 144}
-"RightTriangle", 3, {226, 138, 179}
-"RightTriangleEqual", 3, {226, 138, 181}
-"RightUpDownVector", 3, {226, 165, 143}
-"RightUpTeeVector", 3, {226, 165, 156}
-"RightUpVectorBar", 3, {226, 165, 148}
-"RightUpVector", 3, {226, 134, 190}
-"RightVectorBar", 3, {226, 165, 147}
-"RightVector", 3, {226, 135, 128}
-"ring", 2, {203, 154}
-"risingdotseq", 3, {226, 137, 147}
-"rlarr", 3, {226, 135, 132}
-"rlhar", 3, {226, 135, 140}
-"rlm", 3, {226, 128, 143}
-"rmoustache", 3, {226, 142, 177}
-"rmoust", 3, {226, 142, 177}
-"rnmid", 3, {226, 171, 174}
-"roang", 3, {226, 159, 173}
-"roarr", 3, {226, 135, 190}
-"robrk", 3, {226, 159, 167}
-"ropar", 3, {226, 166, 134}
-"ropf", 4, {240, 157, 149, 163}
-"Ropf", 3, {226, 132, 157}
-"roplus", 3, {226, 168, 174}
-"rotimes", 3, {226, 168, 181}
-"RoundImplies", 3, {226, 165, 176}
-"rpar", 1, {41}
-"rpargt", 3, {226, 166, 148}
-"rppolint", 3, {226, 168, 146}
-"rrarr", 3, {226, 135, 137}
-"Rrightarrow", 3, {226, 135, 155}
-"rsaquo", 3, {226, 128, 186}
-"rscr", 4, {240, 157, 147, 135}
-"Rscr", 3, {226, 132, 155}
-"rsh", 3, {226, 134, 177}
-"Rsh", 3, {226, 134, 177}
-"rsqb", 1, {93}
-"rsquo", 3, {226, 128, 153}
-"rsquor", 3, {226, 128, 153}
-"rthree", 3, {226, 139, 140}
-"rtimes", 3, {226, 139, 138}
-"rtri", 3, {226, 150, 185}
-"rtrie", 3, {226, 138, 181}
-"rtrif", 3, {226, 150, 184}
-"rtriltri", 3, {226, 167, 142}
-"RuleDelayed", 3, {226, 167, 180}
-"ruluhar", 3, {226, 165, 168}
-"rx", 3, {226, 132, 158}
-"Sacute", 2, {197, 154}
-"sacute", 2, {197, 155}
-"sbquo", 3, {226, 128, 154}
-"scap", 3, {226, 170, 184}
-"Scaron", 2, {197, 160}
-"scaron", 2, {197, 161}
-"Sc", 3, {226, 170, 188}
-"sc", 3, {226, 137, 187}
-"sccue", 3, {226, 137, 189}
-"sce", 3, {226, 170, 176}
-"scE", 3, {226, 170, 180}
-"Scedil", 2, {197, 158}
-"scedil", 2, {197, 159}
-"Scirc", 2, {197, 156}
-"scirc", 2, {197, 157}
-"scnap", 3, {226, 170, 186}
-"scnE", 3, {226, 170, 182}
-"scnsim", 3, {226, 139, 169}
-"scpolint", 3, {226, 168, 147}
-"scsim", 3, {226, 137, 191}
-"Scy", 2, {208, 161}
-"scy", 2, {209, 129}
-"sdotb", 3, {226, 138, 161}
-"sdot", 3, {226, 139, 133}
-"sdote", 3, {226, 169, 166}
-"searhk", 3, {226, 164, 165}
-"searr", 3, {226, 134, 152}
-"seArr", 3, {226, 135, 152}
-"searrow", 3, {226, 134, 152}
-"sect", 2, {194, 167}
-"semi", 1, {59}
-"seswar", 3, {226, 164, 169}
-"setminus", 3, {226, 136, 150}
-"setmn", 3, {226, 136, 150}
-"sext", 3, {226, 156, 182}
-"Sfr", 4, {240, 157, 148, 150}
-"sfr", 4, {240, 157, 148, 176}
-"sfrown", 3, {226, 140, 162}
-"sharp", 3, {226, 153, 175}
-"SHCHcy", 2, {208, 169}
-"shchcy", 2, {209, 137}
-"SHcy", 2, {208, 168}
-"shcy", 2, {209, 136}
-"ShortDownArrow", 3, {226, 134, 147}
-"ShortLeftArrow", 3, {226, 134, 144}
-"shortmid", 3, {226, 136, 163}
-"shortparallel", 3, {226, 136, 165}
-"ShortRightArrow", 3, {226, 134, 146}
-"ShortUpArrow", 3, {226, 134, 145}
-"shy", 2, {194, 173}
-"Sigma", 2, {206, 163}
-"sigma", 2, {207, 131}
-"sigmaf", 2, {207, 130}
-"sigmav", 2, {207, 130}
-"sim", 3, {226, 136, 188}
-"simdot", 3, {226, 169, 170}
-"sime", 3, {226, 137, 131}
-"simeq", 3, {226, 137, 131}
-"simg", 3, {226, 170, 158}
-"simgE", 3, {226, 170, 160}
-"siml", 3, {226, 170, 157}
-"simlE", 3, {226, 170, 159}
-"simne", 3, {226, 137, 134}
-"simplus", 3, {226, 168, 164}
-"simrarr", 3, {226, 165, 178}
-"slarr", 3, {226, 134, 144}
-"SmallCircle", 3, {226, 136, 152}
-"smallsetminus", 3, {226, 136, 150}
-"smashp", 3, {226, 168, 179}
-"smeparsl", 3, {226, 167, 164}
-"smid", 3, {226, 136, 163}
-"smile", 3, {226, 140, 163}
-"smt", 3, {226, 170, 170}
-"smte", 3, {226, 170, 172}
-"smtes", 3, {226, 170, 172}
-"SOFTcy", 2, {208, 172}
-"softcy", 2, {209, 140}
-"solbar", 3, {226, 140, 191}
-"solb", 3, {226, 167, 132}
-"sol", 1, {47}
-"Sopf", 4, {240, 157, 149, 138}
-"sopf", 4, {240, 157, 149, 164}
-"spades", 3, {226, 153, 160}
-"spadesuit", 3, {226, 153, 160}
-"spar", 3, {226, 136, 165}
-"sqcap", 3, {226, 138, 147}
-"sqcaps", 3, {226, 138, 147}
-"sqcup", 3, {226, 138, 148}
-"sqcups", 3, {226, 138, 148}
-"Sqrt", 3, {226, 136, 154}
-"sqsub", 3, {226, 138, 143}
-"sqsube", 3, {226, 138, 145}
-"sqsubset", 3, {226, 138, 143}
-"sqsubseteq", 3, {226, 138, 145}
-"sqsup", 3, {226, 138, 144}
-"sqsupe", 3, {226, 138, 146}
-"sqsupset", 3, {226, 138, 144}
-"sqsupseteq", 3, {226, 138, 146}
-"square", 3, {226, 150, 161}
-"Square", 3, {226, 150, 161}
-"SquareIntersection", 3, {226, 138, 147}
-"SquareSubset", 3, {226, 138, 143}
-"SquareSubsetEqual", 3, {226, 138, 145}
-"SquareSuperset", 3, {226, 138, 144}
-"SquareSupersetEqual", 3, {226, 138, 146}
-"SquareUnion", 3, {226, 138, 148}
-"squarf", 3, {226, 150, 170}
-"squ", 3, {226, 150, 161}
-"squf", 3, {226, 150, 170}
-"srarr", 3, {226, 134, 146}
-"Sscr", 4, {240, 157, 146, 174}
-"sscr", 4, {240, 157, 147, 136}
-"ssetmn", 3, {226, 136, 150}
-"ssmile", 3, {226, 140, 163}
-"sstarf", 3, {226, 139, 134}
-"Star", 3, {226, 139, 134}
-"star", 3, {226, 152, 134}
-"starf", 3, {226, 152, 133}
-"straightepsilon", 2, {207, 181}
-"straightphi", 2, {207, 149}
-"strns", 2, {194, 175}
-"sub", 3, {226, 138, 130}
-"Sub", 3, {226, 139, 144}
-"subdot", 3, {226, 170, 189}
-"subE", 3, {226, 171, 133}
-"sube", 3, {226, 138, 134}
-"subedot", 3, {226, 171, 131}
-"submult", 3, {226, 171, 129}
-"subnE", 3, {226, 171, 139}
-"subne", 3, {226, 138, 138}
-"subplus", 3, {226, 170, 191}
-"subrarr", 3, {226, 165, 185}
-"subset", 3, {226, 138, 130}
-"Subset", 3, {226, 139, 144}
-"subseteq", 3, {226, 138, 134}
-"subseteqq", 3, {226, 171, 133}
-"SubsetEqual", 3, {226, 138, 134}
-"subsetneq", 3, {226, 138, 138}
-"subsetneqq", 3, {226, 171, 139}
-"subsim", 3, {226, 171, 135}
-"subsub", 3, {226, 171, 149}
-"subsup", 3, {226, 171, 147}
-"succapprox", 3, {226, 170, 184}
-"succ", 3, {226, 137, 187}
-"succcurlyeq", 3, {226, 137, 189}
-"Succeeds", 3, {226, 137, 187}
-"SucceedsEqual", 3, {226, 170, 176}
-"SucceedsSlantEqual", 3, {226, 137, 189}
-"SucceedsTilde", 3, {226, 137, 191}
-"succeq", 3, {226, 170, 176}
-"succnapprox", 3, {226, 170, 186}
-"succneqq", 3, {226, 170, 182}
-"succnsim", 3, {226, 139, 169}
-"succsim", 3, {226, 137, 191}
-"SuchThat", 3, {226, 136, 139}
-"sum", 3, {226, 136, 145}
-"Sum", 3, {226, 136, 145}
-"sung", 3, {226, 153, 170}
-"sup1", 2, {194, 185}
-"sup2", 2, {194, 178}
-"sup3", 2, {194, 179}
-"sup", 3, {226, 138, 131}
-"Sup", 3, {226, 139, 145}
-"supdot", 3, {226, 170, 190}
-"supdsub", 3, {226, 171, 152}
-"supE", 3, {226, 171, 134}
-"supe", 3, {226, 138, 135}
-"supedot", 3, {226, 171, 132}
-"Superset", 3, {226, 138, 131}
-"SupersetEqual", 3, {226, 138, 135}
-"suphsol", 3, {226, 159, 137}
-"suphsub", 3, {226, 171, 151}
-"suplarr", 3, {226, 165, 187}
-"supmult", 3, {226, 171, 130}
-"supnE", 3, {226, 171, 140}
-"supne", 3, {226, 138, 139}
-"supplus", 3, {226, 171, 128}
-"supset", 3, {226, 138, 131}
-"Supset", 3, {226, 139, 145}
-"supseteq", 3, {226, 138, 135}
-"supseteqq", 3, {226, 171, 134}
-"supsetneq", 3, {226, 138, 139}
-"supsetneqq", 3, {226, 171, 140}
-"supsim", 3, {226, 171, 136}
-"supsub", 3, {226, 171, 148}
-"supsup", 3, {226, 171, 150}
-"swarhk", 3, {226, 164, 166}
-"swarr", 3, {226, 134, 153}
-"swArr", 3, {226, 135, 153}
-"swarrow", 3, {226, 134, 153}
-"swnwar", 3, {226, 164, 170}
-"szlig", 2, {195, 159}
-"Tab", 1, {9}
-"target", 3, {226, 140, 150}
-"Tau", 2, {206, 164}
-"tau", 2, {207, 132}
-"tbrk", 3, {226, 142, 180}
-"Tcaron", 2, {197, 164}
-"tcaron", 2, {197, 165}
-"Tcedil", 2, {197, 162}
-"tcedil", 2, {197, 163}
-"Tcy", 2, {208, 162}
-"tcy", 2, {209, 130}
-"tdot", 3, {226, 131, 155}
-"telrec", 3, {226, 140, 149}
-"Tfr", 4, {240, 157, 148, 151}
-"tfr", 4, {240, 157, 148, 177}
-"there4", 3, {226, 136, 180}
-"therefore", 3, {226, 136, 180}
-"Therefore", 3, {226, 136, 180}
-"Theta", 2, {206, 152}
-"theta", 2, {206, 184}
-"thetasym", 2, {207, 145}
-"thetav", 2, {207, 145}
-"thickapprox", 3, {226, 137, 136}
-"thicksim", 3, {226, 136, 188}
-"ThickSpace", 3, {226, 129, 159}
-"ThinSpace", 3, {226, 128, 137}
-"thinsp", 3, {226, 128, 137}
-"thkap", 3, {226, 137, 136}
-"thksim", 3, {226, 136, 188}
-"THORN", 2, {195, 158}
-"thorn", 2, {195, 190}
-"tilde", 2, {203, 156}
-"Tilde", 3, {226, 136, 188}
-"TildeEqual", 3, {226, 137, 131}
-"TildeFullEqual", 3, {226, 137, 133}
-"TildeTilde", 3, {226, 137, 136}
-"timesbar", 3, {226, 168, 177}
-"timesb", 3, {226, 138, 160}
-"times", 2, {195, 151}
-"timesd", 3, {226, 168, 176}
-"tint", 3, {226, 136, 173}
-"toea", 3, {226, 164, 168}
-"topbot", 3, {226, 140, 182}
-"topcir", 3, {226, 171, 177}
-"top", 3, {226, 138, 164}
-"Topf", 4, {240, 157, 149, 139}
-"topf", 4, {240, 157, 149, 165}
-"topfork", 3, {226, 171, 154}
-"tosa", 3, {226, 164, 169}
-"tprime", 3, {226, 128, 180}
-"trade", 3, {226, 132, 162}
-"TRADE", 3, {226, 132, 162}
-"triangle", 3, {226, 150, 181}
-"triangledown", 3, {226, 150, 191}
-"triangleleft", 3, {226, 151, 131}
-"trianglelefteq", 3, {226, 138, 180}
-"triangleq", 3, {226, 137, 156}
-"triangleright", 3, {226, 150, 185}
-"trianglerighteq", 3, {226, 138, 181}
-"tridot", 3, {226, 151, 172}
-"trie", 3, {226, 137, 156}
-"triminus", 3, {226, 168, 186}
-"TripleDot", 3, {226, 131, 155}
-"triplus", 3, {226, 168, 185}
-"trisb", 3, {226, 167, 141}
-"tritime", 3, {226, 168, 187}
-"trpezium", 3, {226, 143, 162}
-"Tscr", 4, {240, 157, 146, 175}
-"tscr", 4, {240, 157, 147, 137}
-"TScy", 2, {208, 166}
-"tscy", 2, {209, 134}
-"TSHcy", 2, {208, 139}
-"tshcy", 2, {209, 155}
-"Tstrok", 2, {197, 166}
-"tstrok", 2, {197, 167}
-"twixt", 3, {226, 137, 172}
-"twoheadleftarrow", 3, {226, 134, 158}
-"twoheadrightarrow", 3, {226, 134, 160}
-"Uacute", 2, {195, 154}
-"uacute", 2, {195, 186}
-"uarr", 3, {226, 134, 145}
-"Uarr", 3, {226, 134, 159}
-"uArr", 3, {226, 135, 145}
-"Uarrocir", 3, {226, 165, 137}
-"Ubrcy", 2, {208, 142}
-"ubrcy", 2, {209, 158}
-"Ubreve", 2, {197, 172}
-"ubreve", 2, {197, 173}
-"Ucirc", 2, {195, 155}
-"ucirc", 2, {195, 187}
-"Ucy", 2, {208, 163}
-"ucy", 2, {209, 131}
-"udarr", 3, {226, 135, 133}
-"Udblac", 2, {197, 176}
-"udblac", 2, {197, 177}
-"udhar", 3, {226, 165, 174}
-"ufisht", 3, {226, 165, 190}
-"Ufr", 4, {240, 157, 148, 152}
-"ufr", 4, {240, 157, 148, 178}
-"Ugrave", 2, {195, 153}
-"ugrave", 2, {195, 185}
-"uHar", 3, {226, 165, 163}
-"uharl", 3, {226, 134, 191}
-"uharr", 3, {226, 134, 190}
-"uhblk", 3, {226, 150, 128}
-"ulcorn", 3, {226, 140, 156}
-"ulcorner", 3, {226, 140, 156}
-"ulcrop", 3, {226, 140, 143}
-"ultri", 3, {226, 151, 184}
-"Umacr", 2, {197, 170}
-"umacr", 2, {197, 171}
-"uml", 2, {194, 168}
-"UnderBar", 1, {95}
-"UnderBrace", 3, {226, 143, 159}
-"UnderBracket", 3, {226, 142, 181}
-"UnderParenthesis", 3, {226, 143, 157}
-"Union", 3, {226, 139, 131}
-"UnionPlus", 3, {226, 138, 142}
-"Uogon", 2, {197, 178}
-"uogon", 2, {197, 179}
-"Uopf", 4, {240, 157, 149, 140}
-"uopf", 4, {240, 157, 149, 166}
-"UpArrowBar", 3, {226, 164, 146}
-"uparrow", 3, {226, 134, 145}
-"UpArrow", 3, {226, 134, 145}
-"Uparrow", 3, {226, 135, 145}
-"UpArrowDownArrow", 3, {226, 135, 133}
-"updownarrow", 3, {226, 134, 149}
-"UpDownArrow", 3, {226, 134, 149}
-"Updownarrow", 3, {226, 135, 149}
-"UpEquilibrium", 3, {226, 165, 174}
-"upharpoonleft", 3, {226, 134, 191}
-"upharpoonright", 3, {226, 134, 190}
-"uplus", 3, {226, 138, 142}
-"UpperLeftArrow", 3, {226, 134, 150}
-"UpperRightArrow", 3, {226, 134, 151}
-"upsi", 2, {207, 133}
-"Upsi", 2, {207, 146}
-"upsih", 2, {207, 146}
-"Upsilon", 2, {206, 165}
-"upsilon", 2, {207, 133}
-"UpTeeArrow", 3, {226, 134, 165}
-"UpTee", 3, {226, 138, 165}
-"upuparrows", 3, {226, 135, 136}
-"urcorn", 3, {226, 140, 157}
-"urcorner", 3, {226, 140, 157}
-"urcrop", 3, {226, 140, 142}
-"Uring", 2, {197, 174}
-"uring", 2, {197, 175}
-"urtri", 3, {226, 151, 185}
-"Uscr", 4, {240, 157, 146, 176}
-"uscr", 4, {240, 157, 147, 138}
-"utdot", 3, {226, 139, 176}
-"Utilde", 2, {197, 168}
-"utilde", 2, {197, 169}
-"utri", 3, {226, 150, 181}
-"utrif", 3, {226, 150, 180}
-"uuarr", 3, {226, 135, 136}
-"Uuml", 2, {195, 156}
-"uuml", 2, {195, 188}
-"uwangle", 3, {226, 166, 167}
-"vangrt", 3, {226, 166, 156}
-"varepsilon", 2, {207, 181}
-"varkappa", 2, {207, 176}
-"varnothing", 3, {226, 136, 133}
-"varphi", 2, {207, 149}
-"varpi", 2, {207, 150}
-"varpropto", 3, {226, 136, 157}
-"varr", 3, {226, 134, 149}
-"vArr", 3, {226, 135, 149}
-"varrho", 2, {207, 177}
-"varsigma", 2, {207, 130}
-"varsubsetneq", 3, {226, 138, 138}
-"varsubsetneqq", 3, {226, 171, 139}
-"varsupsetneq", 3, {226, 138, 139}
-"varsupsetneqq", 3, {226, 171, 140}
-"vartheta", 2, {207, 145}
-"vartriangleleft", 3, {226, 138, 178}
-"vartriangleright", 3, {226, 138, 179}
-"vBar", 3, {226, 171, 168}
-"Vbar", 3, {226, 171, 171}
-"vBarv", 3, {226, 171, 169}
-"Vcy", 2, {208, 146}
-"vcy", 2, {208, 178}
-"vdash", 3, {226, 138, 162}
-"vDash", 3, {226, 138, 168}
-"Vdash", 3, {226, 138, 169}
-"VDash", 3, {226, 138, 171}
-"Vdashl", 3, {226, 171, 166}
-"veebar", 3, {226, 138, 187}
-"vee", 3, {226, 136, 168}
-"Vee", 3, {226, 139, 129}
-"veeeq", 3, {226, 137, 154}
-"vellip", 3, {226, 139, 174}
-"verbar", 1, {124}
-"Verbar", 3, {226, 128, 150}
-"vert", 1, {124}
-"Vert", 3, {226, 128, 150}
-"VerticalBar", 3, {226, 136, 163}
-"VerticalLine", 1, {124}
-"VerticalSeparator", 3, {226, 157, 152}
-"VerticalTilde", 3, {226, 137, 128}
-"VeryThinSpace", 3, {226, 128, 138}
-"Vfr", 4, {240, 157, 148, 153}
-"vfr", 4, {240, 157, 148, 179}
-"vltri", 3, {226, 138, 178}
-"vnsub", 3, {226, 138, 130}
-"vnsup", 3, {226, 138, 131}
-"Vopf", 4, {240, 157, 149, 141}
-"vopf", 4, {240, 157, 149, 167}
-"vprop", 3, {226, 136, 157}
-"vrtri", 3, {226, 138, 179}
-"Vscr", 4, {240, 157, 146, 177}
-"vscr", 4, {240, 157, 147, 139}
-"vsubnE", 3, {226, 171, 139}
-"vsubne", 3, {226, 138, 138}
-"vsupnE", 3, {226, 171, 140}
-"vsupne", 3, {226, 138, 139}
-"Vvdash", 3, {226, 138, 170}
-"vzigzag", 3, {226, 166, 154}
-"Wcirc", 2, {197, 180}
-"wcirc", 2, {197, 181}
-"wedbar", 3, {226, 169, 159}
-"wedge", 3, {226, 136, 167}
-"Wedge", 3, {226, 139, 128}
-"wedgeq", 3, {226, 137, 153}
-"weierp", 3, {226, 132, 152}
-"Wfr", 4, {240, 157, 148, 154}
-"wfr", 4, {240, 157, 148, 180}
-"Wopf", 4, {240, 157, 149, 142}
-"wopf", 4, {240, 157, 149, 168}
-"wp", 3, {226, 132, 152}
-"wr", 3, {226, 137, 128}
-"wreath", 3, {226, 137, 128}
-"Wscr", 4, {240, 157, 146, 178}
-"wscr", 4, {240, 157, 147, 140}
-"xcap", 3, {226, 139, 130}
-"xcirc", 3, {226, 151, 175}
-"xcup", 3, {226, 139, 131}
-"xdtri", 3, {226, 150, 189}
-"Xfr", 4, {240, 157, 148, 155}
-"xfr", 4, {240, 157, 148, 181}
-"xharr", 3, {226, 159, 183}
-"xhArr", 3, {226, 159, 186}
-"Xi", 2, {206, 158}
-"xi", 2, {206, 190}
-"xlarr", 3, {226, 159, 181}
-"xlArr", 3, {226, 159, 184}
-"xmap", 3, {226, 159, 188}
-"xnis", 3, {226, 139, 187}
-"xodot", 3, {226, 168, 128}
-"Xopf", 4, {240, 157, 149, 143}
-"xopf", 4, {240, 157, 149, 169}
-"xoplus", 3, {226, 168, 129}
-"xotime", 3, {226, 168, 130}
-"xrarr", 3, {226, 159, 182}
-"xrArr", 3, {226, 159, 185}
-"Xscr", 4, {240, 157, 146, 179}
-"xscr", 4, {240, 157, 147, 141}
-"xsqcup", 3, {226, 168, 134}
-"xuplus", 3, {226, 168, 132}
-"xutri", 3, {226, 150, 179}
-"xvee", 3, {226, 139, 129}
-"xwedge", 3, {226, 139, 128}
-"Yacute", 2, {195, 157}
-"yacute", 2, {195, 189}
-"YAcy", 2, {208, 175}
-"yacy", 2, {209, 143}
-"Ycirc", 2, {197, 182}
-"ycirc", 2, {197, 183}
-"Ycy", 2, {208, 171}
-"ycy", 2, {209, 139}
-"yen", 2, {194, 165}
-"Yfr", 4, {240, 157, 148, 156}
-"yfr", 4, {240, 157, 148, 182}
-"YIcy", 2, {208, 135}
-"yicy", 2, {209, 151}
-"Yopf", 4, {240, 157, 149, 144}
-"yopf", 4, {240, 157, 149, 170}
-"Yscr", 4, {240, 157, 146, 180}
-"yscr", 4, {240, 157, 147, 142}
-"YUcy", 2, {208, 174}
-"yucy", 2, {209, 142}
-"yuml", 2, {195, 191}
-"Yuml", 2, {197, 184}
-"Zacute", 2, {197, 185}
-"zacute", 2, {197, 186}
-"Zcaron", 2, {197, 189}
-"zcaron", 2, {197, 190}
-"Zcy", 2, {208, 151}
-"zcy", 2, {208, 183}
-"Zdot", 2, {197, 187}
-"zdot", 2, {197, 188}
-"zeetrf", 3, {226, 132, 168}
-"ZeroWidthSpace", 3, {226, 128, 139}
-"Zeta", 2, {206, 150}
-"zeta", 2, {206, 182}
-"zfr", 4, {240, 157, 148, 183}
-"Zfr", 3, {226, 132, 168}
-"ZHcy", 2, {208, 150}
-"zhcy", 2, {208, 182}
-"zigrarr", 3, {226, 135, 157}
-"zopf", 4, {240, 157, 149, 171}
-"Zopf", 3, {226, 132, 164}
-"Zscr", 4, {240, 157, 146, 181}
-"zscr", 4, {240, 157, 147, 143}
-"zwj", 3, {226, 128, 141}
-"zwnj", 3, {226, 128, 140}
+"Aacute", {195, 129, 0}
+"aacute", {195, 161, 0}
+"Abreve", {196, 130, 0}
+"abreve", {196, 131, 0}
+"ac", {226, 136, 190, 0}
+"acd", {226, 136, 191, 0}
+"acE", {226, 136, 190, 0}
+"Acirc", {195, 130, 0}
+"acirc", {195, 162, 0}
+"acute", {194, 180, 0}
+"Acy", {208, 144, 0}
+"acy", {208, 176, 0}
+"AElig", {195, 134, 0}
+"aelig", {195, 166, 0}
+"af", {226, 129, 161, 0}
+"Afr", {240, 157, 148, 132}
+"afr", {240, 157, 148, 158}
+"Agrave", {195, 128, 0}
+"agrave", {195, 160, 0}
+"alefsym", {226, 132, 181, 0}
+"aleph", {226, 132, 181, 0}
+"Alpha", {206, 145, 0}
+"alpha", {206, 177, 0}
+"Amacr", {196, 128, 0}
+"amacr", {196, 129, 0}
+"amalg", {226, 168, 191, 0}
+"amp", {38, 0}
+"AMP", {38, 0}
+"andand", {226, 169, 149, 0}
+"And", {226, 169, 147, 0}
+"and", {226, 136, 167, 0}
+"andd", {226, 169, 156, 0}
+"andslope", {226, 169, 152, 0}
+"andv", {226, 169, 154, 0}
+"ang", {226, 136, 160, 0}
+"ange", {226, 166, 164, 0}
+"angle", {226, 136, 160, 0}
+"angmsdaa", {226, 166, 168, 0}
+"angmsdab", {226, 166, 169, 0}
+"angmsdac", {226, 166, 170, 0}
+"angmsdad", {226, 166, 171, 0}
+"angmsdae", {226, 166, 172, 0}
+"angmsdaf", {226, 166, 173, 0}
+"angmsdag", {226, 166, 174, 0}
+"angmsdah", {226, 166, 175, 0}
+"angmsd", {226, 136, 161, 0}
+"angrt", {226, 136, 159, 0}
+"angrtvb", {226, 138, 190, 0}
+"angrtvbd", {226, 166, 157, 0}
+"angsph", {226, 136, 162, 0}
+"angst", {195, 133, 0}
+"angzarr", {226, 141, 188, 0}
+"Aogon", {196, 132, 0}
+"aogon", {196, 133, 0}
+"Aopf", {240, 157, 148, 184}
+"aopf", {240, 157, 149, 146}
+"apacir", {226, 169, 175, 0}
+"ap", {226, 137, 136, 0}
+"apE", {226, 169, 176, 0}
+"ape", {226, 137, 138, 0}
+"apid", {226, 137, 139, 0}
+"apos", {39, 0}
+"ApplyFunction", {226, 129, 161, 0}
+"approx", {226, 137, 136, 0}
+"approxeq", {226, 137, 138, 0}
+"Aring", {195, 133, 0}
+"aring", {195, 165, 0}
+"Ascr", {240, 157, 146, 156}
+"ascr", {240, 157, 146, 182}
+"Assign", {226, 137, 148, 0}
+"ast", {42, 0}
+"asymp", {226, 137, 136, 0}
+"asympeq", {226, 137, 141, 0}
+"Atilde", {195, 131, 0}
+"atilde", {195, 163, 0}
+"Auml", {195, 132, 0}
+"auml", {195, 164, 0}
+"awconint", {226, 136, 179, 0}
+"awint", {226, 168, 145, 0}
+"backcong", {226, 137, 140, 0}
+"backepsilon", {207, 182, 0}
+"backprime", {226, 128, 181, 0}
+"backsim", {226, 136, 189, 0}
+"backsimeq", {226, 139, 141, 0}
+"Backslash", {226, 136, 150, 0}
+"Barv", {226, 171, 167, 0}
+"barvee", {226, 138, 189, 0}
+"barwed", {226, 140, 133, 0}
+"Barwed", {226, 140, 134, 0}
+"barwedge", {226, 140, 133, 0}
+"bbrk", {226, 142, 181, 0}
+"bbrktbrk", {226, 142, 182, 0}
+"bcong", {226, 137, 140, 0}
+"Bcy", {208, 145, 0}
+"bcy", {208, 177, 0}
+"bdquo", {226, 128, 158, 0}
+"becaus", {226, 136, 181, 0}
+"because", {226, 136, 181, 0}
+"Because", {226, 136, 181, 0}
+"bemptyv", {226, 166, 176, 0}
+"bepsi", {207, 182, 0}
+"bernou", {226, 132, 172, 0}
+"Bernoullis", {226, 132, 172, 0}
+"Beta", {206, 146, 0}
+"beta", {206, 178, 0}
+"beth", {226, 132, 182, 0}
+"between", {226, 137, 172, 0}
+"Bfr", {240, 157, 148, 133}
+"bfr", {240, 157, 148, 159}
+"bigcap", {226, 139, 130, 0}
+"bigcirc", {226, 151, 175, 0}
+"bigcup", {226, 139, 131, 0}
+"bigodot", {226, 168, 128, 0}
+"bigoplus", {226, 168, 129, 0}
+"bigotimes", {226, 168, 130, 0}
+"bigsqcup", {226, 168, 134, 0}
+"bigstar", {226, 152, 133, 0}
+"bigtriangledown", {226, 150, 189, 0}
+"bigtriangleup", {226, 150, 179, 0}
+"biguplus", {226, 168, 132, 0}
+"bigvee", {226, 139, 129, 0}
+"bigwedge", {226, 139, 128, 0}
+"bkarow", {226, 164, 141, 0}
+"blacklozenge", {226, 167, 171, 0}
+"blacksquare", {226, 150, 170, 0}
+"blacktriangle", {226, 150, 180, 0}
+"blacktriangledown", {226, 150, 190, 0}
+"blacktriangleleft", {226, 151, 130, 0}
+"blacktriangleright", {226, 150, 184, 0}
+"blank", {226, 144, 163, 0}
+"blk12", {226, 150, 146, 0}
+"blk14", {226, 150, 145, 0}
+"blk34", {226, 150, 147, 0}
+"block", {226, 150, 136, 0}
+"bne", {61, 0}
+"bnequiv", {226, 137, 161, 0}
+"bNot", {226, 171, 173, 0}
+"bnot", {226, 140, 144, 0}
+"Bopf", {240, 157, 148, 185}
+"bopf", {240, 157, 149, 147}
+"bot", {226, 138, 165, 0}
+"bottom", {226, 138, 165, 0}
+"bowtie", {226, 139, 136, 0}
+"boxbox", {226, 167, 137, 0}
+"boxdl", {226, 148, 144, 0}
+"boxdL", {226, 149, 149, 0}
+"boxDl", {226, 149, 150, 0}
+"boxDL", {226, 149, 151, 0}
+"boxdr", {226, 148, 140, 0}
+"boxdR", {226, 149, 146, 0}
+"boxDr", {226, 149, 147, 0}
+"boxDR", {226, 149, 148, 0}
+"boxh", {226, 148, 128, 0}
+"boxH", {226, 149, 144, 0}
+"boxhd", {226, 148, 172, 0}
+"boxHd", {226, 149, 164, 0}
+"boxhD", {226, 149, 165, 0}
+"boxHD", {226, 149, 166, 0}
+"boxhu", {226, 148, 180, 0}
+"boxHu", {226, 149, 167, 0}
+"boxhU", {226, 149, 168, 0}
+"boxHU", {226, 149, 169, 0}
+"boxminus", {226, 138, 159, 0}
+"boxplus", {226, 138, 158, 0}
+"boxtimes", {226, 138, 160, 0}
+"boxul", {226, 148, 152, 0}
+"boxuL", {226, 149, 155, 0}
+"boxUl", {226, 149, 156, 0}
+"boxUL", {226, 149, 157, 0}
+"boxur", {226, 148, 148, 0}
+"boxuR", {226, 149, 152, 0}
+"boxUr", {226, 149, 153, 0}
+"boxUR", {226, 149, 154, 0}
+"boxv", {226, 148, 130, 0}
+"boxV", {226, 149, 145, 0}
+"boxvh", {226, 148, 188, 0}
+"boxvH", {226, 149, 170, 0}
+"boxVh", {226, 149, 171, 0}
+"boxVH", {226, 149, 172, 0}
+"boxvl", {226, 148, 164, 0}
+"boxvL", {226, 149, 161, 0}
+"boxVl", {226, 149, 162, 0}
+"boxVL", {226, 149, 163, 0}
+"boxvr", {226, 148, 156, 0}
+"boxvR", {226, 149, 158, 0}
+"boxVr", {226, 149, 159, 0}
+"boxVR", {226, 149, 160, 0}
+"bprime", {226, 128, 181, 0}
+"breve", {203, 152, 0}
+"Breve", {203, 152, 0}
+"brvbar", {194, 166, 0}
+"bscr", {240, 157, 146, 183}
+"Bscr", {226, 132, 172, 0}
+"bsemi", {226, 129, 143, 0}
+"bsim", {226, 136, 189, 0}
+"bsime", {226, 139, 141, 0}
+"bsolb", {226, 167, 133, 0}
+"bsol", {92, 0}
+"bsolhsub", {226, 159, 136, 0}
+"bull", {226, 128, 162, 0}
+"bullet", {226, 128, 162, 0}
+"bump", {226, 137, 142, 0}
+"bumpE", {226, 170, 174, 0}
+"bumpe", {226, 137, 143, 0}
+"Bumpeq", {226, 137, 142, 0}
+"bumpeq", {226, 137, 143, 0}
+"Cacute", {196, 134, 0}
+"cacute", {196, 135, 0}
+"capand", {226, 169, 132, 0}
+"capbrcup", {226, 169, 137, 0}
+"capcap", {226, 169, 139, 0}
+"cap", {226, 136, 169, 0}
+"Cap", {226, 139, 146, 0}
+"capcup", {226, 169, 135, 0}
+"capdot", {226, 169, 128, 0}
+"CapitalDifferentialD", {226, 133, 133, 0}
+"caps", {226, 136, 169, 0}
+"caret", {226, 129, 129, 0}
+"caron", {203, 135, 0}
+"Cayleys", {226, 132, 173, 0}
+"ccaps", {226, 169, 141, 0}
+"Ccaron", {196, 140, 0}
+"ccaron", {196, 141, 0}
+"Ccedil", {195, 135, 0}
+"ccedil", {195, 167, 0}
+"Ccirc", {196, 136, 0}
+"ccirc", {196, 137, 0}
+"Cconint", {226, 136, 176, 0}
+"ccups", {226, 169, 140, 0}
+"ccupssm", {226, 169, 144, 0}
+"Cdot", {196, 138, 0}
+"cdot", {196, 139, 0}
+"cedil", {194, 184, 0}
+"Cedilla", {194, 184, 0}
+"cemptyv", {226, 166, 178, 0}
+"cent", {194, 162, 0}
+"centerdot", {194, 183, 0}
+"CenterDot", {194, 183, 0}
+"cfr", {240, 157, 148, 160}
+"Cfr", {226, 132, 173, 0}
+"CHcy", {208, 167, 0}
+"chcy", {209, 135, 0}
+"check", {226, 156, 147, 0}
+"checkmark", {226, 156, 147, 0}
+"Chi", {206, 167, 0}
+"chi", {207, 135, 0}
+"circ", {203, 134, 0}
+"circeq", {226, 137, 151, 0}
+"circlearrowleft", {226, 134, 186, 0}
+"circlearrowright", {226, 134, 187, 0}
+"circledast", {226, 138, 155, 0}
+"circledcirc", {226, 138, 154, 0}
+"circleddash", {226, 138, 157, 0}
+"CircleDot", {226, 138, 153, 0}
+"circledR", {194, 174, 0}
+"circledS", {226, 147, 136, 0}
+"CircleMinus", {226, 138, 150, 0}
+"CirclePlus", {226, 138, 149, 0}
+"CircleTimes", {226, 138, 151, 0}
+"cir", {226, 151, 139, 0}
+"cirE", {226, 167, 131, 0}
+"cire", {226, 137, 151, 0}
+"cirfnint", {226, 168, 144, 0}
+"cirmid", {226, 171, 175, 0}
+"cirscir", {226, 167, 130, 0}
+"ClockwiseContourIntegral", {226, 136, 178, 0}
+"CloseCurlyDoubleQuote", {226, 128, 157, 0}
+"CloseCurlyQuote", {226, 128, 153, 0}
+"clubs", {226, 153, 163, 0}
+"clubsuit", {226, 153, 163, 0}
+"colon", {58, 0}
+"Colon", {226, 136, 183, 0}
+"Colone", {226, 169, 180, 0}
+"colone", {226, 137, 148, 0}
+"coloneq", {226, 137, 148, 0}
+"comma", {44, 0}
+"commat", {64, 0}
+"comp", {226, 136, 129, 0}
+"compfn", {226, 136, 152, 0}
+"complement", {226, 136, 129, 0}
+"complexes", {226, 132, 130, 0}
+"cong", {226, 137, 133, 0}
+"congdot", {226, 169, 173, 0}
+"Congruent", {226, 137, 161, 0}
+"conint", {226, 136, 174, 0}
+"Conint", {226, 136, 175, 0}
+"ContourIntegral", {226, 136, 174, 0}
+"copf", {240, 157, 149, 148}
+"Copf", {226, 132, 130, 0}
+"coprod", {226, 136, 144, 0}
+"Coproduct", {226, 136, 144, 0}
+"copy", {194, 169, 0}
+"COPY", {194, 169, 0}
+"copysr", {226, 132, 151, 0}
+"CounterClockwiseContourIntegral", {226, 136, 179, 0}
+"crarr", {226, 134, 181, 0}
+"cross", {226, 156, 151, 0}
+"Cross", {226, 168, 175, 0}
+"Cscr", {240, 157, 146, 158}
+"cscr", {240, 157, 146, 184}
+"csub", {226, 171, 143, 0}
+"csube", {226, 171, 145, 0}
+"csup", {226, 171, 144, 0}
+"csupe", {226, 171, 146, 0}
+"ctdot", {226, 139, 175, 0}
+"cudarrl", {226, 164, 184, 0}
+"cudarrr", {226, 164, 181, 0}
+"cuepr", {226, 139, 158, 0}
+"cuesc", {226, 139, 159, 0}
+"cularr", {226, 134, 182, 0}
+"cularrp", {226, 164, 189, 0}
+"cupbrcap", {226, 169, 136, 0}
+"cupcap", {226, 169, 134, 0}
+"CupCap", {226, 137, 141, 0}
+"cup", {226, 136, 170, 0}
+"Cup", {226, 139, 147, 0}
+"cupcup", {226, 169, 138, 0}
+"cupdot", {226, 138, 141, 0}
+"cupor", {226, 169, 133, 0}
+"cups", {226, 136, 170, 0}
+"curarr", {226, 134, 183, 0}
+"curarrm", {226, 164, 188, 0}
+"curlyeqprec", {226, 139, 158, 0}
+"curlyeqsucc", {226, 139, 159, 0}
+"curlyvee", {226, 139, 142, 0}
+"curlywedge", {226, 139, 143, 0}
+"curren", {194, 164, 0}
+"curvearrowleft", {226, 134, 182, 0}
+"curvearrowright", {226, 134, 183, 0}
+"cuvee", {226, 139, 142, 0}
+"cuwed", {226, 139, 143, 0}
+"cwconint", {226, 136, 178, 0}
+"cwint", {226, 136, 177, 0}
+"cylcty", {226, 140, 173, 0}
+"dagger", {226, 128, 160, 0}
+"Dagger", {226, 128, 161, 0}
+"daleth", {226, 132, 184, 0}
+"darr", {226, 134, 147, 0}
+"Darr", {226, 134, 161, 0}
+"dArr", {226, 135, 147, 0}
+"dash", {226, 128, 144, 0}
+"Dashv", {226, 171, 164, 0}
+"dashv", {226, 138, 163, 0}
+"dbkarow", {226, 164, 143, 0}
+"dblac", {203, 157, 0}
+"Dcaron", {196, 142, 0}
+"dcaron", {196, 143, 0}
+"Dcy", {208, 148, 0}
+"dcy", {208, 180, 0}
+"ddagger", {226, 128, 161, 0}
+"ddarr", {226, 135, 138, 0}
+"DD", {226, 133, 133, 0}
+"dd", {226, 133, 134, 0}
+"DDotrahd", {226, 164, 145, 0}
+"ddotseq", {226, 169, 183, 0}
+"deg", {194, 176, 0}
+"Del", {226, 136, 135, 0}
+"Delta", {206, 148, 0}
+"delta", {206, 180, 0}
+"demptyv", {226, 166, 177, 0}
+"dfisht", {226, 165, 191, 0}
+"Dfr", {240, 157, 148, 135}
+"dfr", {240, 157, 148, 161}
+"dHar", {226, 165, 165, 0}
+"dharl", {226, 135, 131, 0}
+"dharr", {226, 135, 130, 0}
+"DiacriticalAcute", {194, 180, 0}
+"DiacriticalDot", {203, 153, 0}
+"DiacriticalDoubleAcute", {203, 157, 0}
+"DiacriticalGrave", {96, 0}
+"DiacriticalTilde", {203, 156, 0}
+"diam", {226, 139, 132, 0}
+"diamond", {226, 139, 132, 0}
+"Diamond", {226, 139, 132, 0}
+"diamondsuit", {226, 153, 166, 0}
+"diams", {226, 153, 166, 0}
+"die", {194, 168, 0}
+"DifferentialD", {226, 133, 134, 0}
+"digamma", {207, 157, 0}
+"disin", {226, 139, 178, 0}
+"div", {195, 183, 0}
+"divide", {195, 183, 0}
+"divideontimes", {226, 139, 135, 0}
+"divonx", {226, 139, 135, 0}
+"DJcy", {208, 130, 0}
+"djcy", {209, 146, 0}
+"dlcorn", {226, 140, 158, 0}
+"dlcrop", {226, 140, 141, 0}
+"dollar", {36, 0}
+"Dopf", {240, 157, 148, 187}
+"dopf", {240, 157, 149, 149}
+"Dot", {194, 168, 0}
+"dot", {203, 153, 0}
+"DotDot", {226, 131, 156, 0}
+"doteq", {226, 137, 144, 0}
+"doteqdot", {226, 137, 145, 0}
+"DotEqual", {226, 137, 144, 0}
+"dotminus", {226, 136, 184, 0}
+"dotplus", {226, 136, 148, 0}
+"dotsquare", {226, 138, 161, 0}
+"doublebarwedge", {226, 140, 134, 0}
+"DoubleContourIntegral", {226, 136, 175, 0}
+"DoubleDot", {194, 168, 0}
+"DoubleDownArrow", {226, 135, 147, 0}
+"DoubleLeftArrow", {226, 135, 144, 0}
+"DoubleLeftRightArrow", {226, 135, 148, 0}
+"DoubleLeftTee", {226, 171, 164, 0}
+"DoubleLongLeftArrow", {226, 159, 184, 0}
+"DoubleLongLeftRightArrow", {226, 159, 186, 0}
+"DoubleLongRightArrow", {226, 159, 185, 0}
+"DoubleRightArrow", {226, 135, 146, 0}
+"DoubleRightTee", {226, 138, 168, 0}
+"DoubleUpArrow", {226, 135, 145, 0}
+"DoubleUpDownArrow", {226, 135, 149, 0}
+"DoubleVerticalBar", {226, 136, 165, 0}
+"DownArrowBar", {226, 164, 147, 0}
+"downarrow", {226, 134, 147, 0}
+"DownArrow", {226, 134, 147, 0}
+"Downarrow", {226, 135, 147, 0}
+"DownArrowUpArrow", {226, 135, 181, 0}
+"DownBreve", {204, 145, 0}
+"downdownarrows", {226, 135, 138, 0}
+"downharpoonleft", {226, 135, 131, 0}
+"downharpoonright", {226, 135, 130, 0}
+"DownLeftRightVector", {226, 165, 144, 0}
+"DownLeftTeeVector", {226, 165, 158, 0}
+"DownLeftVectorBar", {226, 165, 150, 0}
+"DownLeftVector", {226, 134, 189, 0}
+"DownRightTeeVector", {226, 165, 159, 0}
+"DownRightVectorBar", {226, 165, 151, 0}
+"DownRightVector", {226, 135, 129, 0}
+"DownTeeArrow", {226, 134, 167, 0}
+"DownTee", {226, 138, 164, 0}
+"drbkarow", {226, 164, 144, 0}
+"drcorn", {226, 140, 159, 0}
+"drcrop", {226, 140, 140, 0}
+"Dscr", {240, 157, 146, 159}
+"dscr", {240, 157, 146, 185}
+"DScy", {208, 133, 0}
+"dscy", {209, 149, 0}
+"dsol", {226, 167, 182, 0}
+"Dstrok", {196, 144, 0}
+"dstrok", {196, 145, 0}
+"dtdot", {226, 139, 177, 0}
+"dtri", {226, 150, 191, 0}
+"dtrif", {226, 150, 190, 0}
+"duarr", {226, 135, 181, 0}
+"duhar", {226, 165, 175, 0}
+"dwangle", {226, 166, 166, 0}
+"DZcy", {208, 143, 0}
+"dzcy", {209, 159, 0}
+"dzigrarr", {226, 159, 191, 0}
+"Eacute", {195, 137, 0}
+"eacute", {195, 169, 0}
+"easter", {226, 169, 174, 0}
+"Ecaron", {196, 154, 0}
+"ecaron", {196, 155, 0}
+"Ecirc", {195, 138, 0}
+"ecirc", {195, 170, 0}
+"ecir", {226, 137, 150, 0}
+"ecolon", {226, 137, 149, 0}
+"Ecy", {208, 173, 0}
+"ecy", {209, 141, 0}
+"eDDot", {226, 169, 183, 0}
+"Edot", {196, 150, 0}
+"edot", {196, 151, 0}
+"eDot", {226, 137, 145, 0}
+"ee", {226, 133, 135, 0}
+"efDot", {226, 137, 146, 0}
+"Efr", {240, 157, 148, 136}
+"efr", {240, 157, 148, 162}
+"eg", {226, 170, 154, 0}
+"Egrave", {195, 136, 0}
+"egrave", {195, 168, 0}
+"egs", {226, 170, 150, 0}
+"egsdot", {226, 170, 152, 0}
+"el", {226, 170, 153, 0}
+"Element", {226, 136, 136, 0}
+"elinters", {226, 143, 167, 0}
+"ell", {226, 132, 147, 0}
+"els", {226, 170, 149, 0}
+"elsdot", {226, 170, 151, 0}
+"Emacr", {196, 146, 0}
+"emacr", {196, 147, 0}
+"empty", {226, 136, 133, 0}
+"emptyset", {226, 136, 133, 0}
+"EmptySmallSquare", {226, 151, 187, 0}
+"emptyv", {226, 136, 133, 0}
+"EmptyVerySmallSquare", {226, 150, 171, 0}
+"emsp13", {226, 128, 132, 0}
+"emsp14", {226, 128, 133, 0}
+"emsp", {226, 128, 131, 0}
+"ENG", {197, 138, 0}
+"eng", {197, 139, 0}
+"ensp", {226, 128, 130, 0}
+"Eogon", {196, 152, 0}
+"eogon", {196, 153, 0}
+"Eopf", {240, 157, 148, 188}
+"eopf", {240, 157, 149, 150}
+"epar", {226, 139, 149, 0}
+"eparsl", {226, 167, 163, 0}
+"eplus", {226, 169, 177, 0}
+"epsi", {206, 181, 0}
+"Epsilon", {206, 149, 0}
+"epsilon", {206, 181, 0}
+"epsiv", {207, 181, 0}
+"eqcirc", {226, 137, 150, 0}
+"eqcolon", {226, 137, 149, 0}
+"eqsim", {226, 137, 130, 0}
+"eqslantgtr", {226, 170, 150, 0}
+"eqslantless", {226, 170, 149, 0}
+"Equal", {226, 169, 181, 0}
+"equals", {61, 0}
+"EqualTilde", {226, 137, 130, 0}
+"equest", {226, 137, 159, 0}
+"Equilibrium", {226, 135, 140, 0}
+"equiv", {226, 137, 161, 0}
+"equivDD", {226, 169, 184, 0}
+"eqvparsl", {226, 167, 165, 0}
+"erarr", {226, 165, 177, 0}
+"erDot", {226, 137, 147, 0}
+"escr", {226, 132, 175, 0}
+"Escr", {226, 132, 176, 0}
+"esdot", {226, 137, 144, 0}
+"Esim", {226, 169, 179, 0}
+"esim", {226, 137, 130, 0}
+"Eta", {206, 151, 0}
+"eta", {206, 183, 0}
+"ETH", {195, 144, 0}
+"eth", {195, 176, 0}
+"Euml", {195, 139, 0}
+"euml", {195, 171, 0}
+"euro", {226, 130, 172, 0}
+"excl", {33, 0}
+"exist", {226, 136, 131, 0}
+"Exists", {226, 136, 131, 0}
+"expectation", {226, 132, 176, 0}
+"exponentiale", {226, 133, 135, 0}
+"ExponentialE", {226, 133, 135, 0}
+"fallingdotseq", {226, 137, 146, 0}
+"Fcy", {208, 164, 0}
+"fcy", {209, 132, 0}
+"female", {226, 153, 128, 0}
+"ffilig", {239, 172, 131, 0}
+"fflig", {239, 172, 128, 0}
+"ffllig", {239, 172, 132, 0}
+"Ffr", {240, 157, 148, 137}
+"ffr", {240, 157, 148, 163}
+"filig", {239, 172, 129, 0}
+"FilledSmallSquare", {226, 151, 188, 0}
+"FilledVerySmallSquare", {226, 150, 170, 0}
+"fjlig", {102, 0}
+"flat", {226, 153, 173, 0}
+"fllig", {239, 172, 130, 0}
+"fltns", {226, 150, 177, 0}
+"fnof", {198, 146, 0}
+"Fopf", {240, 157, 148, 189}
+"fopf", {240, 157, 149, 151}
+"forall", {226, 136, 128, 0}
+"ForAll", {226, 136, 128, 0}
+"fork", {226, 139, 148, 0}
+"forkv", {226, 171, 153, 0}
+"Fouriertrf", {226, 132, 177, 0}
+"fpartint", {226, 168, 141, 0}
+"frac12", {194, 189, 0}
+"frac13", {226, 133, 147, 0}
+"frac14", {194, 188, 0}
+"frac15", {226, 133, 149, 0}
+"frac16", {226, 133, 153, 0}
+"frac18", {226, 133, 155, 0}
+"frac23", {226, 133, 148, 0}
+"frac25", {226, 133, 150, 0}
+"frac34", {194, 190, 0}
+"frac35", {226, 133, 151, 0}
+"frac38", {226, 133, 156, 0}
+"frac45", {226, 133, 152, 0}
+"frac56", {226, 133, 154, 0}
+"frac58", {226, 133, 157, 0}
+"frac78", {226, 133, 158, 0}
+"frasl", {226, 129, 132, 0}
+"frown", {226, 140, 162, 0}
+"fscr", {240, 157, 146, 187}
+"Fscr", {226, 132, 177, 0}
+"gacute", {199, 181, 0}
+"Gamma", {206, 147, 0}
+"gamma", {206, 179, 0}
+"Gammad", {207, 156, 0}
+"gammad", {207, 157, 0}
+"gap", {226, 170, 134, 0}
+"Gbreve", {196, 158, 0}
+"gbreve", {196, 159, 0}
+"Gcedil", {196, 162, 0}
+"Gcirc", {196, 156, 0}
+"gcirc", {196, 157, 0}
+"Gcy", {208, 147, 0}
+"gcy", {208, 179, 0}
+"Gdot", {196, 160, 0}
+"gdot", {196, 161, 0}
+"ge", {226, 137, 165, 0}
+"gE", {226, 137, 167, 0}
+"gEl", {226, 170, 140, 0}
+"gel", {226, 139, 155, 0}
+"geq", {226, 137, 165, 0}
+"geqq", {226, 137, 167, 0}
+"geqslant", {226, 169, 190, 0}
+"gescc", {226, 170, 169, 0}
+"ges", {226, 169, 190, 0}
+"gesdot", {226, 170, 128, 0}
+"gesdoto", {226, 170, 130, 0}
+"gesdotol", {226, 170, 132, 0}
+"gesl", {226, 139, 155, 0}
+"gesles", {226, 170, 148, 0}
+"Gfr", {240, 157, 148, 138}
+"gfr", {240, 157, 148, 164}
+"gg", {226, 137, 171, 0}
+"Gg", {226, 139, 153, 0}
+"ggg", {226, 139, 153, 0}
+"gimel", {226, 132, 183, 0}
+"GJcy", {208, 131, 0}
+"gjcy", {209, 147, 0}
+"gla", {226, 170, 165, 0}
+"gl", {226, 137, 183, 0}
+"glE", {226, 170, 146, 0}
+"glj", {226, 170, 164, 0}
+"gnap", {226, 170, 138, 0}
+"gnapprox", {226, 170, 138, 0}
+"gne", {226, 170, 136, 0}
+"gnE", {226, 137, 169, 0}
+"gneq", {226, 170, 136, 0}
+"gneqq", {226, 137, 169, 0}
+"gnsim", {226, 139, 167, 0}
+"Gopf", {240, 157, 148, 190}
+"gopf", {240, 157, 149, 152}
+"grave", {96, 0}
+"GreaterEqual", {226, 137, 165, 0}
+"GreaterEqualLess", {226, 139, 155, 0}
+"GreaterFullEqual", {226, 137, 167, 0}
+"GreaterGreater", {226, 170, 162, 0}
+"GreaterLess", {226, 137, 183, 0}
+"GreaterSlantEqual", {226, 169, 190, 0}
+"GreaterTilde", {226, 137, 179, 0}
+"Gscr", {240, 157, 146, 162}
+"gscr", {226, 132, 138, 0}
+"gsim", {226, 137, 179, 0}
+"gsime", {226, 170, 142, 0}
+"gsiml", {226, 170, 144, 0}
+"gtcc", {226, 170, 167, 0}
+"gtcir", {226, 169, 186, 0}
+"gt", {62, 0}
+"GT", {62, 0}
+"Gt", {226, 137, 171, 0}
+"gtdot", {226, 139, 151, 0}
+"gtlPar", {226, 166, 149, 0}
+"gtquest", {226, 169, 188, 0}
+"gtrapprox", {226, 170, 134, 0}
+"gtrarr", {226, 165, 184, 0}
+"gtrdot", {226, 139, 151, 0}
+"gtreqless", {226, 139, 155, 0}
+"gtreqqless", {226, 170, 140, 0}
+"gtrless", {226, 137, 183, 0}
+"gtrsim", {226, 137, 179, 0}
+"gvertneqq", {226, 137, 169, 0}
+"gvnE", {226, 137, 169, 0}
+"Hacek", {203, 135, 0}
+"hairsp", {226, 128, 138, 0}
+"half", {194, 189, 0}
+"hamilt", {226, 132, 139, 0}
+"HARDcy", {208, 170, 0}
+"hardcy", {209, 138, 0}
+"harrcir", {226, 165, 136, 0}
+"harr", {226, 134, 148, 0}
+"hArr", {226, 135, 148, 0}
+"harrw", {226, 134, 173, 0}
+"Hat", {94, 0}
+"hbar", {226, 132, 143, 0}
+"Hcirc", {196, 164, 0}
+"hcirc", {196, 165, 0}
+"hearts", {226, 153, 165, 0}
+"heartsuit", {226, 153, 165, 0}
+"hellip", {226, 128, 166, 0}
+"hercon", {226, 138, 185, 0}
+"hfr", {240, 157, 148, 165}
+"Hfr", {226, 132, 140, 0}
+"HilbertSpace", {226, 132, 139, 0}
+"hksearow", {226, 164, 165, 0}
+"hkswarow", {226, 164, 166, 0}
+"hoarr", {226, 135, 191, 0}
+"homtht", {226, 136, 187, 0}
+"hookleftarrow", {226, 134, 169, 0}
+"hookrightarrow", {226, 134, 170, 0}
+"hopf", {240, 157, 149, 153}
+"Hopf", {226, 132, 141, 0}
+"horbar", {226, 128, 149, 0}
+"HorizontalLine", {226, 148, 128, 0}
+"hscr", {240, 157, 146, 189}
+"Hscr", {226, 132, 139, 0}
+"hslash", {226, 132, 143, 0}
+"Hstrok", {196, 166, 0}
+"hstrok", {196, 167, 0}
+"HumpDownHump", {226, 137, 142, 0}
+"HumpEqual", {226, 137, 143, 0}
+"hybull", {226, 129, 131, 0}
+"hyphen", {226, 128, 144, 0}
+"Iacute", {195, 141, 0}
+"iacute", {195, 173, 0}
+"ic", {226, 129, 163, 0}
+"Icirc", {195, 142, 0}
+"icirc", {195, 174, 0}
+"Icy", {208, 152, 0}
+"icy", {208, 184, 0}
+"Idot", {196, 176, 0}
+"IEcy", {208, 149, 0}
+"iecy", {208, 181, 0}
+"iexcl", {194, 161, 0}
+"iff", {226, 135, 148, 0}
+"ifr", {240, 157, 148, 166}
+"Ifr", {226, 132, 145, 0}
+"Igrave", {195, 140, 0}
+"igrave", {195, 172, 0}
+"ii", {226, 133, 136, 0}
+"iiiint", {226, 168, 140, 0}
+"iiint", {226, 136, 173, 0}
+"iinfin", {226, 167, 156, 0}
+"iiota", {226, 132, 169, 0}
+"IJlig", {196, 178, 0}
+"ijlig", {196, 179, 0}
+"Imacr", {196, 170, 0}
+"imacr", {196, 171, 0}
+"image", {226, 132, 145, 0}
+"ImaginaryI", {226, 133, 136, 0}
+"imagline", {226, 132, 144, 0}
+"imagpart", {226, 132, 145, 0}
+"imath", {196, 177, 0}
+"Im", {226, 132, 145, 0}
+"imof", {226, 138, 183, 0}
+"imped", {198, 181, 0}
+"Implies", {226, 135, 146, 0}
+"incare", {226, 132, 133, 0}
+"in", {226, 136, 136, 0}
+"infin", {226, 136, 158, 0}
+"infintie", {226, 167, 157, 0}
+"inodot", {196, 177, 0}
+"intcal", {226, 138, 186, 0}
+"int", {226, 136, 171, 0}
+"Int", {226, 136, 172, 0}
+"integers", {226, 132, 164, 0}
+"Integral", {226, 136, 171, 0}
+"intercal", {226, 138, 186, 0}
+"Intersection", {226, 139, 130, 0}
+"intlarhk", {226, 168, 151, 0}
+"intprod", {226, 168, 188, 0}
+"InvisibleComma", {226, 129, 163, 0}
+"InvisibleTimes", {226, 129, 162, 0}
+"IOcy", {208, 129, 0}
+"iocy", {209, 145, 0}
+"Iogon", {196, 174, 0}
+"iogon", {196, 175, 0}
+"Iopf", {240, 157, 149, 128}
+"iopf", {240, 157, 149, 154}
+"Iota", {206, 153, 0}
+"iota", {206, 185, 0}
+"iprod", {226, 168, 188, 0}
+"iquest", {194, 191, 0}
+"iscr", {240, 157, 146, 190}
+"Iscr", {226, 132, 144, 0}
+"isin", {226, 136, 136, 0}
+"isindot", {226, 139, 181, 0}
+"isinE", {226, 139, 185, 0}
+"isins", {226, 139, 180, 0}
+"isinsv", {226, 139, 179, 0}
+"isinv", {226, 136, 136, 0}
+"it", {226, 129, 162, 0}
+"Itilde", {196, 168, 0}
+"itilde", {196, 169, 0}
+"Iukcy", {208, 134, 0}
+"iukcy", {209, 150, 0}
+"Iuml", {195, 143, 0}
+"iuml", {195, 175, 0}
+"Jcirc", {196, 180, 0}
+"jcirc", {196, 181, 0}
+"Jcy", {208, 153, 0}
+"jcy", {208, 185, 0}
+"Jfr", {240, 157, 148, 141}
+"jfr", {240, 157, 148, 167}
+"jmath", {200, 183, 0}
+"Jopf", {240, 157, 149, 129}
+"jopf", {240, 157, 149, 155}
+"Jscr", {240, 157, 146, 165}
+"jscr", {240, 157, 146, 191}
+"Jsercy", {208, 136, 0}
+"jsercy", {209, 152, 0}
+"Jukcy", {208, 132, 0}
+"jukcy", {209, 148, 0}
+"Kappa", {206, 154, 0}
+"kappa", {206, 186, 0}
+"kappav", {207, 176, 0}
+"Kcedil", {196, 182, 0}
+"kcedil", {196, 183, 0}
+"Kcy", {208, 154, 0}
+"kcy", {208, 186, 0}
+"Kfr", {240, 157, 148, 142}
+"kfr", {240, 157, 148, 168}
+"kgreen", {196, 184, 0}
+"KHcy", {208, 165, 0}
+"khcy", {209, 133, 0}
+"KJcy", {208, 140, 0}
+"kjcy", {209, 156, 0}
+"Kopf", {240, 157, 149, 130}
+"kopf", {240, 157, 149, 156}
+"Kscr", {240, 157, 146, 166}
+"kscr", {240, 157, 147, 128}
+"lAarr", {226, 135, 154, 0}
+"Lacute", {196, 185, 0}
+"lacute", {196, 186, 0}
+"laemptyv", {226, 166, 180, 0}
+"lagran", {226, 132, 146, 0}
+"Lambda", {206, 155, 0}
+"lambda", {206, 187, 0}
+"lang", {226, 159, 168, 0}
+"Lang", {226, 159, 170, 0}
+"langd", {226, 166, 145, 0}
+"langle", {226, 159, 168, 0}
+"lap", {226, 170, 133, 0}
+"Laplacetrf", {226, 132, 146, 0}
+"laquo", {194, 171, 0}
+"larrb", {226, 135, 164, 0}
+"larrbfs", {226, 164, 159, 0}
+"larr", {226, 134, 144, 0}
+"Larr", {226, 134, 158, 0}
+"lArr", {226, 135, 144, 0}
+"larrfs", {226, 164, 157, 0}
+"larrhk", {226, 134, 169, 0}
+"larrlp", {226, 134, 171, 0}
+"larrpl", {226, 164, 185, 0}
+"larrsim", {226, 165, 179, 0}
+"larrtl", {226, 134, 162, 0}
+"latail", {226, 164, 153, 0}
+"lAtail", {226, 164, 155, 0}
+"lat", {226, 170, 171, 0}
+"late", {226, 170, 173, 0}
+"lates", {226, 170, 173, 0}
+"lbarr", {226, 164, 140, 0}
+"lBarr", {226, 164, 142, 0}
+"lbbrk", {226, 157, 178, 0}
+"lbrace", {123, 0}
+"lbrack", {91, 0}
+"lbrke", {226, 166, 139, 0}
+"lbrksld", {226, 166, 143, 0}
+"lbrkslu", {226, 166, 141, 0}
+"Lcaron", {196, 189, 0}
+"lcaron", {196, 190, 0}
+"Lcedil", {196, 187, 0}
+"lcedil", {196, 188, 0}
+"lceil", {226, 140, 136, 0}
+"lcub", {123, 0}
+"Lcy", {208, 155, 0}
+"lcy", {208, 187, 0}
+"ldca", {226, 164, 182, 0}
+"ldquo", {226, 128, 156, 0}
+"ldquor", {226, 128, 158, 0}
+"ldrdhar", {226, 165, 167, 0}
+"ldrushar", {226, 165, 139, 0}
+"ldsh", {226, 134, 178, 0}
+"le", {226, 137, 164, 0}
+"lE", {226, 137, 166, 0}
+"LeftAngleBracket", {226, 159, 168, 0}
+"LeftArrowBar", {226, 135, 164, 0}
+"leftarrow", {226, 134, 144, 0}
+"LeftArrow", {226, 134, 144, 0}
+"Leftarrow", {226, 135, 144, 0}
+"LeftArrowRightArrow", {226, 135, 134, 0}
+"leftarrowtail", {226, 134, 162, 0}
+"LeftCeiling", {226, 140, 136, 0}
+"LeftDoubleBracket", {226, 159, 166, 0}
+"LeftDownTeeVector", {226, 165, 161, 0}
+"LeftDownVectorBar", {226, 165, 153, 0}
+"LeftDownVector", {226, 135, 131, 0}
+"LeftFloor", {226, 140, 138, 0}
+"leftharpoondown", {226, 134, 189, 0}
+"leftharpoonup", {226, 134, 188, 0}
+"leftleftarrows", {226, 135, 135, 0}
+"leftrightarrow", {226, 134, 148, 0}
+"LeftRightArrow", {226, 134, 148, 0}
+"Leftrightarrow", {226, 135, 148, 0}
+"leftrightarrows", {226, 135, 134, 0}
+"leftrightharpoons", {226, 135, 139, 0}
+"leftrightsquigarrow", {226, 134, 173, 0}
+"LeftRightVector", {226, 165, 142, 0}
+"LeftTeeArrow", {226, 134, 164, 0}
+"LeftTee", {226, 138, 163, 0}
+"LeftTeeVector", {226, 165, 154, 0}
+"leftthreetimes", {226, 139, 139, 0}
+"LeftTriangleBar", {226, 167, 143, 0}
+"LeftTriangle", {226, 138, 178, 0}
+"LeftTriangleEqual", {226, 138, 180, 0}
+"LeftUpDownVector", {226, 165, 145, 0}
+"LeftUpTeeVector", {226, 165, 160, 0}
+"LeftUpVectorBar", {226, 165, 152, 0}
+"LeftUpVector", {226, 134, 191, 0}
+"LeftVectorBar", {226, 165, 146, 0}
+"LeftVector", {226, 134, 188, 0}
+"lEg", {226, 170, 139, 0}
+"leg", {226, 139, 154, 0}
+"leq", {226, 137, 164, 0}
+"leqq", {226, 137, 166, 0}
+"leqslant", {226, 169, 189, 0}
+"lescc", {226, 170, 168, 0}
+"les", {226, 169, 189, 0}
+"lesdot", {226, 169, 191, 0}
+"lesdoto", {226, 170, 129, 0}
+"lesdotor", {226, 170, 131, 0}
+"lesg", {226, 139, 154, 0}
+"lesges", {226, 170, 147, 0}
+"lessapprox", {226, 170, 133, 0}
+"lessdot", {226, 139, 150, 0}
+"lesseqgtr", {226, 139, 154, 0}
+"lesseqqgtr", {226, 170, 139, 0}
+"LessEqualGreater", {226, 139, 154, 0}
+"LessFullEqual", {226, 137, 166, 0}
+"LessGreater", {226, 137, 182, 0}
+"lessgtr", {226, 137, 182, 0}
+"LessLess", {226, 170, 161, 0}
+"lesssim", {226, 137, 178, 0}
+"LessSlantEqual", {226, 169, 189, 0}
+"LessTilde", {226, 137, 178, 0}
+"lfisht", {226, 165, 188, 0}
+"lfloor", {226, 140, 138, 0}
+"Lfr", {240, 157, 148, 143}
+"lfr", {240, 157, 148, 169}
+"lg", {226, 137, 182, 0}
+"lgE", {226, 170, 145, 0}
+"lHar", {226, 165, 162, 0}
+"lhard", {226, 134, 189, 0}
+"lharu", {226, 134, 188, 0}
+"lharul", {226, 165, 170, 0}
+"lhblk", {226, 150, 132, 0}
+"LJcy", {208, 137, 0}
+"ljcy", {209, 153, 0}
+"llarr", {226, 135, 135, 0}
+"ll", {226, 137, 170, 0}
+"Ll", {226, 139, 152, 0}
+"llcorner", {226, 140, 158, 0}
+"Lleftarrow", {226, 135, 154, 0}
+"llhard", {226, 165, 171, 0}
+"lltri", {226, 151, 186, 0}
+"Lmidot", {196, 191, 0}
+"lmidot", {197, 128, 0}
+"lmoustache", {226, 142, 176, 0}
+"lmoust", {226, 142, 176, 0}
+"lnap", {226, 170, 137, 0}
+"lnapprox", {226, 170, 137, 0}
+"lne", {226, 170, 135, 0}
+"lnE", {226, 137, 168, 0}
+"lneq", {226, 170, 135, 0}
+"lneqq", {226, 137, 168, 0}
+"lnsim", {226, 139, 166, 0}
+"loang", {226, 159, 172, 0}
+"loarr", {226, 135, 189, 0}
+"lobrk", {226, 159, 166, 0}
+"longleftarrow", {226, 159, 181, 0}
+"LongLeftArrow", {226, 159, 181, 0}
+"Longleftarrow", {226, 159, 184, 0}
+"longleftrightarrow", {226, 159, 183, 0}
+"LongLeftRightArrow", {226, 159, 183, 0}
+"Longleftrightarrow", {226, 159, 186, 0}
+"longmapsto", {226, 159, 188, 0}
+"longrightarrow", {226, 159, 182, 0}
+"LongRightArrow", {226, 159, 182, 0}
+"Longrightarrow", {226, 159, 185, 0}
+"looparrowleft", {226, 134, 171, 0}
+"looparrowright", {226, 134, 172, 0}
+"lopar", {226, 166, 133, 0}
+"Lopf", {240, 157, 149, 131}
+"lopf", {240, 157, 149, 157}
+"loplus", {226, 168, 173, 0}
+"lotimes", {226, 168, 180, 0}
+"lowast", {226, 136, 151, 0}
+"lowbar", {95, 0}
+"LowerLeftArrow", {226, 134, 153, 0}
+"LowerRightArrow", {226, 134, 152, 0}
+"loz", {226, 151, 138, 0}
+"lozenge", {226, 151, 138, 0}
+"lozf", {226, 167, 171, 0}
+"lpar", {40, 0}
+"lparlt", {226, 166, 147, 0}
+"lrarr", {226, 135, 134, 0}
+"lrcorner", {226, 140, 159, 0}
+"lrhar", {226, 135, 139, 0}
+"lrhard", {226, 165, 173, 0}
+"lrm", {226, 128, 142, 0}
+"lrtri", {226, 138, 191, 0}
+"lsaquo", {226, 128, 185, 0}
+"lscr", {240, 157, 147, 129}
+"Lscr", {226, 132, 146, 0}
+"lsh", {226, 134, 176, 0}
+"Lsh", {226, 134, 176, 0}
+"lsim", {226, 137, 178, 0}
+"lsime", {226, 170, 141, 0}
+"lsimg", {226, 170, 143, 0}
+"lsqb", {91, 0}
+"lsquo", {226, 128, 152, 0}
+"lsquor", {226, 128, 154, 0}
+"Lstrok", {197, 129, 0}
+"lstrok", {197, 130, 0}
+"ltcc", {226, 170, 166, 0}
+"ltcir", {226, 169, 185, 0}
+"lt", {60, 0}
+"LT", {60, 0}
+"Lt", {226, 137, 170, 0}
+"ltdot", {226, 139, 150, 0}
+"lthree", {226, 139, 139, 0}
+"ltimes", {226, 139, 137, 0}
+"ltlarr", {226, 165, 182, 0}
+"ltquest", {226, 169, 187, 0}
+"ltri", {226, 151, 131, 0}
+"ltrie", {226, 138, 180, 0}
+"ltrif", {226, 151, 130, 0}
+"ltrPar", {226, 166, 150, 0}
+"lurdshar", {226, 165, 138, 0}
+"luruhar", {226, 165, 166, 0}
+"lvertneqq", {226, 137, 168, 0}
+"lvnE", {226, 137, 168, 0}
+"macr", {194, 175, 0}
+"male", {226, 153, 130, 0}
+"malt", {226, 156, 160, 0}
+"maltese", {226, 156, 160, 0}
+"Map", {226, 164, 133, 0}
+"map", {226, 134, 166, 0}
+"mapsto", {226, 134, 166, 0}
+"mapstodown", {226, 134, 167, 0}
+"mapstoleft", {226, 134, 164, 0}
+"mapstoup", {226, 134, 165, 0}
+"marker", {226, 150, 174, 0}
+"mcomma", {226, 168, 169, 0}
+"Mcy", {208, 156, 0}
+"mcy", {208, 188, 0}
+"mdash", {226, 128, 148, 0}
+"mDDot", {226, 136, 186, 0}
+"measuredangle", {226, 136, 161, 0}
+"MediumSpace", {226, 129, 159, 0}
+"Mellintrf", {226, 132, 179, 0}
+"Mfr", {240, 157, 148, 144}
+"mfr", {240, 157, 148, 170}
+"mho", {226, 132, 167, 0}
+"micro", {194, 181, 0}
+"midast", {42, 0}
+"midcir", {226, 171, 176, 0}
+"mid", {226, 136, 163, 0}
+"middot", {194, 183, 0}
+"minusb", {226, 138, 159, 0}
+"minus", {226, 136, 146, 0}
+"minusd", {226, 136, 184, 0}
+"minusdu", {226, 168, 170, 0}
+"MinusPlus", {226, 136, 147, 0}
+"mlcp", {226, 171, 155, 0}
+"mldr", {226, 128, 166, 0}
+"mnplus", {226, 136, 147, 0}
+"models", {226, 138, 167, 0}
+"Mopf", {240, 157, 149, 132}
+"mopf", {240, 157, 149, 158}
+"mp", {226, 136, 147, 0}
+"mscr", {240, 157, 147, 130}
+"Mscr", {226, 132, 179, 0}
+"mstpos", {226, 136, 190, 0}
+"Mu", {206, 156, 0}
+"mu", {206, 188, 0}
+"multimap", {226, 138, 184, 0}
+"mumap", {226, 138, 184, 0}
+"nabla", {226, 136, 135, 0}
+"Nacute", {197, 131, 0}
+"nacute", {197, 132, 0}
+"nang", {226, 136, 160, 0}
+"nap", {226, 137, 137, 0}
+"napE", {226, 169, 176, 0}
+"napid", {226, 137, 139, 0}
+"napos", {197, 137, 0}
+"napprox", {226, 137, 137, 0}
+"natural", {226, 153, 174, 0}
+"naturals", {226, 132, 149, 0}
+"natur", {226, 153, 174, 0}
+"nbsp", {194, 160, 0}
+"nbump", {226, 137, 142, 0}
+"nbumpe", {226, 137, 143, 0}
+"ncap", {226, 169, 131, 0}
+"Ncaron", {197, 135, 0}
+"ncaron", {197, 136, 0}
+"Ncedil", {197, 133, 0}
+"ncedil", {197, 134, 0}
+"ncong", {226, 137, 135, 0}
+"ncongdot", {226, 169, 173, 0}
+"ncup", {226, 169, 130, 0}
+"Ncy", {208, 157, 0}
+"ncy", {208, 189, 0}
+"ndash", {226, 128, 147, 0}
+"nearhk", {226, 164, 164, 0}
+"nearr", {226, 134, 151, 0}
+"neArr", {226, 135, 151, 0}
+"nearrow", {226, 134, 151, 0}
+"ne", {226, 137, 160, 0}
+"nedot", {226, 137, 144, 0}
+"NegativeMediumSpace", {226, 128, 139, 0}
+"NegativeThickSpace", {226, 128, 139, 0}
+"NegativeThinSpace", {226, 128, 139, 0}
+"NegativeVeryThinSpace", {226, 128, 139, 0}
+"nequiv", {226, 137, 162, 0}
+"nesear", {226, 164, 168, 0}
+"nesim", {226, 137, 130, 0}
+"NestedGreaterGreater", {226, 137, 171, 0}
+"NestedLessLess", {226, 137, 170, 0}
+"NewLine", {10, 0}
+"nexist", {226, 136, 132, 0}
+"nexists", {226, 136, 132, 0}
+"Nfr", {240, 157, 148, 145}
+"nfr", {240, 157, 148, 171}
+"ngE", {226, 137, 167, 0}
+"nge", {226, 137, 177, 0}
+"ngeq", {226, 137, 177, 0}
+"ngeqq", {226, 137, 167, 0}
+"ngeqslant", {226, 169, 190, 0}
+"nges", {226, 169, 190, 0}
+"nGg", {226, 139, 153, 0}
+"ngsim", {226, 137, 181, 0}
+"nGt", {226, 137, 171, 0}
+"ngt", {226, 137, 175, 0}
+"ngtr", {226, 137, 175, 0}
+"nGtv", {226, 137, 171, 0}
+"nharr", {226, 134, 174, 0}
+"nhArr", {226, 135, 142, 0}
+"nhpar", {226, 171, 178, 0}
+"ni", {226, 136, 139, 0}
+"nis", {226, 139, 188, 0}
+"nisd", {226, 139, 186, 0}
+"niv", {226, 136, 139, 0}
+"NJcy", {208, 138, 0}
+"njcy", {209, 154, 0}
+"nlarr", {226, 134, 154, 0}
+"nlArr", {226, 135, 141, 0}
+"nldr", {226, 128, 165, 0}
+"nlE", {226, 137, 166, 0}
+"nle", {226, 137, 176, 0}
+"nleftarrow", {226, 134, 154, 0}
+"nLeftarrow", {226, 135, 141, 0}
+"nleftrightarrow", {226, 134, 174, 0}
+"nLeftrightarrow", {226, 135, 142, 0}
+"nleq", {226, 137, 176, 0}
+"nleqq", {226, 137, 166, 0}
+"nleqslant", {226, 169, 189, 0}
+"nles", {226, 169, 189, 0}
+"nless", {226, 137, 174, 0}
+"nLl", {226, 139, 152, 0}
+"nlsim", {226, 137, 180, 0}
+"nLt", {226, 137, 170, 0}
+"nlt", {226, 137, 174, 0}
+"nltri", {226, 139, 170, 0}
+"nltrie", {226, 139, 172, 0}
+"nLtv", {226, 137, 170, 0}
+"nmid", {226, 136, 164, 0}
+"NoBreak", {226, 129, 160, 0}
+"NonBreakingSpace", {194, 160, 0}
+"nopf", {240, 157, 149, 159}
+"Nopf", {226, 132, 149, 0}
+"Not", {226, 171, 172, 0}
+"not", {194, 172, 0}
+"NotCongruent", {226, 137, 162, 0}
+"NotCupCap", {226, 137, 173, 0}
+"NotDoubleVerticalBar", {226, 136, 166, 0}
+"NotElement", {226, 136, 137, 0}
+"NotEqual", {226, 137, 160, 0}
+"NotEqualTilde", {226, 137, 130, 0}
+"NotExists", {226, 136, 132, 0}
+"NotGreater", {226, 137, 175, 0}
+"NotGreaterEqual", {226, 137, 177, 0}
+"NotGreaterFullEqual", {226, 137, 167, 0}
+"NotGreaterGreater", {226, 137, 171, 0}
+"NotGreaterLess", {226, 137, 185, 0}
+"NotGreaterSlantEqual", {226, 169, 190, 0}
+"NotGreaterTilde", {226, 137, 181, 0}
+"NotHumpDownHump", {226, 137, 142, 0}
+"NotHumpEqual", {226, 137, 143, 0}
+"notin", {226, 136, 137, 0}
+"notindot", {226, 139, 181, 0}
+"notinE", {226, 139, 185, 0}
+"notinva", {226, 136, 137, 0}
+"notinvb", {226, 139, 183, 0}
+"notinvc", {226, 139, 182, 0}
+"NotLeftTriangleBar", {226, 167, 143, 0}
+"NotLeftTriangle", {226, 139, 170, 0}
+"NotLeftTriangleEqual", {226, 139, 172, 0}
+"NotLess", {226, 137, 174, 0}
+"NotLessEqual", {226, 137, 176, 0}
+"NotLessGreater", {226, 137, 184, 0}
+"NotLessLess", {226, 137, 170, 0}
+"NotLessSlantEqual", {226, 169, 189, 0}
+"NotLessTilde", {226, 137, 180, 0}
+"NotNestedGreaterGreater", {226, 170, 162, 0}
+"NotNestedLessLess", {226, 170, 161, 0}
+"notni", {226, 136, 140, 0}
+"notniva", {226, 136, 140, 0}
+"notnivb", {226, 139, 190, 0}
+"notnivc", {226, 139, 189, 0}
+"NotPrecedes", {226, 138, 128, 0}
+"NotPrecedesEqual", {226, 170, 175, 0}
+"NotPrecedesSlantEqual", {226, 139, 160, 0}
+"NotReverseElement", {226, 136, 140, 0}
+"NotRightTriangleBar", {226, 167, 144, 0}
+"NotRightTriangle", {226, 139, 171, 0}
+"NotRightTriangleEqual", {226, 139, 173, 0}
+"NotSquareSubset", {226, 138, 143, 0}
+"NotSquareSubsetEqual", {226, 139, 162, 0}
+"NotSquareSuperset", {226, 138, 144, 0}
+"NotSquareSupersetEqual", {226, 139, 163, 0}
+"NotSubset", {226, 138, 130, 0}
+"NotSubsetEqual", {226, 138, 136, 0}
+"NotSucceeds", {226, 138, 129, 0}
+"NotSucceedsEqual", {226, 170, 176, 0}
+"NotSucceedsSlantEqual", {226, 139, 161, 0}
+"NotSucceedsTilde", {226, 137, 191, 0}
+"NotSuperset", {226, 138, 131, 0}
+"NotSupersetEqual", {226, 138, 137, 0}
+"NotTilde", {226, 137, 129, 0}
+"NotTildeEqual", {226, 137, 132, 0}
+"NotTildeFullEqual", {226, 137, 135, 0}
+"NotTildeTilde", {226, 137, 137, 0}
+"NotVerticalBar", {226, 136, 164, 0}
+"nparallel", {226, 136, 166, 0}
+"npar", {226, 136, 166, 0}
+"nparsl", {226, 171, 189, 0}
+"npart", {226, 136, 130, 0}
+"npolint", {226, 168, 148, 0}
+"npr", {226, 138, 128, 0}
+"nprcue", {226, 139, 160, 0}
+"nprec", {226, 138, 128, 0}
+"npreceq", {226, 170, 175, 0}
+"npre", {226, 170, 175, 0}
+"nrarrc", {226, 164, 179, 0}
+"nrarr", {226, 134, 155, 0}
+"nrArr", {226, 135, 143, 0}
+"nrarrw", {226, 134, 157, 0}
+"nrightarrow", {226, 134, 155, 0}
+"nRightarrow", {226, 135, 143, 0}
+"nrtri", {226, 139, 171, 0}
+"nrtrie", {226, 139, 173, 0}
+"nsc", {226, 138, 129, 0}
+"nsccue", {226, 139, 161, 0}
+"nsce", {226, 170, 176, 0}
+"Nscr", {240, 157, 146, 169}
+"nscr", {240, 157, 147, 131}
+"nshortmid", {226, 136, 164, 0}
+"nshortparallel", {226, 136, 166, 0}
+"nsim", {226, 137, 129, 0}
+"nsime", {226, 137, 132, 0}
+"nsimeq", {226, 137, 132, 0}
+"nsmid", {226, 136, 164, 0}
+"nspar", {226, 136, 166, 0}
+"nsqsube", {226, 139, 162, 0}
+"nsqsupe", {226, 139, 163, 0}
+"nsub", {226, 138, 132, 0}
+"nsubE", {226, 171, 133, 0}
+"nsube", {226, 138, 136, 0}
+"nsubset", {226, 138, 130, 0}
+"nsubseteq", {226, 138, 136, 0}
+"nsubseteqq", {226, 171, 133, 0}
+"nsucc", {226, 138, 129, 0}
+"nsucceq", {226, 170, 176, 0}
+"nsup", {226, 138, 133, 0}
+"nsupE", {226, 171, 134, 0}
+"nsupe", {226, 138, 137, 0}
+"nsupset", {226, 138, 131, 0}
+"nsupseteq", {226, 138, 137, 0}
+"nsupseteqq", {226, 171, 134, 0}
+"ntgl", {226, 137, 185, 0}
+"Ntilde", {195, 145, 0}
+"ntilde", {195, 177, 0}
+"ntlg", {226, 137, 184, 0}
+"ntriangleleft", {226, 139, 170, 0}
+"ntrianglelefteq", {226, 139, 172, 0}
+"ntriangleright", {226, 139, 171, 0}
+"ntrianglerighteq", {226, 139, 173, 0}
+"Nu", {206, 157, 0}
+"nu", {206, 189, 0}
+"num", {35, 0}
+"numero", {226, 132, 150, 0}
+"numsp", {226, 128, 135, 0}
+"nvap", {226, 137, 141, 0}
+"nvdash", {226, 138, 172, 0}
+"nvDash", {226, 138, 173, 0}
+"nVdash", {226, 138, 174, 0}
+"nVDash", {226, 138, 175, 0}
+"nvge", {226, 137, 165, 0}
+"nvgt", {62, 0}
+"nvHarr", {226, 164, 132, 0}
+"nvinfin", {226, 167, 158, 0}
+"nvlArr", {226, 164, 130, 0}
+"nvle", {226, 137, 164, 0}
+"nvlt", {60, 0}
+"nvltrie", {226, 138, 180, 0}
+"nvrArr", {226, 164, 131, 0}
+"nvrtrie", {226, 138, 181, 0}
+"nvsim", {226, 136, 188, 0}
+"nwarhk", {226, 164, 163, 0}
+"nwarr", {226, 134, 150, 0}
+"nwArr", {226, 135, 150, 0}
+"nwarrow", {226, 134, 150, 0}
+"nwnear", {226, 164, 167, 0}
+"Oacute", {195, 147, 0}
+"oacute", {195, 179, 0}
+"oast", {226, 138, 155, 0}
+"Ocirc", {195, 148, 0}
+"ocirc", {195, 180, 0}
+"ocir", {226, 138, 154, 0}
+"Ocy", {208, 158, 0}
+"ocy", {208, 190, 0}
+"odash", {226, 138, 157, 0}
+"Odblac", {197, 144, 0}
+"odblac", {197, 145, 0}
+"odiv", {226, 168, 184, 0}
+"odot", {226, 138, 153, 0}
+"odsold", {226, 166, 188, 0}
+"OElig", {197, 146, 0}
+"oelig", {197, 147, 0}
+"ofcir", {226, 166, 191, 0}
+"Ofr", {240, 157, 148, 146}
+"ofr", {240, 157, 148, 172}
+"ogon", {203, 155, 0}
+"Ograve", {195, 146, 0}
+"ograve", {195, 178, 0}
+"ogt", {226, 167, 129, 0}
+"ohbar", {226, 166, 181, 0}
+"ohm", {206, 169, 0}
+"oint", {226, 136, 174, 0}
+"olarr", {226, 134, 186, 0}
+"olcir", {226, 166, 190, 0}
+"olcross", {226, 166, 187, 0}
+"oline", {226, 128, 190, 0}
+"olt", {226, 167, 128, 0}
+"Omacr", {197, 140, 0}
+"omacr", {197, 141, 0}
+"Omega", {206, 169, 0}
+"omega", {207, 137, 0}
+"Omicron", {206, 159, 0}
+"omicron", {206, 191, 0}
+"omid", {226, 166, 182, 0}
+"ominus", {226, 138, 150, 0}
+"Oopf", {240, 157, 149, 134}
+"oopf", {240, 157, 149, 160}
+"opar", {226, 166, 183, 0}
+"OpenCurlyDoubleQuote", {226, 128, 156, 0}
+"OpenCurlyQuote", {226, 128, 152, 0}
+"operp", {226, 166, 185, 0}
+"oplus", {226, 138, 149, 0}
+"orarr", {226, 134, 187, 0}
+"Or", {226, 169, 148, 0}
+"or", {226, 136, 168, 0}
+"ord", {226, 169, 157, 0}
+"order", {226, 132, 180, 0}
+"orderof", {226, 132, 180, 0}
+"ordf", {194, 170, 0}
+"ordm", {194, 186, 0}
+"origof", {226, 138, 182, 0}
+"oror", {226, 169, 150, 0}
+"orslope", {226, 169, 151, 0}
+"orv", {226, 169, 155, 0}
+"oS", {226, 147, 136, 0}
+"Oscr", {240, 157, 146, 170}
+"oscr", {226, 132, 180, 0}
+"Oslash", {195, 152, 0}
+"oslash", {195, 184, 0}
+"osol", {226, 138, 152, 0}
+"Otilde", {195, 149, 0}
+"otilde", {195, 181, 0}
+"otimesas", {226, 168, 182, 0}
+"Otimes", {226, 168, 183, 0}
+"otimes", {226, 138, 151, 0}
+"Ouml", {195, 150, 0}
+"ouml", {195, 182, 0}
+"ovbar", {226, 140, 189, 0}
+"OverBar", {226, 128, 190, 0}
+"OverBrace", {226, 143, 158, 0}
+"OverBracket", {226, 142, 180, 0}
+"OverParenthesis", {226, 143, 156, 0}
+"para", {194, 182, 0}
+"parallel", {226, 136, 165, 0}
+"par", {226, 136, 165, 0}
+"parsim", {226, 171, 179, 0}
+"parsl", {226, 171, 189, 0}
+"part", {226, 136, 130, 0}
+"PartialD", {226, 136, 130, 0}
+"Pcy", {208, 159, 0}
+"pcy", {208, 191, 0}
+"percnt", {37, 0}
+"period", {46, 0}
+"permil", {226, 128, 176, 0}
+"perp", {226, 138, 165, 0}
+"pertenk", {226, 128, 177, 0}
+"Pfr", {240, 157, 148, 147}
+"pfr", {240, 157, 148, 173}
+"Phi", {206, 166, 0}
+"phi", {207, 134, 0}
+"phiv", {207, 149, 0}
+"phmmat", {226, 132, 179, 0}
+"phone", {226, 152, 142, 0}
+"Pi", {206, 160, 0}
+"pi", {207, 128, 0}
+"pitchfork", {226, 139, 148, 0}
+"piv", {207, 150, 0}
+"planck", {226, 132, 143, 0}
+"planckh", {226, 132, 142, 0}
+"plankv", {226, 132, 143, 0}
+"plusacir", {226, 168, 163, 0}
+"plusb", {226, 138, 158, 0}
+"pluscir", {226, 168, 162, 0}
+"plus", {43, 0}
+"plusdo", {226, 136, 148, 0}
+"plusdu", {226, 168, 165, 0}
+"pluse", {226, 169, 178, 0}
+"PlusMinus", {194, 177, 0}
+"plusmn", {194, 177, 0}
+"plussim", {226, 168, 166, 0}
+"plustwo", {226, 168, 167, 0}
+"pm", {194, 177, 0}
+"Poincareplane", {226, 132, 140, 0}
+"pointint", {226, 168, 149, 0}
+"popf", {240, 157, 149, 161}
+"Popf", {226, 132, 153, 0}
+"pound", {194, 163, 0}
+"prap", {226, 170, 183, 0}
+"Pr", {226, 170, 187, 0}
+"pr", {226, 137, 186, 0}
+"prcue", {226, 137, 188, 0}
+"precapprox", {226, 170, 183, 0}
+"prec", {226, 137, 186, 0}
+"preccurlyeq", {226, 137, 188, 0}
+"Precedes", {226, 137, 186, 0}
+"PrecedesEqual", {226, 170, 175, 0}
+"PrecedesSlantEqual", {226, 137, 188, 0}
+"PrecedesTilde", {226, 137, 190, 0}
+"preceq", {226, 170, 175, 0}
+"precnapprox", {226, 170, 185, 0}
+"precneqq", {226, 170, 181, 0}
+"precnsim", {226, 139, 168, 0}
+"pre", {226, 170, 175, 0}
+"prE", {226, 170, 179, 0}
+"precsim", {226, 137, 190, 0}
+"prime", {226, 128, 178, 0}
+"Prime", {226, 128, 179, 0}
+"primes", {226, 132, 153, 0}
+"prnap", {226, 170, 185, 0}
+"prnE", {226, 170, 181, 0}
+"prnsim", {226, 139, 168, 0}
+"prod", {226, 136, 143, 0}
+"Product", {226, 136, 143, 0}
+"profalar", {226, 140, 174, 0}
+"profline", {226, 140, 146, 0}
+"profsurf", {226, 140, 147, 0}
+"prop", {226, 136, 157, 0}
+"Proportional", {226, 136, 157, 0}
+"Proportion", {226, 136, 183, 0}
+"propto", {226, 136, 157, 0}
+"prsim", {226, 137, 190, 0}
+"prurel", {226, 138, 176, 0}
+"Pscr", {240, 157, 146, 171}
+"pscr", {240, 157, 147, 133}
+"Psi", {206, 168, 0}
+"psi", {207, 136, 0}
+"puncsp", {226, 128, 136, 0}
+"Qfr", {240, 157, 148, 148}
+"qfr", {240, 157, 148, 174}
+"qint", {226, 168, 140, 0}
+"qopf", {240, 157, 149, 162}
+"Qopf", {226, 132, 154, 0}
+"qprime", {226, 129, 151, 0}
+"Qscr", {240, 157, 146, 172}
+"qscr", {240, 157, 147, 134}
+"quaternions", {226, 132, 141, 0}
+"quatint", {226, 168, 150, 0}
+"quest", {63, 0}
+"questeq", {226, 137, 159, 0}
+"quot", {34, 0}
+"QUOT", {34, 0}
+"rAarr", {226, 135, 155, 0}
+"race", {226, 136, 189, 0}
+"Racute", {197, 148, 0}
+"racute", {197, 149, 0}
+"radic", {226, 136, 154, 0}
+"raemptyv", {226, 166, 179, 0}
+"rang", {226, 159, 169, 0}
+"Rang", {226, 159, 171, 0}
+"rangd", {226, 166, 146, 0}
+"range", {226, 166, 165, 0}
+"rangle", {226, 159, 169, 0}
+"raquo", {194, 187, 0}
+"rarrap", {226, 165, 181, 0}
+"rarrb", {226, 135, 165, 0}
+"rarrbfs", {226, 164, 160, 0}
+"rarrc", {226, 164, 179, 0}
+"rarr", {226, 134, 146, 0}
+"Rarr", {226, 134, 160, 0}
+"rArr", {226, 135, 146, 0}
+"rarrfs", {226, 164, 158, 0}
+"rarrhk", {226, 134, 170, 0}
+"rarrlp", {226, 134, 172, 0}
+"rarrpl", {226, 165, 133, 0}
+"rarrsim", {226, 165, 180, 0}
+"Rarrtl", {226, 164, 150, 0}
+"rarrtl", {226, 134, 163, 0}
+"rarrw", {226, 134, 157, 0}
+"ratail", {226, 164, 154, 0}
+"rAtail", {226, 164, 156, 0}
+"ratio", {226, 136, 182, 0}
+"rationals", {226, 132, 154, 0}
+"rbarr", {226, 164, 141, 0}
+"rBarr", {226, 164, 143, 0}
+"RBarr", {226, 164, 144, 0}
+"rbbrk", {226, 157, 179, 0}
+"rbrace", {125, 0}
+"rbrack", {93, 0}
+"rbrke", {226, 166, 140, 0}
+"rbrksld", {226, 166, 142, 0}
+"rbrkslu", {226, 166, 144, 0}
+"Rcaron", {197, 152, 0}
+"rcaron", {197, 153, 0}
+"Rcedil", {197, 150, 0}
+"rcedil", {197, 151, 0}
+"rceil", {226, 140, 137, 0}
+"rcub", {125, 0}
+"Rcy", {208, 160, 0}
+"rcy", {209, 128, 0}
+"rdca", {226, 164, 183, 0}
+"rdldhar", {226, 165, 169, 0}
+"rdquo", {226, 128, 157, 0}
+"rdquor", {226, 128, 157, 0}
+"rdsh", {226, 134, 179, 0}
+"real", {226, 132, 156, 0}
+"realine", {226, 132, 155, 0}
+"realpart", {226, 132, 156, 0}
+"reals", {226, 132, 157, 0}
+"Re", {226, 132, 156, 0}
+"rect", {226, 150, 173, 0}
+"reg", {194, 174, 0}
+"REG", {194, 174, 0}
+"ReverseElement", {226, 136, 139, 0}
+"ReverseEquilibrium", {226, 135, 139, 0}
+"ReverseUpEquilibrium", {226, 165, 175, 0}
+"rfisht", {226, 165, 189, 0}
+"rfloor", {226, 140, 139, 0}
+"rfr", {240, 157, 148, 175}
+"Rfr", {226, 132, 156, 0}
+"rHar", {226, 165, 164, 0}
+"rhard", {226, 135, 129, 0}
+"rharu", {226, 135, 128, 0}
+"rharul", {226, 165, 172, 0}
+"Rho", {206, 161, 0}
+"rho", {207, 129, 0}
+"rhov", {207, 177, 0}
+"RightAngleBracket", {226, 159, 169, 0}
+"RightArrowBar", {226, 135, 165, 0}
+"rightarrow", {226, 134, 146, 0}
+"RightArrow", {226, 134, 146, 0}
+"Rightarrow", {226, 135, 146, 0}
+"RightArrowLeftArrow", {226, 135, 132, 0}
+"rightarrowtail", {226, 134, 163, 0}
+"RightCeiling", {226, 140, 137, 0}
+"RightDoubleBracket", {226, 159, 167, 0}
+"RightDownTeeVector", {226, 165, 157, 0}
+"RightDownVectorBar", {226, 165, 149, 0}
+"RightDownVector", {226, 135, 130, 0}
+"RightFloor", {226, 140, 139, 0}
+"rightharpoondown", {226, 135, 129, 0}
+"rightharpoonup", {226, 135, 128, 0}
+"rightleftarrows", {226, 135, 132, 0}
+"rightleftharpoons", {226, 135, 140, 0}
+"rightrightarrows", {226, 135, 137, 0}
+"rightsquigarrow", {226, 134, 157, 0}
+"RightTeeArrow", {226, 134, 166, 0}
+"RightTee", {226, 138, 162, 0}
+"RightTeeVector", {226, 165, 155, 0}
+"rightthreetimes", {226, 139, 140, 0}
+"RightTriangleBar", {226, 167, 144, 0}
+"RightTriangle", {226, 138, 179, 0}
+"RightTriangleEqual", {226, 138, 181, 0}
+"RightUpDownVector", {226, 165, 143, 0}
+"RightUpTeeVector", {226, 165, 156, 0}
+"RightUpVectorBar", {226, 165, 148, 0}
+"RightUpVector", {226, 134, 190, 0}
+"RightVectorBar", {226, 165, 147, 0}
+"RightVector", {226, 135, 128, 0}
+"ring", {203, 154, 0}
+"risingdotseq", {226, 137, 147, 0}
+"rlarr", {226, 135, 132, 0}
+"rlhar", {226, 135, 140, 0}
+"rlm", {226, 128, 143, 0}
+"rmoustache", {226, 142, 177, 0}
+"rmoust", {226, 142, 177, 0}
+"rnmid", {226, 171, 174, 0}
+"roang", {226, 159, 173, 0}
+"roarr", {226, 135, 190, 0}
+"robrk", {226, 159, 167, 0}
+"ropar", {226, 166, 134, 0}
+"ropf", {240, 157, 149, 163}
+"Ropf", {226, 132, 157, 0}
+"roplus", {226, 168, 174, 0}
+"rotimes", {226, 168, 181, 0}
+"RoundImplies", {226, 165, 176, 0}
+"rpar", {41, 0}
+"rpargt", {226, 166, 148, 0}
+"rppolint", {226, 168, 146, 0}
+"rrarr", {226, 135, 137, 0}
+"Rrightarrow", {226, 135, 155, 0}
+"rsaquo", {226, 128, 186, 0}
+"rscr", {240, 157, 147, 135}
+"Rscr", {226, 132, 155, 0}
+"rsh", {226, 134, 177, 0}
+"Rsh", {226, 134, 177, 0}
+"rsqb", {93, 0}
+"rsquo", {226, 128, 153, 0}
+"rsquor", {226, 128, 153, 0}
+"rthree", {226, 139, 140, 0}
+"rtimes", {226, 139, 138, 0}
+"rtri", {226, 150, 185, 0}
+"rtrie", {226, 138, 181, 0}
+"rtrif", {226, 150, 184, 0}
+"rtriltri", {226, 167, 142, 0}
+"RuleDelayed", {226, 167, 180, 0}
+"ruluhar", {226, 165, 168, 0}
+"rx", {226, 132, 158, 0}
+"Sacute", {197, 154, 0}
+"sacute", {197, 155, 0}
+"sbquo", {226, 128, 154, 0}
+"scap", {226, 170, 184, 0}
+"Scaron", {197, 160, 0}
+"scaron", {197, 161, 0}
+"Sc", {226, 170, 188, 0}
+"sc", {226, 137, 187, 0}
+"sccue", {226, 137, 189, 0}
+"sce", {226, 170, 176, 0}
+"scE", {226, 170, 180, 0}
+"Scedil", {197, 158, 0}
+"scedil", {197, 159, 0}
+"Scirc", {197, 156, 0}
+"scirc", {197, 157, 0}
+"scnap", {226, 170, 186, 0}
+"scnE", {226, 170, 182, 0}
+"scnsim", {226, 139, 169, 0}
+"scpolint", {226, 168, 147, 0}
+"scsim", {226, 137, 191, 0}
+"Scy", {208, 161, 0}
+"scy", {209, 129, 0}
+"sdotb", {226, 138, 161, 0}
+"sdot", {226, 139, 133, 0}
+"sdote", {226, 169, 166, 0}
+"searhk", {226, 164, 165, 0}
+"searr", {226, 134, 152, 0}
+"seArr", {226, 135, 152, 0}
+"searrow", {226, 134, 152, 0}
+"sect", {194, 167, 0}
+"semi", {59, 0}
+"seswar", {226, 164, 169, 0}
+"setminus", {226, 136, 150, 0}
+"setmn", {226, 136, 150, 0}
+"sext", {226, 156, 182, 0}
+"Sfr", {240, 157, 148, 150}
+"sfr", {240, 157, 148, 176}
+"sfrown", {226, 140, 162, 0}
+"sharp", {226, 153, 175, 0}
+"SHCHcy", {208, 169, 0}
+"shchcy", {209, 137, 0}
+"SHcy", {208, 168, 0}
+"shcy", {209, 136, 0}
+"ShortDownArrow", {226, 134, 147, 0}
+"ShortLeftArrow", {226, 134, 144, 0}
+"shortmid", {226, 136, 163, 0}
+"shortparallel", {226, 136, 165, 0}
+"ShortRightArrow", {226, 134, 146, 0}
+"ShortUpArrow", {226, 134, 145, 0}
+"shy", {194, 173, 0}
+"Sigma", {206, 163, 0}
+"sigma", {207, 131, 0}
+"sigmaf", {207, 130, 0}
+"sigmav", {207, 130, 0}
+"sim", {226, 136, 188, 0}
+"simdot", {226, 169, 170, 0}
+"sime", {226, 137, 131, 0}
+"simeq", {226, 137, 131, 0}
+"simg", {226, 170, 158, 0}
+"simgE", {226, 170, 160, 0}
+"siml", {226, 170, 157, 0}
+"simlE", {226, 170, 159, 0}
+"simne", {226, 137, 134, 0}
+"simplus", {226, 168, 164, 0}
+"simrarr", {226, 165, 178, 0}
+"slarr", {226, 134, 144, 0}
+"SmallCircle", {226, 136, 152, 0}
+"smallsetminus", {226, 136, 150, 0}
+"smashp", {226, 168, 179, 0}
+"smeparsl", {226, 167, 164, 0}
+"smid", {226, 136, 163, 0}
+"smile", {226, 140, 163, 0}
+"smt", {226, 170, 170, 0}
+"smte", {226, 170, 172, 0}
+"smtes", {226, 170, 172, 0}
+"SOFTcy", {208, 172, 0}
+"softcy", {209, 140, 0}
+"solbar", {226, 140, 191, 0}
+"solb", {226, 167, 132, 0}
+"sol", {47, 0}
+"Sopf", {240, 157, 149, 138}
+"sopf", {240, 157, 149, 164}
+"spades", {226, 153, 160, 0}
+"spadesuit", {226, 153, 160, 0}
+"spar", {226, 136, 165, 0}
+"sqcap", {226, 138, 147, 0}
+"sqcaps", {226, 138, 147, 0}
+"sqcup", {226, 138, 148, 0}
+"sqcups", {226, 138, 148, 0}
+"Sqrt", {226, 136, 154, 0}
+"sqsub", {226, 138, 143, 0}
+"sqsube", {226, 138, 145, 0}
+"sqsubset", {226, 138, 143, 0}
+"sqsubseteq", {226, 138, 145, 0}
+"sqsup", {226, 138, 144, 0}
+"sqsupe", {226, 138, 146, 0}
+"sqsupset", {226, 138, 144, 0}
+"sqsupseteq", {226, 138, 146, 0}
+"square", {226, 150, 161, 0}
+"Square", {226, 150, 161, 0}
+"SquareIntersection", {226, 138, 147, 0}
+"SquareSubset", {226, 138, 143, 0}
+"SquareSubsetEqual", {226, 138, 145, 0}
+"SquareSuperset", {226, 138, 144, 0}
+"SquareSupersetEqual", {226, 138, 146, 0}
+"SquareUnion", {226, 138, 148, 0}
+"squarf", {226, 150, 170, 0}
+"squ", {226, 150, 161, 0}
+"squf", {226, 150, 170, 0}
+"srarr", {226, 134, 146, 0}
+"Sscr", {240, 157, 146, 174}
+"sscr", {240, 157, 147, 136}
+"ssetmn", {226, 136, 150, 0}
+"ssmile", {226, 140, 163, 0}
+"sstarf", {226, 139, 134, 0}
+"Star", {226, 139, 134, 0}
+"star", {226, 152, 134, 0}
+"starf", {226, 152, 133, 0}
+"straightepsilon", {207, 181, 0}
+"straightphi", {207, 149, 0}
+"strns", {194, 175, 0}
+"sub", {226, 138, 130, 0}
+"Sub", {226, 139, 144, 0}
+"subdot", {226, 170, 189, 0}
+"subE", {226, 171, 133, 0}
+"sube", {226, 138, 134, 0}
+"subedot", {226, 171, 131, 0}
+"submult", {226, 171, 129, 0}
+"subnE", {226, 171, 139, 0}
+"subne", {226, 138, 138, 0}
+"subplus", {226, 170, 191, 0}
+"subrarr", {226, 165, 185, 0}
+"subset", {226, 138, 130, 0}
+"Subset", {226, 139, 144, 0}
+"subseteq", {226, 138, 134, 0}
+"subseteqq", {226, 171, 133, 0}
+"SubsetEqual", {226, 138, 134, 0}
+"subsetneq", {226, 138, 138, 0}
+"subsetneqq", {226, 171, 139, 0}
+"subsim", {226, 171, 135, 0}
+"subsub", {226, 171, 149, 0}
+"subsup", {226, 171, 147, 0}
+"succapprox", {226, 170, 184, 0}
+"succ", {226, 137, 187, 0}
+"succcurlyeq", {226, 137, 189, 0}
+"Succeeds", {226, 137, 187, 0}
+"SucceedsEqual", {226, 170, 176, 0}
+"SucceedsSlantEqual", {226, 137, 189, 0}
+"SucceedsTilde", {226, 137, 191, 0}
+"succeq", {226, 170, 176, 0}
+"succnapprox", {226, 170, 186, 0}
+"succneqq", {226, 170, 182, 0}
+"succnsim", {226, 139, 169, 0}
+"succsim", {226, 137, 191, 0}
+"SuchThat", {226, 136, 139, 0}
+"sum", {226, 136, 145, 0}
+"Sum", {226, 136, 145, 0}
+"sung", {226, 153, 170, 0}
+"sup1", {194, 185, 0}
+"sup2", {194, 178, 0}
+"sup3", {194, 179, 0}
+"sup", {226, 138, 131, 0}
+"Sup", {226, 139, 145, 0}
+"supdot", {226, 170, 190, 0}
+"supdsub", {226, 171, 152, 0}
+"supE", {226, 171, 134, 0}
+"supe", {226, 138, 135, 0}
+"supedot", {226, 171, 132, 0}
+"Superset", {226, 138, 131, 0}
+"SupersetEqual", {226, 138, 135, 0}
+"suphsol", {226, 159, 137, 0}
+"suphsub", {226, 171, 151, 0}
+"suplarr", {226, 165, 187, 0}
+"supmult", {226, 171, 130, 0}
+"supnE", {226, 171, 140, 0}
+"supne", {226, 138, 139, 0}
+"supplus", {226, 171, 128, 0}
+"supset", {226, 138, 131, 0}
+"Supset", {226, 139, 145, 0}
+"supseteq", {226, 138, 135, 0}
+"supseteqq", {226, 171, 134, 0}
+"supsetneq", {226, 138, 139, 0}
+"supsetneqq", {226, 171, 140, 0}
+"supsim", {226, 171, 136, 0}
+"supsub", {226, 171, 148, 0}
+"supsup", {226, 171, 150, 0}
+"swarhk", {226, 164, 166, 0}
+"swarr", {226, 134, 153, 0}
+"swArr", {226, 135, 153, 0}
+"swarrow", {226, 134, 153, 0}
+"swnwar", {226, 164, 170, 0}
+"szlig", {195, 159, 0}
+"Tab", {9, 0}
+"target", {226, 140, 150, 0}
+"Tau", {206, 164, 0}
+"tau", {207, 132, 0}
+"tbrk", {226, 142, 180, 0}
+"Tcaron", {197, 164, 0}
+"tcaron", {197, 165, 0}
+"Tcedil", {197, 162, 0}
+"tcedil", {197, 163, 0}
+"Tcy", {208, 162, 0}
+"tcy", {209, 130, 0}
+"tdot", {226, 131, 155, 0}
+"telrec", {226, 140, 149, 0}
+"Tfr", {240, 157, 148, 151}
+"tfr", {240, 157, 148, 177}
+"there4", {226, 136, 180, 0}
+"therefore", {226, 136, 180, 0}
+"Therefore", {226, 136, 180, 0}
+"Theta", {206, 152, 0}
+"theta", {206, 184, 0}
+"thetasym", {207, 145, 0}
+"thetav", {207, 145, 0}
+"thickapprox", {226, 137, 136, 0}
+"thicksim", {226, 136, 188, 0}
+"ThickSpace", {226, 129, 159, 0}
+"ThinSpace", {226, 128, 137, 0}
+"thinsp", {226, 128, 137, 0}
+"thkap", {226, 137, 136, 0}
+"thksim", {226, 136, 188, 0}
+"THORN", {195, 158, 0}
+"thorn", {195, 190, 0}
+"tilde", {203, 156, 0}
+"Tilde", {226, 136, 188, 0}
+"TildeEqual", {226, 137, 131, 0}
+"TildeFullEqual", {226, 137, 133, 0}
+"TildeTilde", {226, 137, 136, 0}
+"timesbar", {226, 168, 177, 0}
+"timesb", {226, 138, 160, 0}
+"times", {195, 151, 0}
+"timesd", {226, 168, 176, 0}
+"tint", {226, 136, 173, 0}
+"toea", {226, 164, 168, 0}
+"topbot", {226, 140, 182, 0}
+"topcir", {226, 171, 177, 0}
+"top", {226, 138, 164, 0}
+"Topf", {240, 157, 149, 139}
+"topf", {240, 157, 149, 165}
+"topfork", {226, 171, 154, 0}
+"tosa", {226, 164, 169, 0}
+"tprime", {226, 128, 180, 0}
+"trade", {226, 132, 162, 0}
+"TRADE", {226, 132, 162, 0}
+"triangle", {226, 150, 181, 0}
+"triangledown", {226, 150, 191, 0}
+"triangleleft", {226, 151, 131, 0}
+"trianglelefteq", {226, 138, 180, 0}
+"triangleq", {226, 137, 156, 0}
+"triangleright", {226, 150, 185, 0}
+"trianglerighteq", {226, 138, 181, 0}
+"tridot", {226, 151, 172, 0}
+"trie", {226, 137, 156, 0}
+"triminus", {226, 168, 186, 0}
+"TripleDot", {226, 131, 155, 0}
+"triplus", {226, 168, 185, 0}
+"trisb", {226, 167, 141, 0}
+"tritime", {226, 168, 187, 0}
+"trpezium", {226, 143, 162, 0}
+"Tscr", {240, 157, 146, 175}
+"tscr", {240, 157, 147, 137}
+"TScy", {208, 166, 0}
+"tscy", {209, 134, 0}
+"TSHcy", {208, 139, 0}
+"tshcy", {209, 155, 0}
+"Tstrok", {197, 166, 0}
+"tstrok", {197, 167, 0}
+"twixt", {226, 137, 172, 0}
+"twoheadleftarrow", {226, 134, 158, 0}
+"twoheadrightarrow", {226, 134, 160, 0}
+"Uacute", {195, 154, 0}
+"uacute", {195, 186, 0}
+"uarr", {226, 134, 145, 0}
+"Uarr", {226, 134, 159, 0}
+"uArr", {226, 135, 145, 0}
+"Uarrocir", {226, 165, 137, 0}
+"Ubrcy", {208, 142, 0}
+"ubrcy", {209, 158, 0}
+"Ubreve", {197, 172, 0}
+"ubreve", {197, 173, 0}
+"Ucirc", {195, 155, 0}
+"ucirc", {195, 187, 0}
+"Ucy", {208, 163, 0}
+"ucy", {209, 131, 0}
+"udarr", {226, 135, 133, 0}
+"Udblac", {197, 176, 0}
+"udblac", {197, 177, 0}
+"udhar", {226, 165, 174, 0}
+"ufisht", {226, 165, 190, 0}
+"Ufr", {240, 157, 148, 152}
+"ufr", {240, 157, 148, 178}
+"Ugrave", {195, 153, 0}
+"ugrave", {195, 185, 0}
+"uHar", {226, 165, 163, 0}
+"uharl", {226, 134, 191, 0}
+"uharr", {226, 134, 190, 0}
+"uhblk", {226, 150, 128, 0}
+"ulcorn", {226, 140, 156, 0}
+"ulcorner", {226, 140, 156, 0}
+"ulcrop", {226, 140, 143, 0}
+"ultri", {226, 151, 184, 0}
+"Umacr", {197, 170, 0}
+"umacr", {197, 171, 0}
+"uml", {194, 168, 0}
+"UnderBar", {95, 0}
+"UnderBrace", {226, 143, 159, 0}
+"UnderBracket", {226, 142, 181, 0}
+"UnderParenthesis", {226, 143, 157, 0}
+"Union", {226, 139, 131, 0}
+"UnionPlus", {226, 138, 142, 0}
+"Uogon", {197, 178, 0}
+"uogon", {197, 179, 0}
+"Uopf", {240, 157, 149, 140}
+"uopf", {240, 157, 149, 166}
+"UpArrowBar", {226, 164, 146, 0}
+"uparrow", {226, 134, 145, 0}
+"UpArrow", {226, 134, 145, 0}
+"Uparrow", {226, 135, 145, 0}
+"UpArrowDownArrow", {226, 135, 133, 0}
+"updownarrow", {226, 134, 149, 0}
+"UpDownArrow", {226, 134, 149, 0}
+"Updownarrow", {226, 135, 149, 0}
+"UpEquilibrium", {226, 165, 174, 0}
+"upharpoonleft", {226, 134, 191, 0}
+"upharpoonright", {226, 134, 190, 0}
+"uplus", {226, 138, 142, 0}
+"UpperLeftArrow", {226, 134, 150, 0}
+"UpperRightArrow", {226, 134, 151, 0}
+"upsi", {207, 133, 0}
+"Upsi", {207, 146, 0}
+"upsih", {207, 146, 0}
+"Upsilon", {206, 165, 0}
+"upsilon", {207, 133, 0}
+"UpTeeArrow", {226, 134, 165, 0}
+"UpTee", {226, 138, 165, 0}
+"upuparrows", {226, 135, 136, 0}
+"urcorn", {226, 140, 157, 0}
+"urcorner", {226, 140, 157, 0}
+"urcrop", {226, 140, 142, 0}
+"Uring", {197, 174, 0}
+"uring", {197, 175, 0}
+"urtri", {226, 151, 185, 0}
+"Uscr", {240, 157, 146, 176}
+"uscr", {240, 157, 147, 138}
+"utdot", {226, 139, 176, 0}
+"Utilde", {197, 168, 0}
+"utilde", {197, 169, 0}
+"utri", {226, 150, 181, 0}
+"utrif", {226, 150, 180, 0}
+"uuarr", {226, 135, 136, 0}
+"Uuml", {195, 156, 0}
+"uuml", {195, 188, 0}
+"uwangle", {226, 166, 167, 0}
+"vangrt", {226, 166, 156, 0}
+"varepsilon", {207, 181, 0}
+"varkappa", {207, 176, 0}
+"varnothing", {226, 136, 133, 0}
+"varphi", {207, 149, 0}
+"varpi", {207, 150, 0}
+"varpropto", {226, 136, 157, 0}
+"varr", {226, 134, 149, 0}
+"vArr", {226, 135, 149, 0}
+"varrho", {207, 177, 0}
+"varsigma", {207, 130, 0}
+"varsubsetneq", {226, 138, 138, 0}
+"varsubsetneqq", {226, 171, 139, 0}
+"varsupsetneq", {226, 138, 139, 0}
+"varsupsetneqq", {226, 171, 140, 0}
+"vartheta", {207, 145, 0}
+"vartriangleleft", {226, 138, 178, 0}
+"vartriangleright", {226, 138, 179, 0}
+"vBar", {226, 171, 168, 0}
+"Vbar", {226, 171, 171, 0}
+"vBarv", {226, 171, 169, 0}
+"Vcy", {208, 146, 0}
+"vcy", {208, 178, 0}
+"vdash", {226, 138, 162, 0}
+"vDash", {226, 138, 168, 0}
+"Vdash", {226, 138, 169, 0}
+"VDash", {226, 138, 171, 0}
+"Vdashl", {226, 171, 166, 0}
+"veebar", {226, 138, 187, 0}
+"vee", {226, 136, 168, 0}
+"Vee", {226, 139, 129, 0}
+"veeeq", {226, 137, 154, 0}
+"vellip", {226, 139, 174, 0}
+"verbar", {124, 0}
+"Verbar", {226, 128, 150, 0}
+"vert", {124, 0}
+"Vert", {226, 128, 150, 0}
+"VerticalBar", {226, 136, 163, 0}
+"VerticalLine", {124, 0}
+"VerticalSeparator", {226, 157, 152, 0}
+"VerticalTilde", {226, 137, 128, 0}
+"VeryThinSpace", {226, 128, 138, 0}
+"Vfr", {240, 157, 148, 153}
+"vfr", {240, 157, 148, 179}
+"vltri", {226, 138, 178, 0}
+"vnsub", {226, 138, 130, 0}
+"vnsup", {226, 138, 131, 0}
+"Vopf", {240, 157, 149, 141}
+"vopf", {240, 157, 149, 167}
+"vprop", {226, 136, 157, 0}
+"vrtri", {226, 138, 179, 0}
+"Vscr", {240, 157, 146, 177}
+"vscr", {240, 157, 147, 139}
+"vsubnE", {226, 171, 139, 0}
+"vsubne", {226, 138, 138, 0}
+"vsupnE", {226, 171, 140, 0}
+"vsupne", {226, 138, 139, 0}
+"Vvdash", {226, 138, 170, 0}
+"vzigzag", {226, 166, 154, 0}
+"Wcirc", {197, 180, 0}
+"wcirc", {197, 181, 0}
+"wedbar", {226, 169, 159, 0}
+"wedge", {226, 136, 167, 0}
+"Wedge", {226, 139, 128, 0}
+"wedgeq", {226, 137, 153, 0}
+"weierp", {226, 132, 152, 0}
+"Wfr", {240, 157, 148, 154}
+"wfr", {240, 157, 148, 180}
+"Wopf", {240, 157, 149, 142}
+"wopf", {240, 157, 149, 168}
+"wp", {226, 132, 152, 0}
+"wr", {226, 137, 128, 0}
+"wreath", {226, 137, 128, 0}
+"Wscr", {240, 157, 146, 178}
+"wscr", {240, 157, 147, 140}
+"xcap", {226, 139, 130, 0}
+"xcirc", {226, 151, 175, 0}
+"xcup", {226, 139, 131, 0}
+"xdtri", {226, 150, 189, 0}
+"Xfr", {240, 157, 148, 155}
+"xfr", {240, 157, 148, 181}
+"xharr", {226, 159, 183, 0}
+"xhArr", {226, 159, 186, 0}
+"Xi", {206, 158, 0}
+"xi", {206, 190, 0}
+"xlarr", {226, 159, 181, 0}
+"xlArr", {226, 159, 184, 0}
+"xmap", {226, 159, 188, 0}
+"xnis", {226, 139, 187, 0}
+"xodot", {226, 168, 128, 0}
+"Xopf", {240, 157, 149, 143}
+"xopf", {240, 157, 149, 169}
+"xoplus", {226, 168, 129, 0}
+"xotime", {226, 168, 130, 0}
+"xrarr", {226, 159, 182, 0}
+"xrArr", {226, 159, 185, 0}
+"Xscr", {240, 157, 146, 179}
+"xscr", {240, 157, 147, 141}
+"xsqcup", {226, 168, 134, 0}
+"xuplus", {226, 168, 132, 0}
+"xutri", {226, 150, 179, 0}
+"xvee", {226, 139, 129, 0}
+"xwedge", {226, 139, 128, 0}
+"Yacute", {195, 157, 0}
+"yacute", {195, 189, 0}
+"YAcy", {208, 175, 0}
+"yacy", {209, 143, 0}
+"Ycirc", {197, 182, 0}
+"ycirc", {197, 183, 0}
+"Ycy", {208, 171, 0}
+"ycy", {209, 139, 0}
+"yen", {194, 165, 0}
+"Yfr", {240, 157, 148, 156}
+"yfr", {240, 157, 148, 182}
+"YIcy", {208, 135, 0}
+"yicy", {209, 151, 0}
+"Yopf", {240, 157, 149, 144}
+"yopf", {240, 157, 149, 170}
+"Yscr", {240, 157, 146, 180}
+"yscr", {240, 157, 147, 142}
+"YUcy", {208, 174, 0}
+"yucy", {209, 142, 0}
+"yuml", {195, 191, 0}
+"Yuml", {197, 184, 0}
+"Zacute", {197, 185, 0}
+"zacute", {197, 186, 0}
+"Zcaron", {197, 189, 0}
+"zcaron", {197, 190, 0}
+"Zcy", {208, 151, 0}
+"zcy", {208, 183, 0}
+"Zdot", {197, 187, 0}
+"zdot", {197, 188, 0}
+"zeetrf", {226, 132, 168, 0}
+"ZeroWidthSpace", {226, 128, 139, 0}
+"Zeta", {206, 150, 0}
+"zeta", {206, 182, 0}
+"zfr", {240, 157, 148, 183}
+"Zfr", {226, 132, 168, 0}
+"ZHcy", {208, 150, 0}
+"zhcy", {208, 182, 0}
+"zigrarr", {226, 135, 157, 0}
+"zopf", {240, 157, 149, 171}
+"Zopf", {226, 132, 164, 0}
+"Zscr", {240, 157, 146, 181}
+"zscr", {240, 157, 147, 143}
+"zwj", {226, 128, 141, 0}
+"zwnj", {226, 128, 140, 0}
diff --git a/src/html_unescape.h b/src/html_unescape.h
index 6d33596..1eb318b 100644
--- a/src/html_unescape.h
+++ b/src/html_unescape.h
@@ -1,5 +1,5 @@
/* ANSI-C code produced by gperf version 3.0.3 */
-/* Command-line: /Library/Developer/CommandLineTools/usr/bin/gperf -L ANSI-C -I -t -N find_entity -H hash_entity -K entity -C -l -F ',0,{0}' --null-strings -m5 src/html_unescape.gperf */
+/* Command-line: /Library/Developer/CommandLineTools/usr/bin/gperf -L ANSI-C -I -t -N find_entity -H hash_entity -K entity -C -l -F ',{0}' --null-strings -m5 -P -Q entity_pool src/html_unescape.gperf */
/* Computed positions: -k'1-7,10,12,$' */
#if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \
@@ -31,11 +31,11 @@
#line 1 "src/html_unescape.gperf"
struct html_ent {
- const char *entity;
- unsigned int utf8_len;
+ int entity;
unsigned char utf8[4];
};
#include <string.h>
+#include <stddef.h>
#define TOTAL_KEYWORDS 2125
#define MIN_WORD_LENGTH 2
@@ -121,6 +121,4263 @@ hash_entity (register const char *str, register unsigned int len)
return hval + asso_values[(unsigned char)str[len - 1]];
}
+struct entity_pool_t
+ {
+ char entity_pool_str39[sizeof("rarr")];
+ char entity_pool_str41[sizeof("larr")];
+ char entity_pool_str49[sizeof("lat")];
+ char entity_pool_str52[sizeof("uarr")];
+ char entity_pool_str55[sizeof("npr")];
+ char entity_pool_str62[sizeof("rarrtl")];
+ char entity_pool_str64[sizeof("larrtl")];
+ char entity_pool_str65[sizeof("roarr")];
+ char entity_pool_str67[sizeof("loarr")];
+ char entity_pool_str68[sizeof("not")];
+ char entity_pool_str69[sizeof("rpar")];
+ char entity_pool_str70[sizeof("bot")];
+ char entity_pool_str71[sizeof("lpar")];
+ char entity_pool_str73[sizeof("spar")];
+ char entity_pool_str75[sizeof("ll")];
+ char entity_pool_str76[sizeof("uharr")];
+ char entity_pool_str77[sizeof("epar")];
+ char entity_pool_str81[sizeof("el")];
+ char entity_pool_str83[sizeof("rotimes")];
+ char entity_pool_str85[sizeof("lotimes")];
+ char entity_pool_str86[sizeof("par")];
+ char entity_pool_str88[sizeof("nharr")];
+ char entity_pool_str94[sizeof("npar")];
+ char entity_pool_str97[sizeof("tprime")];
+ char entity_pool_str101[sizeof("els")];
+ char entity_pool_str102[sizeof("eparsl")];
+ char entity_pool_str104[sizeof("ensp")];
+ char entity_pool_str109[sizeof("bprime")];
+ char entity_pool_str110[sizeof("lnap")];
+ char entity_pool_str111[sizeof("blk14")];
+ char entity_pool_str115[sizeof("blk12")];
+ char entity_pool_str117[sizeof("blk34")];
+ char entity_pool_str119[sizeof("nparsl")];
+ char entity_pool_str123[sizeof("nldr")];
+ char entity_pool_str124[sizeof("rlarr")];
+ char entity_pool_str125[sizeof("npart")];
+ char entity_pool_str126[sizeof("llarr")];
+ char entity_pool_str127[sizeof("nlt")];
+ char entity_pool_str128[sizeof("slarr")];
+ char entity_pool_str138[sizeof("nparallel")];
+ char entity_pool_str143[sizeof("Tau")];
+ char entity_pool_str144[sizeof("varr")];
+ char entity_pool_str146[sizeof("squ")];
+ char entity_pool_str149[sizeof("nlarr")];
+ char entity_pool_str152[sizeof("tau")];
+ char entity_pool_str165[sizeof("lne")];
+ char entity_pool_str166[sizeof("rrarr")];
+ char entity_pool_str168[sizeof("lrarr")];
+ char entity_pool_str170[sizeof("srarr")];
+ char entity_pool_str171[sizeof("rharul")];
+ char entity_pool_str173[sizeof("lharul")];
+ char entity_pool_str174[sizeof("erarr")];
+ char entity_pool_str176[sizeof("pr")];
+ char entity_pool_str177[sizeof("rharu")];
+ char entity_pool_str179[sizeof("lharu")];
+ char entity_pool_str184[sizeof("Uarr")];
+ char entity_pool_str188[sizeof("nGt")];
+ char entity_pool_str190[sizeof("bne")];
+ char entity_pool_str191[sizeof("nrarr")];
+ char entity_pool_str194[sizeof("swarr")];
+ char entity_pool_str198[sizeof("rarrap")];
+ char entity_pool_str200[sizeof("upuparrows")];
+ char entity_pool_str202[sizeof("Darr")];
+ char entity_pool_str205[sizeof("rbarr")];
+ char entity_pool_str206[sizeof("Dot")];
+ char entity_pool_str207[sizeof("lbarr")];
+ char entity_pool_str215[sizeof("nwarr")];
+ char entity_pool_str217[sizeof("smt")];
+ char entity_pool_str222[sizeof("emsp14")];
+ char entity_pool_str223[sizeof("rarrpl")];
+ char entity_pool_str225[sizeof("larrpl")];
+ char entity_pool_str230[sizeof("phmmat")];
+ char entity_pool_str232[sizeof("emsp13")];
+ char entity_pool_str234[sizeof("LT")];
+ char entity_pool_str238[sizeof("Larr")];
+ char entity_pool_str239[sizeof("rbrkslu")];
+ char entity_pool_str241[sizeof("lbrkslu")];
+ char entity_pool_str243[sizeof("napos")];
+ char entity_pool_str251[sizeof("nle")];
+ char entity_pool_str253[sizeof("rHar")];
+ char entity_pool_str255[sizeof("lHar")];
+ char entity_pool_str256[sizeof("qprime")];
+ char entity_pool_str258[sizeof("lap")];
+ char entity_pool_str265[sizeof("nbsp")];
+ char entity_pool_str266[sizeof("uHar")];
+ char entity_pool_str267[sizeof("top")];
+ char entity_pool_str269[sizeof("Vbar")];
+ char entity_pool_str272[sizeof("Ll")];
+ char entity_pool_str276[sizeof("prap")];
+ char entity_pool_str278[sizeof("emsp")];
+ char entity_pool_str281[sizeof("nap")];
+ char entity_pool_str294[sizeof("looparrowleft")];
+ char entity_pool_str296[sizeof("le")];
+ char entity_pool_str300[sizeof("sharp")];
+ char entity_pool_str302[sizeof("ee")];
+ char entity_pool_str310[sizeof("les")];
+ char entity_pool_str311[sizeof("in")];
+ char entity_pool_str312[sizeof("prop")];
+ char entity_pool_str314[sizeof("topbot")];
+ char entity_pool_str317[sizeof("int")];
+ char entity_pool_str319[sizeof("ne")];
+ char entity_pool_str329[sizeof("nprcue")];
+ char entity_pool_str331[sizeof("pre")];
+ char entity_pool_str332[sizeof("epsi")];
+ char entity_pool_str337[sizeof("upsi")];
+ char entity_pool_str338[sizeof("there4")];
+ char entity_pool_str342[sizeof("rbrke")];
+ char entity_pool_str343[sizeof("searr")];
+ char entity_pool_str344[sizeof("lbrke")];
+ char entity_pool_str346[sizeof("blacktriangle")];
+ char entity_pool_str349[sizeof("lneq")];
+ char entity_pool_str352[sizeof("lneqq")];
+ char entity_pool_str354[sizeof("plus")];
+ char entity_pool_str355[sizeof("nles")];
+ char entity_pool_str356[sizeof("nedot")];
+ char entity_pool_str357[sizeof("blacktriangleleft")];
+ char entity_pool_str358[sizeof("blacktriangleright")];
+ char entity_pool_str364[sizeof("nearr")];
+ char entity_pool_str367[sizeof("blacktriangledown")];
+ char entity_pool_str373[sizeof("nless")];
+ char entity_pool_str374[sizeof("emacr")];
+ char entity_pool_str378[sizeof("vprop")];
+ char entity_pool_str379[sizeof("umacr")];
+ char entity_pool_str383[sizeof("smeparsl")];
+ char entity_pool_str387[sizeof("Map")];
+ char entity_pool_str390[sizeof("plusdu")];
+ char entity_pool_str391[sizeof("Not")];
+ char entity_pool_str408[sizeof("Verbar")];
+ char entity_pool_str426[sizeof("perp")];
+ char entity_pool_str430[sizeof("fltns")];
+ char entity_pool_str431[sizeof("plusmn")];
+ char entity_pool_str435[sizeof("nleq")];
+ char entity_pool_str438[sizeof("nleqq")];
+ char entity_pool_str440[sizeof("frac34")];
+ char entity_pool_str441[sizeof("frac14")];
+ char entity_pool_str442[sizeof("verbar")];
+ char entity_pool_str443[sizeof("frac12")];
+ char entity_pool_str444[sizeof("frac35")];
+ char entity_pool_str445[sizeof("frac15")];
+ char entity_pool_str446[sizeof("frac45")];
+ char entity_pool_str449[sizeof("frac25")];
+ char entity_pool_str451[sizeof("frac13")];
+ char entity_pool_str453[sizeof("frac16")];
+ char entity_pool_str454[sizeof("prurel")];
+ char entity_pool_str455[sizeof("frac23")];
+ char entity_pool_str456[sizeof("frac38")];
+ char entity_pool_str457[sizeof("frac18")];
+ char entity_pool_str458[sizeof("frac56")];
+ char entity_pool_str462[sizeof("frac58")];
+ char entity_pool_str464[sizeof("frac78")];
+ char entity_pool_str465[sizeof("leq")];
+ char entity_pool_str466[sizeof("darr")];
+ char entity_pool_str469[sizeof("Upsi")];
+ char entity_pool_str470[sizeof("dot")];
+ char entity_pool_str471[sizeof("phone")];
+ char entity_pool_str474[sizeof("Cap")];
+ char entity_pool_str478[sizeof("blacksquare")];
+ char entity_pool_str479[sizeof("rnmid")];
+ char entity_pool_str483[sizeof("leqq")];
+ char entity_pool_str486[sizeof("intcal")];
+ char entity_pool_str490[sizeof("dharr")];
+ char entity_pool_str494[sizeof("rhard")];
+ char entity_pool_str496[sizeof("lhard")];
+ char entity_pool_str505[sizeof("pluse")];
+ char entity_pool_str511[sizeof("Umacr")];
+ char entity_pool_str512[sizeof("Vee")];
+ char entity_pool_str515[sizeof("Rarr")];
+ char entity_pool_str527[sizeof("Cross")];
+ char entity_pool_str529[sizeof("rsqb")];
+ char entity_pool_str531[sizeof("lsqb")];
+ char entity_pool_str538[sizeof("Rarrtl")];
+ char entity_pool_str541[sizeof("esdot")];
+ char entity_pool_str546[sizeof("vee")];
+ char entity_pool_str547[sizeof("nbumpe")];
+ char entity_pool_str553[sizeof("llcorner")];
+ char entity_pool_str554[sizeof("fpartint")];
+ char entity_pool_str558[sizeof("squf")];
+ char entity_pool_str559[sizeof("plankv")];
+ char entity_pool_str562[sizeof("eqvparsl")];
+ char entity_pool_str564[sizeof("ulcorner")];
+ char entity_pool_str566[sizeof("wp")];
+ char entity_pool_str571[sizeof("lozf")];
+ char entity_pool_str575[sizeof("COPY")];
+ char entity_pool_str577[sizeof("ulcorn")];
+ char entity_pool_str582[sizeof("veebar")];
+ char entity_pool_str584[sizeof("part")];
+ char entity_pool_str589[sizeof("square")];
+ char entity_pool_str591[sizeof("nbump")];
+ char entity_pool_str592[sizeof("bernou")];
+ char entity_pool_str593[sizeof("wr")];
+ char entity_pool_str594[sizeof("rBarr")];
+ char entity_pool_str595[sizeof("lrcorner")];
+ char entity_pool_str596[sizeof("lBarr")];
+ char entity_pool_str599[sizeof("bnot")];
+ char entity_pool_str601[sizeof("semi")];
+ char entity_pool_str606[sizeof("urcorner")];
+ char entity_pool_str612[sizeof("NotSubset")];
+ char entity_pool_str614[sizeof("ropf")];
+ char entity_pool_str615[sizeof("Qopf")];
+ char entity_pool_str616[sizeof("lopf")];
+ char entity_pool_str618[sizeof("sopf")];
+ char entity_pool_str619[sizeof("urcorn")];
+ char entity_pool_str620[sizeof("Topf")];
+ char entity_pool_str621[sizeof("Zopf")];
+ char entity_pool_str622[sizeof("eopf")];
+ char entity_pool_str626[sizeof("ropar")];
+ char entity_pool_str627[sizeof("uopf")];
+ char entity_pool_str628[sizeof("lopar")];
+ char entity_pool_str629[sizeof("topf")];
+ char entity_pool_str635[sizeof("Xopf")];
+ char entity_pool_str639[sizeof("nopf")];
+ char entity_pool_str641[sizeof("bopf")];
+ char entity_pool_str642[sizeof("epsiv")];
+ char entity_pool_str643[sizeof("fnof")];
+ char entity_pool_str644[sizeof("imacr")];
+ char entity_pool_str647[sizeof("Jopf")];
+ char entity_pool_str649[sizeof("nhpar")];
+ char entity_pool_str653[sizeof("Wopf")];
+ char entity_pool_str658[sizeof("Sqrt")];
+ char entity_pool_str659[sizeof("nsub")];
+ char entity_pool_str661[sizeof("napid")];
+ char entity_pool_str664[sizeof("NotSuperset")];
+ char entity_pool_str667[sizeof("brvbar")];
+ char entity_pool_str670[sizeof("sol")];
+ char entity_pool_str675[sizeof("easter")];
+ char entity_pool_str677[sizeof("popf")];
+ char entity_pool_str680[sizeof("dHar")];
+ char entity_pool_str685[sizeof("Vopf")];
+ char entity_pool_str690[sizeof("nsupset")];
+ char entity_pool_str691[sizeof("nsup")];
+ char entity_pool_str692[sizeof("vBar")];
+ char entity_pool_str694[sizeof("nsubset")];
+ char entity_pool_str700[sizeof("thkap")];
+ char entity_pool_str704[sizeof("nis")];
+ char entity_pool_str705[sizeof("profsurf")];
+ char entity_pool_str706[sizeof("solb")];
+ char entity_pool_str710[sizeof("lnsim")];
+ char entity_pool_str712[sizeof("solbar")];
+ char entity_pool_str717[sizeof("Square")];
+ char entity_pool_str719[sizeof("vopf")];
+ char entity_pool_str723[sizeof("uharl")];
+ char entity_pool_str725[sizeof("ulcrop")];
+ char entity_pool_str729[sizeof("eqsim")];
+ char entity_pool_str730[sizeof("equiv")];
+ char entity_pool_str733[sizeof("ell")];
+ char entity_pool_str734[sizeof("smashp")];
+ char entity_pool_str735[sizeof("mp")];
+ char entity_pool_str738[sizeof("Kopf")];
+ char entity_pool_str741[sizeof("simrarr")];
+ char entity_pool_str743[sizeof("flat")];
+ char entity_pool_str745[sizeof("Mopf")];
+ char entity_pool_str746[sizeof("Sopf")];
+ char entity_pool_str747[sizeof("mldr")];
+ char entity_pool_str748[sizeof("rlm")];
+ char entity_pool_str749[sizeof("iprod")];
+ char entity_pool_str756[sizeof("lparlt")];
+ char entity_pool_str758[sizeof("fopf")];
+ char entity_pool_str759[sizeof("Uopf")];
+ char entity_pool_str763[sizeof("varsubsetneq")];
+ char entity_pool_str764[sizeof("varsubsetneqq")];
+ char entity_pool_str767[sizeof("urcrop")];
+ char entity_pool_str768[sizeof("LessLess")];
+ char entity_pool_str770[sizeof("Re")];
+ char entity_pool_str773[sizeof("NotNestedLessLess")];
+ char entity_pool_str777[sizeof("Dopf")];
+ char entity_pool_str779[sizeof("forkv")];
+ char entity_pool_str781[sizeof("nsqsube")];
+ char entity_pool_str783[sizeof("nsupe")];
+ char entity_pool_str787[sizeof("nsube")];
+ char entity_pool_str788[sizeof("qopf")];
+ char entity_pool_str789[sizeof("rlhar")];
+ char entity_pool_str792[sizeof("lrm")];
+ char entity_pool_str796[sizeof("nlsim")];
+ char entity_pool_str798[sizeof("pound")];
+ char entity_pool_str799[sizeof("varsupsetneq")];
+ char entity_pool_str800[sizeof("varsupsetneqq")];
+ char entity_pool_str802[sizeof("bnequiv")];
+ char entity_pool_str813[sizeof("Lopf")];
+ char entity_pool_str817[sizeof("nsqsupe")];
+ char entity_pool_str820[sizeof("rarrlp")];
+ char entity_pool_str821[sizeof("wedbar")];
+ char entity_pool_str822[sizeof("larrlp")];
+ char entity_pool_str824[sizeof("Yopf")];
+ char entity_pool_str829[sizeof("NotReverseElement")];
+ char entity_pool_str832[sizeof("Copf")];
+ char entity_pool_str833[sizeof("lrhar")];
+ char entity_pool_str848[sizeof("parsl")];
+ char entity_pool_str849[sizeof("uml")];
+ char entity_pool_str850[sizeof("marker")];
+ char entity_pool_str851[sizeof("nsupseteq")];
+ char entity_pool_str855[sizeof("nsubseteq")];
+ char entity_pool_str861[sizeof("squarf")];
+ char entity_pool_str862[sizeof("Vert")];
+ char entity_pool_str874[sizeof("SquareSupersetEqual")];
+ char entity_pool_str876[sizeof("prsim")];
+ char entity_pool_str879[sizeof("SquareSubsetEqual")];
+ char entity_pool_str882[sizeof("SquareSuperset")];
+ char entity_pool_str887[sizeof("SquareSubset")];
+ char entity_pool_str888[sizeof("nvap")];
+ char entity_pool_str892[sizeof("iopf")];
+ char entity_pool_str894[sizeof("pm")];
+ char entity_pool_str896[sizeof("vert")];
+ char entity_pool_str898[sizeof("thetav")];
+ char entity_pool_str901[sizeof("loz")];
+ char entity_pool_str905[sizeof("map")];
+ char entity_pool_str920[sizeof("lesseqqgtr")];
+ char entity_pool_str934[sizeof("rscr")];
+ char entity_pool_str935[sizeof("Qscr")];
+ char entity_pool_str936[sizeof("lscr")];
+ char entity_pool_str938[sizeof("sscr")];
+ char entity_pool_str940[sizeof("Tscr")];
+ char entity_pool_str941[sizeof("Zscr")];
+ char entity_pool_str942[sizeof("escr")];
+ char entity_pool_str947[sizeof("uscr")];
+ char entity_pool_str949[sizeof("tscr")];
+ char entity_pool_str951[sizeof("imof")];
+ char entity_pool_str952[sizeof("Coproduct")];
+ char entity_pool_str955[sizeof("Xscr")];
+ char entity_pool_str956[sizeof("Xi")];
+ char entity_pool_str959[sizeof("nscr")];
+ char entity_pool_str960[sizeof("ni")];
+ char entity_pool_str961[sizeof("bscr")];
+ char entity_pool_str962[sizeof("Nopf")];
+ char entity_pool_str967[sizeof("Jscr")];
+ char entity_pool_str968[sizeof("preceq")];
+ char entity_pool_str971[sizeof("nvrArr")];
+ char entity_pool_str972[sizeof("backprime")];
+ char entity_pool_str973[sizeof("Wscr")];
+ char entity_pool_str975[sizeof("varphi")];
+ char entity_pool_str984[sizeof("nsmid")];
+ char entity_pool_str991[sizeof("dlcorn")];
+ char entity_pool_str997[sizeof("pscr")];
+ char entity_pool_str998[sizeof("pi")];
+ char entity_pool_str1005[sizeof("Vscr")];
+ char entity_pool_str1011[sizeof("nesim")];
+ char entity_pool_str1021[sizeof("simne")];
+ char entity_pool_str1028[sizeof("nsupseteqq")];
+ char entity_pool_str1032[sizeof("nsubseteqq")];
+ char entity_pool_str1033[sizeof("drcorn")];
+ char entity_pool_str1038[sizeof("rbrace")];
+ char entity_pool_str1039[sizeof("vscr")];
+ char entity_pool_str1040[sizeof("lbrace")];
+ char entity_pool_str1041[sizeof("dopf")];
+ char entity_pool_str1049[sizeof("frasl")];
+ char entity_pool_str1055[sizeof("LessTilde")];
+ char entity_pool_str1058[sizeof("Kscr")];
+ char entity_pool_str1064[sizeof("pluscir")];
+ char entity_pool_str1065[sizeof("Mscr")];
+ char entity_pool_str1066[sizeof("Sscr")];
+ char entity_pool_str1067[sizeof("rbrksld")];
+ char entity_pool_str1069[sizeof("lbrksld")];
+ char entity_pool_str1070[sizeof("RBarr")];
+ char entity_pool_str1073[sizeof("sqcaps")];
+ char entity_pool_str1074[sizeof("rArr")];
+ char entity_pool_str1075[sizeof("bNot")];
+ char entity_pool_str1076[sizeof("lArr")];
+ char entity_pool_str1078[sizeof("fscr")];
+ char entity_pool_str1079[sizeof("Uscr")];
+ char entity_pool_str1087[sizeof("uArr")];
+ char entity_pool_str1090[sizeof("Ropf")];
+ char entity_pool_str1094[sizeof("wopf")];
+ char entity_pool_str1097[sizeof("Dscr")];
+ char entity_pool_str1098[sizeof("opar")];
+ char entity_pool_str1099[sizeof("seswar")];
+ char entity_pool_str1103[sizeof("Del")];
+ char entity_pool_str1104[sizeof("rAarr")];
+ char entity_pool_str1105[sizeof("rho")];
+ char entity_pool_str1106[sizeof("lAarr")];
+ char entity_pool_str1107[sizeof("preccurlyeq")];
+ char entity_pool_str1108[sizeof("qscr")];
+ char entity_pool_str1111[sizeof("macr")];
+ char entity_pool_str1115[sizeof("notin")];
+ char entity_pool_str1120[sizeof("equivDD")];
+ char entity_pool_str1125[sizeof("sqcap")];
+ char entity_pool_str1127[sizeof("nspar")];
+ char entity_pool_str1131[sizeof("olt")];
+ char entity_pool_str1132[sizeof("ratio")];
+ char entity_pool_str1133[sizeof("Lscr")];
+ char entity_pool_str1137[sizeof("dharl")];
+ char entity_pool_str1139[sizeof("dlcrop")];
+ char entity_pool_str1140[sizeof("DoubleDot")];
+ char entity_pool_str1141[sizeof("dotplus")];
+ char entity_pool_str1142[sizeof("or")];
+ char entity_pool_str1144[sizeof("Yscr")];
+ char entity_pool_str1147[sizeof("Fopf")];
+ char entity_pool_str1152[sizeof("Cscr")];
+ char entity_pool_str1153[sizeof("olarr")];
+ char entity_pool_str1154[sizeof("nrarrw")];
+ char entity_pool_str1159[sizeof("lvertneqq")];
+ char entity_pool_str1160[sizeof("eqslantgtr")];
+ char entity_pool_str1164[sizeof("thorn")];
+ char entity_pool_str1169[sizeof("eqslantless")];
+ char entity_pool_str1172[sizeof("incare")];
+ char entity_pool_str1179[sizeof("vArr")];
+ char entity_pool_str1180[sizeof("rppolint")];
+ char entity_pool_str1181[sizeof("drcrop")];
+ char entity_pool_str1187[sizeof("parallel")];
+ char entity_pool_str1195[sizeof("orarr")];
+ char entity_pool_str1196[sizeof("ssmile")];
+ char entity_pool_str1200[sizeof("DoubleLeftTee")];
+ char entity_pool_str1201[sizeof("erDot")];
+ char entity_pool_str1202[sizeof("diams")];
+ char entity_pool_str1203[sizeof("ssetmn")];
+ char entity_pool_str1208[sizeof("oS")];
+ char entity_pool_str1212[sizeof("iscr")];
+ char entity_pool_str1213[sizeof("ii")];
+ char entity_pool_str1214[sizeof("rect")];
+ char entity_pool_str1217[sizeof("nsccue")];
+ char entity_pool_str1218[sizeof("sect")];
+ char entity_pool_str1220[sizeof("mlcp")];
+ char entity_pool_str1224[sizeof("oror")];
+ char entity_pool_str1226[sizeof("DoubleContourIntegral")];
+ char entity_pool_str1230[sizeof("equals")];
+ char entity_pool_str1232[sizeof("Hat")];
+ char entity_pool_str1236[sizeof("sstarf")];
+ char entity_pool_str1237[sizeof("mstpos")];
+ char entity_pool_str1239[sizeof("die")];
+ char entity_pool_str1240[sizeof("measuredangle")];
+ char entity_pool_str1252[sizeof("forall")];
+ char entity_pool_str1255[sizeof("notinvb")];
+ char entity_pool_str1263[sizeof("mopf")];
+ char entity_pool_str1270[sizeof("niv")];
+ char entity_pool_str1280[sizeof("vBarv")];
+ char entity_pool_str1282[sizeof("Nscr")];
+ char entity_pool_str1284[sizeof("period")];
+ char entity_pool_str1292[sizeof("becaus")];
+ char entity_pool_str1298[sizeof("between")];
+ char entity_pool_str1299[sizeof("Int")];
+ char entity_pool_str1307[sizeof("because")];
+ char entity_pool_str1308[sizeof("piv")];
+ char entity_pool_str1326[sizeof("rfr")];
+ char entity_pool_str1327[sizeof("Qfr")];
+ char entity_pool_str1328[sizeof("lfr")];
+ char entity_pool_str1330[sizeof("sfr")];
+ char entity_pool_str1331[sizeof("nleftrightarrow")];
+ char entity_pool_str1332[sizeof("Tfr")];
+ char entity_pool_str1333[sizeof("Zfr")];
+ char entity_pool_str1334[sizeof("efr")];
+ char entity_pool_str1338[sizeof("sim")];
+ char entity_pool_str1339[sizeof("ufr")];
+ char entity_pool_str1340[sizeof("roplus")];
+ char entity_pool_str1341[sizeof("tfr")];
+ char entity_pool_str1342[sizeof("loplus")];
+ char entity_pool_str1347[sizeof("Xfr")];
+ char entity_pool_str1350[sizeof("real")];
+ char entity_pool_str1351[sizeof("nfr")];
+ char entity_pool_str1353[sizeof("bfr")];
+ char entity_pool_str1355[sizeof("NotHumpEqual")];
+ char entity_pool_str1359[sizeof("Jfr")];
+ char entity_pool_str1361[sizeof("dscr")];
+ char entity_pool_str1365[sizeof("Wfr")];
+ char entity_pool_str1367[sizeof("blacklozenge")];
+ char entity_pool_str1369[sizeof("zopf")];
+ char entity_pool_str1370[sizeof("reals")];
+ char entity_pool_str1372[sizeof("NotCupCap")];
+ char entity_pool_str1375[sizeof("simplus")];
+ char entity_pool_str1377[sizeof("ForAll")];
+ char entity_pool_str1389[sizeof("pfr")];
+ char entity_pool_str1395[sizeof("omacr")];
+ char entity_pool_str1397[sizeof("Vfr")];
+ char entity_pool_str1409[sizeof("Emacr")];
+ char entity_pool_str1410[sizeof("Rscr")];
+ char entity_pool_str1414[sizeof("wscr")];
+ char entity_pool_str1423[sizeof("ShortUpArrow")];
+ char entity_pool_str1429[sizeof("setmn")];
+ char entity_pool_str1431[sizeof("vfr")];
+ char entity_pool_str1450[sizeof("Kfr")];
+ char entity_pool_str1455[sizeof("operp")];
+ char entity_pool_str1457[sizeof("Mfr")];
+ char entity_pool_str1458[sizeof("Sfr")];
+ char entity_pool_str1461[sizeof("nltrie")];
+ char entity_pool_str1467[sizeof("Fscr")];
+ char entity_pool_str1470[sizeof("ffr")];
+ char entity_pool_str1471[sizeof("Ufr")];
+ char entity_pool_str1473[sizeof("shortmid")];
+ char entity_pool_str1488[sizeof("nvsim")];
+ char entity_pool_str1489[sizeof("Dfr")];
+ char entity_pool_str1490[sizeof("lessdot")];
+ char entity_pool_str1493[sizeof("profline")];
+ char entity_pool_str1500[sizeof("qfr")];
+ char entity_pool_str1501[sizeof("dArr")];
+ char entity_pool_str1503[sizeof("nrtrie")];
+ char entity_pool_str1507[sizeof("ShortRightArrow")];
+ char entity_pool_str1515[sizeof("Therefore")];
+ char entity_pool_str1519[sizeof("DD")];
+ char entity_pool_str1524[sizeof("therefore")];
+ char entity_pool_str1525[sizeof("Lfr")];
+ char entity_pool_str1532[sizeof("target")];
+ char entity_pool_str1535[sizeof("Element")];
+ char entity_pool_str1536[sizeof("Yfr")];
+ char entity_pool_str1537[sizeof("ClockwiseContourIntegral")];
+ char entity_pool_str1542[sizeof("olcir")];
+ char entity_pool_str1544[sizeof("Cfr")];
+ char entity_pool_str1559[sizeof("female")];
+ char entity_pool_str1560[sizeof("nsucceq")];
+ char entity_pool_str1561[sizeof("oast")];
+ char entity_pool_str1568[sizeof("percnt")];
+ char entity_pool_str1578[sizeof("ordf")];
+ char entity_pool_str1580[sizeof("ord")];
+ char entity_pool_str1581[sizeof("Rho")];
+ char entity_pool_str1583[sizeof("mscr")];
+ char entity_pool_str1585[sizeof("nvrtrie")];
+ char entity_pool_str1589[sizeof("lnE")];
+ char entity_pool_str1597[sizeof("nhArr")];
+ char entity_pool_str1598[sizeof("Or")];
+ char entity_pool_str1602[sizeof("divide")];
+ char entity_pool_str1604[sizeof("ifr")];
+ char entity_pool_str1605[sizeof("elinters")];
+ char entity_pool_str1615[sizeof("bsol")];
+ char entity_pool_str1616[sizeof("nvlArr")];
+ char entity_pool_str1626[sizeof("Imacr")];
+ char entity_pool_str1628[sizeof("backsimeq")];
+ char entity_pool_str1629[sizeof("twixt")];
+ char entity_pool_str1630[sizeof("olcross")];
+ char entity_pool_str1639[sizeof("rarrsim")];
+ char entity_pool_str1640[sizeof("DoubleDownArrow")];
+ char entity_pool_str1641[sizeof("larrsim")];
+ char entity_pool_str1642[sizeof("emptyset")];
+ char entity_pool_str1643[sizeof("oopf")];
+ char entity_pool_str1645[sizeof("exist")];
+ char entity_pool_str1648[sizeof("llhard")];
+ char entity_pool_str1656[sizeof("excl")];
+ char entity_pool_str1657[sizeof("Eopf")];
+ char entity_pool_str1658[sizeof("nlArr")];
+ char entity_pool_str1663[sizeof("thinsp")];
+ char entity_pool_str1664[sizeof("NotSubsetEqual")];
+ char entity_pool_str1665[sizeof("phi")];
+ char entity_pool_str1666[sizeof("DoubleLeftArrow")];
+ char entity_pool_str1668[sizeof("topcir")];
+ char entity_pool_str1672[sizeof("div")];
+ char entity_pool_str1674[sizeof("Nfr")];
+ char entity_pool_str1675[sizeof("nlE")];
+ char entity_pool_str1689[sizeof("zscr")];
+ char entity_pool_str1690[sizeof("lrhard")];
+ char entity_pool_str1697[sizeof("lltri")];
+ char entity_pool_str1700[sizeof("nrArr")];
+ char entity_pool_str1701[sizeof("NotSupersetEqual")];
+ char entity_pool_str1703[sizeof("swArr")];
+ char entity_pool_str1704[sizeof("ThickSpace")];
+ char entity_pool_str1708[sizeof("ultri")];
+ char entity_pool_str1709[sizeof("notnivb")];
+ char entity_pool_str1711[sizeof("prime")];
+ char entity_pool_str1714[sizeof("primes")];
+ char entity_pool_str1716[sizeof("ohm")];
+ char entity_pool_str1719[sizeof("CircleTimes")];
+ char entity_pool_str1720[sizeof("nltri")];
+ char entity_pool_str1723[sizeof("siml")];
+ char entity_pool_str1724[sizeof("nwArr")];
+ char entity_pool_str1727[sizeof("varpi")];
+ char entity_pool_str1730[sizeof("orv")];
+ char entity_pool_str1735[sizeof("setminus")];
+ char entity_pool_str1739[sizeof("lrtri")];
+ char entity_pool_str1743[sizeof("permil")];
+ char entity_pool_str1744[sizeof("mid")];
+ char entity_pool_str1750[sizeof("urtri")];
+ char entity_pool_str1753[sizeof("dfr")];
+ char entity_pool_str1754[sizeof("mho")];
+ char entity_pool_str1755[sizeof("prE")];
+ char entity_pool_str1759[sizeof("vsupne")];
+ char entity_pool_str1762[sizeof("nrtri")];
+ char entity_pool_str1763[sizeof("vsubne")];
+ char entity_pool_str1765[sizeof("eDot")];
+ char entity_pool_str1778[sizeof("lesges")];
+ char entity_pool_str1781[sizeof("backepsilon")];
+ char entity_pool_str1783[sizeof("ratail")];
+ char entity_pool_str1785[sizeof("latail")];
+ char entity_pool_str1788[sizeof("UpEquilibrium")];
+ char entity_pool_str1791[sizeof("epsilon")];
+ char entity_pool_str1796[sizeof("upsilon")];
+ char entity_pool_str1798[sizeof("midast")];
+ char entity_pool_str1799[sizeof("Hopf")];
+ char entity_pool_str1800[sizeof("vltri")];
+ char entity_pool_str1802[sizeof("Rfr")];
+ char entity_pool_str1805[sizeof("Wedge")];
+ char entity_pool_str1806[sizeof("wfr")];
+ char entity_pool_str1812[sizeof("barwed")];
+ char entity_pool_str1815[sizeof("malt")];
+ char entity_pool_str1820[sizeof("Chi")];
+ char entity_pool_str1821[sizeof("emptyv")];
+ char entity_pool_str1822[sizeof("notni")];
+ char entity_pool_str1827[sizeof("LessGreater")];
+ char entity_pool_str1829[sizeof("diam")];
+ char entity_pool_str1842[sizeof("vrtri")];
+ char entity_pool_str1849[sizeof("CircleMinus")];
+ char entity_pool_str1851[sizeof("Omacr")];
+ char entity_pool_str1852[sizeof("seArr")];
+ char entity_pool_str1859[sizeof("Ffr")];
+ char entity_pool_str1865[sizeof("precneqq")];
+ char entity_pool_str1867[sizeof("Diamond")];
+ char entity_pool_str1868[sizeof("ordm")];
+ char entity_pool_str1873[sizeof("neArr")];
+ char entity_pool_str1874[sizeof("Iopf")];
+ char entity_pool_str1875[sizeof("CircleDot")];
+ char entity_pool_str1878[sizeof("prnap")];
+ char entity_pool_str1884[sizeof("dotminus")];
+ char entity_pool_str1903[sizeof("nshortmid")];
+ char entity_pool_str1905[sizeof("bottom")];
+ char entity_pool_str1907[sizeof("pointint")];
+ char entity_pool_str1917[sizeof("SquareUnion")];
+ char entity_pool_str1925[sizeof("jopf")];
+ char entity_pool_str1928[sizeof("Upsilon")];
+ char entity_pool_str1936[sizeof("Colone")];
+ char entity_pool_str1938[sizeof("nvlt")];
+ char entity_pool_str1941[sizeof("NestedLessLess")];
+ char entity_pool_str1942[sizeof("Colon")];
+ char entity_pool_str1945[sizeof("bsolhsub")];
+ char entity_pool_str1949[sizeof("DoubleLeftRightArrow")];
+ char entity_pool_str1950[sizeof("plussim")];
+ char entity_pool_str1959[sizeof("image")];
+ char entity_pool_str1960[sizeof("egs")];
+ char entity_pool_str1963[sizeof("oscr")];
+ char entity_pool_str1964[sizeof("swnwar")];
+ char entity_pool_str1969[sizeof("zeetrf")];
+ char entity_pool_str1973[sizeof("maltese")];
+ char entity_pool_str1975[sizeof("mfr")];
+ char entity_pool_str1976[sizeof("rarrfs")];
+ char entity_pool_str1977[sizeof("Escr")];
+ char entity_pool_str1978[sizeof("larrfs")];
+ char entity_pool_str1985[sizeof("mnplus")];
+ char entity_pool_str1986[sizeof("ngt")];
+ char entity_pool_str1987[sizeof("ngtr")];
+ char entity_pool_str1996[sizeof("gl")];
+ char entity_pool_str2003[sizeof("diamondsuit")];
+ char entity_pool_str2004[sizeof("GT")];
+ char entity_pool_str2014[sizeof("lesssim")];
+ char entity_pool_str2015[sizeof("dsol")];
+ char entity_pool_str2023[sizeof("upharpoonleft")];
+ char entity_pool_str2024[sizeof("SquareIntersection")];
+ char entity_pool_str2025[sizeof("lsime")];
+ char entity_pool_str2027[sizeof("nLt")];
+ char entity_pool_str2029[sizeof("NotLess")];
+ char entity_pool_str2031[sizeof("gnap")];
+ char entity_pool_str2035[sizeof("scap")];
+ char entity_pool_str2038[sizeof("mapstoleft")];
+ char entity_pool_str2039[sizeof("NotLessLess")];
+ char entity_pool_str2043[sizeof("rfloor")];
+ char entity_pool_str2045[sizeof("lfloor")];
+ char entity_pool_str2048[sizeof("nsime")];
+ char entity_pool_str2050[sizeof("bsime")];
+ char entity_pool_str2051[sizeof("NotLessEqual")];
+ char entity_pool_str2052[sizeof("NotLessTilde")];
+ char entity_pool_str2056[sizeof("ncap")];
+ char entity_pool_str2059[sizeof("NotLessGreater")];
+ char entity_pool_str2070[sizeof("precsim")];
+ char entity_pool_str2072[sizeof("looparrowright")];
+ char entity_pool_str2076[sizeof("Pr")];
+ char entity_pool_str2077[sizeof("rcub")];
+ char entity_pool_str2078[sizeof("mapstoup")];
+ char entity_pool_str2079[sizeof("lcub")];
+ char entity_pool_str2081[sizeof("zfr")];
+ char entity_pool_str2084[sizeof("uparrow")];
+ char entity_pool_str2086[sizeof("gne")];
+ char entity_pool_str2090[sizeof("sce")];
+ char entity_pool_str2091[sizeof("Im")];
+ char entity_pool_str2096[sizeof("rcaron")];
+ char entity_pool_str2098[sizeof("lcaron")];
+ char entity_pool_str2099[sizeof("Oopf")];
+ char entity_pool_str2100[sizeof("scaron")];
+ char entity_pool_str2101[sizeof("backsim")];
+ char entity_pool_str2102[sizeof("Tcaron")];
+ char entity_pool_str2103[sizeof("Zcaron")];
+ char entity_pool_str2104[sizeof("ecaron")];
+ char entity_pool_str2106[sizeof("Bernoullis")];
+ char entity_pool_str2110[sizeof("nge")];
+ char entity_pool_str2111[sizeof("tcaron")];
+ char entity_pool_str2113[sizeof("fork")];
+ char entity_pool_str2119[sizeof("Hscr")];
+ char entity_pool_str2121[sizeof("ncaron")];
+ char entity_pool_str2122[sizeof("elsdot")];
+ char entity_pool_str2124[sizeof("tbrk")];
+ char entity_pool_str2128[sizeof("triplus")];
+ char entity_pool_str2131[sizeof("diamond")];
+ char entity_pool_str2134[sizeof("ncup")];
+ char entity_pool_str2136[sizeof("bbrk")];
+ char entity_pool_str2138[sizeof("frown")];
+ char entity_pool_str2139[sizeof("bkarow")];
+ char entity_pool_str2141[sizeof("spades")];
+ char entity_pool_str2143[sizeof("psi")];
+ char entity_pool_str2150[sizeof("Bopf")];
+ char entity_pool_str2156[sizeof("dollar")];
+ char entity_pool_str2164[sizeof("disin")];
+ char entity_pool_str2170[sizeof("spadesuit")];
+ char entity_pool_str2176[sizeof("NotTilde")];
+ char entity_pool_str2177[sizeof("doublebarwedge")];
+ char entity_pool_str2179[sizeof("gap")];
+ char entity_pool_str2186[sizeof("bbrktbrk")];
+ char entity_pool_str2189[sizeof("swarrow")];
+ char entity_pool_str2190[sizeof("bepsi")];
+ char entity_pool_str2194[sizeof("Iscr")];
+ char entity_pool_str2198[sizeof("NotTildeFullEqual")];
+ char entity_pool_str2199[sizeof("eqcolon")];
+ char entity_pool_str2202[sizeof("tint")];
+ char entity_pool_str2205[sizeof("intprod")];
+ char entity_pool_str2207[sizeof("nsupE")];
+ char entity_pool_str2210[sizeof("nwarrow")];
+ char entity_pool_str2211[sizeof("nsubE")];
+ char entity_pool_str2214[sizeof("nges")];
+ char entity_pool_str2216[sizeof("Uparrow")];
+ char entity_pool_str2217[sizeof("ge")];
+ char entity_pool_str2218[sizeof("OpenCurlyDoubleQuote")];
+ char entity_pool_str2223[sizeof("smallsetminus")];
+ char entity_pool_str2228[sizeof("Scaron")];
+ char entity_pool_str2230[sizeof("nvltrie")];
+ char entity_pool_str2231[sizeof("ges")];
+ char entity_pool_str2232[sizeof("blank")];
+ char entity_pool_str2233[sizeof("QUOT")];
+ char entity_pool_str2238[sizeof("block")];
+ char entity_pool_str2239[sizeof("trade")];
+ char entity_pool_str2245[sizeof("jscr")];
+ char entity_pool_str2246[sizeof("wedge")];
+ char entity_pool_str2254[sizeof("Amacr")];
+ char entity_pool_str2256[sizeof("Equal")];
+ char entity_pool_str2259[sizeof("Dcaron")];
+ char entity_pool_str2262[sizeof("DotDot")];
+ char entity_pool_str2270[sizeof("gneq")];
+ char entity_pool_str2271[sizeof("varpropto")];
+ char entity_pool_str2273[sizeof("gneqq")];
+ char entity_pool_str2274[sizeof("Proportional")];
+ char entity_pool_str2279[sizeof("isins")];
+ char entity_pool_str2281[sizeof("eDDot")];
+ char entity_pool_str2282[sizeof("isin")];
+ char entity_pool_str2286[sizeof("TripleDot")];
+ char entity_pool_str2290[sizeof("Fouriertrf")];
+ char entity_pool_str2291[sizeof("Proportion")];
+ char entity_pool_str2294[sizeof("ngeq")];
+ char entity_pool_str2295[sizeof("Lcaron")];
+ char entity_pool_str2297[sizeof("ngeqq")];
+ char entity_pool_str2313[sizeof("lE")];
+ char entity_pool_str2314[sizeof("Ccaron")];
+ char entity_pool_str2320[sizeof("bsemi")];
+ char entity_pool_str2326[sizeof("propto")];
+ char entity_pool_str2331[sizeof("lesdot")];
+ char entity_pool_str2332[sizeof("Conint")];
+ char entity_pool_str2334[sizeof("And")];
+ char entity_pool_str2338[sizeof("searrow")];
+ char entity_pool_str2343[sizeof("orslope")];
+ char entity_pool_str2344[sizeof("harr")];
+ char entity_pool_str2350[sizeof("late")];
+ char entity_pool_str2352[sizeof("CenterDot")];
+ char entity_pool_str2355[sizeof("ofr")];
+ char entity_pool_str2359[sizeof("nearrow")];
+ char entity_pool_str2361[sizeof("qint")];
+ char entity_pool_str2364[sizeof("lates")];
+ char entity_pool_str2365[sizeof("kappav")];
+ char entity_pool_str2368[sizeof("horbar")];
+ char entity_pool_str2369[sizeof("Efr")];
+ char entity_pool_str2370[sizeof("hoarr")];
+ char entity_pool_str2371[sizeof("npre")];
+ char entity_pool_str2377[sizeof("inodot")];
+ char entity_pool_str2379[sizeof("udarr")];
+ char entity_pool_str2386[sizeof("geq")];
+ char entity_pool_str2391[sizeof("nsimeq")];
+ char entity_pool_str2404[sizeof("geqq")];
+ char entity_pool_str2407[sizeof("efDot")];
+ char entity_pool_str2410[sizeof("rpargt")];
+ char entity_pool_str2419[sizeof("Oscr")];
+ char entity_pool_str2422[sizeof("plusdo")];
+ char entity_pool_str2425[sizeof("lagran")];
+ char entity_pool_str2429[sizeof("thicksim")];
+ char entity_pool_str2440[sizeof("precnsim")];
+ char entity_pool_str2444[sizeof("Ncaron")];
+ char entity_pool_str2449[sizeof("napE")];
+ char entity_pool_str2457[sizeof("iiint")];
+ char entity_pool_str2470[sizeof("Bscr")];
+ char entity_pool_str2483[sizeof("mapstodown")];
+ char entity_pool_str2486[sizeof("varrho")];
+ char entity_pool_str2488[sizeof("isinsv")];
+ char entity_pool_str2491[sizeof("nvHarr")];
+ char entity_pool_str2494[sizeof("NotLeftTriangleBar")];
+ char entity_pool_str2496[sizeof("equest")];
+ char entity_pool_str2498[sizeof("NotLeftTriangleEqual")];
+ char entity_pool_str2499[sizeof("NotLeftTriangle")];
+ char entity_pool_str2502[sizeof("Aopf")];
+ char entity_pool_str2503[sizeof("hbar")];
+ char entity_pool_str2507[sizeof("vangrt")];
+ char entity_pool_str2511[sizeof("Hfr")];
+ char entity_pool_str2517[sizeof("range")];
+ char entity_pool_str2518[sizeof("smte")];
+ char entity_pool_str2519[sizeof("lsim")];
+ char entity_pool_str2521[sizeof("npolint")];
+ char entity_pool_str2523[sizeof("dcaron")];
+ char entity_pool_str2525[sizeof("esim")];
+ char entity_pool_str2527[sizeof("Union")];
+ char entity_pool_str2532[sizeof("smtes")];
+ char entity_pool_str2536[sizeof("kopf")];
+ char entity_pool_str2537[sizeof("gopf")];
+ char entity_pool_str2542[sizeof("nsim")];
+ char entity_pool_str2544[sizeof("bsim")];
+ char entity_pool_str2546[sizeof("SmallCircle")];
+ char entity_pool_str2548[sizeof("NotDoubleVerticalBar")];
+ char entity_pool_str2549[sizeof("NotNestedGreaterGreater")];
+ char entity_pool_str2565[sizeof("EqualTilde")];
+ char entity_pool_str2568[sizeof("notindot")];
+ char entity_pool_str2572[sizeof("Rcaron")];
+ char entity_pool_str2577[sizeof("Popf")];
+ char entity_pool_str2583[sizeof("Gopf")];
+ char entity_pool_str2586[sizeof("Ifr")];
+ char entity_pool_str2589[sizeof("wedgeq")];
+ char entity_pool_str2595[sizeof("prod")];
+ char entity_pool_str2617[sizeof("osol")];
+ char entity_pool_str2624[sizeof("DoubleUpArrow")];
+ char entity_pool_str2627[sizeof("Congruent")];
+ char entity_pool_str2631[sizeof("gnsim")];
+ char entity_pool_str2635[sizeof("scsim")];
+ char entity_pool_str2637[sizeof("jfr")];
+ char entity_pool_str2645[sizeof("upsih")];
+ char entity_pool_str2650[sizeof("nLl")];
+ char entity_pool_str2653[sizeof("DoubleUpDownArrow")];
+ char entity_pool_str2655[sizeof("ngsim")];
+ char entity_pool_str2664[sizeof("hearts")];
+ char entity_pool_str2666[sizeof("lesseqgtr")];
+ char entity_pool_str2670[sizeof("nesear")];
+ char entity_pool_str2676[sizeof("Exists")];
+ char entity_pool_str2687[sizeof("smile")];
+ char entity_pool_str2689[sizeof("uwangle")];
+ char entity_pool_str2693[sizeof("heartsuit")];
+ char entity_pool_str2700[sizeof("HorizontalLine")];
+ char entity_pool_str2703[sizeof("GreaterLess")];
+ char entity_pool_str2705[sizeof("rsaquo")];
+ char entity_pool_str2707[sizeof("lsaquo")];
+ char entity_pool_str2709[sizeof("realine")];
+ char entity_pool_str2710[sizeof("Dashv")];
+ char entity_pool_str2714[sizeof("simdot")];
+ char entity_pool_str2715[sizeof("GreaterEqual")];
+ char entity_pool_str2716[sizeof("GreaterTilde")];
+ char entity_pool_str2721[sizeof("GreaterEqualLess")];
+ char entity_pool_str2723[sizeof("GreaterGreater")];
+ char entity_pool_str2737[sizeof("rceil")];
+ char entity_pool_str2739[sizeof("lceil")];
+ char entity_pool_str2743[sizeof("lessgtr")];
+ char entity_pool_str2746[sizeof("oline")];
+ char entity_pool_str2753[sizeof("thksim")];
+ char entity_pool_str2755[sizeof("InvisibleTimes")];
+ char entity_pool_str2762[sizeof("race")];
+ char entity_pool_str2766[sizeof("iquest")];
+ char entity_pool_str2774[sizeof("imagline")];
+ char entity_pool_str2779[sizeof("UpTee")];
+ char entity_pool_str2781[sizeof("midcir")];
+ char entity_pool_str2790[sizeof("ofcir")];
+ char entity_pool_str2793[sizeof("ddarr")];
+ char entity_pool_str2800[sizeof("rangd")];
+ char entity_pool_str2802[sizeof("langd")];
+ char entity_pool_str2808[sizeof("Equilibrium")];
+ char entity_pool_str2809[sizeof("parsim")];
+ char entity_pool_str2810[sizeof("Vdashl")];
+ char entity_pool_str2811[sizeof("Ofr")];
+ char entity_pool_str2816[sizeof("Because")];
+ char entity_pool_str2818[sizeof("rAtail")];
+ char entity_pool_str2820[sizeof("lAtail")];
+ char entity_pool_str2821[sizeof("ominus")];
+ char entity_pool_str2822[sizeof("Ascr")];
+ char entity_pool_str2826[sizeof("Epsilon")];
+ char entity_pool_str2832[sizeof("ShortLeftArrow")];
+ char entity_pool_str2845[sizeof("isinv")];
+ char entity_pool_str2847[sizeof("micro")];
+ char entity_pool_str2851[sizeof("zcaron")];
+ char entity_pool_str2856[sizeof("kscr")];
+ char entity_pool_str2857[sizeof("gscr")];
+ char entity_pool_str2862[sizeof("Bfr")];
+ char entity_pool_str2863[sizeof("gel")];
+ char entity_pool_str2864[sizeof("hercon")];
+ char entity_pool_str2871[sizeof("triminus")];
+ char entity_pool_str2877[sizeof("egrave")];
+ char entity_pool_str2881[sizeof("sdot")];
+ char entity_pool_str2882[sizeof("ugrave")];
+ char entity_pool_str2884[sizeof("Zdot")];
+ char entity_pool_str2885[sizeof("edot")];
+ char entity_pool_str2890[sizeof("NotTildeTilde")];
+ char entity_pool_str2892[sizeof("tdot")];
+ char entity_pool_str2897[sizeof("Pscr")];
+ char entity_pool_str2898[sizeof("Pi")];
+ char entity_pool_str2903[sizeof("Gscr")];
+ char entity_pool_str2910[sizeof("plustwo")];
+ char entity_pool_str2914[sizeof("NotElement")];
+ char entity_pool_str2916[sizeof("PlusMinus")];
+ char entity_pool_str2919[sizeof("hopf")];
+ char entity_pool_str2920[sizeof("gammad")];
+ char entity_pool_str2922[sizeof("mDDot")];
+ char entity_pool_str2926[sizeof("divideontimes")];
+ char entity_pool_str2940[sizeof("doteq")];
+ char entity_pool_str2956[sizeof("varepsilon")];
+ char entity_pool_str2963[sizeof("Precedes")];
+ char entity_pool_str2966[sizeof("Gammad")];
+ char entity_pool_str2974[sizeof("dashv")];
+ char entity_pool_str2979[sizeof("NotCongruent")];
+ char entity_pool_str2982[sizeof("ubreve")];
+ char entity_pool_str2990[sizeof("ogt")];
+ char entity_pool_str2994[sizeof("RoundImplies")];
+ char entity_pool_str3002[sizeof("PrecedesSlantEqual")];
+ char entity_pool_str3005[sizeof("sime")];
+ char entity_pool_str3014[sizeof("Ugrave")];
+ char entity_pool_str3016[sizeof("dbkarow")];
+ char entity_pool_str3021[sizeof("sdote")];
+ char entity_pool_str3023[sizeof("veeeq")];
+ char entity_pool_str3027[sizeof("mapsto")];
+ char entity_pool_str3030[sizeof("times")];
+ char entity_pool_str3033[sizeof("rangle")];
+ char entity_pool_str3035[sizeof("langle")];
+ char entity_pool_str3038[sizeof("leftarrowtail")];
+ char entity_pool_str3039[sizeof("hamilt")];
+ char entity_pool_str3044[sizeof("udhar")];
+ char entity_pool_str3053[sizeof("nisd")];
+ char entity_pool_str3055[sizeof("rfisht")];
+ char entity_pool_str3057[sizeof("lfisht")];
+ char entity_pool_str3058[sizeof("harrcir")];
+ char entity_pool_str3066[sizeof("OpenCurlyQuote")];
+ char entity_pool_str3068[sizeof("ufisht")];
+ char entity_pool_str3069[sizeof("NotHumpDownHump")];
+ char entity_pool_str3072[sizeof("LeftTee")];
+ char entity_pool_str3074[sizeof("rsh")];
+ char entity_pool_str3076[sizeof("lsh")];
+ char entity_pool_str3080[sizeof("gvertneqq")];
+ char entity_pool_str3083[sizeof("timesb")];
+ char entity_pool_str3092[sizeof("scpolint")];
+ char entity_pool_str3095[sizeof("Cdot")];
+ char entity_pool_str3103[sizeof("dwangle")];
+ char entity_pool_str3114[sizeof("Ubreve")];
+ char entity_pool_str3132[sizeof("LeftUpVector")];
+ char entity_pool_str3135[sizeof("LeftUpVectorBar")];
+ char entity_pool_str3139[sizeof("Ecaron")];
+ char entity_pool_str3142[sizeof("homtht")];
+ char entity_pool_str3147[sizeof("igrave")];
+ char entity_pool_str3155[sizeof("npreceq")];
+ char entity_pool_str3156[sizeof("ecolon")];
+ char entity_pool_str3167[sizeof("dd")];
+ char entity_pool_str3174[sizeof("simeq")];
+ char entity_pool_str3179[sizeof("notinE")];
+ char entity_pool_str3198[sizeof("bigoplus")];
+ char entity_pool_str3214[sizeof("Afr")];
+ char entity_pool_str3215[sizeof("leftarrow")];
+ char entity_pool_str3216[sizeof("oint")];
+ char entity_pool_str3218[sizeof("Tab")];
+ char entity_pool_str3227[sizeof("ogon")];
+ char entity_pool_str3230[sizeof("lt")];
+ char entity_pool_str3231[sizeof("nLeftrightarrow")];
+ char entity_pool_str3235[sizeof("rarrb")];
+ char entity_pool_str3237[sizeof("larrb")];
+ char entity_pool_str3239[sizeof("hscr")];
+ char entity_pool_str3246[sizeof("LeftUpDownVector")];
+ char entity_pool_str3248[sizeof("kfr")];
+ char entity_pool_str3249[sizeof("gfr")];
+ char entity_pool_str3250[sizeof("UpArrowBar")];
+ char entity_pool_str3259[sizeof("nsce")];
+ char entity_pool_str3260[sizeof("ltdot")];
+ char entity_pool_str3261[sizeof("gesl")];
+ char entity_pool_str3262[sizeof("xodot")];
+ char entity_pool_str3263[sizeof("star")];
+ char entity_pool_str3266[sizeof("lowbar")];
+ char entity_pool_str3268[sizeof("xharr")];
+ char entity_pool_str3269[sizeof("ecir")];
+ char entity_pool_str3271[sizeof("utdot")];
+ char entity_pool_str3272[sizeof("natur")];
+ char entity_pool_str3273[sizeof("Lsh")];
+ char entity_pool_str3274[sizeof("infin")];
+ char entity_pool_str3276[sizeof("comp")];
+ char entity_pool_str3278[sizeof("sigmav")];
+ char entity_pool_str3285[sizeof("xotime")];
+ char entity_pool_str3289[sizeof("Pfr")];
+ char entity_pool_str3295[sizeof("Gfr")];
+ char entity_pool_str3298[sizeof("bigcap")];
+ char entity_pool_str3300[sizeof("simlE")];
+ char entity_pool_str3319[sizeof("iiiint")];
+ char entity_pool_str3320[sizeof("barwedge")];
+ char entity_pool_str3321[sizeof("Barwed")];
+ char entity_pool_str3329[sizeof("xlarr")];
+ char entity_pool_str3330[sizeof("LessEqualGreater")];
+ char entity_pool_str3332[sizeof("crarr")];
+ char entity_pool_str3333[sizeof("isindot")];
+ char entity_pool_str3335[sizeof("commat")];
+ char entity_pool_str3342[sizeof("middot")];
+ char entity_pool_str3349[sizeof("lesdotor")];
+ char entity_pool_str3356[sizeof("sigmaf")];
+ char entity_pool_str3366[sizeof("rarrbfs")];
+ char entity_pool_str3368[sizeof("larrbfs")];
+ char entity_pool_str3371[sizeof("xrarr")];
+ char entity_pool_str3376[sizeof("bigcup")];
+ char entity_pool_str3378[sizeof("clubs")];
+ char entity_pool_str3379[sizeof("hArr")];
+ char entity_pool_str3380[sizeof("rtrie")];
+ char entity_pool_str3382[sizeof("ltrie")];
+ char entity_pool_str3383[sizeof("imped")];
+ char entity_pool_str3388[sizeof("eogon")];
+ char entity_pool_str3389[sizeof("rx")];
+ char entity_pool_str3390[sizeof("ltrPar")];
+ char entity_pool_str3391[sizeof("Star")];
+ char entity_pool_str3393[sizeof("uogon")];
+ char entity_pool_str3396[sizeof("Tilde")];
+ char entity_pool_str3398[sizeof("half")];
+ char entity_pool_str3405[sizeof("tilde")];
+ char entity_pool_str3412[sizeof("Leftarrow")];
+ char entity_pool_str3417[sizeof("gesles")];
+ char entity_pool_str3422[sizeof("cap")];
+ char entity_pool_str3423[sizeof("strns")];
+ char entity_pool_str3427[sizeof("Lt")];
+ char entity_pool_str3439[sizeof("prnE")];
+ char entity_pool_str3447[sizeof("sqsupe")];
+ char entity_pool_str3462[sizeof("sqsupset")];
+ char entity_pool_str3467[sizeof("tridot")];
+ char entity_pool_str3468[sizeof("order")];
+ char entity_pool_str3471[sizeof("caps")];
+ char entity_pool_str3475[sizeof("cross")];
+ char entity_pool_str3482[sizeof("dfisht")];
+ char entity_pool_str3487[sizeof("xmap")];
+ char entity_pool_str3491[sizeof("sqsup")];
+ char entity_pool_str3503[sizeof("rtri")];
+ char entity_pool_str3505[sizeof("ltri")];
+ char entity_pool_str3506[sizeof("it")];
+ char entity_pool_str3507[sizeof("rmoust")];
+ char entity_pool_str3509[sizeof("lmoust")];
+ char entity_pool_str3510[sizeof("gnE")];
+ char entity_pool_str3511[sizeof("lgE")];
+ char entity_pool_str3514[sizeof("scE")];
+ char entity_pool_str3516[sizeof("utri")];
+ char entity_pool_str3518[sizeof("vellip")];
+ char entity_pool_str3520[sizeof("ETH")];
+ char entity_pool_str3523[sizeof("lmidot")];
+ char entity_pool_str3525[sizeof("Uogon")];
+ char entity_pool_str3526[sizeof("CounterClockwiseContourIntegral")];
+ char entity_pool_str3534[sizeof("ngE")];
+ char entity_pool_str3535[sizeof("nwnear")];
+ char entity_pool_str3543[sizeof("lesg")];
+ char entity_pool_str3546[sizeof("plusb")];
+ char entity_pool_str3550[sizeof("Rsh")];
+ char entity_pool_str3555[sizeof("copysr")];
+ char entity_pool_str3557[sizeof("infintie")];
+ char entity_pool_str3559[sizeof("imath")];
+ char entity_pool_str3560[sizeof("Esim")];
+ char entity_pool_str3565[sizeof("Phi")];
+ char entity_pool_str3573[sizeof("glE")];
+ char entity_pool_str3579[sizeof("vnsup")];
+ char entity_pool_str3582[sizeof("simgE")];
+ char entity_pool_str3586[sizeof("DoubleLongLeftArrow")];
+ char entity_pool_str3591[sizeof("DoubleLongLeftRightArrow")];
+ char entity_pool_str3594[sizeof("nvgt")];
+ char entity_pool_str3607[sizeof("Mellintrf")];
+ char entity_pool_str3611[sizeof("Prime")];
+ char entity_pool_str3615[sizeof("iinfin")];
+ char entity_pool_str3620[sizeof("ReverseElement")];
+ char entity_pool_str3627[sizeof("EmptySmallSquare")];
+ char entity_pool_str3628[sizeof("radic")];
+ char entity_pool_str3631[sizeof("hfr")];
+ char entity_pool_str3632[sizeof("zdot")];
+ char entity_pool_str3633[sizeof("male")];
+ char entity_pool_str3635[sizeof("rarrc")];
+ char entity_pool_str3636[sizeof("prec")];
+ char entity_pool_str3637[sizeof("scnap")];
+ char entity_pool_str3641[sizeof("DifferentialD")];
+ char entity_pool_str3643[sizeof("models")];
+ char entity_pool_str3657[sizeof("ltcir")];
+ char entity_pool_str3658[sizeof("iogon")];
+ char entity_pool_str3665[sizeof("capcap")];
+ char entity_pool_str3667[sizeof("iff")];
+ char entity_pool_str3669[sizeof("ddotseq")];
+ char entity_pool_str3671[sizeof("CirclePlus")];
+ char entity_pool_str3676[sizeof("rthree")];
+ char entity_pool_str3678[sizeof("lthree")];
+ char entity_pool_str3681[sizeof("PrecedesTilde")];
+ char entity_pool_str3685[sizeof("dtdot")];
+ char entity_pool_str3687[sizeof("clubsuit")];
+ char entity_pool_str3689[sizeof("racute")];
+ char entity_pool_str3691[sizeof("lacute")];
+ char entity_pool_str3692[sizeof("trpezium")];
+ char entity_pool_str3693[sizeof("sacute")];
+ char entity_pool_str3696[sizeof("Zacute")];
+ char entity_pool_str3697[sizeof("eacute")];
+ char entity_pool_str3699[sizeof("TildeTilde")];
+ char entity_pool_str3701[sizeof("Uarrocir")];
+ char entity_pool_str3702[sizeof("uacute")];
+ char entity_pool_str3703[sizeof("lowast")];
+ char entity_pool_str3714[sizeof("nacute")];
+ char entity_pool_str3716[sizeof("NotPrecedes")];
+ char entity_pool_str3720[sizeof("Lmidot")];
+ char entity_pool_str3725[sizeof("UpArrow")];
+ char entity_pool_str3727[sizeof("rarrw")];
+ char entity_pool_str3738[sizeof("DownTee")];
+ char entity_pool_str3742[sizeof("FilledSmallSquare")];
+ char entity_pool_str3743[sizeof("capcup")];
+ char entity_pool_str3749[sizeof("GreaterFullEqual")];
+ char entity_pool_str3756[sizeof("nvle")];
+ char entity_pool_str3758[sizeof("trie")];
+ char entity_pool_str3764[sizeof("omicron")];
+ char entity_pool_str3766[sizeof("DoubleRightTee")];
+ char entity_pool_str3767[sizeof("Cconint")];
+ char entity_pool_str3768[sizeof("rsquor")];
+ char entity_pool_str3770[sizeof("lsquor")];
+ char entity_pool_str3772[sizeof("zigrarr")];
+ char entity_pool_str3780[sizeof("copf")];
+ char entity_pool_str3782[sizeof("ContourIntegral")];
+ char entity_pool_str3798[sizeof("hairsp")];
+ char entity_pool_str3799[sizeof("sqsupseteq")];
+ char entity_pool_str3800[sizeof("csub")];
+ char entity_pool_str3801[sizeof("upharpoonright")];
+ char entity_pool_str3805[sizeof("DownBreve")];
+ char entity_pool_str3817[sizeof("ShortDownArrow")];
+ char entity_pool_str3819[sizeof("xopf")];
+ char entity_pool_str3821[sizeof("Sacute")];
+ char entity_pool_str3829[sizeof("vsupnE")];
+ char entity_pool_str3830[sizeof("cir")];
+ char entity_pool_str3831[sizeof("plusacir")];
+ char entity_pool_str3832[sizeof("csup")];
+ char entity_pool_str3833[sizeof("vsubnE")];
+ char entity_pool_str3834[sizeof("Uacute")];
+ char entity_pool_str3836[sizeof("isinE")];
+ char entity_pool_str3845[sizeof("gEl")];
+ char entity_pool_str3851[sizeof("sqcups")];
+ char entity_pool_str3853[sizeof("smid")];
+ char entity_pool_str3855[sizeof("lg")];
+ char entity_pool_str3857[sizeof("DoubleLongRightArrow")];
+ char entity_pool_str3858[sizeof("NotPrecedesSlantEqual")];
+ char entity_pool_str3861[sizeof("eg")];
+ char entity_pool_str3864[sizeof("AMP")];
+ char entity_pool_str3874[sizeof("nmid")];
+ char entity_pool_str3883[sizeof("timesd")];
+ char entity_pool_str3886[sizeof("DownLeftVector")];
+ char entity_pool_str3887[sizeof("zwnj")];
+ char entity_pool_str3888[sizeof("Lacute")];
+ char entity_pool_str3889[sizeof("DownLeftVectorBar")];
+ char entity_pool_str3898[sizeof("ograve")];
+ char entity_pool_str3899[sizeof("Yacute")];
+ char entity_pool_str3903[sizeof("sqcup")];
+ char entity_pool_str3906[sizeof("odot")];
+ char entity_pool_str3907[sizeof("Cacute")];
+ char entity_pool_str3909[sizeof("nu")];
+ char entity_pool_str3910[sizeof("tritime")];
+ char entity_pool_str3912[sizeof("Egrave")];
+ char entity_pool_str3913[sizeof("eplus")];
+ char entity_pool_str3915[sizeof("backcong")];
+ char entity_pool_str3918[sizeof("uplus")];
+ char entity_pool_str3920[sizeof("Edot")];
+ char entity_pool_str3924[sizeof("csupe")];
+ char entity_pool_str3926[sizeof("simg")];
+ char entity_pool_str3927[sizeof("UpperRightArrow")];
+ char entity_pool_str3928[sizeof("csube")];
+ char entity_pool_str3930[sizeof("dtri")];
+ char entity_pool_str3931[sizeof("prnsim")];
+ char entity_pool_str3936[sizeof("boxUr")];
+ char entity_pool_str3937[sizeof("uuarr")];
+ char entity_pool_str3945[sizeof("DownLeftTeeVector")];
+ char entity_pool_str3946[sizeof("gsime")];
+ char entity_pool_str3950[sizeof("bigotimes")];
+ char entity_pool_str3951[sizeof("Dagger")];
+ char entity_pool_str3954[sizeof("Intersection")];
+ char entity_pool_str3967[sizeof("iacute")];
+ char entity_pool_str3969[sizeof("prcue")];
+ char entity_pool_str3981[sizeof("egsdot")];
+ char entity_pool_str3987[sizeof("Implies")];
+ char entity_pool_str3988[sizeof("VDash")];
+ char entity_pool_str3996[sizeof("bump")];
+ char entity_pool_str4015[sizeof("Mu")];
+ char entity_pool_str4022[sizeof("vDash")];
+ char entity_pool_str4028[sizeof("lvnE")];
+ char entity_pool_str4033[sizeof("LeftTeeArrow")];
+ char entity_pool_str4037[sizeof("Nacute")];
+ char entity_pool_str4042[sizeof("UnderBrace")];
+ char entity_pool_str4043[sizeof("Psi")];
+ char entity_pool_str4047[sizeof("rhov")];
+ char entity_pool_str4049[sizeof("lescc")];
+ char entity_pool_str4055[sizeof("sup1")];
+ char entity_pool_str4058[sizeof("sup2")];
+ char entity_pool_str4066[sizeof("sup3")];
+ char entity_pool_str4071[sizeof("bigodot")];
+ char entity_pool_str4078[sizeof("Downarrow")];
+ char entity_pool_str4080[sizeof("xsqcup")];
+ char entity_pool_str4082[sizeof("barvee")];
+ char entity_pool_str4087[sizeof("NegativeMediumSpace")];
+ char entity_pool_str4088[sizeof("bumpe")];
+ char entity_pool_str4100[sizeof("cscr")];
+ char entity_pool_str4109[sizeof("nsc")];
+ char entity_pool_str4115[sizeof("sup")];
+ char entity_pool_str4122[sizeof("cedil")];
+ char entity_pool_str4125[sizeof("boxVr")];
+ char entity_pool_str4127[sizeof("origof")];
+ char entity_pool_str4128[sizeof("zwj")];
+ char entity_pool_str4129[sizeof("Igrave")];
+ char entity_pool_str4137[sizeof("Idot")];
+ char entity_pool_str4139[sizeof("xscr")];
+ char entity_pool_str4140[sizeof("xi")];
+ char entity_pool_str4144[sizeof("nGtv")];
+ char entity_pool_str4153[sizeof("boxHu")];
+ char entity_pool_str4163[sizeof("THORN")];
+ char entity_pool_str4165[sizeof("Racute")];
+ char entity_pool_str4167[sizeof("rarrhk")];
+ char entity_pool_str4169[sizeof("larrhk")];
+ char entity_pool_str4177[sizeof("rtriltri")];
+ char entity_pool_str4189[sizeof("boxV")];
+ char entity_pool_str4215[sizeof("dagger")];
+ char entity_pool_str4220[sizeof("Omicron")];
+ char entity_pool_str4226[sizeof("DoubleVerticalBar")];
+ char entity_pool_str4229[sizeof("nexists")];
+ char entity_pool_str4232[sizeof("Nu")];
+ char entity_pool_str4233[sizeof("nexist")];
+ char entity_pool_str4234[sizeof("gE")];
+ char entity_pool_str4238[sizeof("ap")];
+ char entity_pool_str4243[sizeof("Sup")];
+ char entity_pool_str4244[sizeof("doteqdot")];
+ char entity_pool_str4247[sizeof("eng")];
+ char entity_pool_str4249[sizeof("caron")];
+ char entity_pool_str4251[sizeof("boxHU")];
+ char entity_pool_str4252[sizeof("gesdot")];
+ char entity_pool_str4257[sizeof("ReverseEquilibrium")];
+ char entity_pool_str4262[sizeof("boxUL")];
+ char entity_pool_str4264[sizeof("supmult")];
+ char entity_pool_str4267[sizeof("pitchfork")];
+ char entity_pool_str4272[sizeof("numsp")];
+ char entity_pool_str4285[sizeof("rang")];
+ char entity_pool_str4287[sizeof("lang")];
+ char entity_pool_str4290[sizeof("ocir")];
+ char entity_pool_str4292[sizeof("rationals")];
+ char entity_pool_str4294[sizeof("coprod")];
+ char entity_pool_str4307[sizeof("ltlarr")];
+ char entity_pool_str4308[sizeof("breve")];
+ char entity_pool_str4310[sizeof("nang")];
+ char entity_pool_str4315[sizeof("swarhk")];
+ char entity_pool_str4322[sizeof("raquo")];
+ char entity_pool_str4324[sizeof("laquo")];
+ char entity_pool_str4325[sizeof("supsub")];
+ char entity_pool_str4329[sizeof("Cup")];
+ char entity_pool_str4330[sizeof("ape")];
+ char entity_pool_str4331[sizeof("quest")];
+ char entity_pool_str4336[sizeof("nwarhk")];
+ char entity_pool_str4340[sizeof("supset")];
+ char entity_pool_str4342[sizeof("downarrow")];
+ char entity_pool_str4351[sizeof("duarr")];
+ char entity_pool_str4353[sizeof("apos")];
+ char entity_pool_str4354[sizeof("Ograve")];
+ char entity_pool_str4355[sizeof("shortparallel")];
+ char entity_pool_str4364[sizeof("nsucc")];
+ char entity_pool_str4368[sizeof("LongLeftArrow")];
+ char entity_pool_str4377[sizeof("lesdoto")];
+ char entity_pool_str4384[sizeof("supne")];
+ char entity_pool_str4388[sizeof("nGg")];
+ char entity_pool_str4396[sizeof("raemptyv")];
+ char entity_pool_str4397[sizeof("supsup")];
+ char entity_pool_str4398[sizeof("laemptyv")];
+ char entity_pool_str4401[sizeof("topfork")];
+ char entity_pool_str4423[sizeof("Eogon")];
+ char entity_pool_str4429[sizeof("risingdotseq")];
+ char entity_pool_str4431[sizeof("bumpeq")];
+ char entity_pool_str4435[sizeof("lstrok")];
+ char entity_pool_str4439[sizeof("Tstrok")];
+ char entity_pool_str4440[sizeof("gsim")];
+ char entity_pool_str4443[sizeof("bemptyv")];
+ char entity_pool_str4444[sizeof("zacute")];
+ char entity_pool_str4445[sizeof("gsiml")];
+ char entity_pool_str4448[sizeof("tstrok")];
+ char entity_pool_str4450[sizeof("roang")];
+ char entity_pool_str4451[sizeof("boxVL")];
+ char entity_pool_str4452[sizeof("loang")];
+ char entity_pool_str4456[sizeof("nleqslant")];
+ char entity_pool_str4462[sizeof("sbquo")];
+ char entity_pool_str4464[sizeof("searhk")];
+ char entity_pool_str4465[sizeof("lnapprox")];
+ char entity_pool_str4468[sizeof("Supset")];
+ char entity_pool_str4470[sizeof("boxHd")];
+ char entity_pool_str4471[sizeof("varkappa")];
+ char entity_pool_str4475[sizeof("circeq")];
+ char entity_pool_str4477[sizeof("yopf")];
+ char entity_pool_str4479[sizeof("UnionPlus")];
+ char entity_pool_str4484[sizeof("Lang")];
+ char entity_pool_str4485[sizeof("nearhk")];
+ char entity_pool_str4486[sizeof("shcy")];
+ char entity_pool_str4492[sizeof("cfr")];
+ char entity_pool_str4506[sizeof("Kappa")];
+ char entity_pool_str4507[sizeof("ljcy")];
+ char entity_pool_str4508[sizeof("MediumSpace")];
+ char entity_pool_str4511[sizeof("supseteq")];
+ char entity_pool_str4512[sizeof("supseteqq")];
+ char entity_pool_str4517[sizeof("reg")];
+ char entity_pool_str4518[sizeof("amacr")];
+ char entity_pool_str4519[sizeof("leg")];
+ char entity_pool_str4524[sizeof("weierp")];
+ char entity_pool_str4525[sizeof("TScy")];
+ char entity_pool_str4529[sizeof("supsetneq")];
+ char entity_pool_str4530[sizeof("njcy")];
+ char entity_pool_str4531[sizeof("xfr")];
+ char entity_pool_str4533[sizeof("mu")];
+ char entity_pool_str4539[sizeof("nvinfin")];
+ char entity_pool_str4540[sizeof("boxUR")];
+ char entity_pool_str4545[sizeof("xoplus")];
+ char entity_pool_str4551[sizeof("leftleftarrows")];
+ char entity_pool_str4552[sizeof("sum")];
+ char entity_pool_str4559[sizeof("beth")];
+ char entity_pool_str4563[sizeof("complement")];
+ char entity_pool_str4573[sizeof("num")];
+ char entity_pool_str4574[sizeof("amp")];
+ char entity_pool_str4583[sizeof("boxUl")];
+ char entity_pool_str4590[sizeof("NotGreater")];
+ char entity_pool_str4591[sizeof("boxplus")];
+ char entity_pool_str4592[sizeof("jmath")];
+ char entity_pool_str4594[sizeof("sfrown")];
+ char entity_pool_str4596[sizeof("Dstrok")];
+ char entity_pool_str4598[sizeof("and")];
+ char entity_pool_str4599[sizeof("NotGreaterGreater")];
+ char entity_pool_str4606[sizeof("NotGreaterSlantEqual")];
+ char entity_pool_str4608[sizeof("NotGreaterLess")];
+ char entity_pool_str4609[sizeof("quot")];
+ char entity_pool_str4616[sizeof("NotGreaterFullEqual")];
+ char entity_pool_str4617[sizeof("hyphen")];
+ char entity_pool_str4618[sizeof("planck")];
+ char entity_pool_str4620[sizeof("TildeEqual")];
+ char entity_pool_str4627[sizeof("tosa")];
+ char entity_pool_str4632[sizeof("Lstrok")];
+ char entity_pool_str4635[sizeof("shy")];
+ char entity_pool_str4639[sizeof("xnis")];
+ char entity_pool_str4640[sizeof("Iogon")];
+ char entity_pool_str4643[sizeof("DZcy")];
+ char entity_pool_str4645[sizeof("ohbar")];
+ char entity_pool_str4652[sizeof("cirscir")];
+ char entity_pool_str4654[sizeof("sext")];
+ char entity_pool_str4668[sizeof("para")];
+ char entity_pool_str4671[sizeof("ast")];
+ char entity_pool_str4678[sizeof("questeq")];
+ char entity_pool_str4680[sizeof("Sum")];
+ char entity_pool_str4682[sizeof("DScy")];
+ char entity_pool_str4684[sizeof("ENG")];
+ char entity_pool_str4686[sizeof("ZHcy")];
+ char entity_pool_str4689[sizeof("longleftarrow")];
+ char entity_pool_str4691[sizeof("dash")];
+ char entity_pool_str4699[sizeof("DownTeeArrow")];
+ char entity_pool_str4706[sizeof("supsetneqq")];
+ char entity_pool_str4714[sizeof("profalar")];
+ char entity_pool_str4718[sizeof("oacute")];
+ char entity_pool_str4729[sizeof("boxVR")];
+ char entity_pool_str4732[sizeof("Eacute")];
+ char entity_pool_str4738[sizeof("supplus")];
+ char entity_pool_str4740[sizeof("hookleftarrow")];
+ char entity_pool_str4743[sizeof("CloseCurlyQuote")];
+ char entity_pool_str4746[sizeof("trisb")];
+ char entity_pool_str4747[sizeof("dotsquare")];
+ char entity_pool_str4751[sizeof("rtimes")];
+ char entity_pool_str4753[sizeof("ltimes")];
+ char entity_pool_str4756[sizeof("toea")];
+ char entity_pool_str4757[sizeof("Agrave")];
+ char entity_pool_str4760[sizeof("Assign")];
+ char entity_pool_str4761[sizeof("Rang")];
+ char entity_pool_str4762[sizeof("iocy")];
+ char entity_pool_str4764[sizeof("NotPrecedesEqual")];
+ char entity_pool_str4766[sizeof("aopf")];
+ char entity_pool_str4768[sizeof("chi")];
+ char entity_pool_str4771[sizeof("quaternions")];
+ char entity_pool_str4772[sizeof("boxVl")];
+ char entity_pool_str4773[sizeof("NotGreaterEqual")];
+ char entity_pool_str4777[sizeof("xhArr")];
+ char entity_pool_str4791[sizeof("orderof")];
+ char entity_pool_str4794[sizeof("rsquo")];
+ char entity_pool_str4796[sizeof("lsquo")];
+ char entity_pool_str4797[sizeof("yscr")];
+ char entity_pool_str4800[sizeof("gdot")];
+ char entity_pool_str4802[sizeof("NotSquareSubsetEqual")];
+ char entity_pool_str4803[sizeof("KHcy")];
+ char entity_pool_str4809[sizeof("bsolb")];
+ char entity_pool_str4810[sizeof("NotSquareSubset")];
+ char entity_pool_str4811[sizeof("SHcy")];
+ char entity_pool_str4821[sizeof("YIcy")];
+ char entity_pool_str4825[sizeof("cwint")];
+ char entity_pool_str4828[sizeof("Theta")];
+ char entity_pool_str4837[sizeof("theta")];
+ char entity_pool_str4838[sizeof("xlArr")];
+ char entity_pool_str4840[sizeof("NotSquareSupersetEqual")];
+ char entity_pool_str4843[sizeof("demptyv")];
+ char entity_pool_str4844[sizeof("triangle")];
+ char entity_pool_str4846[sizeof("Gdot")];
+ char entity_pool_str4848[sizeof("NotSquareSuperset")];
+ char entity_pool_str4857[sizeof("Abreve")];
+ char entity_pool_str4860[sizeof("dstrok")];
+ char entity_pool_str4861[sizeof("pertenk")];
+ char entity_pool_str4866[sizeof("rbrack")];
+ char entity_pool_str4868[sizeof("lbrack")];
+ char entity_pool_str4872[sizeof("odsold")];
+ char entity_pool_str4878[sizeof("omid")];
+ char entity_pool_str4880[sizeof("xrArr")];
+ char entity_pool_str4882[sizeof("triangleleft")];
+ char entity_pool_str4883[sizeof("NotGreaterTilde")];
+ char entity_pool_str4884[sizeof("colone")];
+ char entity_pool_str4886[sizeof("Longleftarrow")];
+ char entity_pool_str4888[sizeof("iota")];
+ char entity_pool_str4890[sizeof("colon")];
+ char entity_pool_str4891[sizeof("Zeta")];
+ char entity_pool_str4892[sizeof("gbreve")];
+ char entity_pool_str4897[sizeof("CHcy")];
+ char entity_pool_str4900[sizeof("YUcy")];
+ char entity_pool_str4901[sizeof("REG")];
+ char entity_pool_str4902[sizeof("szlig")];
+ char entity_pool_str4909[sizeof("dzcy")];
+ char entity_pool_str4911[sizeof("beta")];
+ char entity_pool_str4918[sizeof("euro")];
+ char entity_pool_str4921[sizeof("LeftArrow")];
+ char entity_pool_str4924[sizeof("CapitalDifferentialD")];
+ char entity_pool_str4926[sizeof("ring")];
+ char entity_pool_str4927[sizeof("Laplacetrf")];
+ char entity_pool_str4932[sizeof("djcy")];
+ char entity_pool_str4934[sizeof("oplus")];
+ char entity_pool_str4937[sizeof("integers")];
+ char entity_pool_str4938[sizeof("Gbreve")];
+ char entity_pool_str4940[sizeof("ubrcy")];
+ char entity_pool_str4941[sizeof("euml")];
+ char entity_pool_str4944[sizeof("deg")];
+ char entity_pool_str4946[sizeof("uuml")];
+ char entity_pool_str4949[sizeof("Iacute")];
+ char entity_pool_str4950[sizeof("succeq")];
+ char entity_pool_str4952[sizeof("KJcy")];
+ char entity_pool_str4961[sizeof("CupCap")];
+ char entity_pool_str4975[sizeof("tscy")];
+ char entity_pool_str4982[sizeof("cent")];
+ char entity_pool_str4991[sizeof("DJcy")];
+ char entity_pool_str5009[sizeof("TildeFullEqual")];
+ char entity_pool_str5011[sizeof("triangleq")];
+ char entity_pool_str5016[sizeof("duhar")];
+ char entity_pool_str5025[sizeof("LeftDoubleBracket")];
+ char entity_pool_str5027[sizeof("LJcy")];
+ char entity_pool_str5036[sizeof("iecy")];
+ char entity_pool_str5043[sizeof("trianglelefteq")];
+ char entity_pool_str5049[sizeof("nequiv")];
+ char entity_pool_str5055[sizeof("nshortparallel")];
+ char entity_pool_str5062[sizeof("ndash")];
+ char entity_pool_str5063[sizeof("bowtie")];
+ char entity_pool_str5065[sizeof("fjlig")];
+ char entity_pool_str5072[sizeof("Ubrcy")];
+ char entity_pool_str5074[sizeof("vartheta")];
+ char entity_pool_str5078[sizeof("Uuml")];
+ char entity_pool_str5084[sizeof("vartriangleright")];
+ char entity_pool_str5085[sizeof("vartriangleleft")];
+ char entity_pool_str5086[sizeof("ascr")];
+ char entity_pool_str5089[sizeof("succcurlyeq")];
+ char entity_pool_str5093[sizeof("cwconint")];
+ char entity_pool_str5101[sizeof("sc")];
+ char entity_pool_str5103[sizeof("fllig")];
+ char entity_pool_str5105[sizeof("circledast")];
+ char entity_pool_str5108[sizeof("Vdash")];
+ char entity_pool_str5112[sizeof("nVdash")];
+ char entity_pool_str5120[sizeof("suplarr")];
+ char entity_pool_str5124[sizeof("robrk")];
+ char entity_pool_str5126[sizeof("lobrk")];
+ char entity_pool_str5142[sizeof("vdash")];
+ char entity_pool_str5143[sizeof("Yuml")];
+ char entity_pool_str5151[sizeof("gt")];
+ char entity_pool_str5156[sizeof("ccaps")];
+ char entity_pool_str5173[sizeof("Succeeds")];
+ char entity_pool_str5174[sizeof("Oacute")];
+ char entity_pool_str5175[sizeof("TRADE")];
+ char entity_pool_str5176[sizeof("NJcy")];
+ char entity_pool_str5181[sizeof("gtdot")];
+ char entity_pool_str5189[sizeof("yfr")];
+ char entity_pool_str5192[sizeof("compfn")];
+ char entity_pool_str5197[sizeof("Gt")];
+ char entity_pool_str5198[sizeof("scnE")];
+ char entity_pool_str5199[sizeof("ijlig")];
+ char entity_pool_str5203[sizeof("circledS")];
+ char entity_pool_str5206[sizeof("yen")];
+ char entity_pool_str5208[sizeof("thetasym")];
+ char entity_pool_str5211[sizeof("iuml")];
+ char entity_pool_str5212[sizeof("SucceedsSlantEqual")];
+ char entity_pool_str5217[sizeof("boxH")];
+ char entity_pool_str5218[sizeof("mumap")];
+ char entity_pool_str5222[sizeof("rightrightarrows")];
+ char entity_pool_str5227[sizeof("coloneq")];
+ char entity_pool_str5229[sizeof("Sc")];
+ char entity_pool_str5230[sizeof("glj")];
+ char entity_pool_str5231[sizeof("iexcl")];
+ char entity_pool_str5234[sizeof("ccups")];
+ char entity_pool_str5236[sizeof("xcap")];
+ char entity_pool_str5237[sizeof("zhcy")];
+ char entity_pool_str5241[sizeof("boxHD")];
+ char entity_pool_str5250[sizeof("leqslant")];
+ char entity_pool_str5252[sizeof("UpperLeftArrow")];
+ char entity_pool_str5257[sizeof("dblac")];
+ char entity_pool_str5260[sizeof("puncsp")];
+ char entity_pool_str5262[sizeof("ccaron")];
+ char entity_pool_str5264[sizeof("rbbrk")];
+ char entity_pool_str5266[sizeof("lbbrk")];
+ char entity_pool_str5268[sizeof("Aogon")];
+ char entity_pool_str5269[sizeof("LeftTriangleBar")];
+ char entity_pool_str5272[sizeof("gesdotol")];
+ char entity_pool_str5273[sizeof("LeftTriangleEqual")];
+ char entity_pool_str5274[sizeof("LeftTriangle")];
+ char entity_pool_str5280[sizeof("conint")];
+ char entity_pool_str5283[sizeof("drbkarow")];
+ char entity_pool_str5295[sizeof("rtrif")];
+ char entity_pool_str5297[sizeof("ltrif")];
+ char entity_pool_str5300[sizeof("ReverseUpEquilibrium")];
+ char entity_pool_str5306[sizeof("LeftCeiling")];
+ char entity_pool_str5308[sizeof("utrif")];
+ char entity_pool_str5314[sizeof("xcup")];
+ char entity_pool_str5319[sizeof("fallingdotseq")];
+ char entity_pool_str5325[sizeof("rcedil")];
+ char entity_pool_str5327[sizeof("lcedil")];
+ char entity_pool_str5329[sizeof("scedil")];
+ char entity_pool_str5331[sizeof("Tcedil")];
+ char entity_pool_str5333[sizeof("starf")];
+ char entity_pool_str5334[sizeof("boxminus")];
+ char entity_pool_str5340[sizeof("tcedil")];
+ char entity_pool_str5341[sizeof("ZeroWidthSpace")];
+ char entity_pool_str5350[sizeof("ncedil")];
+ char entity_pool_str5358[sizeof("phiv")];
+ char entity_pool_str5375[sizeof("ic")];
+ char entity_pool_str5384[sizeof("capdot")];
+ char entity_pool_str5387[sizeof("dscy")];
+ char entity_pool_str5397[sizeof("check")];
+ char entity_pool_str5398[sizeof("ovbar")];
+ char entity_pool_str5405[sizeof("ntriangleleft")];
+ char entity_pool_str5411[sizeof("RightTee")];
+ char entity_pool_str5412[sizeof("nvge")];
+ char entity_pool_str5424[sizeof("leftrightsquigarrow")];
+ char entity_pool_str5431[sizeof("lozenge")];
+ char entity_pool_str5434[sizeof("RightTriangleBar")];
+ char entity_pool_str5436[sizeof("RightTeeVector")];
+ char entity_pool_str5438[sizeof("RightTriangleEqual")];
+ char entity_pool_str5439[sizeof("RightTriangle")];
+ char entity_pool_str5449[sizeof("Kcedil")];
+ char entity_pool_str5457[sizeof("Scedil")];
+ char entity_pool_str5468[sizeof("cirfnint")];
+ char entity_pool_str5471[sizeof("empty")];
+ char entity_pool_str5478[sizeof("afr")];
+ char entity_pool_str5482[sizeof("DiacriticalTilde")];
+ char entity_pool_str5489[sizeof("LeftDownVector")];
+ char entity_pool_str5492[sizeof("LeftDownVectorBar")];
+ char entity_pool_str5501[sizeof("lEg")];
+ char entity_pool_str5509[sizeof("ApplyFunction")];
+ char entity_pool_str5512[sizeof("bumpE")];
+ char entity_pool_str5524[sizeof("Lcedil")];
+ char entity_pool_str5528[sizeof("caret")];
+ char entity_pool_str5530[sizeof("Barv")];
+ char entity_pool_str5543[sizeof("Ccedil")];
+ char entity_pool_str5547[sizeof("circledR")];
+ char entity_pool_str5548[sizeof("LeftDownTeeVector")];
+ char entity_pool_str5552[sizeof("tshcy")];
+ char entity_pool_str5556[sizeof("DotEqual")];
+ char entity_pool_str5564[sizeof("centerdot")];
+ char entity_pool_str5566[sizeof("ntrianglelefteq")];
+ char entity_pool_str5568[sizeof("minus")];
+ char entity_pool_str5570[sizeof("gimel")];
+ char entity_pool_str5577[sizeof("Aacute")];
+ char entity_pool_str5578[sizeof("gtcir")];
+ char entity_pool_str5583[sizeof("gtrarr")];
+ char entity_pool_str5584[sizeof("bull")];
+ char entity_pool_str5587[sizeof("DownArrow")];
+ char entity_pool_str5593[sizeof("rdquor")];
+ char entity_pool_str5595[sizeof("ldquor")];
+ char entity_pool_str5598[sizeof("intlarhk")];
+ char entity_pool_str5602[sizeof("utilde")];
+ char entity_pool_str5612[sizeof("gacute")];
+ char entity_pool_str5614[sizeof("ntilde")];
+ char entity_pool_str5615[sizeof("af")];
+ char entity_pool_str5618[sizeof("Hstrok")];
+ char entity_pool_str5620[sizeof("exponentiale")];
+ char entity_pool_str5621[sizeof("minusb")];
+ char entity_pool_str5625[sizeof("RightUpTeeVector")];
+ char entity_pool_str5630[sizeof("UpTeeArrow")];
+ char entity_pool_str5639[sizeof("zeta")];
+ char entity_pool_str5644[sizeof("DiacriticalDot")];
+ char entity_pool_str5645[sizeof("DiacriticalDoubleAcute")];
+ char entity_pool_str5663[sizeof("nleftarrow")];
+ char entity_pool_str5664[sizeof("hkswarow")];
+ char entity_pool_str5666[sizeof("iiota")];
+ char entity_pool_str5669[sizeof("apacir")];
+ char entity_pool_str5673[sizeof("Ncedil")];
+ char entity_pool_str5678[sizeof("capand")];
+ char entity_pool_str5686[sizeof("mdash")];
+ char entity_pool_str5689[sizeof("filig")];
+ char entity_pool_str5690[sizeof("scnsim")];
+ char entity_pool_str5699[sizeof("realpart")];
+ char entity_pool_str5703[sizeof("leftthreetimes")];
+ char entity_pool_str5704[sizeof("asymp")];
+ char entity_pool_str5718[sizeof("hellip")];
+ char entity_pool_str5722[sizeof("dtrif")];
+ char entity_pool_str5724[sizeof("NotExists")];
+ char entity_pool_str5728[sizeof("sccue")];
+ char entity_pool_str5733[sizeof("YAcy")];
+ char entity_pool_str5734[sizeof("Utilde")];
+ char entity_pool_str5741[sizeof("NotEqual")];
+ char entity_pool_str5747[sizeof("ThinSpace")];
+ char entity_pool_str5754[sizeof("apE")];
+ char entity_pool_str5762[sizeof("bullet")];
+ char entity_pool_str5765[sizeof("CloseCurlyDoubleQuote")];
+ char entity_pool_str5766[sizeof("Delta")];
+ char entity_pool_str5776[sizeof("gg")];
+ char entity_pool_str5780[sizeof("otimes")];
+ char entity_pool_str5799[sizeof("wreath")];
+ char entity_pool_str5801[sizeof("Rcedil")];
+ char entity_pool_str5807[sizeof("eth")];
+ char entity_pool_str5808[sizeof("supnE")];
+ char entity_pool_str5811[sizeof("awint")];
+ char entity_pool_str5817[sizeof("Breve")];
+ char entity_pool_str5822[sizeof("Gg")];
+ char entity_pool_str5824[sizeof("HumpEqual")];
+ char entity_pool_str5837[sizeof("Lleftarrow")];
+ char entity_pool_str5838[sizeof("boxdr")];
+ char entity_pool_str5847[sizeof("succneqq")];
+ char entity_pool_str5848[sizeof("uring")];
+ char entity_pool_str5849[sizeof("LessSlantEqual")];
+ char entity_pool_str5860[sizeof("nvdash")];
+ char entity_pool_str5866[sizeof("Hacek")];
+ char entity_pool_str5867[sizeof("itilde")];
+ char entity_pool_str5870[sizeof("Iota")];
+ char entity_pool_str5872[sizeof("IOcy")];
+ char entity_pool_str5884[sizeof("boxDr")];
+ char entity_pool_str5891[sizeof("SucceedsTilde")];
+ char entity_pool_str5905[sizeof("LeftFloor")];
+ char entity_pool_str5906[sizeof("Vvdash")];
+ char entity_pool_str5923[sizeof("triangledown")];
+ char entity_pool_str5927[sizeof("LongLeftRightArrow")];
+ char entity_pool_str5928[sizeof("RightFloor")];
+ char entity_pool_str5931[sizeof("DownRightTeeVector")];
+ char entity_pool_str5933[sizeof("quatint")];
+ char entity_pool_str5937[sizeof("Ntilde")];
+ char entity_pool_str5940[sizeof("Bumpeq")];
+ char entity_pool_str5949[sizeof("gvnE")];
+ char entity_pool_str5951[sizeof("boxhu")];
+ char entity_pool_str5956[sizeof("gtlPar")];
+ char entity_pool_str5959[sizeof("nprec")];
+ char entity_pool_str5962[sizeof("ouml")];
+ char entity_pool_str5970[sizeof("gescc")];
+ char entity_pool_str5976[sizeof("Euml")];
+ char entity_pool_str5980[sizeof("Uring")];
+ char entity_pool_str5982[sizeof("UnderBracket")];
+ char entity_pool_str5983[sizeof("nLtv")];
+ char entity_pool_str5984[sizeof("LeftArrowBar")];
+ char entity_pool_str5985[sizeof("ncongdot")];
+ char entity_pool_str6003[sizeof("asympeq")];
+ char entity_pool_str6023[sizeof("minusdu")];
+ char entity_pool_str6030[sizeof("delta")];
+ char entity_pool_str6032[sizeof("harrw")];
+ char entity_pool_str6038[sizeof("andslope")];
+ char entity_pool_str6043[sizeof("cdot")];
+ char entity_pool_str6048[sizeof("Cayleys")];
+ char entity_pool_str6049[sizeof("boxhU")];
+ char entity_pool_str6052[sizeof("succsim")];
+ char entity_pool_str6061[sizeof("cirE")];
+ char entity_pool_str6062[sizeof("sdotb")];
+ char entity_pool_str6066[sizeof("odash")];
+ char entity_pool_str6067[sizeof("cirmid")];
+ char entity_pool_str6068[sizeof("suphsub")];
+ char entity_pool_str6069[sizeof("supdsub")];
+ char entity_pool_str6077[sizeof("supdot")];
+ char entity_pool_str6079[sizeof("awconint")];
+ char entity_pool_str6084[sizeof("TSHcy")];
+ char entity_pool_str6087[sizeof("grave")];
+ char entity_pool_str6101[sizeof("lsimg")];
+ char entity_pool_str6106[sizeof("UpArrowDownArrow")];
+ char entity_pool_str6121[sizeof("LeftVector")];
+ char entity_pool_str6122[sizeof("DoubleRightArrow")];
+ char entity_pool_str6129[sizeof("NegativeThinSpace")];
+ char entity_pool_str6140[sizeof("lhblk")];
+ char entity_pool_str6146[sizeof("cire")];
+ char entity_pool_str6147[sizeof("nVDash")];
+ char entity_pool_str6151[sizeof("uhblk")];
+ char entity_pool_str6155[sizeof("imagpart")];
+ char entity_pool_str6161[sizeof("RightUpDownVector")];
+ char entity_pool_str6164[sizeof("boxdL")];
+ char entity_pool_str6176[sizeof("gla")];
+ char entity_pool_str6193[sizeof("Iuml")];
+ char entity_pool_str6203[sizeof("oelig")];
+ char entity_pool_str6208[sizeof("NotLessSlantEqual")];
+ char entity_pool_str6210[sizeof("boxDL")];
+ char entity_pool_str6215[sizeof("gamma")];
+ char entity_pool_str6236[sizeof("Otimes")];
+ char entity_pool_str6248[sizeof("longleftrightarrow")];
+ char entity_pool_str6261[sizeof("Gamma")];
+ char entity_pool_str6262[sizeof("bigwedge")];
+ char entity_pool_str6268[sizeof("boxhd")];
+ char entity_pool_str6283[sizeof("supE")];
+ char entity_pool_str6292[sizeof("LeftUpTeeVector")];
+ char entity_pool_str6298[sizeof("gesdoto")];
+ char entity_pool_str6304[sizeof("kappa")];
+ char entity_pool_str6315[sizeof("ngeqslant")];
+ char entity_pool_str6340[sizeof("gtrless")];
+ char entity_pool_str6351[sizeof("fflig")];
+ char entity_pool_str6352[sizeof("bigsqcup")];
+ char entity_pool_str6367[sizeof("kgreen")];
+ char entity_pool_str6368[sizeof("supe")];
+ char entity_pool_str6370[sizeof("boxtimes")];
+ char entity_pool_str6386[sizeof("gnapprox")];
+ char entity_pool_str6394[sizeof("downdownarrows")];
+ char entity_pool_str6403[sizeof("biguplus")];
+ char entity_pool_str6404[sizeof("khcy")];
+ char entity_pool_str6406[sizeof("ddagger")];
+ char entity_pool_str6418[sizeof("Ouml")];
+ char entity_pool_str6420[sizeof("Beta")];
+ char entity_pool_str6421[sizeof("minusd")];
+ char entity_pool_str6422[sizeof("succnsim")];
+ char entity_pool_str6424[sizeof("ctdot")];
+ char entity_pool_str6427[sizeof("kjcy")];
+ char entity_pool_str6428[sizeof("gjcy")];
+ char entity_pool_str6430[sizeof("ncong")];
+ char entity_pool_str6431[sizeof("xvee")];
+ char entity_pool_str6432[sizeof("bcong")];
+ char entity_pool_str6439[sizeof("sqsube")];
+ char entity_pool_str6442[sizeof("boxdR")];
+ char entity_pool_str6445[sizeof("Longleftrightarrow")];
+ char entity_pool_str6447[sizeof("sqsub")];
+ char entity_pool_str6451[sizeof("DownLeftRightVector")];
+ char entity_pool_str6454[sizeof("sqsubset")];
+ char entity_pool_str6456[sizeof("NotVerticalBar")];
+ char entity_pool_str6461[sizeof("NotEqualTilde")];
+ char entity_pool_str6485[sizeof("boxdl")];
+ char entity_pool_str6488[sizeof("boxDR")];
+ char entity_pool_str6490[sizeof("andand")];
+ char entity_pool_str6502[sizeof("RightVector")];
+ char entity_pool_str6504[sizeof("IJlig")];
+ char entity_pool_str6505[sizeof("NotTildeEqual")];
+ char entity_pool_str6509[sizeof("angzarr")];
+ char entity_pool_str6515[sizeof("angrt")];
+ char entity_pool_str6521[sizeof("acd")];
+ char entity_pool_str6524[sizeof("andd")];
+ char entity_pool_str6526[sizeof("nrarrc")];
+ char entity_pool_str6527[sizeof("VeryThinSpace")];
+ char entity_pool_str6529[sizeof("Superset")];
+ char entity_pool_str6531[sizeof("boxDl")];
+ char entity_pool_str6535[sizeof("vnsub")];
+ char entity_pool_str6538[sizeof("ccupssm")];
+ char entity_pool_str6548[sizeof("varnothing")];
+ char entity_pool_str6552[sizeof("rcy")];
+ char entity_pool_str6554[sizeof("lcy")];
+ char entity_pool_str6556[sizeof("scy")];
+ char entity_pool_str6558[sizeof("Tcy")];
+ char entity_pool_str6559[sizeof("Zcy")];
+ char entity_pool_str6560[sizeof("ecy")];
+ char entity_pool_str6561[sizeof("rdsh")];
+ char entity_pool_str6563[sizeof("ldsh")];
+ char entity_pool_str6565[sizeof("ucy")];
+ char entity_pool_str6566[sizeof("boxVH")];
+ char entity_pool_str6567[sizeof("tcy")];
+ char entity_pool_str6577[sizeof("ncy")];
+ char entity_pool_str6579[sizeof("bcy")];
+ char entity_pool_str6580[sizeof("ntgl")];
+ char entity_pool_str6585[sizeof("Jcy")];
+ char entity_pool_str6600[sizeof("congdot")];
+ char entity_pool_str6607[sizeof("angst")];
+ char entity_pool_str6609[sizeof("RightDownTeeVector")];
+ char entity_pool_str6612[sizeof("OverParenthesis")];
+ char entity_pool_str6613[sizeof("ltquest")];
+ char entity_pool_str6615[sizeof("pcy")];
+ char entity_pool_str6618[sizeof("otilde")];
+ char entity_pool_str6619[sizeof("rdquo")];
+ char entity_pool_str6621[sizeof("ldquo")];
+ char entity_pool_str6623[sizeof("Vcy")];
+ char entity_pool_str6626[sizeof("capbrcup")];
+ char entity_pool_str6646[sizeof("bdquo")];
+ char entity_pool_str6650[sizeof("DownArrowBar")];
+ char entity_pool_str6657[sizeof("vcy")];
+ char entity_pool_str6665[sizeof("angrtvb")];
+ char entity_pool_str6676[sizeof("Kcy")];
+ char entity_pool_str6683[sizeof("Mcy")];
+ char entity_pool_str6684[sizeof("Scy")];
+ char entity_pool_str6691[sizeof("NewLine")];
+ char entity_pool_str6696[sizeof("fcy")];
+ char entity_pool_str6697[sizeof("Ucy")];
+ char entity_pool_str6704[sizeof("boxVh")];
+ char entity_pool_str6715[sizeof("Dcy")];
+ char entity_pool_str6738[sizeof("hstrok")];
+ char entity_pool_str6751[sizeof("Lcy")];
+ char entity_pool_str6762[sizeof("Ycy")];
+ char entity_pool_str6775[sizeof("supsim")];
+ char entity_pool_str6789[sizeof("NonBreakingSpace")];
+ char entity_pool_str6790[sizeof("OverBar")];
+ char entity_pool_str6791[sizeof("sqsubseteq")];
+ char entity_pool_str6797[sizeof("GJcy")];
+ char entity_pool_str6800[sizeof("OverBrace")];
+ char entity_pool_str6806[sizeof("eqcirc")];
+ char entity_pool_str6819[sizeof("OverBracket")];
+ char entity_pool_str6821[sizeof("Auml")];
+ char entity_pool_str6829[sizeof("acute")];
+ char entity_pool_str6830[sizeof("icy")];
+ char entity_pool_str6849[sizeof("Itilde")];
+ char entity_pool_str6850[sizeof("HilbertSpace")];
+ char entity_pool_str6854[sizeof("omega")];
+ char entity_pool_str6855[sizeof("cacute")];
+ char entity_pool_str6861[sizeof("scirc")];
+ char entity_pool_str6865[sizeof("ecirc")];
+ char entity_pool_str6870[sizeof("ucirc")];
+ char entity_pool_str6872[sizeof("GreaterSlantEqual")];
+ char entity_pool_str6890[sizeof("Jcirc")];
+ char entity_pool_str6895[sizeof("nvDash")];
+ char entity_pool_str6896[sizeof("Wcirc")];
+ char entity_pool_str6900[sizeof("Ncy")];
+ char entity_pool_str6921[sizeof("RightTeeArrow")];
+ char entity_pool_str6942[sizeof("LessFullEqual")];
+ char entity_pool_str6958[sizeof("ltcc")];
+ char entity_pool_str6963[sizeof("aleph")];
+ char entity_pool_str6979[sizeof("dcy")];
+ char entity_pool_str6989[sizeof("Scirc")];
+ char entity_pool_str6991[sizeof("lessapprox")];
+ char entity_pool_str7000[sizeof("IEcy")];
+ char entity_pool_str7001[sizeof("LowerRightArrow")];
+ char entity_pool_str7002[sizeof("Ucirc")];
+ char entity_pool_str7021[sizeof("agrave")];
+ char entity_pool_str7023[sizeof("MinusPlus")];
+ char entity_pool_str7024[sizeof("bigvee")];
+ char entity_pool_str7028[sizeof("Rcy")];
+ char entity_pool_str7034[sizeof("suphsol")];
+ char entity_pool_str7037[sizeof("EmptyVerySmallSquare")];
+ char entity_pool_str7039[sizeof("boxhD")];
+ char entity_pool_str7047[sizeof("precapprox")];
+ char entity_pool_str7066[sizeof("angrtvbd")];
+ char entity_pool_str7067[sizeof("Ycirc")];
+ char entity_pool_str7071[sizeof("sub")];
+ char entity_pool_str7074[sizeof("Otilde")];
+ char entity_pool_str7075[sizeof("Ccirc")];
+ char entity_pool_str7085[sizeof("Fcy")];
+ char entity_pool_str7090[sizeof("complexes")];
+ char entity_pool_str7096[sizeof("subrarr")];
+ char entity_pool_str7115[sizeof("InvisibleComma")];
+ char entity_pool_str7120[sizeof("boxur")];
+ char entity_pool_str7121[sizeof("abreve")];
+ char entity_pool_str7127[sizeof("ntlg")];
+ char entity_pool_str7135[sizeof("icirc")];
+ char entity_pool_str7142[sizeof("xdtri")];
+ char entity_pool_str7143[sizeof("circ")];
+ char entity_pool_str7168[sizeof("gtrdot")];
+ char entity_pool_str7171[sizeof("geqslant")];
+ char entity_pool_str7183[sizeof("ntriangleright")];
+ char entity_pool_str7198[sizeof("cuepr")];
+ char entity_pool_str7199[sizeof("Sub")];
+ char entity_pool_str7201[sizeof("mcy")];
+ char entity_pool_str7212[sizeof("timesbar")];
+ char entity_pool_str7214[sizeof("hksearow")];
+ char entity_pool_str7217[sizeof("sigma")];
+ char entity_pool_str7224[sizeof("cupor")];
+ char entity_pool_str7230[sizeof("oslash")];
+ char entity_pool_str7231[sizeof("dzigrarr")];
+ char entity_pool_str7234[sizeof("leftrightharpoons")];
+ char entity_pool_str7245[sizeof("rightleftharpoons")];
+ char entity_pool_str7247[sizeof("kcedil")];
+ char entity_pool_str7256[sizeof("submult")];
+ char entity_pool_str7260[sizeof("curren")];
+ char entity_pool_str7269[sizeof("LeftTeeVector")];
+ char entity_pool_str7274[sizeof("bigstar")];
+ char entity_pool_str7277[sizeof("cup")];
+ char entity_pool_str7278[sizeof("LongRightArrow")];
+ char entity_pool_str7294[sizeof("Gcedil")];
+ char entity_pool_str7296[sizeof("PrecedesEqual")];
+ char entity_pool_str7307[sizeof("zcy")];
+ char entity_pool_str7309[sizeof("planckh")];
+ char entity_pool_str7310[sizeof("Omega")];
+ char entity_pool_str7317[sizeof("subsub")];
+ char entity_pool_str7325[sizeof("rdca")];
+ char entity_pool_str7326[sizeof("cups")];
+ char entity_pool_str7327[sizeof("ldca")];
+ char entity_pool_str7332[sizeof("subset")];
+ char entity_pool_str7333[sizeof("NotSucceeds")];
+ char entity_pool_str7334[sizeof("LeftArrowRightArrow")];
+ char entity_pool_str7337[sizeof("wcirc")];
+ char entity_pool_str7338[sizeof("RightAngleBracket")];
+ char entity_pool_str7344[sizeof("ntrianglerighteq")];
+ char entity_pool_str7345[sizeof("Sigma")];
+ char entity_pool_str7350[sizeof("NotSucceedsTilde")];
+ char entity_pool_str7364[sizeof("DiacriticalAcute")];
+ char entity_pool_str7376[sizeof("subne")];
+ char entity_pool_str7378[sizeof("Product")];
+ char entity_pool_str7385[sizeof("circleddash")];
+ char entity_pool_str7389[sizeof("subsup")];
+ char entity_pool_str7397[sizeof("copy")];
+ char entity_pool_str7403[sizeof("eta")];
+ char entity_pool_str7409[sizeof("angmsd")];
+ char entity_pool_str7434[sizeof("natural")];
+ char entity_pool_str7436[sizeof("supedot")];
+ char entity_pool_str7437[sizeof("naturals")];
+ char entity_pool_str7443[sizeof("triangleright")];
+ char entity_pool_str7445[sizeof("DiacriticalGrave")];
+ char entity_pool_str7446[sizeof("boxuL")];
+ char entity_pool_str7447[sizeof("cong")];
+ char entity_pool_str7451[sizeof("telrec")];
+ char entity_pool_str7454[sizeof("comma")];
+ char entity_pool_str7460[sizeof("Subset")];
+ char entity_pool_str7475[sizeof("NotSucceedsSlantEqual")];
+ char entity_pool_str7476[sizeof("gtreqless")];
+ char entity_pool_str7477[sizeof("Atilde")];
+ char entity_pool_str7484[sizeof("curarr")];
+ char entity_pool_str7491[sizeof("cudarrr")];
+ char entity_pool_str7495[sizeof("cudarrl")];
+ char entity_pool_str7503[sizeof("subseteq")];
+ char entity_pool_str7504[sizeof("subseteqq")];
+ char entity_pool_str7505[sizeof("rightsquigarrow")];
+ char entity_pool_str7520[sizeof("cupcap")];
+ char entity_pool_str7521[sizeof("subsetneq")];
+ char entity_pool_str7532[sizeof("aogon")];
+ char entity_pool_str7533[sizeof("notinvc")];
+ char entity_pool_str7534[sizeof("rightthreetimes")];
+ char entity_pool_str7552[sizeof("yacute")];
+ char entity_pool_str7563[sizeof("nLeftarrow")];
+ char entity_pool_str7581[sizeof("ocy")];
+ char entity_pool_str7582[sizeof("cemptyv")];
+ char entity_pool_str7595[sizeof("Ecy")];
+ char entity_pool_str7598[sizeof("cupcup")];
+ char entity_pool_str7604[sizeof("trianglerighteq")];
+ char entity_pool_str7615[sizeof("LeftRightArrow")];
+ char entity_pool_str7618[sizeof("succ")];
+ char entity_pool_str7631[sizeof("DownArrowUpArrow")];
+ char entity_pool_str7641[sizeof("OElig")];
+ char entity_pool_str7648[sizeof("chcy")];
+ char entity_pool_str7649[sizeof("gtreqqless")];
+ char entity_pool_str7655[sizeof("angle")];
+ char entity_pool_str7662[sizeof("acE")];
+ char entity_pool_str7668[sizeof("rmoustache")];
+ char entity_pool_str7670[sizeof("lmoustache")];
+ char entity_pool_str7674[sizeof("NegativeVeryThinSpace")];
+ char entity_pool_str7677[sizeof("napprox")];
+ char entity_pool_str7686[sizeof("Oslash")];
+ char entity_pool_str7698[sizeof("subsetneqq")];
+ char entity_pool_str7723[sizeof("Aring")];
+ char entity_pool_str7724[sizeof("boxuR")];
+ char entity_pool_str7730[sizeof("subplus")];
+ char entity_pool_str7742[sizeof("xwedge")];
+ char entity_pool_str7767[sizeof("boxul")];
+ char entity_pool_str7778[sizeof("boxvr")];
+ char entity_pool_str7800[sizeof("HumpDownHump")];
+ char entity_pool_str7812[sizeof("Icy")];
+ char entity_pool_str7828[sizeof("approxeq")];
+ char entity_pool_str7841[sizeof("aacute")];
+ char entity_pool_str7842[sizeof("apid")];
+ char entity_pool_str7859[sizeof("UpDownArrow")];
+ char entity_pool_str7861[sizeof("NestedGreaterGreater")];
+ char entity_pool_str7863[sizeof("jcy")];
+ char entity_pool_str7866[sizeof("gtrsim")];
+ char entity_pool_str7876[sizeof("boxv")];
+ char entity_pool_str7886[sizeof("ocirc")];
+ char entity_pool_str7900[sizeof("Ecirc")];
+ char entity_pool_str7987[sizeof("notnivc")];
+ char entity_pool_str8006[sizeof("bigtriangleup")];
+ char entity_pool_str8032[sizeof("daleth")];
+ char entity_pool_str8037[sizeof("Ocy")];
+ char entity_pool_str8042[sizeof("Hcirc")];
+ char entity_pool_str8043[sizeof("RightVectorBar")];
+ char entity_pool_str8044[sizeof("AElig")];
+ char entity_pool_str8063[sizeof("FilledVerySmallSquare")];
+ char entity_pool_str8084[sizeof("ggg")];
+ char entity_pool_str8088[sizeof("Bcy")];
+ char entity_pool_str8099[sizeof("Poincareplane")];
+ char entity_pool_str8104[sizeof("boxvL")];
+ char entity_pool_str8107[sizeof("PartialD")];
+ char entity_pool_str8117[sizeof("Icirc")];
+ char entity_pool_str8129[sizeof("cularr")];
+ char entity_pool_str8135[sizeof("boxh")];
+ char entity_pool_str8142[sizeof("andv")];
+ char entity_pool_str8144[sizeof("sung")];
+ char entity_pool_str8148[sizeof("RightDoubleBracket")];
+ char entity_pool_str8168[sizeof("jcirc")];
+ char entity_pool_str8174[sizeof("UnderBar")];
+ char entity_pool_str8241[sizeof("RightArrow")];
+ char entity_pool_str8242[sizeof("circledcirc")];
+ char entity_pool_str8243[sizeof("Alpha")];
+ char entity_pool_str8251[sizeof("leftharpoonup")];
+ char entity_pool_str8258[sizeof("cularrp")];
+ char entity_pool_str8260[sizeof("RightArrowLeftArrow")];
+ char entity_pool_str8281[sizeof("varsigma")];
+ char entity_pool_str8300[sizeof("numero")];
+ char entity_pool_str8310[sizeof("ffllig")];
+ char entity_pool_str8326[sizeof("LowerLeftArrow")];
+ char entity_pool_str8340[sizeof("expectation")];
+ char entity_pool_str8342[sizeof("Ocirc")];
+ char entity_pool_str8351[sizeof("yacy")];
+ char entity_pool_str8375[sizeof("lambda")];
+ char entity_pool_str8381[sizeof("NotSucceedsEqual")];
+ char entity_pool_str8382[sizeof("boxvR")];
+ char entity_pool_str8384[sizeof("bigtriangledown")];
+ char entity_pool_str8391[sizeof("ang")];
+ char entity_pool_str8404[sizeof("xuplus")];
+ char entity_pool_str8424[sizeof("nabla")];
+ char entity_pool_str8425[sizeof("boxvl")];
+ char entity_pool_str8438[sizeof("Eta")];
+ char entity_pool_str8440[sizeof("Acy")];
+ char entity_pool_str8474[sizeof("kcy")];
+ char entity_pool_str8475[sizeof("gcy")];
+ char entity_pool_str8485[sizeof("LeftRightVector")];
+ char entity_pool_str8491[sizeof("ccedil")];
+ char entity_pool_str8495[sizeof("Backslash")];
+ char entity_pool_str8506[sizeof("hslash")];
+ char entity_pool_str8515[sizeof("Pcy")];
+ char entity_pool_str8521[sizeof("Gcy")];
+ char entity_pool_str8534[sizeof("gtquest")];
+ char entity_pool_str8572[sizeof("Lambda")];
+ char entity_pool_str8627[sizeof("odiv")];
+ char entity_pool_str8629[sizeof("leftharpoondown")];
+ char entity_pool_str8672[sizeof("longmapsto")];
+ char entity_pool_str8677[sizeof("Jukcy")];
+ char entity_pool_str8687[sizeof("ldrdhar")];
+ char entity_pool_str8700[sizeof("xutri")];
+ char entity_pool_str8701[sizeof("nRightarrow")];
+ char entity_pool_str8725[sizeof("ExponentialE")];
+ char entity_pool_str8735[sizeof("nrightarrow")];
+ char entity_pool_str8745[sizeof("Acirc")];
+ char entity_pool_str8746[sizeof("NoBreak")];
+ char entity_pool_str8780[sizeof("gcirc")];
+ char entity_pool_str8784[sizeof("ange")];
+ char entity_pool_str8785[sizeof("curarrm")];
+ char entity_pool_str8791[sizeof("SHCHcy")];
+ char entity_pool_str8796[sizeof("yuml")];
+ char entity_pool_str8800[sizeof("subnE")];
+ char entity_pool_str8803[sizeof("DDotrahd")];
+ char entity_pool_str8810[sizeof("RuleDelayed")];
+ char entity_pool_str8826[sizeof("Gcirc")];
+ char entity_pool_str8843[sizeof("Jsercy")];
+ char entity_pool_str8879[sizeof("gtcc")];
+ char entity_pool_str8922[sizeof("iukcy")];
+ char entity_pool_str8956[sizeof("updownarrow")];
+ char entity_pool_str8962[sizeof("curlyvee")];
+ char entity_pool_str8972[sizeof("ffilig")];
+ char entity_pool_str8992[sizeof("yicy")];
+ char entity_pool_str9015[sizeof("divonx")];
+ char entity_pool_str9026[sizeof("gtrapprox")];
+ char entity_pool_str9069[sizeof("subdot")];
+ char entity_pool_str9079[sizeof("leftrightarrows")];
+ char entity_pool_str9085[sizeof("auml")];
+ char entity_pool_str9088[sizeof("Updownarrow")];
+ char entity_pool_str9090[sizeof("rightleftarrows")];
+ char entity_pool_str9151[sizeof("DownRightVector")];
+ char entity_pool_str9154[sizeof("DownRightVectorBar")];
+ char entity_pool_str9162[sizeof("hcirc")];
+ char entity_pool_str9186[sizeof("Rrightarrow")];
+ char entity_pool_str9217[sizeof("longrightarrow")];
+ char entity_pool_str9239[sizeof("cupdot")];
+ char entity_pool_str9249[sizeof("ac")];
+ char entity_pool_str9268[sizeof("hookrightarrow")];
+ char entity_pool_str9271[sizeof("NegativeThickSpace")];
+ char entity_pool_str9275[sizeof("subE")];
+ char entity_pool_str9307[sizeof("twoheadrightarrow")];
+ char entity_pool_str9320[sizeof("downharpoonright")];
+ char entity_pool_str9321[sizeof("downharpoonleft")];
+ char entity_pool_str9326[sizeof("aelig")];
+ char entity_pool_str9330[sizeof("rdldhar")];
+ char entity_pool_str9349[sizeof("curlywedge")];
+ char entity_pool_str9351[sizeof("hybull")];
+ char entity_pool_str9360[sizeof("sube")];
+ char entity_pool_str9414[sizeof("Longrightarrow")];
+ char entity_pool_str9484[sizeof("Cedilla")];
+ char entity_pool_str9505[sizeof("notinva")];
+ char entity_pool_str9506[sizeof("SucceedsEqual")];
+ char entity_pool_str9554[sizeof("leftrightarrow")];
+ char entity_pool_str9580[sizeof("straightepsilon")];
+ char entity_pool_str9627[sizeof("amalg")];
+ char entity_pool_str9741[sizeof("atilde")];
+ char entity_pool_str9747[sizeof("RightCeiling")];
+ char entity_pool_str9751[sizeof("Leftrightarrow")];
+ char entity_pool_str9767[sizeof("subsim")];
+ char entity_pool_str9788[sizeof("VerticalLine")];
+ char entity_pool_str9801[sizeof("RightUpVector")];
+ char entity_pool_str9804[sizeof("RightUpVectorBar")];
+ char entity_pool_str9829[sizeof("RightDownVector")];
+ char entity_pool_str9832[sizeof("RightDownVectorBar")];
+ char entity_pool_str9836[sizeof("alefsym")];
+ char entity_pool_str9852[sizeof("circlearrowright")];
+ char entity_pool_str9853[sizeof("circlearrowleft")];
+ char entity_pool_str9904[sizeof("Iukcy")];
+ char entity_pool_str9936[sizeof("otimesas")];
+ char entity_pool_str9944[sizeof("intercal")];
+ char entity_pool_str9952[sizeof("thickapprox")];
+ char entity_pool_str9955[sizeof("jukcy")];
+ char entity_pool_str9959[sizeof("notniva")];
+ char entity_pool_str9963[sizeof("precnapprox")];
+ char entity_pool_str9983[sizeof("cuvee")];
+ char entity_pool_str9987[sizeof("aring")];
+ char entity_pool_str10023[sizeof("ccirc")];
+ char entity_pool_str10029[sizeof("rightarrow")];
+ char entity_pool_str10061[sizeof("Integral")];
+ char entity_pool_str10062[sizeof("xcirc")];
+ char entity_pool_str10121[sizeof("jsercy")];
+ char entity_pool_str10206[sizeof("checkmark")];
+ char entity_pool_str10208[sizeof("VerticalTilde")];
+ char entity_pool_str10219[sizeof("boxvH")];
+ char entity_pool_str10240[sizeof("NotRightTriangleBar")];
+ char entity_pool_str10244[sizeof("NotRightTriangleEqual")];
+ char entity_pool_str10245[sizeof("NotRightTriangle")];
+ char entity_pool_str10278[sizeof("LeftVectorBar")];
+ char entity_pool_str10357[sizeof("boxvh")];
+ char entity_pool_str10395[sizeof("boxbox")];
+ char entity_pool_str10415[sizeof("ycy")];
+ char entity_pool_str10428[sizeof("subedot")];
+ char entity_pool_str10445[sizeof("SOFTcy")];
+ char entity_pool_str10505[sizeof("Rightarrow")];
+ char entity_pool_str10507[sizeof("alpha")];
+ char entity_pool_str10528[sizeof("shchcy")];
+ char entity_pool_str10584[sizeof("softcy")];
+ char entity_pool_str10704[sizeof("acy")];
+ char entity_pool_str10720[sizeof("ycirc")];
+ char entity_pool_str10791[sizeof("bigcirc")];
+ char entity_pool_str10808[sizeof("ImaginaryI")];
+ char entity_pool_str10847[sizeof("approx")];
+ char entity_pool_str10851[sizeof("SupersetEqual")];
+ char entity_pool_str10879[sizeof("vzigzag")];
+ char entity_pool_str10888[sizeof("cuesc")];
+ char entity_pool_str10947[sizeof("UnderParenthesis")];
+ char entity_pool_str11009[sizeof("acirc")];
+ char entity_pool_str11029[sizeof("succapprox")];
+ char entity_pool_str11047[sizeof("mcomma")];
+ char entity_pool_str11146[sizeof("angmsdae")];
+ char entity_pool_str11165[sizeof("angmsdab")];
+ char entity_pool_str11282[sizeof("angmsdaf")];
+ char entity_pool_str11366[sizeof("angsph")];
+ char entity_pool_str11527[sizeof("luruhar")];
+ char entity_pool_str11565[sizeof("angmsdad")];
+ char entity_pool_str11664[sizeof("twoheadleftarrow")];
+ char entity_pool_str11720[sizeof("cylcty")];
+ char entity_pool_str11791[sizeof("straightphi")];
+ char entity_pool_str11840[sizeof("multimap")];
+ char entity_pool_str11918[sizeof("RightArrowBar")];
+ char entity_pool_str12012[sizeof("ldrushar")];
+ char entity_pool_str12103[sizeof("LeftAngleBracket")];
+ char entity_pool_str12170[sizeof("ruluhar")];
+ char entity_pool_str12202[sizeof("curlyeqprec")];
+ char entity_pool_str12206[sizeof("yucy")];
+ char entity_pool_str12288[sizeof("lurdshar")];
+ char entity_pool_str12413[sizeof("hardcy")];
+ char entity_pool_str12461[sizeof("rightharpoondown")];
+ char entity_pool_str12497[sizeof("rightharpoonup")];
+ char entity_pool_str12502[sizeof("HARDcy")];
+ char entity_pool_str12651[sizeof("SubsetEqual")];
+ char entity_pool_str12809[sizeof("digamma")];
+ char entity_pool_str12892[sizeof("udblac")];
+ char entity_pool_str12985[sizeof("SuchThat")];
+ char entity_pool_str12991[sizeof("cuwed")];
+ char entity_pool_str13024[sizeof("Udblac")];
+ char entity_pool_str13061[sizeof("angmsdag")];
+ char entity_pool_str13443[sizeof("angmsdah")];
+ char entity_pool_str13643[sizeof("VerticalBar")];
+ char entity_pool_str13659[sizeof("VerticalSeparator")];
+ char entity_pool_str13709[sizeof("rightarrowtail")];
+ char entity_pool_str13908[sizeof("odblac")];
+ char entity_pool_str13945[sizeof("succnapprox")];
+ char entity_pool_str14304[sizeof("angmsdac")];
+ char entity_pool_str14364[sizeof("Odblac")];
+ char entity_pool_str14620[sizeof("cupbrcap")];
+ char entity_pool_str15290[sizeof("angmsdaa")];
+ char entity_pool_str15360[sizeof("curlyeqsucc")];
+ char entity_pool_str15729[sizeof("curvearrowleft")];
+ char entity_pool_str16000[sizeof("curvearrowright")];
+ };
+static const struct entity_pool_t entity_pool_contents =
+ {
+ "rarr",
+ "larr",
+ "lat",
+ "uarr",
+ "npr",
+ "rarrtl",
+ "larrtl",
+ "roarr",
+ "loarr",
+ "not",
+ "rpar",
+ "bot",
+ "lpar",
+ "spar",
+ "ll",
+ "uharr",
+ "epar",
+ "el",
+ "rotimes",
+ "lotimes",
+ "par",
+ "nharr",
+ "npar",
+ "tprime",
+ "els",
+ "eparsl",
+ "ensp",
+ "bprime",
+ "lnap",
+ "blk14",
+ "blk12",
+ "blk34",
+ "nparsl",
+ "nldr",
+ "rlarr",
+ "npart",
+ "llarr",
+ "nlt",
+ "slarr",
+ "nparallel",
+ "Tau",
+ "varr",
+ "squ",
+ "nlarr",
+ "tau",
+ "lne",
+ "rrarr",
+ "lrarr",
+ "srarr",
+ "rharul",
+ "lharul",
+ "erarr",
+ "pr",
+ "rharu",
+ "lharu",
+ "Uarr",
+ "nGt",
+ "bne",
+ "nrarr",
+ "swarr",
+ "rarrap",
+ "upuparrows",
+ "Darr",
+ "rbarr",
+ "Dot",
+ "lbarr",
+ "nwarr",
+ "smt",
+ "emsp14",
+ "rarrpl",
+ "larrpl",
+ "phmmat",
+ "emsp13",
+ "LT",
+ "Larr",
+ "rbrkslu",
+ "lbrkslu",
+ "napos",
+ "nle",
+ "rHar",
+ "lHar",
+ "qprime",
+ "lap",
+ "nbsp",
+ "uHar",
+ "top",
+ "Vbar",
+ "Ll",
+ "prap",
+ "emsp",
+ "nap",
+ "looparrowleft",
+ "le",
+ "sharp",
+ "ee",
+ "les",
+ "in",
+ "prop",
+ "topbot",
+ "int",
+ "ne",
+ "nprcue",
+ "pre",
+ "epsi",
+ "upsi",
+ "there4",
+ "rbrke",
+ "searr",
+ "lbrke",
+ "blacktriangle",
+ "lneq",
+ "lneqq",
+ "plus",
+ "nles",
+ "nedot",
+ "blacktriangleleft",
+ "blacktriangleright",
+ "nearr",
+ "blacktriangledown",
+ "nless",
+ "emacr",
+ "vprop",
+ "umacr",
+ "smeparsl",
+ "Map",
+ "plusdu",
+ "Not",
+ "Verbar",
+ "perp",
+ "fltns",
+ "plusmn",
+ "nleq",
+ "nleqq",
+ "frac34",
+ "frac14",
+ "verbar",
+ "frac12",
+ "frac35",
+ "frac15",
+ "frac45",
+ "frac25",
+ "frac13",
+ "frac16",
+ "prurel",
+ "frac23",
+ "frac38",
+ "frac18",
+ "frac56",
+ "frac58",
+ "frac78",
+ "leq",
+ "darr",
+ "Upsi",
+ "dot",
+ "phone",
+ "Cap",
+ "blacksquare",
+ "rnmid",
+ "leqq",
+ "intcal",
+ "dharr",
+ "rhard",
+ "lhard",
+ "pluse",
+ "Umacr",
+ "Vee",
+ "Rarr",
+ "Cross",
+ "rsqb",
+ "lsqb",
+ "Rarrtl",
+ "esdot",
+ "vee",
+ "nbumpe",
+ "llcorner",
+ "fpartint",
+ "squf",
+ "plankv",
+ "eqvparsl",
+ "ulcorner",
+ "wp",
+ "lozf",
+ "COPY",
+ "ulcorn",
+ "veebar",
+ "part",
+ "square",
+ "nbump",
+ "bernou",
+ "wr",
+ "rBarr",
+ "lrcorner",
+ "lBarr",
+ "bnot",
+ "semi",
+ "urcorner",
+ "NotSubset",
+ "ropf",
+ "Qopf",
+ "lopf",
+ "sopf",
+ "urcorn",
+ "Topf",
+ "Zopf",
+ "eopf",
+ "ropar",
+ "uopf",
+ "lopar",
+ "topf",
+ "Xopf",
+ "nopf",
+ "bopf",
+ "epsiv",
+ "fnof",
+ "imacr",
+ "Jopf",
+ "nhpar",
+ "Wopf",
+ "Sqrt",
+ "nsub",
+ "napid",
+ "NotSuperset",
+ "brvbar",
+ "sol",
+ "easter",
+ "popf",
+ "dHar",
+ "Vopf",
+ "nsupset",
+ "nsup",
+ "vBar",
+ "nsubset",
+ "thkap",
+ "nis",
+ "profsurf",
+ "solb",
+ "lnsim",
+ "solbar",
+ "Square",
+ "vopf",
+ "uharl",
+ "ulcrop",
+ "eqsim",
+ "equiv",
+ "ell",
+ "smashp",
+ "mp",
+ "Kopf",
+ "simrarr",
+ "flat",
+ "Mopf",
+ "Sopf",
+ "mldr",
+ "rlm",
+ "iprod",
+ "lparlt",
+ "fopf",
+ "Uopf",
+ "varsubsetneq",
+ "varsubsetneqq",
+ "urcrop",
+ "LessLess",
+ "Re",
+ "NotNestedLessLess",
+ "Dopf",
+ "forkv",
+ "nsqsube",
+ "nsupe",
+ "nsube",
+ "qopf",
+ "rlhar",
+ "lrm",
+ "nlsim",
+ "pound",
+ "varsupsetneq",
+ "varsupsetneqq",
+ "bnequiv",
+ "Lopf",
+ "nsqsupe",
+ "rarrlp",
+ "wedbar",
+ "larrlp",
+ "Yopf",
+ "NotReverseElement",
+ "Copf",
+ "lrhar",
+ "parsl",
+ "uml",
+ "marker",
+ "nsupseteq",
+ "nsubseteq",
+ "squarf",
+ "Vert",
+ "SquareSupersetEqual",
+ "prsim",
+ "SquareSubsetEqual",
+ "SquareSuperset",
+ "SquareSubset",
+ "nvap",
+ "iopf",
+ "pm",
+ "vert",
+ "thetav",
+ "loz",
+ "map",
+ "lesseqqgtr",
+ "rscr",
+ "Qscr",
+ "lscr",
+ "sscr",
+ "Tscr",
+ "Zscr",
+ "escr",
+ "uscr",
+ "tscr",
+ "imof",
+ "Coproduct",
+ "Xscr",
+ "Xi",
+ "nscr",
+ "ni",
+ "bscr",
+ "Nopf",
+ "Jscr",
+ "preceq",
+ "nvrArr",
+ "backprime",
+ "Wscr",
+ "varphi",
+ "nsmid",
+ "dlcorn",
+ "pscr",
+ "pi",
+ "Vscr",
+ "nesim",
+ "simne",
+ "nsupseteqq",
+ "nsubseteqq",
+ "drcorn",
+ "rbrace",
+ "vscr",
+ "lbrace",
+ "dopf",
+ "frasl",
+ "LessTilde",
+ "Kscr",
+ "pluscir",
+ "Mscr",
+ "Sscr",
+ "rbrksld",
+ "lbrksld",
+ "RBarr",
+ "sqcaps",
+ "rArr",
+ "bNot",
+ "lArr",
+ "fscr",
+ "Uscr",
+ "uArr",
+ "Ropf",
+ "wopf",
+ "Dscr",
+ "opar",
+ "seswar",
+ "Del",
+ "rAarr",
+ "rho",
+ "lAarr",
+ "preccurlyeq",
+ "qscr",
+ "macr",
+ "notin",
+ "equivDD",
+ "sqcap",
+ "nspar",
+ "olt",
+ "ratio",
+ "Lscr",
+ "dharl",
+ "dlcrop",
+ "DoubleDot",
+ "dotplus",
+ "or",
+ "Yscr",
+ "Fopf",
+ "Cscr",
+ "olarr",
+ "nrarrw",
+ "lvertneqq",
+ "eqslantgtr",
+ "thorn",
+ "eqslantless",
+ "incare",
+ "vArr",
+ "rppolint",
+ "drcrop",
+ "parallel",
+ "orarr",
+ "ssmile",
+ "DoubleLeftTee",
+ "erDot",
+ "diams",
+ "ssetmn",
+ "oS",
+ "iscr",
+ "ii",
+ "rect",
+ "nsccue",
+ "sect",
+ "mlcp",
+ "oror",
+ "DoubleContourIntegral",
+ "equals",
+ "Hat",
+ "sstarf",
+ "mstpos",
+ "die",
+ "measuredangle",
+ "forall",
+ "notinvb",
+ "mopf",
+ "niv",
+ "vBarv",
+ "Nscr",
+ "period",
+ "becaus",
+ "between",
+ "Int",
+ "because",
+ "piv",
+ "rfr",
+ "Qfr",
+ "lfr",
+ "sfr",
+ "nleftrightarrow",
+ "Tfr",
+ "Zfr",
+ "efr",
+ "sim",
+ "ufr",
+ "roplus",
+ "tfr",
+ "loplus",
+ "Xfr",
+ "real",
+ "nfr",
+ "bfr",
+ "NotHumpEqual",
+ "Jfr",
+ "dscr",
+ "Wfr",
+ "blacklozenge",
+ "zopf",
+ "reals",
+ "NotCupCap",
+ "simplus",
+ "ForAll",
+ "pfr",
+ "omacr",
+ "Vfr",
+ "Emacr",
+ "Rscr",
+ "wscr",
+ "ShortUpArrow",
+ "setmn",
+ "vfr",
+ "Kfr",
+ "operp",
+ "Mfr",
+ "Sfr",
+ "nltrie",
+ "Fscr",
+ "ffr",
+ "Ufr",
+ "shortmid",
+ "nvsim",
+ "Dfr",
+ "lessdot",
+ "profline",
+ "qfr",
+ "dArr",
+ "nrtrie",
+ "ShortRightArrow",
+ "Therefore",
+ "DD",
+ "therefore",
+ "Lfr",
+ "target",
+ "Element",
+ "Yfr",
+ "ClockwiseContourIntegral",
+ "olcir",
+ "Cfr",
+ "female",
+ "nsucceq",
+ "oast",
+ "percnt",
+ "ordf",
+ "ord",
+ "Rho",
+ "mscr",
+ "nvrtrie",
+ "lnE",
+ "nhArr",
+ "Or",
+ "divide",
+ "ifr",
+ "elinters",
+ "bsol",
+ "nvlArr",
+ "Imacr",
+ "backsimeq",
+ "twixt",
+ "olcross",
+ "rarrsim",
+ "DoubleDownArrow",
+ "larrsim",
+ "emptyset",
+ "oopf",
+ "exist",
+ "llhard",
+ "excl",
+ "Eopf",
+ "nlArr",
+ "thinsp",
+ "NotSubsetEqual",
+ "phi",
+ "DoubleLeftArrow",
+ "topcir",
+ "div",
+ "Nfr",
+ "nlE",
+ "zscr",
+ "lrhard",
+ "lltri",
+ "nrArr",
+ "NotSupersetEqual",
+ "swArr",
+ "ThickSpace",
+ "ultri",
+ "notnivb",
+ "prime",
+ "primes",
+ "ohm",
+ "CircleTimes",
+ "nltri",
+ "siml",
+ "nwArr",
+ "varpi",
+ "orv",
+ "setminus",
+ "lrtri",
+ "permil",
+ "mid",
+ "urtri",
+ "dfr",
+ "mho",
+ "prE",
+ "vsupne",
+ "nrtri",
+ "vsubne",
+ "eDot",
+ "lesges",
+ "backepsilon",
+ "ratail",
+ "latail",
+ "UpEquilibrium",
+ "epsilon",
+ "upsilon",
+ "midast",
+ "Hopf",
+ "vltri",
+ "Rfr",
+ "Wedge",
+ "wfr",
+ "barwed",
+ "malt",
+ "Chi",
+ "emptyv",
+ "notni",
+ "LessGreater",
+ "diam",
+ "vrtri",
+ "CircleMinus",
+ "Omacr",
+ "seArr",
+ "Ffr",
+ "precneqq",
+ "Diamond",
+ "ordm",
+ "neArr",
+ "Iopf",
+ "CircleDot",
+ "prnap",
+ "dotminus",
+ "nshortmid",
+ "bottom",
+ "pointint",
+ "SquareUnion",
+ "jopf",
+ "Upsilon",
+ "Colone",
+ "nvlt",
+ "NestedLessLess",
+ "Colon",
+ "bsolhsub",
+ "DoubleLeftRightArrow",
+ "plussim",
+ "image",
+ "egs",
+ "oscr",
+ "swnwar",
+ "zeetrf",
+ "maltese",
+ "mfr",
+ "rarrfs",
+ "Escr",
+ "larrfs",
+ "mnplus",
+ "ngt",
+ "ngtr",
+ "gl",
+ "diamondsuit",
+ "GT",
+ "lesssim",
+ "dsol",
+ "upharpoonleft",
+ "SquareIntersection",
+ "lsime",
+ "nLt",
+ "NotLess",
+ "gnap",
+ "scap",
+ "mapstoleft",
+ "NotLessLess",
+ "rfloor",
+ "lfloor",
+ "nsime",
+ "bsime",
+ "NotLessEqual",
+ "NotLessTilde",
+ "ncap",
+ "NotLessGreater",
+ "precsim",
+ "looparrowright",
+ "Pr",
+ "rcub",
+ "mapstoup",
+ "lcub",
+ "zfr",
+ "uparrow",
+ "gne",
+ "sce",
+ "Im",
+ "rcaron",
+ "lcaron",
+ "Oopf",
+ "scaron",
+ "backsim",
+ "Tcaron",
+ "Zcaron",
+ "ecaron",
+ "Bernoullis",
+ "nge",
+ "tcaron",
+ "fork",
+ "Hscr",
+ "ncaron",
+ "elsdot",
+ "tbrk",
+ "triplus",
+ "diamond",
+ "ncup",
+ "bbrk",
+ "frown",
+ "bkarow",
+ "spades",
+ "psi",
+ "Bopf",
+ "dollar",
+ "disin",
+ "spadesuit",
+ "NotTilde",
+ "doublebarwedge",
+ "gap",
+ "bbrktbrk",
+ "swarrow",
+ "bepsi",
+ "Iscr",
+ "NotTildeFullEqual",
+ "eqcolon",
+ "tint",
+ "intprod",
+ "nsupE",
+ "nwarrow",
+ "nsubE",
+ "nges",
+ "Uparrow",
+ "ge",
+ "OpenCurlyDoubleQuote",
+ "smallsetminus",
+ "Scaron",
+ "nvltrie",
+ "ges",
+ "blank",
+ "QUOT",
+ "block",
+ "trade",
+ "jscr",
+ "wedge",
+ "Amacr",
+ "Equal",
+ "Dcaron",
+ "DotDot",
+ "gneq",
+ "varpropto",
+ "gneqq",
+ "Proportional",
+ "isins",
+ "eDDot",
+ "isin",
+ "TripleDot",
+ "Fouriertrf",
+ "Proportion",
+ "ngeq",
+ "Lcaron",
+ "ngeqq",
+ "lE",
+ "Ccaron",
+ "bsemi",
+ "propto",
+ "lesdot",
+ "Conint",
+ "And",
+ "searrow",
+ "orslope",
+ "harr",
+ "late",
+ "CenterDot",
+ "ofr",
+ "nearrow",
+ "qint",
+ "lates",
+ "kappav",
+ "horbar",
+ "Efr",
+ "hoarr",
+ "npre",
+ "inodot",
+ "udarr",
+ "geq",
+ "nsimeq",
+ "geqq",
+ "efDot",
+ "rpargt",
+ "Oscr",
+ "plusdo",
+ "lagran",
+ "thicksim",
+ "precnsim",
+ "Ncaron",
+ "napE",
+ "iiint",
+ "Bscr",
+ "mapstodown",
+ "varrho",
+ "isinsv",
+ "nvHarr",
+ "NotLeftTriangleBar",
+ "equest",
+ "NotLeftTriangleEqual",
+ "NotLeftTriangle",
+ "Aopf",
+ "hbar",
+ "vangrt",
+ "Hfr",
+ "range",
+ "smte",
+ "lsim",
+ "npolint",
+ "dcaron",
+ "esim",
+ "Union",
+ "smtes",
+ "kopf",
+ "gopf",
+ "nsim",
+ "bsim",
+ "SmallCircle",
+ "NotDoubleVerticalBar",
+ "NotNestedGreaterGreater",
+ "EqualTilde",
+ "notindot",
+ "Rcaron",
+ "Popf",
+ "Gopf",
+ "Ifr",
+ "wedgeq",
+ "prod",
+ "osol",
+ "DoubleUpArrow",
+ "Congruent",
+ "gnsim",
+ "scsim",
+ "jfr",
+ "upsih",
+ "nLl",
+ "DoubleUpDownArrow",
+ "ngsim",
+ "hearts",
+ "lesseqgtr",
+ "nesear",
+ "Exists",
+ "smile",
+ "uwangle",
+ "heartsuit",
+ "HorizontalLine",
+ "GreaterLess",
+ "rsaquo",
+ "lsaquo",
+ "realine",
+ "Dashv",
+ "simdot",
+ "GreaterEqual",
+ "GreaterTilde",
+ "GreaterEqualLess",
+ "GreaterGreater",
+ "rceil",
+ "lceil",
+ "lessgtr",
+ "oline",
+ "thksim",
+ "InvisibleTimes",
+ "race",
+ "iquest",
+ "imagline",
+ "UpTee",
+ "midcir",
+ "ofcir",
+ "ddarr",
+ "rangd",
+ "langd",
+ "Equilibrium",
+ "parsim",
+ "Vdashl",
+ "Ofr",
+ "Because",
+ "rAtail",
+ "lAtail",
+ "ominus",
+ "Ascr",
+ "Epsilon",
+ "ShortLeftArrow",
+ "isinv",
+ "micro",
+ "zcaron",
+ "kscr",
+ "gscr",
+ "Bfr",
+ "gel",
+ "hercon",
+ "triminus",
+ "egrave",
+ "sdot",
+ "ugrave",
+ "Zdot",
+ "edot",
+ "NotTildeTilde",
+ "tdot",
+ "Pscr",
+ "Pi",
+ "Gscr",
+ "plustwo",
+ "NotElement",
+ "PlusMinus",
+ "hopf",
+ "gammad",
+ "mDDot",
+ "divideontimes",
+ "doteq",
+ "varepsilon",
+ "Precedes",
+ "Gammad",
+ "dashv",
+ "NotCongruent",
+ "ubreve",
+ "ogt",
+ "RoundImplies",
+ "PrecedesSlantEqual",
+ "sime",
+ "Ugrave",
+ "dbkarow",
+ "sdote",
+ "veeeq",
+ "mapsto",
+ "times",
+ "rangle",
+ "langle",
+ "leftarrowtail",
+ "hamilt",
+ "udhar",
+ "nisd",
+ "rfisht",
+ "lfisht",
+ "harrcir",
+ "OpenCurlyQuote",
+ "ufisht",
+ "NotHumpDownHump",
+ "LeftTee",
+ "rsh",
+ "lsh",
+ "gvertneqq",
+ "timesb",
+ "scpolint",
+ "Cdot",
+ "dwangle",
+ "Ubreve",
+ "LeftUpVector",
+ "LeftUpVectorBar",
+ "Ecaron",
+ "homtht",
+ "igrave",
+ "npreceq",
+ "ecolon",
+ "dd",
+ "simeq",
+ "notinE",
+ "bigoplus",
+ "Afr",
+ "leftarrow",
+ "oint",
+ "Tab",
+ "ogon",
+ "lt",
+ "nLeftrightarrow",
+ "rarrb",
+ "larrb",
+ "hscr",
+ "LeftUpDownVector",
+ "kfr",
+ "gfr",
+ "UpArrowBar",
+ "nsce",
+ "ltdot",
+ "gesl",
+ "xodot",
+ "star",
+ "lowbar",
+ "xharr",
+ "ecir",
+ "utdot",
+ "natur",
+ "Lsh",
+ "infin",
+ "comp",
+ "sigmav",
+ "xotime",
+ "Pfr",
+ "Gfr",
+ "bigcap",
+ "simlE",
+ "iiiint",
+ "barwedge",
+ "Barwed",
+ "xlarr",
+ "LessEqualGreater",
+ "crarr",
+ "isindot",
+ "commat",
+ "middot",
+ "lesdotor",
+ "sigmaf",
+ "rarrbfs",
+ "larrbfs",
+ "xrarr",
+ "bigcup",
+ "clubs",
+ "hArr",
+ "rtrie",
+ "ltrie",
+ "imped",
+ "eogon",
+ "rx",
+ "ltrPar",
+ "Star",
+ "uogon",
+ "Tilde",
+ "half",
+ "tilde",
+ "Leftarrow",
+ "gesles",
+ "cap",
+ "strns",
+ "Lt",
+ "prnE",
+ "sqsupe",
+ "sqsupset",
+ "tridot",
+ "order",
+ "caps",
+ "cross",
+ "dfisht",
+ "xmap",
+ "sqsup",
+ "rtri",
+ "ltri",
+ "it",
+ "rmoust",
+ "lmoust",
+ "gnE",
+ "lgE",
+ "scE",
+ "utri",
+ "vellip",
+ "ETH",
+ "lmidot",
+ "Uogon",
+ "CounterClockwiseContourIntegral",
+ "ngE",
+ "nwnear",
+ "lesg",
+ "plusb",
+ "Rsh",
+ "copysr",
+ "infintie",
+ "imath",
+ "Esim",
+ "Phi",
+ "glE",
+ "vnsup",
+ "simgE",
+ "DoubleLongLeftArrow",
+ "DoubleLongLeftRightArrow",
+ "nvgt",
+ "Mellintrf",
+ "Prime",
+ "iinfin",
+ "ReverseElement",
+ "EmptySmallSquare",
+ "radic",
+ "hfr",
+ "zdot",
+ "male",
+ "rarrc",
+ "prec",
+ "scnap",
+ "DifferentialD",
+ "models",
+ "ltcir",
+ "iogon",
+ "capcap",
+ "iff",
+ "ddotseq",
+ "CirclePlus",
+ "rthree",
+ "lthree",
+ "PrecedesTilde",
+ "dtdot",
+ "clubsuit",
+ "racute",
+ "lacute",
+ "trpezium",
+ "sacute",
+ "Zacute",
+ "eacute",
+ "TildeTilde",
+ "Uarrocir",
+ "uacute",
+ "lowast",
+ "nacute",
+ "NotPrecedes",
+ "Lmidot",
+ "UpArrow",
+ "rarrw",
+ "DownTee",
+ "FilledSmallSquare",
+ "capcup",
+ "GreaterFullEqual",
+ "nvle",
+ "trie",
+ "omicron",
+ "DoubleRightTee",
+ "Cconint",
+ "rsquor",
+ "lsquor",
+ "zigrarr",
+ "copf",
+ "ContourIntegral",
+ "hairsp",
+ "sqsupseteq",
+ "csub",
+ "upharpoonright",
+ "DownBreve",
+ "ShortDownArrow",
+ "xopf",
+ "Sacute",
+ "vsupnE",
+ "cir",
+ "plusacir",
+ "csup",
+ "vsubnE",
+ "Uacute",
+ "isinE",
+ "gEl",
+ "sqcups",
+ "smid",
+ "lg",
+ "DoubleLongRightArrow",
+ "NotPrecedesSlantEqual",
+ "eg",
+ "AMP",
+ "nmid",
+ "timesd",
+ "DownLeftVector",
+ "zwnj",
+ "Lacute",
+ "DownLeftVectorBar",
+ "ograve",
+ "Yacute",
+ "sqcup",
+ "odot",
+ "Cacute",
+ "nu",
+ "tritime",
+ "Egrave",
+ "eplus",
+ "backcong",
+ "uplus",
+ "Edot",
+ "csupe",
+ "simg",
+ "UpperRightArrow",
+ "csube",
+ "dtri",
+ "prnsim",
+ "boxUr",
+ "uuarr",
+ "DownLeftTeeVector",
+ "gsime",
+ "bigotimes",
+ "Dagger",
+ "Intersection",
+ "iacute",
+ "prcue",
+ "egsdot",
+ "Implies",
+ "VDash",
+ "bump",
+ "Mu",
+ "vDash",
+ "lvnE",
+ "LeftTeeArrow",
+ "Nacute",
+ "UnderBrace",
+ "Psi",
+ "rhov",
+ "lescc",
+ "sup1",
+ "sup2",
+ "sup3",
+ "bigodot",
+ "Downarrow",
+ "xsqcup",
+ "barvee",
+ "NegativeMediumSpace",
+ "bumpe",
+ "cscr",
+ "nsc",
+ "sup",
+ "cedil",
+ "boxVr",
+ "origof",
+ "zwj",
+ "Igrave",
+ "Idot",
+ "xscr",
+ "xi",
+ "nGtv",
+ "boxHu",
+ "THORN",
+ "Racute",
+ "rarrhk",
+ "larrhk",
+ "rtriltri",
+ "boxV",
+ "dagger",
+ "Omicron",
+ "DoubleVerticalBar",
+ "nexists",
+ "Nu",
+ "nexist",
+ "gE",
+ "ap",
+ "Sup",
+ "doteqdot",
+ "eng",
+ "caron",
+ "boxHU",
+ "gesdot",
+ "ReverseEquilibrium",
+ "boxUL",
+ "supmult",
+ "pitchfork",
+ "numsp",
+ "rang",
+ "lang",
+ "ocir",
+ "rationals",
+ "coprod",
+ "ltlarr",
+ "breve",
+ "nang",
+ "swarhk",
+ "raquo",
+ "laquo",
+ "supsub",
+ "Cup",
+ "ape",
+ "quest",
+ "nwarhk",
+ "supset",
+ "downarrow",
+ "duarr",
+ "apos",
+ "Ograve",
+ "shortparallel",
+ "nsucc",
+ "LongLeftArrow",
+ "lesdoto",
+ "supne",
+ "nGg",
+ "raemptyv",
+ "supsup",
+ "laemptyv",
+ "topfork",
+ "Eogon",
+ "risingdotseq",
+ "bumpeq",
+ "lstrok",
+ "Tstrok",
+ "gsim",
+ "bemptyv",
+ "zacute",
+ "gsiml",
+ "tstrok",
+ "roang",
+ "boxVL",
+ "loang",
+ "nleqslant",
+ "sbquo",
+ "searhk",
+ "lnapprox",
+ "Supset",
+ "boxHd",
+ "varkappa",
+ "circeq",
+ "yopf",
+ "UnionPlus",
+ "Lang",
+ "nearhk",
+ "shcy",
+ "cfr",
+ "Kappa",
+ "ljcy",
+ "MediumSpace",
+ "supseteq",
+ "supseteqq",
+ "reg",
+ "amacr",
+ "leg",
+ "weierp",
+ "TScy",
+ "supsetneq",
+ "njcy",
+ "xfr",
+ "mu",
+ "nvinfin",
+ "boxUR",
+ "xoplus",
+ "leftleftarrows",
+ "sum",
+ "beth",
+ "complement",
+ "num",
+ "amp",
+ "boxUl",
+ "NotGreater",
+ "boxplus",
+ "jmath",
+ "sfrown",
+ "Dstrok",
+ "and",
+ "NotGreaterGreater",
+ "NotGreaterSlantEqual",
+ "NotGreaterLess",
+ "quot",
+ "NotGreaterFullEqual",
+ "hyphen",
+ "planck",
+ "TildeEqual",
+ "tosa",
+ "Lstrok",
+ "shy",
+ "xnis",
+ "Iogon",
+ "DZcy",
+ "ohbar",
+ "cirscir",
+ "sext",
+ "para",
+ "ast",
+ "questeq",
+ "Sum",
+ "DScy",
+ "ENG",
+ "ZHcy",
+ "longleftarrow",
+ "dash",
+ "DownTeeArrow",
+ "supsetneqq",
+ "profalar",
+ "oacute",
+ "boxVR",
+ "Eacute",
+ "supplus",
+ "hookleftarrow",
+ "CloseCurlyQuote",
+ "trisb",
+ "dotsquare",
+ "rtimes",
+ "ltimes",
+ "toea",
+ "Agrave",
+ "Assign",
+ "Rang",
+ "iocy",
+ "NotPrecedesEqual",
+ "aopf",
+ "chi",
+ "quaternions",
+ "boxVl",
+ "NotGreaterEqual",
+ "xhArr",
+ "orderof",
+ "rsquo",
+ "lsquo",
+ "yscr",
+ "gdot",
+ "NotSquareSubsetEqual",
+ "KHcy",
+ "bsolb",
+ "NotSquareSubset",
+ "SHcy",
+ "YIcy",
+ "cwint",
+ "Theta",
+ "theta",
+ "xlArr",
+ "NotSquareSupersetEqual",
+ "demptyv",
+ "triangle",
+ "Gdot",
+ "NotSquareSuperset",
+ "Abreve",
+ "dstrok",
+ "pertenk",
+ "rbrack",
+ "lbrack",
+ "odsold",
+ "omid",
+ "xrArr",
+ "triangleleft",
+ "NotGreaterTilde",
+ "colone",
+ "Longleftarrow",
+ "iota",
+ "colon",
+ "Zeta",
+ "gbreve",
+ "CHcy",
+ "YUcy",
+ "REG",
+ "szlig",
+ "dzcy",
+ "beta",
+ "euro",
+ "LeftArrow",
+ "CapitalDifferentialD",
+ "ring",
+ "Laplacetrf",
+ "djcy",
+ "oplus",
+ "integers",
+ "Gbreve",
+ "ubrcy",
+ "euml",
+ "deg",
+ "uuml",
+ "Iacute",
+ "succeq",
+ "KJcy",
+ "CupCap",
+ "tscy",
+ "cent",
+ "DJcy",
+ "TildeFullEqual",
+ "triangleq",
+ "duhar",
+ "LeftDoubleBracket",
+ "LJcy",
+ "iecy",
+ "trianglelefteq",
+ "nequiv",
+ "nshortparallel",
+ "ndash",
+ "bowtie",
+ "fjlig",
+ "Ubrcy",
+ "vartheta",
+ "Uuml",
+ "vartriangleright",
+ "vartriangleleft",
+ "ascr",
+ "succcurlyeq",
+ "cwconint",
+ "sc",
+ "fllig",
+ "circledast",
+ "Vdash",
+ "nVdash",
+ "suplarr",
+ "robrk",
+ "lobrk",
+ "vdash",
+ "Yuml",
+ "gt",
+ "ccaps",
+ "Succeeds",
+ "Oacute",
+ "TRADE",
+ "NJcy",
+ "gtdot",
+ "yfr",
+ "compfn",
+ "Gt",
+ "scnE",
+ "ijlig",
+ "circledS",
+ "yen",
+ "thetasym",
+ "iuml",
+ "SucceedsSlantEqual",
+ "boxH",
+ "mumap",
+ "rightrightarrows",
+ "coloneq",
+ "Sc",
+ "glj",
+ "iexcl",
+ "ccups",
+ "xcap",
+ "zhcy",
+ "boxHD",
+ "leqslant",
+ "UpperLeftArrow",
+ "dblac",
+ "puncsp",
+ "ccaron",
+ "rbbrk",
+ "lbbrk",
+ "Aogon",
+ "LeftTriangleBar",
+ "gesdotol",
+ "LeftTriangleEqual",
+ "LeftTriangle",
+ "conint",
+ "drbkarow",
+ "rtrif",
+ "ltrif",
+ "ReverseUpEquilibrium",
+ "LeftCeiling",
+ "utrif",
+ "xcup",
+ "fallingdotseq",
+ "rcedil",
+ "lcedil",
+ "scedil",
+ "Tcedil",
+ "starf",
+ "boxminus",
+ "tcedil",
+ "ZeroWidthSpace",
+ "ncedil",
+ "phiv",
+ "ic",
+ "capdot",
+ "dscy",
+ "check",
+ "ovbar",
+ "ntriangleleft",
+ "RightTee",
+ "nvge",
+ "leftrightsquigarrow",
+ "lozenge",
+ "RightTriangleBar",
+ "RightTeeVector",
+ "RightTriangleEqual",
+ "RightTriangle",
+ "Kcedil",
+ "Scedil",
+ "cirfnint",
+ "empty",
+ "afr",
+ "DiacriticalTilde",
+ "LeftDownVector",
+ "LeftDownVectorBar",
+ "lEg",
+ "ApplyFunction",
+ "bumpE",
+ "Lcedil",
+ "caret",
+ "Barv",
+ "Ccedil",
+ "circledR",
+ "LeftDownTeeVector",
+ "tshcy",
+ "DotEqual",
+ "centerdot",
+ "ntrianglelefteq",
+ "minus",
+ "gimel",
+ "Aacute",
+ "gtcir",
+ "gtrarr",
+ "bull",
+ "DownArrow",
+ "rdquor",
+ "ldquor",
+ "intlarhk",
+ "utilde",
+ "gacute",
+ "ntilde",
+ "af",
+ "Hstrok",
+ "exponentiale",
+ "minusb",
+ "RightUpTeeVector",
+ "UpTeeArrow",
+ "zeta",
+ "DiacriticalDot",
+ "DiacriticalDoubleAcute",
+ "nleftarrow",
+ "hkswarow",
+ "iiota",
+ "apacir",
+ "Ncedil",
+ "capand",
+ "mdash",
+ "filig",
+ "scnsim",
+ "realpart",
+ "leftthreetimes",
+ "asymp",
+ "hellip",
+ "dtrif",
+ "NotExists",
+ "sccue",
+ "YAcy",
+ "Utilde",
+ "NotEqual",
+ "ThinSpace",
+ "apE",
+ "bullet",
+ "CloseCurlyDoubleQuote",
+ "Delta",
+ "gg",
+ "otimes",
+ "wreath",
+ "Rcedil",
+ "eth",
+ "supnE",
+ "awint",
+ "Breve",
+ "Gg",
+ "HumpEqual",
+ "Lleftarrow",
+ "boxdr",
+ "succneqq",
+ "uring",
+ "LessSlantEqual",
+ "nvdash",
+ "Hacek",
+ "itilde",
+ "Iota",
+ "IOcy",
+ "boxDr",
+ "SucceedsTilde",
+ "LeftFloor",
+ "Vvdash",
+ "triangledown",
+ "LongLeftRightArrow",
+ "RightFloor",
+ "DownRightTeeVector",
+ "quatint",
+ "Ntilde",
+ "Bumpeq",
+ "gvnE",
+ "boxhu",
+ "gtlPar",
+ "nprec",
+ "ouml",
+ "gescc",
+ "Euml",
+ "Uring",
+ "UnderBracket",
+ "nLtv",
+ "LeftArrowBar",
+ "ncongdot",
+ "asympeq",
+ "minusdu",
+ "delta",
+ "harrw",
+ "andslope",
+ "cdot",
+ "Cayleys",
+ "boxhU",
+ "succsim",
+ "cirE",
+ "sdotb",
+ "odash",
+ "cirmid",
+ "suphsub",
+ "supdsub",
+ "supdot",
+ "awconint",
+ "TSHcy",
+ "grave",
+ "lsimg",
+ "UpArrowDownArrow",
+ "LeftVector",
+ "DoubleRightArrow",
+ "NegativeThinSpace",
+ "lhblk",
+ "cire",
+ "nVDash",
+ "uhblk",
+ "imagpart",
+ "RightUpDownVector",
+ "boxdL",
+ "gla",
+ "Iuml",
+ "oelig",
+ "NotLessSlantEqual",
+ "boxDL",
+ "gamma",
+ "Otimes",
+ "longleftrightarrow",
+ "Gamma",
+ "bigwedge",
+ "boxhd",
+ "supE",
+ "LeftUpTeeVector",
+ "gesdoto",
+ "kappa",
+ "ngeqslant",
+ "gtrless",
+ "fflig",
+ "bigsqcup",
+ "kgreen",
+ "supe",
+ "boxtimes",
+ "gnapprox",
+ "downdownarrows",
+ "biguplus",
+ "khcy",
+ "ddagger",
+ "Ouml",
+ "Beta",
+ "minusd",
+ "succnsim",
+ "ctdot",
+ "kjcy",
+ "gjcy",
+ "ncong",
+ "xvee",
+ "bcong",
+ "sqsube",
+ "boxdR",
+ "Longleftrightarrow",
+ "sqsub",
+ "DownLeftRightVector",
+ "sqsubset",
+ "NotVerticalBar",
+ "NotEqualTilde",
+ "boxdl",
+ "boxDR",
+ "andand",
+ "RightVector",
+ "IJlig",
+ "NotTildeEqual",
+ "angzarr",
+ "angrt",
+ "acd",
+ "andd",
+ "nrarrc",
+ "VeryThinSpace",
+ "Superset",
+ "boxDl",
+ "vnsub",
+ "ccupssm",
+ "varnothing",
+ "rcy",
+ "lcy",
+ "scy",
+ "Tcy",
+ "Zcy",
+ "ecy",
+ "rdsh",
+ "ldsh",
+ "ucy",
+ "boxVH",
+ "tcy",
+ "ncy",
+ "bcy",
+ "ntgl",
+ "Jcy",
+ "congdot",
+ "angst",
+ "RightDownTeeVector",
+ "OverParenthesis",
+ "ltquest",
+ "pcy",
+ "otilde",
+ "rdquo",
+ "ldquo",
+ "Vcy",
+ "capbrcup",
+ "bdquo",
+ "DownArrowBar",
+ "vcy",
+ "angrtvb",
+ "Kcy",
+ "Mcy",
+ "Scy",
+ "NewLine",
+ "fcy",
+ "Ucy",
+ "boxVh",
+ "Dcy",
+ "hstrok",
+ "Lcy",
+ "Ycy",
+ "supsim",
+ "NonBreakingSpace",
+ "OverBar",
+ "sqsubseteq",
+ "GJcy",
+ "OverBrace",
+ "eqcirc",
+ "OverBracket",
+ "Auml",
+ "acute",
+ "icy",
+ "Itilde",
+ "HilbertSpace",
+ "omega",
+ "cacute",
+ "scirc",
+ "ecirc",
+ "ucirc",
+ "GreaterSlantEqual",
+ "Jcirc",
+ "nvDash",
+ "Wcirc",
+ "Ncy",
+ "RightTeeArrow",
+ "LessFullEqual",
+ "ltcc",
+ "aleph",
+ "dcy",
+ "Scirc",
+ "lessapprox",
+ "IEcy",
+ "LowerRightArrow",
+ "Ucirc",
+ "agrave",
+ "MinusPlus",
+ "bigvee",
+ "Rcy",
+ "suphsol",
+ "EmptyVerySmallSquare",
+ "boxhD",
+ "precapprox",
+ "angrtvbd",
+ "Ycirc",
+ "sub",
+ "Otilde",
+ "Ccirc",
+ "Fcy",
+ "complexes",
+ "subrarr",
+ "InvisibleComma",
+ "boxur",
+ "abreve",
+ "ntlg",
+ "icirc",
+ "xdtri",
+ "circ",
+ "gtrdot",
+ "geqslant",
+ "ntriangleright",
+ "cuepr",
+ "Sub",
+ "mcy",
+ "timesbar",
+ "hksearow",
+ "sigma",
+ "cupor",
+ "oslash",
+ "dzigrarr",
+ "leftrightharpoons",
+ "rightleftharpoons",
+ "kcedil",
+ "submult",
+ "curren",
+ "LeftTeeVector",
+ "bigstar",
+ "cup",
+ "LongRightArrow",
+ "Gcedil",
+ "PrecedesEqual",
+ "zcy",
+ "planckh",
+ "Omega",
+ "subsub",
+ "rdca",
+ "cups",
+ "ldca",
+ "subset",
+ "NotSucceeds",
+ "LeftArrowRightArrow",
+ "wcirc",
+ "RightAngleBracket",
+ "ntrianglerighteq",
+ "Sigma",
+ "NotSucceedsTilde",
+ "DiacriticalAcute",
+ "subne",
+ "Product",
+ "circleddash",
+ "subsup",
+ "copy",
+ "eta",
+ "angmsd",
+ "natural",
+ "supedot",
+ "naturals",
+ "triangleright",
+ "DiacriticalGrave",
+ "boxuL",
+ "cong",
+ "telrec",
+ "comma",
+ "Subset",
+ "NotSucceedsSlantEqual",
+ "gtreqless",
+ "Atilde",
+ "curarr",
+ "cudarrr",
+ "cudarrl",
+ "subseteq",
+ "subseteqq",
+ "rightsquigarrow",
+ "cupcap",
+ "subsetneq",
+ "aogon",
+ "notinvc",
+ "rightthreetimes",
+ "yacute",
+ "nLeftarrow",
+ "ocy",
+ "cemptyv",
+ "Ecy",
+ "cupcup",
+ "trianglerighteq",
+ "LeftRightArrow",
+ "succ",
+ "DownArrowUpArrow",
+ "OElig",
+ "chcy",
+ "gtreqqless",
+ "angle",
+ "acE",
+ "rmoustache",
+ "lmoustache",
+ "NegativeVeryThinSpace",
+ "napprox",
+ "Oslash",
+ "subsetneqq",
+ "Aring",
+ "boxuR",
+ "subplus",
+ "xwedge",
+ "boxul",
+ "boxvr",
+ "HumpDownHump",
+ "Icy",
+ "approxeq",
+ "aacute",
+ "apid",
+ "UpDownArrow",
+ "NestedGreaterGreater",
+ "jcy",
+ "gtrsim",
+ "boxv",
+ "ocirc",
+ "Ecirc",
+ "notnivc",
+ "bigtriangleup",
+ "daleth",
+ "Ocy",
+ "Hcirc",
+ "RightVectorBar",
+ "AElig",
+ "FilledVerySmallSquare",
+ "ggg",
+ "Bcy",
+ "Poincareplane",
+ "boxvL",
+ "PartialD",
+ "Icirc",
+ "cularr",
+ "boxh",
+ "andv",
+ "sung",
+ "RightDoubleBracket",
+ "jcirc",
+ "UnderBar",
+ "RightArrow",
+ "circledcirc",
+ "Alpha",
+ "leftharpoonup",
+ "cularrp",
+ "RightArrowLeftArrow",
+ "varsigma",
+ "numero",
+ "ffllig",
+ "LowerLeftArrow",
+ "expectation",
+ "Ocirc",
+ "yacy",
+ "lambda",
+ "NotSucceedsEqual",
+ "boxvR",
+ "bigtriangledown",
+ "ang",
+ "xuplus",
+ "nabla",
+ "boxvl",
+ "Eta",
+ "Acy",
+ "kcy",
+ "gcy",
+ "LeftRightVector",
+ "ccedil",
+ "Backslash",
+ "hslash",
+ "Pcy",
+ "Gcy",
+ "gtquest",
+ "Lambda",
+ "odiv",
+ "leftharpoondown",
+ "longmapsto",
+ "Jukcy",
+ "ldrdhar",
+ "xutri",
+ "nRightarrow",
+ "ExponentialE",
+ "nrightarrow",
+ "Acirc",
+ "NoBreak",
+ "gcirc",
+ "ange",
+ "curarrm",
+ "SHCHcy",
+ "yuml",
+ "subnE",
+ "DDotrahd",
+ "RuleDelayed",
+ "Gcirc",
+ "Jsercy",
+ "gtcc",
+ "iukcy",
+ "updownarrow",
+ "curlyvee",
+ "ffilig",
+ "yicy",
+ "divonx",
+ "gtrapprox",
+ "subdot",
+ "leftrightarrows",
+ "auml",
+ "Updownarrow",
+ "rightleftarrows",
+ "DownRightVector",
+ "DownRightVectorBar",
+ "hcirc",
+ "Rrightarrow",
+ "longrightarrow",
+ "cupdot",
+ "ac",
+ "hookrightarrow",
+ "NegativeThickSpace",
+ "subE",
+ "twoheadrightarrow",
+ "downharpoonright",
+ "downharpoonleft",
+ "aelig",
+ "rdldhar",
+ "curlywedge",
+ "hybull",
+ "sube",
+ "Longrightarrow",
+ "Cedilla",
+ "notinva",
+ "SucceedsEqual",
+ "leftrightarrow",
+ "straightepsilon",
+ "amalg",
+ "atilde",
+ "RightCeiling",
+ "Leftrightarrow",
+ "subsim",
+ "VerticalLine",
+ "RightUpVector",
+ "RightUpVectorBar",
+ "RightDownVector",
+ "RightDownVectorBar",
+ "alefsym",
+ "circlearrowright",
+ "circlearrowleft",
+ "Iukcy",
+ "otimesas",
+ "intercal",
+ "thickapprox",
+ "jukcy",
+ "notniva",
+ "precnapprox",
+ "cuvee",
+ "aring",
+ "ccirc",
+ "rightarrow",
+ "Integral",
+ "xcirc",
+ "jsercy",
+ "checkmark",
+ "VerticalTilde",
+ "boxvH",
+ "NotRightTriangleBar",
+ "NotRightTriangleEqual",
+ "NotRightTriangle",
+ "LeftVectorBar",
+ "boxvh",
+ "boxbox",
+ "ycy",
+ "subedot",
+ "SOFTcy",
+ "Rightarrow",
+ "alpha",
+ "shchcy",
+ "softcy",
+ "acy",
+ "ycirc",
+ "bigcirc",
+ "ImaginaryI",
+ "approx",
+ "SupersetEqual",
+ "vzigzag",
+ "cuesc",
+ "UnderParenthesis",
+ "acirc",
+ "succapprox",
+ "mcomma",
+ "angmsdae",
+ "angmsdab",
+ "angmsdaf",
+ "angsph",
+ "luruhar",
+ "angmsdad",
+ "twoheadleftarrow",
+ "cylcty",
+ "straightphi",
+ "multimap",
+ "RightArrowBar",
+ "ldrushar",
+ "LeftAngleBracket",
+ "ruluhar",
+ "curlyeqprec",
+ "yucy",
+ "lurdshar",
+ "hardcy",
+ "rightharpoondown",
+ "rightharpoonup",
+ "HARDcy",
+ "SubsetEqual",
+ "digamma",
+ "udblac",
+ "SuchThat",
+ "cuwed",
+ "Udblac",
+ "angmsdag",
+ "angmsdah",
+ "VerticalBar",
+ "VerticalSeparator",
+ "rightarrowtail",
+ "odblac",
+ "succnapprox",
+ "angmsdac",
+ "Odblac",
+ "cupbrcap",
+ "angmsdaa",
+ "curlyeqsucc",
+ "curvearrowleft",
+ "curvearrowright"
+ };
+#define entity_pool ((const char *) &entity_pool_contents)
const struct html_ent *
find_entity (register const char *str, register unsigned int len)
{
@@ -1272,9497 +5529,7833 @@ find_entity (register const char *str, register unsigned int len)
};
static const struct html_ent wordlist[] =
{
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1502 "src/html_unescape.gperf"
- {"rarr", 3, {226, 134, 146}},
- {(char*)0,0,{0}},
-#line 834 "src/html_unescape.gperf"
- {"larr", 3, {226, 134, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 845 "src/html_unescape.gperf"
- {"lat", 3, {226, 170, 171}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1904 "src/html_unescape.gperf"
- {"uarr", 3, {226, 134, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1236 "src/html_unescape.gperf"
- {"npr", 3, {226, 138, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1511 "src/html_unescape.gperf"
- {"rarrtl", 3, {226, 134, 163}},
- {(char*)0,0,{0}},
-#line 842 "src/html_unescape.gperf"
- {"larrtl", 3, {226, 134, 162}},
-#line 1602 "src/html_unescape.gperf"
- {"roarr", 3, {226, 135, 190}},
- {(char*)0,0,{0}},
-#line 964 "src/html_unescape.gperf"
- {"loarr", 3, {226, 135, 189}},
-#line 1169 "src/html_unescape.gperf"
- {"not", 2, {194, 172}},
-#line 1610 "src/html_unescape.gperf"
- {"rpar", 1, {41}},
-#line 147 "src/html_unescape.gperf"
- {"bot", 3, {226, 138, 165}},
-#line 990 "src/html_unescape.gperf"
- {"lpar", 1, {40}},
- {(char*)0,0,{0}},
-#line 1716 "src/html_unescape.gperf"
- {"spar", 3, {226, 136, 165}},
- {(char*)0,0,{0}},
-#line 946 "src/html_unescape.gperf"
- {"ll", 3, {226, 137, 170}},
-#line 1927 "src/html_unescape.gperf"
- {"uharr", 3, {226, 134, 190}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1501 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str39), {226, 134, 146, 0}},
+ {-1,{0}},
+#line 833 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str41), {226, 134, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 844 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str49), {226, 170, 171, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1903 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str52), {226, 134, 145, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1235 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str55), {226, 138, 128, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1510 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str62), {226, 134, 163, 0}},
+ {-1,{0}},
+#line 841 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str64), {226, 134, 162, 0}},
+#line 1601 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str65), {226, 135, 190, 0}},
+ {-1,{0}},
+#line 963 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str67), {226, 135, 189, 0}},
+#line 1168 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str68), {194, 172, 0}},
+#line 1609 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str69), {41, 0}},
+#line 146 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str70), {226, 138, 165, 0}},
+#line 989 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str71), {40, 0}},
+ {-1,{0}},
+#line 1715 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str73), {226, 136, 165, 0}},
+ {-1,{0}},
+#line 945 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str75), {226, 137, 170, 0}},
+#line 1926 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str76), {226, 134, 190, 0}},
+#line 505 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str77), {226, 139, 149, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 482 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str81), {226, 170, 153, 0}},
+ {-1,{0}},
+#line 1607 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str83), {226, 168, 181, 0}},
+ {-1,{0}},
+#line 981 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str85), {226, 168, 180, 0}},
+#line 1388 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str86), {226, 136, 165, 0}},
+ {-1,{0}},
+#line 1132 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str88), {226, 134, 174, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1231 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str94), {226, 136, 166, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1872 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str97), {226, 128, 180, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 486 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str101), {226, 170, 149, 0}},
#line 506 "src/html_unescape.gperf"
- {"epar", 3, {226, 139, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 483 "src/html_unescape.gperf"
- {"el", 3, {226, 170, 153}},
- {(char*)0,0,{0}},
-#line 1608 "src/html_unescape.gperf"
- {"rotimes", 3, {226, 168, 181}},
- {(char*)0,0,{0}},
-#line 982 "src/html_unescape.gperf"
- {"lotimes", 3, {226, 168, 180}},
-#line 1389 "src/html_unescape.gperf"
- {"par", 3, {226, 136, 165}},
- {(char*)0,0,{0}},
-#line 1133 "src/html_unescape.gperf"
- {"nharr", 3, {226, 134, 174}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1232 "src/html_unescape.gperf"
- {"npar", 3, {226, 136, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1873 "src/html_unescape.gperf"
- {"tprime", 3, {226, 128, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 487 "src/html_unescape.gperf"
- {"els", 3, {226, 170, 149}},
-#line 507 "src/html_unescape.gperf"
- {"eparsl", 3, {226, 167, 163}},
- {(char*)0,0,{0}},
-#line 501 "src/html_unescape.gperf"
- {"ensp", 3, {226, 128, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 194 "src/html_unescape.gperf"
- {"bprime", 3, {226, 128, 181}},
-#line 956 "src/html_unescape.gperf"
- {"lnap", 3, {226, 170, 137}},
-#line 138 "src/html_unescape.gperf"
- {"blk14", 3, {226, 150, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str102), {226, 167, 163, 0}},
+ {-1,{0}},
+#line 500 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str104), {226, 128, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 193 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str109), {226, 128, 181, 0}},
+#line 955 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str110), {226, 170, 137, 0}},
#line 137 "src/html_unescape.gperf"
- {"blk12", 3, {226, 150, 146}},
- {(char*)0,0,{0}},
-#line 139 "src/html_unescape.gperf"
- {"blk34", 3, {226, 150, 147}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str111), {226, 150, 145, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 136 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str115), {226, 150, 146, 0}},
+ {-1,{0}},
+#line 138 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str117), {226, 150, 147, 0}},
+ {-1,{0}},
+#line 1232 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str119), {226, 171, 189, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1143 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str123), {226, 128, 165, 0}},
+#line 1594 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str124), {226, 135, 132, 0}},
#line 1233 "src/html_unescape.gperf"
- {"nparsl", 3, {226, 171, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1144 "src/html_unescape.gperf"
- {"nldr", 3, {226, 128, 165}},
-#line 1595 "src/html_unescape.gperf"
- {"rlarr", 3, {226, 135, 132}},
-#line 1234 "src/html_unescape.gperf"
- {"npart", 3, {226, 136, 130}},
-#line 945 "src/html_unescape.gperf"
- {"llarr", 3, {226, 135, 135}},
-#line 1159 "src/html_unescape.gperf"
- {"nlt", 3, {226, 137, 174}},
-#line 1697 "src/html_unescape.gperf"
- {"slarr", 3, {226, 134, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1231 "src/html_unescape.gperf"
- {"nparallel", 3, {226, 136, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str125), {226, 136, 130, 0}},
+#line 944 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str126), {226, 135, 135, 0}},
+#line 1158 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str127), {226, 137, 174, 0}},
+#line 1696 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str128), {226, 134, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1230 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str138), {226, 136, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1825 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str143), {206, 164, 0}},
+#line 1991 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str144), {226, 134, 149, 0}},
+ {-1,{0}},
+#line 1738 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str146), {226, 150, 161, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1141 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str149), {226, 134, 154, 0}},
+ {-1,{0}}, {-1,{0}},
#line 1826 "src/html_unescape.gperf"
- {"Tau", 2, {206, 164}},
-#line 1992 "src/html_unescape.gperf"
- {"varr", 3, {226, 134, 149}},
- {(char*)0,0,{0}},
-#line 1739 "src/html_unescape.gperf"
- {"squ", 3, {226, 150, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1142 "src/html_unescape.gperf"
- {"nlarr", 3, {226, 134, 154}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1827 "src/html_unescape.gperf"
- {"tau", 2, {207, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 958 "src/html_unescape.gperf"
- {"lne", 3, {226, 170, 135}},
-#line 1613 "src/html_unescape.gperf"
- {"rrarr", 3, {226, 135, 137}},
- {(char*)0,0,{0}},
-#line 992 "src/html_unescape.gperf"
- {"lrarr", 3, {226, 135, 134}},
- {(char*)0,0,{0}},
-#line 1741 "src/html_unescape.gperf"
- {"srarr", 3, {226, 134, 146}},
-#line 1557 "src/html_unescape.gperf"
- {"rharul", 3, {226, 165, 172}},
- {(char*)0,0,{0}},
-#line 941 "src/html_unescape.gperf"
- {"lharul", 3, {226, 165, 170}},
-#line 526 "src/html_unescape.gperf"
- {"erarr", 3, {226, 165, 177}},
- {(char*)0,0,{0}},
-#line 1434 "src/html_unescape.gperf"
- {"pr", 3, {226, 137, 186}},
+ {offsetof(struct entity_pool_t, entity_pool_str152), {207, 132, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 957 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str165), {226, 170, 135, 0}},
+#line 1612 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str166), {226, 135, 137, 0}},
+ {-1,{0}},
+#line 991 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str168), {226, 135, 134, 0}},
+ {-1,{0}},
+#line 1740 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str170), {226, 134, 146, 0}},
#line 1556 "src/html_unescape.gperf"
- {"rharu", 3, {226, 135, 128}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str171), {226, 165, 172, 0}},
+ {-1,{0}},
#line 940 "src/html_unescape.gperf"
- {"lharu", 3, {226, 134, 188}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1905 "src/html_unescape.gperf"
- {"Uarr", 3, {226, 134, 159}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1129 "src/html_unescape.gperf"
- {"nGt", 3, {226, 137, 171}},
- {(char*)0,0,{0}},
-#line 141 "src/html_unescape.gperf"
- {"bne", 1, {61}},
-#line 1242 "src/html_unescape.gperf"
- {"nrarr", 3, {226, 134, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1819 "src/html_unescape.gperf"
- {"swarr", 3, {226, 134, 153}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1498 "src/html_unescape.gperf"
- {"rarrap", 3, {226, 165, 181}},
- {(char*)0,0,{0}},
-#line 1967 "src/html_unescape.gperf"
- {"upuparrows", 3, {226, 135, 136}},
- {(char*)0,0,{0}},
-#line 345 "src/html_unescape.gperf"
- {"Darr", 3, {226, 134, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1517 "src/html_unescape.gperf"
- {"rbarr", 3, {226, 164, 141}},
-#line 398 "src/html_unescape.gperf"
- {"Dot", 2, {194, 168}},
-#line 848 "src/html_unescape.gperf"
- {"lbarr", 3, {226, 164, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1307 "src/html_unescape.gperf"
- {"nwarr", 3, {226, 134, 150}},
- {(char*)0,0,{0}},
-#line 1704 "src/html_unescape.gperf"
- {"smt", 3, {226, 170, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 497 "src/html_unescape.gperf"
- {"emsp14", 3, {226, 128, 133}},
-#line 1508 "src/html_unescape.gperf"
- {"rarrpl", 3, {226, 165, 133}},
- {(char*)0,0,{0}},
-#line 840 "src/html_unescape.gperf"
- {"larrpl", 3, {226, 164, 185}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1406 "src/html_unescape.gperf"
- {"phmmat", 3, {226, 132, 179}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str173), {226, 165, 170, 0}},
+#line 525 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str174), {226, 165, 177, 0}},
+ {-1,{0}},
+#line 1433 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str176), {226, 137, 186, 0}},
+#line 1555 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str177), {226, 135, 128, 0}},
+ {-1,{0}},
+#line 939 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str179), {226, 134, 188, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1904 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str184), {226, 134, 159, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1128 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str188), {226, 137, 171, 0}},
+ {-1,{0}},
+#line 140 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str190), {61, 0}},
+#line 1241 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str191), {226, 134, 155, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1818 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str194), {226, 134, 153, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1497 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str198), {226, 165, 181, 0}},
+ {-1,{0}},
+#line 1966 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str200), {226, 135, 136, 0}},
+ {-1,{0}},
+#line 344 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str202), {226, 134, 161, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1516 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str205), {226, 164, 141, 0}},
+#line 397 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str206), {194, 168, 0}},
+#line 847 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str207), {226, 164, 140, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1306 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str215), {226, 134, 150, 0}},
+ {-1,{0}},
+#line 1703 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str217), {226, 170, 170, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 496 "src/html_unescape.gperf"
- {"emsp13", 3, {226, 128, 132}},
- {(char*)0,0,{0}},
-#line 1014 "src/html_unescape.gperf"
- {"LT", 1, {60}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 835 "src/html_unescape.gperf"
- {"Larr", 3, {226, 134, 158}},
-#line 1525 "src/html_unescape.gperf"
- {"rbrkslu", 3, {226, 166, 144}},
- {(char*)0,0,{0}},
-#line 855 "src/html_unescape.gperf"
- {"lbrkslu", 3, {226, 166, 141}},
- {(char*)0,0,{0}},
-#line 1082 "src/html_unescape.gperf"
- {"napos", 2, {197, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1146 "src/html_unescape.gperf"
- {"nle", 3, {226, 137, 176}},
- {(char*)0,0,{0}},
-#line 1554 "src/html_unescape.gperf"
- {"rHar", 3, {226, 165, 164}},
- {(char*)0,0,{0}},
-#line 938 "src/html_unescape.gperf"
- {"lHar", 3, {226, 165, 162}},
-#line 1477 "src/html_unescape.gperf"
- {"qprime", 3, {226, 129, 151}},
- {(char*)0,0,{0}},
-#line 829 "src/html_unescape.gperf"
- {"lap", 3, {226, 170, 133}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1087 "src/html_unescape.gperf"
- {"nbsp", 2, {194, 160}},
-#line 1925 "src/html_unescape.gperf"
- {"uHar", 3, {226, 165, 163}},
-#line 1868 "src/html_unescape.gperf"
- {"top", 3, {226, 138, 164}},
- {(char*)0,0,{0}},
-#line 2004 "src/html_unescape.gperf"
- {"Vbar", 3, {226, 171, 171}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 947 "src/html_unescape.gperf"
- {"Ll", 3, {226, 139, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1432 "src/html_unescape.gperf"
- {"prap", 3, {226, 170, 183}},
- {(char*)0,0,{0}},
-#line 498 "src/html_unescape.gperf"
- {"emsp", 3, {226, 128, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1079 "src/html_unescape.gperf"
- {"nap", 3, {226, 137, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 976 "src/html_unescape.gperf"
- {"looparrowleft", 3, {226, 134, 171}},
- {(char*)0,0,{0}},
-#line 870 "src/html_unescape.gperf"
- {"le", 3, {226, 137, 164}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1670 "src/html_unescape.gperf"
- {"sharp", 3, {226, 153, 175}},
- {(char*)0,0,{0}},
-#line 474 "src/html_unescape.gperf"
- {"ee", 3, {226, 133, 135}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 914 "src/html_unescape.gperf"
- {"les", 3, {226, 169, 189}},
-#line 745 "src/html_unescape.gperf"
- {"in", 3, {226, 136, 136}},
-#line 1461 "src/html_unescape.gperf"
- {"prop", 3, {226, 136, 157}},
- {(char*)0,0,{0}},
-#line 1866 "src/html_unescape.gperf"
- {"topbot", 3, {226, 140, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 750 "src/html_unescape.gperf"
- {"int", 3, {226, 136, 171}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str222), {226, 128, 133, 0}},
+#line 1507 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str223), {226, 165, 133, 0}},
+ {-1,{0}},
+#line 839 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str225), {226, 164, 185, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1405 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str230), {226, 132, 179, 0}},
+ {-1,{0}},
+#line 495 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str232), {226, 128, 132, 0}},
+ {-1,{0}},
+#line 1013 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str234), {60, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 834 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str238), {226, 134, 158, 0}},
+#line 1524 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str239), {226, 166, 144, 0}},
+ {-1,{0}},
+#line 854 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str241), {226, 166, 141, 0}},
+ {-1,{0}},
+#line 1081 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str243), {197, 137, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1145 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str251), {226, 137, 176, 0}},
+ {-1,{0}},
+#line 1553 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str253), {226, 165, 164, 0}},
+ {-1,{0}},
+#line 937 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str255), {226, 165, 162, 0}},
+#line 1476 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str256), {226, 129, 151, 0}},
+ {-1,{0}},
+#line 828 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str258), {226, 170, 133, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1086 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str265), {194, 160, 0}},
+#line 1924 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str266), {226, 165, 163, 0}},
+#line 1867 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str267), {226, 138, 164, 0}},
+ {-1,{0}},
+#line 2003 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str269), {226, 171, 171, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 946 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str272), {226, 139, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1431 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str276), {226, 170, 183, 0}},
+ {-1,{0}},
+#line 497 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str278), {226, 128, 131, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1078 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str281), {226, 137, 137, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 975 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str294), {226, 134, 171, 0}},
+ {-1,{0}},
+#line 869 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str296), {226, 137, 164, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1669 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str300), {226, 153, 175, 0}},
+ {-1,{0}},
+#line 473 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str302), {226, 133, 135, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 913 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str310), {226, 169, 189, 0}},
+#line 744 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str311), {226, 136, 136, 0}},
+#line 1460 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str312), {226, 136, 157, 0}},
+ {-1,{0}},
+#line 1865 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str314), {226, 140, 182, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 749 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str317), {226, 136, 171, 0}},
+ {-1,{0}},
+#line 1104 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str319), {226, 137, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1236 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str329), {226, 139, 160, 0}},
+ {-1,{0}},
+#line 1446 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str331), {226, 170, 175, 0}},
+#line 508 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str332), {206, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1959 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str337), {207, 133, 0}},
+#line 1838 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str338), {226, 136, 180, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1522 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str342), {226, 166, 140, 0}},
+#line 1657 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str343), {226, 134, 152, 0}},
+#line 852 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str344), {226, 166, 139, 0}},
+ {-1,{0}},
+#line 131 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str346), {226, 150, 180, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 959 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str349), {226, 170, 135, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 960 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str352), {226, 137, 168, 0}},
+ {-1,{0}},
+#line 1417 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str354), {43, 0}},
+#line 1153 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str355), {226, 169, 189, 0}},
#line 1105 "src/html_unescape.gperf"
- {"ne", 3, {226, 137, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1237 "src/html_unescape.gperf"
- {"nprcue", 3, {226, 139, 160}},
- {(char*)0,0,{0}},
-#line 1447 "src/html_unescape.gperf"
- {"pre", 3, {226, 170, 175}},
-#line 509 "src/html_unescape.gperf"
- {"epsi", 2, {206, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1960 "src/html_unescape.gperf"
- {"upsi", 2, {207, 133}},
-#line 1839 "src/html_unescape.gperf"
- {"there4", 3, {226, 136, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1523 "src/html_unescape.gperf"
- {"rbrke", 3, {226, 166, 140}},
-#line 1658 "src/html_unescape.gperf"
- {"searr", 3, {226, 134, 152}},
-#line 853 "src/html_unescape.gperf"
- {"lbrke", 3, {226, 166, 139}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str356), {226, 137, 144, 0}},
+#line 133 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str357), {226, 151, 130, 0}},
+#line 134 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str358), {226, 150, 184, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1101 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str364), {226, 134, 151, 0}},
+ {-1,{0}}, {-1,{0}},
#line 132 "src/html_unescape.gperf"
- {"blacktriangle", 3, {226, 150, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 960 "src/html_unescape.gperf"
- {"lneq", 3, {226, 170, 135}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 961 "src/html_unescape.gperf"
- {"lneqq", 3, {226, 137, 168}},
- {(char*)0,0,{0}},
-#line 1418 "src/html_unescape.gperf"
- {"plus", 1, {43}},
+ {offsetof(struct entity_pool_t, entity_pool_str367), {226, 150, 190, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1154 "src/html_unescape.gperf"
- {"nles", 3, {226, 169, 189}},
-#line 1106 "src/html_unescape.gperf"
- {"nedot", 3, {226, 137, 144}},
-#line 134 "src/html_unescape.gperf"
- {"blacktriangleleft", 3, {226, 151, 130}},
-#line 135 "src/html_unescape.gperf"
- {"blacktriangleright", 3, {226, 150, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1102 "src/html_unescape.gperf"
- {"nearr", 3, {226, 134, 151}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 133 "src/html_unescape.gperf"
- {"blacktriangledown", 3, {226, 150, 190}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1155 "src/html_unescape.gperf"
- {"nless", 3, {226, 137, 174}},
-#line 490 "src/html_unescape.gperf"
- {"emacr", 2, {196, 147}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2034 "src/html_unescape.gperf"
- {"vprop", 3, {226, 136, 157}},
-#line 1934 "src/html_unescape.gperf"
- {"umacr", 2, {197, 171}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1701 "src/html_unescape.gperf"
- {"smeparsl", 3, {226, 167, 164}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1033 "src/html_unescape.gperf"
- {"Map", 3, {226, 164, 133}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1420 "src/html_unescape.gperf"
- {"plusdu", 3, {226, 168, 165}},
-#line 1168 "src/html_unescape.gperf"
- {"Not", 3, {226, 171, 172}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2019 "src/html_unescape.gperf"
- {"Verbar", 3, {226, 128, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1399 "src/html_unescape.gperf"
- {"perp", 3, {226, 138, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 561 "src/html_unescape.gperf"
- {"fltns", 3, {226, 150, 177}},
-#line 1423 "src/html_unescape.gperf"
- {"plusmn", 2, {194, 177}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str373), {226, 137, 174, 0}},
+#line 489 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str374), {196, 147, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2033 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str378), {226, 136, 157, 0}},
+#line 1933 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str379), {197, 171, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1700 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str383), {226, 167, 164, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1032 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str387), {226, 164, 133, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1419 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str390), {226, 168, 165, 0}},
+#line 1167 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str391), {226, 171, 172, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 2018 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str408), {226, 128, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1398 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str426), {226, 138, 165, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 560 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str430), {226, 150, 177, 0}},
+#line 1422 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str431), {194, 177, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1150 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str435), {226, 137, 176, 0}},
+ {-1,{0}}, {-1,{0}},
#line 1151 "src/html_unescape.gperf"
- {"nleq", 3, {226, 137, 176}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1152 "src/html_unescape.gperf"
- {"nleqq", 3, {226, 137, 166}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str438), {226, 137, 166, 0}},
+ {-1,{0}},
+#line 578 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str440), {194, 190, 0}},
+#line 572 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str441), {194, 188, 0}},
+#line 2017 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str442), {124, 0}},
+#line 570 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str443), {194, 189, 0}},
#line 579 "src/html_unescape.gperf"
- {"frac34", 2, {194, 190}},
+ {offsetof(struct entity_pool_t, entity_pool_str444), {226, 133, 151, 0}},
#line 573 "src/html_unescape.gperf"
- {"frac14", 2, {194, 188}},
-#line 2018 "src/html_unescape.gperf"
- {"verbar", 1, {124}},
+ {offsetof(struct entity_pool_t, entity_pool_str445), {226, 133, 149, 0}},
+#line 581 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str446), {226, 133, 152, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 577 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str449), {226, 133, 150, 0}},
+ {-1,{0}},
#line 571 "src/html_unescape.gperf"
- {"frac12", 2, {194, 189}},
-#line 580 "src/html_unescape.gperf"
- {"frac35", 3, {226, 133, 151}},
+ {offsetof(struct entity_pool_t, entity_pool_str451), {226, 133, 147, 0}},
+ {-1,{0}},
#line 574 "src/html_unescape.gperf"
- {"frac15", 3, {226, 133, 149}},
-#line 582 "src/html_unescape.gperf"
- {"frac45", 3, {226, 133, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 578 "src/html_unescape.gperf"
- {"frac25", 3, {226, 133, 150}},
- {(char*)0,0,{0}},
-#line 572 "src/html_unescape.gperf"
- {"frac13", 3, {226, 133, 147}},
- {(char*)0,0,{0}},
-#line 575 "src/html_unescape.gperf"
- {"frac16", 3, {226, 133, 153}},
-#line 1466 "src/html_unescape.gperf"
- {"prurel", 3, {226, 138, 176}},
-#line 577 "src/html_unescape.gperf"
- {"frac23", 3, {226, 133, 148}},
-#line 581 "src/html_unescape.gperf"
- {"frac38", 3, {226, 133, 156}},
+ {offsetof(struct entity_pool_t, entity_pool_str453), {226, 133, 153, 0}},
+#line 1465 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str454), {226, 138, 176, 0}},
#line 576 "src/html_unescape.gperf"
- {"frac18", 3, {226, 133, 155}},
+ {offsetof(struct entity_pool_t, entity_pool_str455), {226, 133, 148, 0}},
+#line 580 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str456), {226, 133, 156, 0}},
+#line 575 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str457), {226, 133, 155, 0}},
+#line 582 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str458), {226, 133, 154, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 583 "src/html_unescape.gperf"
- {"frac56", 3, {226, 133, 154}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str462), {226, 133, 157, 0}},
+ {-1,{0}},
#line 584 "src/html_unescape.gperf"
- {"frac58", 3, {226, 133, 157}},
- {(char*)0,0,{0}},
-#line 585 "src/html_unescape.gperf"
- {"frac78", 3, {226, 133, 158}},
+ {offsetof(struct entity_pool_t, entity_pool_str464), {226, 133, 158, 0}},
+#line 909 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str465), {226, 137, 164, 0}},
+#line 343 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str466), {226, 134, 147, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1960 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str469), {207, 146, 0}},
+#line 398 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str470), {203, 153, 0}},
+#line 1406 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str471), {226, 152, 142, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 218 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str474), {226, 139, 146, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 130 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str478), {226, 150, 170, 0}},
+#line 1599 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str479), {226, 171, 174, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 910 "src/html_unescape.gperf"
- {"leq", 3, {226, 137, 164}},
-#line 344 "src/html_unescape.gperf"
- {"darr", 3, {226, 134, 147}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1961 "src/html_unescape.gperf"
- {"Upsi", 2, {207, 146}},
-#line 399 "src/html_unescape.gperf"
- {"dot", 2, {203, 153}},
-#line 1407 "src/html_unescape.gperf"
- {"phone", 3, {226, 152, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 219 "src/html_unescape.gperf"
- {"Cap", 3, {226, 139, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 131 "src/html_unescape.gperf"
- {"blacksquare", 3, {226, 150, 170}},
-#line 1600 "src/html_unescape.gperf"
- {"rnmid", 3, {226, 171, 174}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 911 "src/html_unescape.gperf"
- {"leqq", 3, {226, 137, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 749 "src/html_unescape.gperf"
- {"intcal", 3, {226, 138, 186}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 372 "src/html_unescape.gperf"
- {"dharr", 3, {226, 135, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1555 "src/html_unescape.gperf"
- {"rhard", 3, {226, 135, 129}},
- {(char*)0,0,{0}},
-#line 939 "src/html_unescape.gperf"
- {"lhard", 3, {226, 134, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1421 "src/html_unescape.gperf"
- {"pluse", 3, {226, 169, 178}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1933 "src/html_unescape.gperf"
- {"Umacr", 2, {197, 170}},
-#line 2015 "src/html_unescape.gperf"
- {"Vee", 3, {226, 139, 129}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1503 "src/html_unescape.gperf"
- {"Rarr", 3, {226, 134, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 304 "src/html_unescape.gperf"
- {"Cross", 3, {226, 168, 175}},
- {(char*)0,0,{0}},
-#line 1620 "src/html_unescape.gperf"
- {"rsqb", 1, {93}},
- {(char*)0,0,{0}},
-#line 1006 "src/html_unescape.gperf"
- {"lsqb", 1, {91}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1510 "src/html_unescape.gperf"
- {"Rarrtl", 3, {226, 164, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 530 "src/html_unescape.gperf"
- {"esdot", 3, {226, 137, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str483), {226, 137, 166, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 748 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str486), {226, 138, 186, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 371 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str490), {226, 135, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1554 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str494), {226, 135, 129, 0}},
+ {-1,{0}},
+#line 938 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str496), {226, 134, 189, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1420 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str505), {226, 169, 178, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1932 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str511), {197, 170, 0}},
#line 2014 "src/html_unescape.gperf"
- {"vee", 3, {226, 136, 168}},
-#line 1089 "src/html_unescape.gperf"
- {"nbumpe", 3, {226, 137, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 948 "src/html_unescape.gperf"
- {"llcorner", 3, {226, 140, 158}},
-#line 570 "src/html_unescape.gperf"
- {"fpartint", 3, {226, 168, 141}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1740 "src/html_unescape.gperf"
- {"squf", 3, {226, 150, 170}},
-#line 1414 "src/html_unescape.gperf"
- {"plankv", 3, {226, 132, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 525 "src/html_unescape.gperf"
- {"eqvparsl", 3, {226, 167, 165}},
- {(char*)0,0,{0}},
-#line 1930 "src/html_unescape.gperf"
- {"ulcorner", 3, {226, 140, 156}},
- {(char*)0,0,{0}},
-#line 2055 "src/html_unescape.gperf"
- {"wp", 3, {226, 132, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 989 "src/html_unescape.gperf"
- {"lozf", 3, {226, 167, 171}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 299 "src/html_unescape.gperf"
- {"COPY", 2, {194, 169}},
- {(char*)0,0,{0}},
-#line 1929 "src/html_unescape.gperf"
- {"ulcorn", 3, {226, 140, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str512), {226, 139, 129, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1502 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str515), {226, 134, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 303 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str527), {226, 168, 175, 0}},
+ {-1,{0}},
+#line 1619 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str529), {93, 0}},
+ {-1,{0}},
+#line 1005 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str531), {91, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1509 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str538), {226, 164, 150, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 529 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str541), {226, 137, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 2013 "src/html_unescape.gperf"
- {"veebar", 3, {226, 138, 187}},
- {(char*)0,0,{0}},
-#line 1392 "src/html_unescape.gperf"
- {"part", 3, {226, 136, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1730 "src/html_unescape.gperf"
- {"square", 3, {226, 150, 161}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str546), {226, 136, 168, 0}},
#line 1088 "src/html_unescape.gperf"
- {"nbump", 3, {226, 137, 142}},
-#line 108 "src/html_unescape.gperf"
- {"bernou", 3, {226, 132, 172}},
-#line 2056 "src/html_unescape.gperf"
- {"wr", 3, {226, 137, 128}},
-#line 1518 "src/html_unescape.gperf"
- {"rBarr", 3, {226, 164, 143}},
-#line 993 "src/html_unescape.gperf"
- {"lrcorner", 3, {226, 140, 159}},
-#line 849 "src/html_unescape.gperf"
- {"lBarr", 3, {226, 164, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 144 "src/html_unescape.gperf"
- {"bnot", 3, {226, 140, 144}},
- {(char*)0,0,{0}},
-#line 1662 "src/html_unescape.gperf"
- {"semi", 1, {59}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1969 "src/html_unescape.gperf"
- {"urcorner", 3, {226, 140, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1218 "src/html_unescape.gperf"
- {"NotSubset", 3, {226, 138, 130}},
- {(char*)0,0,{0}},
-#line 1605 "src/html_unescape.gperf"
- {"ropf", 4, {240, 157, 149, 163}},
-#line 1476 "src/html_unescape.gperf"
- {"Qopf", 3, {226, 132, 154}},
-#line 980 "src/html_unescape.gperf"
- {"lopf", 4, {240, 157, 149, 157}},
- {(char*)0,0,{0}},
-#line 1713 "src/html_unescape.gperf"
- {"sopf", 4, {240, 157, 149, 164}},
+ {offsetof(struct entity_pool_t, entity_pool_str547), {226, 137, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 947 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str553), {226, 140, 158, 0}},
+#line 569 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str554), {226, 168, 141, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1739 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str558), {226, 150, 170, 0}},
+#line 1413 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str559), {226, 132, 143, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 524 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str562), {226, 167, 165, 0}},
+ {-1,{0}},
+#line 1929 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str564), {226, 140, 156, 0}},
+ {-1,{0}},
+#line 2054 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str566), {226, 132, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 988 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str571), {226, 167, 171, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 298 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str575), {194, 169, 0}},
+ {-1,{0}},
+#line 1928 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str577), {226, 140, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2012 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str582), {226, 138, 187, 0}},
+ {-1,{0}},
+#line 1391 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str584), {226, 136, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1729 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str589), {226, 150, 161, 0}},
+ {-1,{0}},
+#line 1087 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str591), {226, 137, 142, 0}},
+#line 107 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str592), {226, 132, 172, 0}},
+#line 2055 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str593), {226, 137, 128, 0}},
+#line 1517 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str594), {226, 164, 143, 0}},
+#line 992 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str595), {226, 140, 159, 0}},
+#line 848 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str596), {226, 164, 142, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 143 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str599), {226, 140, 144, 0}},
+ {-1,{0}},
+#line 1661 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str601), {59, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1968 "src/html_unescape.gperf"
- {"urcorn", 3, {226, 140, 157}},
-#line 1869 "src/html_unescape.gperf"
- {"Topf", 4, {240, 157, 149, 139}},
-#line 2127 "src/html_unescape.gperf"
- {"Zopf", 3, {226, 132, 164}},
-#line 505 "src/html_unescape.gperf"
- {"eopf", 4, {240, 157, 149, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str606), {226, 140, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1217 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str612), {226, 138, 130, 0}},
+ {-1,{0}},
#line 1604 "src/html_unescape.gperf"
- {"ropar", 3, {226, 166, 134}},
-#line 1945 "src/html_unescape.gperf"
- {"uopf", 4, {240, 157, 149, 166}},
-#line 978 "src/html_unescape.gperf"
- {"lopar", 3, {226, 166, 133}},
-#line 1870 "src/html_unescape.gperf"
- {"topf", 4, {240, 157, 149, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2075 "src/html_unescape.gperf"
- {"Xopf", 4, {240, 157, 149, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1166 "src/html_unescape.gperf"
- {"nopf", 4, {240, 157, 149, 159}},
- {(char*)0,0,{0}},
-#line 146 "src/html_unescape.gperf"
- {"bopf", 4, {240, 157, 149, 147}},
-#line 512 "src/html_unescape.gperf"
- {"epsiv", 2, {207, 181}},
-#line 562 "src/html_unescape.gperf"
- {"fnof", 2, {198, 146}},
-#line 734 "src/html_unescape.gperf"
- {"imacr", 2, {196, 171}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 792 "src/html_unescape.gperf"
- {"Jopf", 4, {240, 157, 149, 129}},
- {(char*)0,0,{0}},
-#line 1135 "src/html_unescape.gperf"
- {"nhpar", 3, {226, 171, 178}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2053 "src/html_unescape.gperf"
- {"Wopf", 4, {240, 157, 149, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1721 "src/html_unescape.gperf"
- {"Sqrt", 3, {226, 136, 154}},
-#line 1263 "src/html_unescape.gperf"
- {"nsub", 3, {226, 138, 132}},
- {(char*)0,0,{0}},
-#line 1081 "src/html_unescape.gperf"
- {"napid", 3, {226, 137, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1224 "src/html_unescape.gperf"
- {"NotSuperset", 3, {226, 138, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 197 "src/html_unescape.gperf"
- {"brvbar", 2, {194, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1711 "src/html_unescape.gperf"
- {"sol", 1, {47}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 461 "src/html_unescape.gperf"
- {"easter", 3, {226, 169, 174}},
- {(char*)0,0,{0}},
-#line 1429 "src/html_unescape.gperf"
- {"popf", 4, {240, 157, 149, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 370 "src/html_unescape.gperf"
- {"dHar", 3, {226, 165, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2032 "src/html_unescape.gperf"
- {"Vopf", 4, {240, 157, 149, 141}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1274 "src/html_unescape.gperf"
- {"nsupset", 3, {226, 138, 131}},
-#line 1271 "src/html_unescape.gperf"
- {"nsup", 3, {226, 138, 133}},
-#line 2003 "src/html_unescape.gperf"
- {"vBar", 3, {226, 171, 168}},
- {(char*)0,0,{0}},
-#line 1266 "src/html_unescape.gperf"
- {"nsubset", 3, {226, 138, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1851 "src/html_unescape.gperf"
- {"thkap", 3, {226, 137, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1137 "src/html_unescape.gperf"
- {"nis", 3, {226, 139, 188}},
-#line 1460 "src/html_unescape.gperf"
- {"profsurf", 3, {226, 140, 147}},
-#line 1710 "src/html_unescape.gperf"
- {"solb", 3, {226, 167, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 962 "src/html_unescape.gperf"
- {"lnsim", 3, {226, 139, 166}},
- {(char*)0,0,{0}},
-#line 1709 "src/html_unescape.gperf"
- {"solbar", 3, {226, 140, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1731 "src/html_unescape.gperf"
- {"Square", 3, {226, 150, 161}},
- {(char*)0,0,{0}},
-#line 2033 "src/html_unescape.gperf"
- {"vopf", 4, {240, 157, 149, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1926 "src/html_unescape.gperf"
- {"uharl", 3, {226, 134, 191}},
- {(char*)0,0,{0}},
-#line 1931 "src/html_unescape.gperf"
- {"ulcrop", 3, {226, 140, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 515 "src/html_unescape.gperf"
- {"eqsim", 3, {226, 137, 130}},
-#line 523 "src/html_unescape.gperf"
- {"equiv", 3, {226, 137, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 486 "src/html_unescape.gperf"
- {"ell", 3, {226, 132, 147}},
-#line 1700 "src/html_unescape.gperf"
- {"smashp", 3, {226, 168, 179}},
-#line 1067 "src/html_unescape.gperf"
- {"mp", 3, {226, 136, 147}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 814 "src/html_unescape.gperf"
- {"Kopf", 4, {240, 157, 149, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1696 "src/html_unescape.gperf"
- {"simrarr", 3, {226, 165, 178}},
- {(char*)0,0,{0}},
-#line 559 "src/html_unescape.gperf"
- {"flat", 3, {226, 153, 173}},
- {(char*)0,0,{0}},
-#line 1065 "src/html_unescape.gperf"
- {"Mopf", 4, {240, 157, 149, 132}},
+ {offsetof(struct entity_pool_t, entity_pool_str614), {240, 157, 149, 163}},
+#line 1475 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str615), {226, 132, 154, 0}},
+#line 979 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str616), {240, 157, 149, 157}},
+ {-1,{0}},
#line 1712 "src/html_unescape.gperf"
- {"Sopf", 4, {240, 157, 149, 138}},
-#line 1062 "src/html_unescape.gperf"
- {"mldr", 3, {226, 128, 166}},
-#line 1597 "src/html_unescape.gperf"
- {"rlm", 3, {226, 128, 143}},
-#line 768 "src/html_unescape.gperf"
- {"iprod", 3, {226, 168, 188}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 991 "src/html_unescape.gperf"
- {"lparlt", 3, {226, 166, 147}},
- {(char*)0,0,{0}},
-#line 564 "src/html_unescape.gperf"
- {"fopf", 4, {240, 157, 149, 151}},
+ {offsetof(struct entity_pool_t, entity_pool_str618), {240, 157, 149, 164}},
+#line 1967 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str619), {226, 140, 157, 0}},
+#line 1868 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str620), {240, 157, 149, 139}},
+#line 2126 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str621), {226, 132, 164, 0}},
+#line 504 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str622), {240, 157, 149, 150}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1603 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str626), {226, 166, 134, 0}},
#line 1944 "src/html_unescape.gperf"
- {"Uopf", 4, {240, 157, 149, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1996 "src/html_unescape.gperf"
- {"varsubsetneq", 3, {226, 138, 138}},
-#line 1997 "src/html_unescape.gperf"
- {"varsubsetneqq", 3, {226, 171, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1970 "src/html_unescape.gperf"
- {"urcrop", 3, {226, 140, 142}},
-#line 928 "src/html_unescape.gperf"
- {"LessLess", 3, {226, 170, 161}},
- {(char*)0,0,{0}},
-#line 1543 "src/html_unescape.gperf"
- {"Re", 3, {226, 132, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1202 "src/html_unescape.gperf"
- {"NotNestedLessLess", 3, {226, 170, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 396 "src/html_unescape.gperf"
- {"Dopf", 4, {240, 157, 148, 187}},
- {(char*)0,0,{0}},
-#line 568 "src/html_unescape.gperf"
- {"forkv", 3, {226, 171, 153}},
- {(char*)0,0,{0}},
-#line 1261 "src/html_unescape.gperf"
- {"nsqsube", 3, {226, 139, 162}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str627), {240, 157, 149, 166}},
+#line 977 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str628), {226, 166, 133, 0}},
+#line 1869 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str629), {240, 157, 149, 165}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2074 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str635), {240, 157, 149, 143}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1165 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str639), {240, 157, 149, 159}},
+ {-1,{0}},
+#line 145 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str641), {240, 157, 149, 147}},
+#line 511 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str642), {207, 181, 0}},
+#line 561 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str643), {198, 146, 0}},
+#line 733 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str644), {196, 171, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 791 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str647), {240, 157, 149, 129}},
+ {-1,{0}},
+#line 1134 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str649), {226, 171, 178, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2052 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str653), {240, 157, 149, 142}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1720 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str658), {226, 136, 154, 0}},
+#line 1262 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str659), {226, 138, 132, 0}},
+ {-1,{0}},
+#line 1080 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str661), {226, 137, 139, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1223 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str664), {226, 138, 131, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 196 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str667), {194, 166, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1710 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str670), {47, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 460 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str675), {226, 169, 174, 0}},
+ {-1,{0}},
+#line 1428 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str677), {240, 157, 149, 161}},
+ {-1,{0}}, {-1,{0}},
+#line 369 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str680), {226, 165, 165, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2031 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str685), {240, 157, 149, 141}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1273 "src/html_unescape.gperf"
- {"nsupe", 3, {226, 138, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str690), {226, 138, 131, 0}},
+#line 1270 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str691), {226, 138, 133, 0}},
+#line 2002 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str692), {226, 171, 168, 0}},
+ {-1,{0}},
#line 1265 "src/html_unescape.gperf"
- {"nsube", 3, {226, 138, 136}},
-#line 1475 "src/html_unescape.gperf"
- {"qopf", 4, {240, 157, 149, 162}},
+ {offsetof(struct entity_pool_t, entity_pool_str694), {226, 138, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1850 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str700), {226, 137, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1136 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str704), {226, 139, 188, 0}},
+#line 1459 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str705), {226, 140, 147, 0}},
+#line 1709 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str706), {226, 167, 132, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 961 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str710), {226, 139, 166, 0}},
+ {-1,{0}},
+#line 1708 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str712), {226, 140, 191, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1730 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str717), {226, 150, 161, 0}},
+ {-1,{0}},
+#line 2032 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str719), {240, 157, 149, 167}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1925 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str723), {226, 134, 191, 0}},
+ {-1,{0}},
+#line 1930 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str725), {226, 140, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 514 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str729), {226, 137, 130, 0}},
+#line 522 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str730), {226, 137, 161, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 485 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str733), {226, 132, 147, 0}},
+#line 1699 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str734), {226, 168, 179, 0}},
+#line 1066 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str735), {226, 136, 147, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 813 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str738), {240, 157, 149, 130}},
+ {-1,{0}}, {-1,{0}},
+#line 1695 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str741), {226, 165, 178, 0}},
+ {-1,{0}},
+#line 558 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str743), {226, 153, 173, 0}},
+ {-1,{0}},
+#line 1064 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str745), {240, 157, 149, 132}},
+#line 1711 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str746), {240, 157, 149, 138}},
+#line 1061 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str747), {226, 128, 166, 0}},
#line 1596 "src/html_unescape.gperf"
- {"rlhar", 3, {226, 135, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 996 "src/html_unescape.gperf"
- {"lrm", 3, {226, 128, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1157 "src/html_unescape.gperf"
- {"nlsim", 3, {226, 137, 180}},
- {(char*)0,0,{0}},
-#line 1431 "src/html_unescape.gperf"
- {"pound", 2, {194, 163}},
+ {offsetof(struct entity_pool_t, entity_pool_str748), {226, 128, 143, 0}},
+#line 767 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str749), {226, 168, 188, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 990 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str756), {226, 166, 147, 0}},
+ {-1,{0}},
+#line 563 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str758), {240, 157, 149, 151}},
+#line 1943 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str759), {240, 157, 149, 140}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1995 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str763), {226, 138, 138, 0}},
+#line 1996 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str764), {226, 171, 139, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1969 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str767), {226, 140, 142, 0}},
+#line 927 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str768), {226, 170, 161, 0}},
+ {-1,{0}},
+#line 1542 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str770), {226, 132, 156, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1201 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str773), {226, 170, 161, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 395 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str777), {240, 157, 148, 187}},
+ {-1,{0}},
+#line 567 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str779), {226, 171, 153, 0}},
+ {-1,{0}},
+#line 1260 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str781), {226, 139, 162, 0}},
+ {-1,{0}},
+#line 1272 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str783), {226, 138, 137, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1264 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str787), {226, 138, 136, 0}},
+#line 1474 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str788), {240, 157, 149, 162}},
+#line 1595 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str789), {226, 135, 140, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 995 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str792), {226, 128, 142, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1156 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str796), {226, 137, 180, 0}},
+ {-1,{0}},
+#line 1430 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str798), {194, 163, 0}},
+#line 1997 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str799), {226, 138, 139, 0}},
#line 1998 "src/html_unescape.gperf"
- {"varsupsetneq", 3, {226, 138, 139}},
-#line 1999 "src/html_unescape.gperf"
- {"varsupsetneqq", 3, {226, 171, 140}},
- {(char*)0,0,{0}},
-#line 142 "src/html_unescape.gperf"
- {"bnequiv", 3, {226, 137, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 979 "src/html_unescape.gperf"
- {"Lopf", 4, {240, 157, 149, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1262 "src/html_unescape.gperf"
- {"nsqsupe", 3, {226, 139, 163}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1507 "src/html_unescape.gperf"
- {"rarrlp", 3, {226, 134, 172}},
-#line 2046 "src/html_unescape.gperf"
- {"wedbar", 3, {226, 169, 159}},
-#line 839 "src/html_unescape.gperf"
- {"larrlp", 3, {226, 134, 171}},
- {(char*)0,0,{0}},
-#line 2101 "src/html_unescape.gperf"
- {"Yopf", 4, {240, 157, 149, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1210 "src/html_unescape.gperf"
- {"NotReverseElement", 3, {226, 136, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 295 "src/html_unescape.gperf"
- {"Copf", 3, {226, 132, 130}},
-#line 994 "src/html_unescape.gperf"
- {"lrhar", 3, {226, 135, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1391 "src/html_unescape.gperf"
- {"parsl", 3, {226, 171, 189}},
-#line 1935 "src/html_unescape.gperf"
- {"uml", 2, {194, 168}},
-#line 1039 "src/html_unescape.gperf"
- {"marker", 3, {226, 150, 174}},
-#line 1275 "src/html_unescape.gperf"
- {"nsupseteq", 3, {226, 138, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1267 "src/html_unescape.gperf"
- {"nsubseteq", 3, {226, 138, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1738 "src/html_unescape.gperf"
- {"squarf", 3, {226, 150, 170}},
-#line 2021 "src/html_unescape.gperf"
- {"Vert", 3, {226, 128, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1736 "src/html_unescape.gperf"
- {"SquareSupersetEqual", 3, {226, 138, 146}},
- {(char*)0,0,{0}},
-#line 1465 "src/html_unescape.gperf"
- {"prsim", 3, {226, 137, 190}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1734 "src/html_unescape.gperf"
- {"SquareSubsetEqual", 3, {226, 138, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str800), {226, 171, 140, 0}},
+ {-1,{0}},
+#line 141 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str802), {226, 137, 161, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 978 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str813), {240, 157, 149, 131}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1261 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str817), {226, 139, 163, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1506 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str820), {226, 134, 172, 0}},
+#line 2045 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str821), {226, 169, 159, 0}},
+#line 838 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str822), {226, 134, 171, 0}},
+ {-1,{0}},
+#line 2100 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str824), {240, 157, 149, 144}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1209 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str829), {226, 136, 140, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 294 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str832), {226, 132, 130, 0}},
+#line 993 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str833), {226, 135, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1390 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str848), {226, 171, 189, 0}},
+#line 1934 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str849), {194, 168, 0}},
+#line 1038 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str850), {226, 150, 174, 0}},
+#line 1274 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str851), {226, 138, 137, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1266 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str855), {226, 138, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1737 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str861), {226, 150, 170, 0}},
+#line 2020 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str862), {226, 128, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
#line 1735 "src/html_unescape.gperf"
- {"SquareSuperset", 3, {226, 138, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str874), {226, 138, 146, 0}},
+ {-1,{0}},
+#line 1464 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str876), {226, 137, 190, 0}},
+ {-1,{0}}, {-1,{0}},
#line 1733 "src/html_unescape.gperf"
- {"SquareSubset", 3, {226, 138, 143}},
-#line 1290 "src/html_unescape.gperf"
- {"nvap", 3, {226, 137, 141}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 765 "src/html_unescape.gperf"
- {"iopf", 4, {240, 157, 149, 154}},
- {(char*)0,0,{0}},
-#line 1426 "src/html_unescape.gperf"
- {"pm", 2, {194, 177}},
- {(char*)0,0,{0}},
-#line 2020 "src/html_unescape.gperf"
- {"vert", 1, {124}},
- {(char*)0,0,{0}},
-#line 1845 "src/html_unescape.gperf"
- {"thetav", 2, {207, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 987 "src/html_unescape.gperf"
- {"loz", 3, {226, 151, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1034 "src/html_unescape.gperf"
- {"map", 3, {226, 134, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 923 "src/html_unescape.gperf"
- {"lesseqqgtr", 3, {226, 170, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1616 "src/html_unescape.gperf"
- {"rscr", 4, {240, 157, 147, 135}},
-#line 1478 "src/html_unescape.gperf"
- {"Qscr", 4, {240, 157, 146, 172}},
-#line 999 "src/html_unescape.gperf"
- {"lscr", 4, {240, 157, 147, 129}},
- {(char*)0,0,{0}},
-#line 1743 "src/html_unescape.gperf"
- {"sscr", 4, {240, 157, 147, 136}},
- {(char*)0,0,{0}},
-#line 1891 "src/html_unescape.gperf"
- {"Tscr", 4, {240, 157, 146, 175}},
-#line 2128 "src/html_unescape.gperf"
- {"Zscr", 4, {240, 157, 146, 181}},
-#line 528 "src/html_unescape.gperf"
- {"escr", 3, {226, 132, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1975 "src/html_unescape.gperf"
- {"uscr", 4, {240, 157, 147, 138}},
- {(char*)0,0,{0}},
-#line 1892 "src/html_unescape.gperf"
- {"tscr", 4, {240, 157, 147, 137}},
- {(char*)0,0,{0}},
-#line 741 "src/html_unescape.gperf"
- {"imof", 3, {226, 138, 183}},
-#line 297 "src/html_unescape.gperf"
- {"Coproduct", 3, {226, 136, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2081 "src/html_unescape.gperf"
- {"Xscr", 4, {240, 157, 146, 179}},
-#line 2068 "src/html_unescape.gperf"
- {"Xi", 2, {206, 158}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1253 "src/html_unescape.gperf"
- {"nscr", 4, {240, 157, 147, 131}},
-#line 1136 "src/html_unescape.gperf"
- {"ni", 3, {226, 136, 139}},
-#line 198 "src/html_unescape.gperf"
- {"bscr", 4, {240, 157, 146, 183}},
-#line 1167 "src/html_unescape.gperf"
- {"Nopf", 3, {226, 132, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 794 "src/html_unescape.gperf"
- {"Jscr", 4, {240, 157, 146, 165}},
-#line 1443 "src/html_unescape.gperf"
- {"preceq", 3, {226, 170, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1303 "src/html_unescape.gperf"
- {"nvrArr", 3, {226, 164, 131}},
-#line 88 "src/html_unescape.gperf"
- {"backprime", 3, {226, 128, 181}},
-#line 2058 "src/html_unescape.gperf"
- {"Wscr", 4, {240, 157, 146, 178}},
- {(char*)0,0,{0}},
-#line 1989 "src/html_unescape.gperf"
- {"varphi", 2, {207, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1259 "src/html_unescape.gperf"
- {"nsmid", 3, {226, 136, 164}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 393 "src/html_unescape.gperf"
- {"dlcorn", 3, {226, 140, 158}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1468 "src/html_unescape.gperf"
- {"pscr", 4, {240, 157, 147, 133}},
-#line 1409 "src/html_unescape.gperf"
- {"pi", 2, {207, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2036 "src/html_unescape.gperf"
- {"Vscr", 4, {240, 157, 146, 177}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1113 "src/html_unescape.gperf"
- {"nesim", 3, {226, 137, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1694 "src/html_unescape.gperf"
- {"simne", 3, {226, 137, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1276 "src/html_unescape.gperf"
- {"nsupseteqq", 3, {226, 171, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1268 "src/html_unescape.gperf"
- {"nsubseteqq", 3, {226, 171, 133}},
-#line 441 "src/html_unescape.gperf"
- {"drcorn", 3, {226, 140, 159}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1521 "src/html_unescape.gperf"
- {"rbrace", 1, {125}},
-#line 2037 "src/html_unescape.gperf"
- {"vscr", 4, {240, 157, 147, 139}},
-#line 851 "src/html_unescape.gperf"
- {"lbrace", 1, {123}},
-#line 397 "src/html_unescape.gperf"
- {"dopf", 4, {240, 157, 149, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 586 "src/html_unescape.gperf"
- {"frasl", 3, {226, 129, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 931 "src/html_unescape.gperf"
- {"LessTilde", 3, {226, 137, 178}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 816 "src/html_unescape.gperf"
- {"Kscr", 4, {240, 157, 146, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1417 "src/html_unescape.gperf"
- {"pluscir", 3, {226, 168, 162}},
-#line 1069 "src/html_unescape.gperf"
- {"Mscr", 3, {226, 132, 179}},
+ {offsetof(struct entity_pool_t, entity_pool_str879), {226, 138, 145, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1734 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str882), {226, 138, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1732 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str887), {226, 138, 143, 0}},
+#line 1289 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str888), {226, 137, 141, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 764 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str892), {240, 157, 149, 154}},
+ {-1,{0}},
+#line 1425 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str894), {194, 177, 0}},
+ {-1,{0}},
+#line 2019 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str896), {124, 0}},
+ {-1,{0}},
+#line 1844 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str898), {207, 145, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 986 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str901), {226, 151, 138, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1033 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str905), {226, 134, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 922 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str920), {226, 170, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1615 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str934), {240, 157, 147, 135}},
+#line 1477 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str935), {240, 157, 146, 172}},
+#line 998 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str936), {240, 157, 147, 129}},
+ {-1,{0}},
#line 1742 "src/html_unescape.gperf"
- {"Sscr", 4, {240, 157, 146, 174}},
-#line 1524 "src/html_unescape.gperf"
- {"rbrksld", 3, {226, 166, 142}},
- {(char*)0,0,{0}},
-#line 854 "src/html_unescape.gperf"
- {"lbrksld", 3, {226, 166, 143}},
-#line 1519 "src/html_unescape.gperf"
- {"RBarr", 3, {226, 164, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1718 "src/html_unescape.gperf"
- {"sqcaps", 3, {226, 138, 147}},
-#line 1504 "src/html_unescape.gperf"
- {"rArr", 3, {226, 135, 146}},
-#line 143 "src/html_unescape.gperf"
- {"bNot", 3, {226, 171, 173}},
-#line 836 "src/html_unescape.gperf"
- {"lArr", 3, {226, 135, 144}},
- {(char*)0,0,{0}},
-#line 588 "src/html_unescape.gperf"
- {"fscr", 4, {240, 157, 146, 187}},
+ {offsetof(struct entity_pool_t, entity_pool_str938), {240, 157, 147, 136}},
+ {-1,{0}},
+#line 1890 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str940), {240, 157, 146, 175}},
+#line 2127 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str941), {240, 157, 146, 181}},
+#line 527 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str942), {226, 132, 175, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1974 "src/html_unescape.gperf"
- {"Uscr", 4, {240, 157, 146, 176}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1906 "src/html_unescape.gperf"
- {"uArr", 3, {226, 135, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1606 "src/html_unescape.gperf"
- {"Ropf", 3, {226, 132, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2054 "src/html_unescape.gperf"
- {"wopf", 4, {240, 157, 149, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 443 "src/html_unescape.gperf"
- {"Dscr", 4, {240, 157, 146, 159}},
-#line 1352 "src/html_unescape.gperf"
- {"opar", 3, {226, 166, 183}},
-#line 1663 "src/html_unescape.gperf"
- {"seswar", 3, {226, 164, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 363 "src/html_unescape.gperf"
- {"Del", 3, {226, 136, 135}},
-#line 1486 "src/html_unescape.gperf"
- {"rAarr", 3, {226, 135, 155}},
-#line 1559 "src/html_unescape.gperf"
- {"rho", 2, {207, 129}},
-#line 818 "src/html_unescape.gperf"
- {"lAarr", 3, {226, 135, 154}},
-#line 1438 "src/html_unescape.gperf"
- {"preccurlyeq", 3, {226, 137, 188}},
-#line 1479 "src/html_unescape.gperf"
- {"qscr", 4, {240, 157, 147, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1029 "src/html_unescape.gperf"
- {"macr", 2, {194, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1186 "src/html_unescape.gperf"
- {"notin", 3, {226, 136, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 524 "src/html_unescape.gperf"
- {"equivDD", 3, {226, 169, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str947), {240, 157, 147, 138}},
+ {-1,{0}},
+#line 1891 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str949), {240, 157, 147, 137}},
+ {-1,{0}},
+#line 740 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str951), {226, 138, 183, 0}},
+#line 296 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str952), {226, 136, 144, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 2080 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str955), {240, 157, 146, 179}},
+#line 2067 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str956), {206, 158, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1252 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str959), {240, 157, 147, 131}},
+#line 1135 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str960), {226, 136, 139, 0}},
+#line 197 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str961), {240, 157, 146, 183}},
+#line 1166 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str962), {226, 132, 149, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 793 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str967), {240, 157, 146, 165}},
+#line 1442 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str968), {226, 170, 175, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1302 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str971), {226, 164, 131, 0}},
+#line 87 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str972), {226, 128, 181, 0}},
+#line 2057 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str973), {240, 157, 146, 178}},
+ {-1,{0}},
+#line 1988 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str975), {207, 149, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1258 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str984), {226, 136, 164, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 392 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str991), {226, 140, 158, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1467 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str997), {240, 157, 147, 133}},
+#line 1408 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str998), {207, 128, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 2035 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1005), {240, 157, 146, 177}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1112 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1011), {226, 137, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1693 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1021), {226, 137, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1275 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1028), {226, 171, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1267 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1032), {226, 171, 133, 0}},
+#line 440 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1033), {226, 140, 159, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1520 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1038), {125, 0}},
+#line 2036 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1039), {240, 157, 147, 139}},
+#line 850 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1040), {123, 0}},
+#line 396 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1041), {240, 157, 149, 149}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 585 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1049), {226, 129, 132, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 930 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1055), {226, 137, 178, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 815 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1058), {240, 157, 146, 166}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1416 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1064), {226, 168, 162, 0}},
+#line 1068 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1065), {226, 132, 179, 0}},
+#line 1741 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1066), {240, 157, 146, 174}},
+#line 1523 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1067), {226, 166, 142, 0}},
+ {-1,{0}},
+#line 853 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1069), {226, 166, 143, 0}},
+#line 1518 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1070), {226, 164, 144, 0}},
+ {-1,{0}}, {-1,{0}},
#line 1717 "src/html_unescape.gperf"
- {"sqcap", 3, {226, 138, 147}},
- {(char*)0,0,{0}},
-#line 1260 "src/html_unescape.gperf"
- {"nspar", 3, {226, 136, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1341 "src/html_unescape.gperf"
- {"olt", 3, {226, 167, 128}},
-#line 1515 "src/html_unescape.gperf"
- {"ratio", 3, {226, 136, 182}},
-#line 1000 "src/html_unescape.gperf"
- {"Lscr", 3, {226, 132, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 371 "src/html_unescape.gperf"
- {"dharl", 3, {226, 135, 131}},
- {(char*)0,0,{0}},
-#line 394 "src/html_unescape.gperf"
- {"dlcrop", 3, {226, 140, 141}},
-#line 409 "src/html_unescape.gperf"
- {"DoubleDot", 2, {194, 168}},
-#line 405 "src/html_unescape.gperf"
- {"dotplus", 3, {226, 136, 148}},
-#line 1359 "src/html_unescape.gperf"
- {"or", 3, {226, 136, 168}},
- {(char*)0,0,{0}},
-#line 2103 "src/html_unescape.gperf"
- {"Yscr", 4, {240, 157, 146, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 563 "src/html_unescape.gperf"
- {"Fopf", 4, {240, 157, 148, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 305 "src/html_unescape.gperf"
- {"Cscr", 4, {240, 157, 146, 158}},
-#line 1337 "src/html_unescape.gperf"
- {"olarr", 3, {226, 134, 186}},
-#line 1244 "src/html_unescape.gperf"
- {"nrarrw", 3, {226, 134, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1027 "src/html_unescape.gperf"
- {"lvertneqq", 3, {226, 137, 168}},
-#line 516 "src/html_unescape.gperf"
- {"eqslantgtr", 3, {226, 170, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1854 "src/html_unescape.gperf"
- {"thorn", 2, {195, 190}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 517 "src/html_unescape.gperf"
- {"eqslantless", 3, {226, 170, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 744 "src/html_unescape.gperf"
- {"incare", 3, {226, 132, 133}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1993 "src/html_unescape.gperf"
- {"vArr", 3, {226, 135, 149}},
-#line 1612 "src/html_unescape.gperf"
- {"rppolint", 3, {226, 168, 146}},
+ {offsetof(struct entity_pool_t, entity_pool_str1073), {226, 138, 147, 0}},
+#line 1503 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1074), {226, 135, 146, 0}},
+#line 142 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1075), {226, 171, 173, 0}},
+#line 835 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1076), {226, 135, 144, 0}},
+ {-1,{0}},
+#line 587 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1078), {240, 157, 146, 187}},
+#line 1973 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1079), {240, 157, 146, 176}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1905 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1087), {226, 135, 145, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1605 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1090), {226, 132, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2053 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1094), {240, 157, 149, 168}},
+ {-1,{0}}, {-1,{0}},
#line 442 "src/html_unescape.gperf"
- {"drcrop", 3, {226, 140, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1388 "src/html_unescape.gperf"
- {"parallel", 3, {226, 136, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1357 "src/html_unescape.gperf"
- {"orarr", 3, {226, 134, 187}},
+ {offsetof(struct entity_pool_t, entity_pool_str1097), {240, 157, 146, 159}},
+#line 1351 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1098), {226, 166, 183, 0}},
+#line 1662 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1099), {226, 164, 169, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 362 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1103), {226, 136, 135, 0}},
+#line 1485 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1104), {226, 135, 155, 0}},
+#line 1558 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1105), {207, 129, 0}},
+#line 817 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1106), {226, 135, 154, 0}},
+#line 1437 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1107), {226, 137, 188, 0}},
+#line 1478 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1108), {240, 157, 147, 134}},
+ {-1,{0}}, {-1,{0}},
+#line 1028 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1111), {194, 175, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1185 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1115), {226, 136, 137, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 523 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1120), {226, 169, 184, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1716 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1125), {226, 138, 147, 0}},
+ {-1,{0}},
+#line 1259 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1127), {226, 136, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1340 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1131), {226, 167, 128, 0}},
+#line 1514 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1132), {226, 136, 182, 0}},
+#line 999 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1133), {226, 132, 146, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 370 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1137), {226, 135, 131, 0}},
+ {-1,{0}},
+#line 393 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1139), {226, 140, 141, 0}},
+#line 408 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1140), {194, 168, 0}},
+#line 404 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1141), {226, 136, 148, 0}},
+#line 1358 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1142), {226, 136, 168, 0}},
+ {-1,{0}},
+#line 2102 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1144), {240, 157, 146, 180}},
+ {-1,{0}}, {-1,{0}},
+#line 562 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1147), {240, 157, 148, 189}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 304 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1152), {240, 157, 146, 158}},
+#line 1336 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1153), {226, 134, 186, 0}},
+#line 1243 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1154), {226, 134, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1026 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1159), {226, 137, 168, 0}},
+#line 515 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1160), {226, 170, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1853 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1164), {195, 190, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 516 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1169), {226, 170, 149, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 743 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1172), {226, 132, 133, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1992 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1179), {226, 135, 149, 0}},
+#line 1611 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1180), {226, 168, 146, 0}},
+#line 441 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1181), {226, 140, 140, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1387 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1187), {226, 136, 165, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1356 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1195), {226, 134, 187, 0}},
+#line 1744 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1196), {226, 140, 163, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 412 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1200), {226, 171, 164, 0}},
+#line 526 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1201), {226, 137, 147, 0}},
+#line 381 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1202), {226, 153, 166, 0}},
+#line 1743 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1203), {226, 136, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1368 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1208), {226, 147, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 769 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1212), {240, 157, 146, 190}},
+#line 725 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1213), {226, 133, 136, 0}},
+#line 1543 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1214), {226, 150, 173, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1249 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1217), {226, 139, 161, 0}},
+#line 1660 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1218), {194, 167, 0}},
+ {-1,{0}},
+#line 1060 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1220), {226, 171, 155, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1365 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1224), {226, 169, 150, 0}},
+ {-1,{0}},
+#line 407 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1226), {226, 136, 175, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 518 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1230), {61, 0}},
+ {-1,{0}},
+#line 679 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1232), {94, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1745 "src/html_unescape.gperf"
- {"ssmile", 3, {226, 140, 163}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 413 "src/html_unescape.gperf"
- {"DoubleLeftTee", 3, {226, 171, 164}},
-#line 527 "src/html_unescape.gperf"
- {"erDot", 3, {226, 137, 147}},
+ {offsetof(struct entity_pool_t, entity_pool_str1236), {226, 139, 134, 0}},
+#line 1069 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1237), {226, 136, 190, 0}},
+ {-1,{0}},
#line 382 "src/html_unescape.gperf"
- {"diams", 3, {226, 153, 166}},
-#line 1744 "src/html_unescape.gperf"
- {"ssetmn", 3, {226, 136, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1369 "src/html_unescape.gperf"
- {"oS", 3, {226, 147, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 770 "src/html_unescape.gperf"
- {"iscr", 4, {240, 157, 146, 190}},
-#line 726 "src/html_unescape.gperf"
- {"ii", 3, {226, 133, 136}},
-#line 1544 "src/html_unescape.gperf"
- {"rect", 3, {226, 150, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1250 "src/html_unescape.gperf"
- {"nsccue", 3, {226, 139, 161}},
-#line 1661 "src/html_unescape.gperf"
- {"sect", 2, {194, 167}},
- {(char*)0,0,{0}},
-#line 1061 "src/html_unescape.gperf"
- {"mlcp", 3, {226, 171, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1366 "src/html_unescape.gperf"
- {"oror", 3, {226, 169, 150}},
- {(char*)0,0,{0}},
-#line 408 "src/html_unescape.gperf"
- {"DoubleContourIntegral", 3, {226, 136, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 519 "src/html_unescape.gperf"
- {"equals", 1, {61}},
- {(char*)0,0,{0}},
-#line 680 "src/html_unescape.gperf"
- {"Hat", 1, {94}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1746 "src/html_unescape.gperf"
- {"sstarf", 3, {226, 139, 134}},
-#line 1070 "src/html_unescape.gperf"
- {"mstpos", 3, {226, 136, 190}},
- {(char*)0,0,{0}},
-#line 383 "src/html_unescape.gperf"
- {"die", 2, {194, 168}},
-#line 1045 "src/html_unescape.gperf"
- {"measuredangle", 3, {226, 136, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 565 "src/html_unescape.gperf"
- {"forall", 3, {226, 136, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1190 "src/html_unescape.gperf"
- {"notinvb", 3, {226, 139, 183}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1066 "src/html_unescape.gperf"
- {"mopf", 4, {240, 157, 149, 158}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1139 "src/html_unescape.gperf"
- {"niv", 3, {226, 136, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2005 "src/html_unescape.gperf"
- {"vBarv", 3, {226, 171, 169}},
- {(char*)0,0,{0}},
-#line 1252 "src/html_unescape.gperf"
- {"Nscr", 4, {240, 157, 146, 169}},
- {(char*)0,0,{0}},
-#line 1397 "src/html_unescape.gperf"
- {"period", 1, {46}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str1239), {194, 168, 0}},
+#line 1044 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1240), {226, 136, 161, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 564 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1252), {226, 136, 128, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1189 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1255), {226, 139, 183, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1065 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1263), {240, 157, 149, 158}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1138 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1270), {226, 136, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2004 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1280), {226, 171, 169, 0}},
+ {-1,{0}},
+#line 1251 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1282), {240, 157, 146, 169}},
+ {-1,{0}},
+#line 1396 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1284), {46, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 102 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1292), {226, 136, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 112 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1298), {226, 137, 172, 0}},
+#line 750 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1299), {226, 136, 172, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
#line 103 "src/html_unescape.gperf"
- {"becaus", 3, {226, 136, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 113 "src/html_unescape.gperf"
- {"between", 3, {226, 137, 172}},
-#line 751 "src/html_unescape.gperf"
- {"Int", 3, {226, 136, 172}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 104 "src/html_unescape.gperf"
- {"because", 3, {226, 136, 181}},
-#line 1411 "src/html_unescape.gperf"
- {"piv", 2, {207, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1552 "src/html_unescape.gperf"
- {"rfr", 4, {240, 157, 148, 175}},
-#line 1472 "src/html_unescape.gperf"
- {"Qfr", 4, {240, 157, 148, 148}},
-#line 935 "src/html_unescape.gperf"
- {"lfr", 4, {240, 157, 148, 169}},
- {(char*)0,0,{0}},
-#line 1668 "src/html_unescape.gperf"
- {"sfr", 4, {240, 157, 148, 176}},
-#line 1149 "src/html_unescape.gperf"
- {"nleftrightarrow", 3, {226, 134, 174}},
-#line 1837 "src/html_unescape.gperf"
- {"Tfr", 4, {240, 157, 148, 151}},
-#line 2122 "src/html_unescape.gperf"
- {"Zfr", 3, {226, 132, 168}},
-#line 477 "src/html_unescape.gperf"
- {"efr", 4, {240, 157, 148, 162}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1686 "src/html_unescape.gperf"
- {"sim", 3, {226, 136, 188}},
-#line 1922 "src/html_unescape.gperf"
- {"ufr", 4, {240, 157, 148, 178}},
-#line 1607 "src/html_unescape.gperf"
- {"roplus", 3, {226, 168, 174}},
-#line 1838 "src/html_unescape.gperf"
- {"tfr", 4, {240, 157, 148, 177}},
-#line 981 "src/html_unescape.gperf"
- {"loplus", 3, {226, 168, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2064 "src/html_unescape.gperf"
- {"Xfr", 4, {240, 157, 148, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1539 "src/html_unescape.gperf"
- {"real", 3, {226, 132, 156}},
-#line 1120 "src/html_unescape.gperf"
- {"nfr", 4, {240, 157, 148, 171}},
- {(char*)0,0,{0}},
-#line 115 "src/html_unescape.gperf"
- {"bfr", 4, {240, 157, 148, 159}},
- {(char*)0,0,{0}},
-#line 1185 "src/html_unescape.gperf"
- {"NotHumpEqual", 3, {226, 137, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 789 "src/html_unescape.gperf"
- {"Jfr", 4, {240, 157, 148, 141}},
- {(char*)0,0,{0}},
-#line 444 "src/html_unescape.gperf"
- {"dscr", 4, {240, 157, 146, 185}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2051 "src/html_unescape.gperf"
- {"Wfr", 4, {240, 157, 148, 154}},
- {(char*)0,0,{0}},
-#line 130 "src/html_unescape.gperf"
- {"blacklozenge", 3, {226, 167, 171}},
- {(char*)0,0,{0}},
-#line 2126 "src/html_unescape.gperf"
- {"zopf", 4, {240, 157, 149, 171}},
-#line 1542 "src/html_unescape.gperf"
- {"reals", 3, {226, 132, 157}},
- {(char*)0,0,{0}},
-#line 1171 "src/html_unescape.gperf"
- {"NotCupCap", 3, {226, 137, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1695 "src/html_unescape.gperf"
- {"simplus", 3, {226, 168, 164}},
- {(char*)0,0,{0}},
-#line 566 "src/html_unescape.gperf"
- {"ForAll", 3, {226, 136, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1402 "src/html_unescape.gperf"
- {"pfr", 4, {240, 157, 148, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1343 "src/html_unescape.gperf"
- {"omacr", 2, {197, 141}},
- {(char*)0,0,{0}},
-#line 2027 "src/html_unescape.gperf"
- {"Vfr", 4, {240, 157, 148, 153}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 489 "src/html_unescape.gperf"
- {"Emacr", 2, {196, 146}},
-#line 1617 "src/html_unescape.gperf"
- {"Rscr", 3, {226, 132, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2059 "src/html_unescape.gperf"
- {"wscr", 4, {240, 157, 147, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1680 "src/html_unescape.gperf"
- {"ShortUpArrow", 3, {226, 134, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1665 "src/html_unescape.gperf"
- {"setmn", 3, {226, 136, 150}},
- {(char*)0,0,{0}},
-#line 2028 "src/html_unescape.gperf"
- {"vfr", 4, {240, 157, 148, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 807 "src/html_unescape.gperf"
- {"Kfr", 4, {240, 157, 148, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1355 "src/html_unescape.gperf"
- {"operp", 3, {226, 166, 185}},
- {(char*)0,0,{0}},
-#line 1048 "src/html_unescape.gperf"
- {"Mfr", 4, {240, 157, 148, 144}},
+ {offsetof(struct entity_pool_t, entity_pool_str1307), {226, 136, 181, 0}},
+#line 1410 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1308), {207, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1551 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1326), {240, 157, 148, 175}},
+#line 1471 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1327), {240, 157, 148, 148}},
+#line 934 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1328), {240, 157, 148, 169}},
+ {-1,{0}},
#line 1667 "src/html_unescape.gperf"
- {"Sfr", 4, {240, 157, 148, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1161 "src/html_unescape.gperf"
- {"nltrie", 3, {226, 139, 172}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 589 "src/html_unescape.gperf"
- {"Fscr", 3, {226, 132, 177}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 554 "src/html_unescape.gperf"
- {"ffr", 4, {240, 157, 148, 163}},
+ {offsetof(struct entity_pool_t, entity_pool_str1330), {240, 157, 148, 176}},
+#line 1148 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1331), {226, 134, 174, 0}},
+#line 1836 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1332), {240, 157, 148, 151}},
+#line 2121 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1333), {226, 132, 168, 0}},
+#line 476 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1334), {240, 157, 148, 162}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1685 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1338), {226, 136, 188, 0}},
#line 1921 "src/html_unescape.gperf"
- {"Ufr", 4, {240, 157, 148, 152}},
- {(char*)0,0,{0}},
-#line 1677 "src/html_unescape.gperf"
- {"shortmid", 3, {226, 136, 163}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1305 "src/html_unescape.gperf"
- {"nvsim", 3, {226, 136, 188}},
-#line 368 "src/html_unescape.gperf"
- {"Dfr", 4, {240, 157, 148, 135}},
-#line 921 "src/html_unescape.gperf"
- {"lessdot", 3, {226, 139, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1459 "src/html_unescape.gperf"
- {"profline", 3, {226, 140, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1473 "src/html_unescape.gperf"
- {"qfr", 4, {240, 157, 148, 174}},
-#line 346 "src/html_unescape.gperf"
- {"dArr", 3, {226, 135, 147}},
- {(char*)0,0,{0}},
-#line 1248 "src/html_unescape.gperf"
- {"nrtrie", 3, {226, 139, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str1339), {240, 157, 148, 178}},
+#line 1606 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1340), {226, 168, 174, 0}},
+#line 1837 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1341), {240, 157, 148, 177}},
+#line 980 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1342), {226, 168, 173, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2063 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1347), {240, 157, 148, 155}},
+ {-1,{0}}, {-1,{0}},
+#line 1538 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1350), {226, 132, 156, 0}},
+#line 1119 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1351), {240, 157, 148, 171}},
+ {-1,{0}},
+#line 114 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1353), {240, 157, 148, 159}},
+ {-1,{0}},
+#line 1184 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1355), {226, 137, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 788 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1359), {240, 157, 148, 141}},
+ {-1,{0}},
+#line 443 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1361), {240, 157, 146, 185}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2050 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1365), {240, 157, 148, 154}},
+ {-1,{0}},
+#line 129 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1367), {226, 167, 171, 0}},
+ {-1,{0}},
+#line 2125 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1369), {240, 157, 149, 171}},
+#line 1541 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1370), {226, 132, 157, 0}},
+ {-1,{0}},
+#line 1170 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1372), {226, 137, 173, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1694 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1375), {226, 168, 164, 0}},
+ {-1,{0}},
+#line 565 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1377), {226, 136, 128, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1401 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1389), {240, 157, 148, 173}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1342 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1395), {197, 141, 0}},
+ {-1,{0}},
+#line 2026 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1397), {240, 157, 148, 153}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 488 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1409), {196, 146, 0}},
+#line 1616 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1410), {226, 132, 155, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2058 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1414), {240, 157, 147, 140}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1679 "src/html_unescape.gperf"
- {"ShortRightArrow", 3, {226, 134, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1841 "src/html_unescape.gperf"
- {"Therefore", 3, {226, 136, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 358 "src/html_unescape.gperf"
- {"DD", 3, {226, 133, 133}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str1423), {226, 134, 145, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1664 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1429), {226, 136, 150, 0}},
+ {-1,{0}},
+#line 2027 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1431), {240, 157, 148, 179}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 806 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1450), {240, 157, 148, 142}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1354 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1455), {226, 166, 185, 0}},
+ {-1,{0}},
+#line 1047 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1457), {240, 157, 148, 144}},
+#line 1666 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1458), {240, 157, 148, 150}},
+ {-1,{0}}, {-1,{0}},
+#line 1160 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1461), {226, 139, 172, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 588 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1467), {226, 132, 177, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 553 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1470), {240, 157, 148, 163}},
+#line 1920 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1471), {240, 157, 148, 152}},
+ {-1,{0}},
+#line 1676 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1473), {226, 136, 163, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1304 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1488), {226, 136, 188, 0}},
+#line 367 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1489), {240, 157, 148, 135}},
+#line 920 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1490), {226, 139, 150, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1458 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1493), {226, 140, 146, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1472 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1500), {240, 157, 148, 174}},
+#line 345 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1501), {226, 135, 147, 0}},
+ {-1,{0}},
+#line 1247 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1503), {226, 139, 173, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1678 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1507), {226, 134, 146, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
#line 1840 "src/html_unescape.gperf"
- {"therefore", 3, {226, 136, 180}},
-#line 934 "src/html_unescape.gperf"
- {"Lfr", 4, {240, 157, 148, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1825 "src/html_unescape.gperf"
- {"target", 3, {226, 140, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str1515), {226, 136, 180, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 357 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1519), {226, 133, 133, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1839 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1524), {226, 136, 180, 0}},
+#line 933 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1525), {240, 157, 148, 143}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1824 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1532), {226, 140, 150, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 483 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1535), {226, 136, 136, 0}},
+#line 2096 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1536), {240, 157, 148, 156}},
+#line 271 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1537), {226, 136, 178, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1337 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1542), {226, 166, 190, 0}},
+ {-1,{0}},
+#line 245 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1544), {226, 132, 173, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 548 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1559), {226, 153, 128, 0}},
+#line 1269 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1560), {226, 170, 176, 0}},
+#line 1312 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1561), {226, 138, 155, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1395 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1568), {37, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1362 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1578), {194, 170, 0}},
+ {-1,{0}},
+#line 1359 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1580), {226, 169, 157, 0}},
+#line 1557 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1581), {206, 161, 0}},
+ {-1,{0}},
+#line 1067 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1583), {240, 157, 147, 130}},
+ {-1,{0}},
+#line 1303 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1585), {226, 138, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 958 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1589), {226, 137, 168, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1133 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1597), {226, 135, 142, 0}},
+#line 1357 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1598), {226, 169, 148, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 387 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1602), {195, 183, 0}},
+ {-1,{0}},
+#line 721 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1604), {240, 157, 148, 166}},
#line 484 "src/html_unescape.gperf"
- {"Element", 3, {226, 136, 136}},
-#line 2097 "src/html_unescape.gperf"
- {"Yfr", 4, {240, 157, 148, 156}},
-#line 272 "src/html_unescape.gperf"
- {"ClockwiseContourIntegral", 3, {226, 136, 178}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str1605), {226, 143, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 203 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1615), {92, 0}},
+#line 1298 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1616), {226, 164, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 732 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1626), {196, 170, 0}},
+ {-1,{0}},
+#line 89 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1628), {226, 139, 141, 0}},
+#line 1898 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1629), {226, 137, 172, 0}},
#line 1338 "src/html_unescape.gperf"
- {"olcir", 3, {226, 166, 190}},
- {(char*)0,0,{0}},
-#line 246 "src/html_unescape.gperf"
- {"Cfr", 3, {226, 132, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 549 "src/html_unescape.gperf"
- {"female", 3, {226, 153, 128}},
-#line 1270 "src/html_unescape.gperf"
- {"nsucceq", 3, {226, 170, 176}},
-#line 1313 "src/html_unescape.gperf"
- {"oast", 3, {226, 138, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1396 "src/html_unescape.gperf"
- {"percnt", 1, {37}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1363 "src/html_unescape.gperf"
- {"ordf", 2, {194, 170}},
- {(char*)0,0,{0}},
-#line 1360 "src/html_unescape.gperf"
- {"ord", 3, {226, 169, 157}},
-#line 1558 "src/html_unescape.gperf"
- {"Rho", 2, {206, 161}},
- {(char*)0,0,{0}},
-#line 1068 "src/html_unescape.gperf"
- {"mscr", 4, {240, 157, 147, 130}},
- {(char*)0,0,{0}},
-#line 1304 "src/html_unescape.gperf"
- {"nvrtrie", 3, {226, 138, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 959 "src/html_unescape.gperf"
- {"lnE", 3, {226, 137, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1134 "src/html_unescape.gperf"
- {"nhArr", 3, {226, 135, 142}},
-#line 1358 "src/html_unescape.gperf"
- {"Or", 3, {226, 169, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 388 "src/html_unescape.gperf"
- {"divide", 2, {195, 183}},
- {(char*)0,0,{0}},
-#line 722 "src/html_unescape.gperf"
- {"ifr", 4, {240, 157, 148, 166}},
-#line 485 "src/html_unescape.gperf"
- {"elinters", 3, {226, 143, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 204 "src/html_unescape.gperf"
- {"bsol", 1, {92}},
-#line 1299 "src/html_unescape.gperf"
- {"nvlArr", 3, {226, 164, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 733 "src/html_unescape.gperf"
- {"Imacr", 2, {196, 170}},
- {(char*)0,0,{0}},
-#line 90 "src/html_unescape.gperf"
- {"backsimeq", 3, {226, 139, 141}},
-#line 1899 "src/html_unescape.gperf"
- {"twixt", 3, {226, 137, 172}},
-#line 1339 "src/html_unescape.gperf"
- {"olcross", 3, {226, 166, 187}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1509 "src/html_unescape.gperf"
- {"rarrsim", 3, {226, 165, 180}},
+ {offsetof(struct entity_pool_t, entity_pool_str1630), {226, 166, 187, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1508 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1639), {226, 165, 180, 0}},
+#line 409 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1640), {226, 135, 147, 0}},
+#line 840 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1641), {226, 165, 179, 0}},
+#line 491 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1642), {226, 136, 133, 0}},
+#line 1350 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1643), {240, 157, 149, 160}},
+ {-1,{0}},
+#line 540 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1645), {226, 136, 131, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 949 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1648), {226, 165, 171, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 539 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1656), {33, 0}},
+#line 503 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1657), {240, 157, 148, 188}},
+#line 1142 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1658), {226, 135, 141, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1849 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1663), {226, 128, 137, 0}},
+#line 1218 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1664), {226, 138, 136, 0}},
+#line 1403 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1665), {207, 134, 0}},
#line 410 "src/html_unescape.gperf"
- {"DoubleDownArrow", 3, {226, 135, 147}},
-#line 841 "src/html_unescape.gperf"
- {"larrsim", 3, {226, 165, 179}},
-#line 492 "src/html_unescape.gperf"
- {"emptyset", 3, {226, 136, 133}},
-#line 1351 "src/html_unescape.gperf"
- {"oopf", 4, {240, 157, 149, 160}},
- {(char*)0,0,{0}},
-#line 541 "src/html_unescape.gperf"
- {"exist", 3, {226, 136, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str1666), {226, 135, 144, 0}},
+ {-1,{0}},
+#line 1866 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1668), {226, 171, 177, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 386 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1672), {195, 183, 0}},
+ {-1,{0}},
+#line 1118 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1674), {240, 157, 148, 145}},
+#line 1144 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1675), {226, 137, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2128 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1689), {240, 157, 147, 143}},
+#line 994 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1690), {226, 165, 173, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
#line 950 "src/html_unescape.gperf"
- {"llhard", 3, {226, 165, 171}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 540 "src/html_unescape.gperf"
- {"excl", 1, {33}},
-#line 504 "src/html_unescape.gperf"
- {"Eopf", 4, {240, 157, 148, 188}},
-#line 1143 "src/html_unescape.gperf"
- {"nlArr", 3, {226, 135, 141}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1850 "src/html_unescape.gperf"
- {"thinsp", 3, {226, 128, 137}},
-#line 1219 "src/html_unescape.gperf"
- {"NotSubsetEqual", 3, {226, 138, 136}},
-#line 1404 "src/html_unescape.gperf"
- {"phi", 2, {207, 134}},
-#line 411 "src/html_unescape.gperf"
- {"DoubleLeftArrow", 3, {226, 135, 144}},
- {(char*)0,0,{0}},
-#line 1867 "src/html_unescape.gperf"
- {"topcir", 3, {226, 171, 177}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 387 "src/html_unescape.gperf"
- {"div", 2, {195, 183}},
- {(char*)0,0,{0}},
-#line 1119 "src/html_unescape.gperf"
- {"Nfr", 4, {240, 157, 148, 145}},
-#line 1145 "src/html_unescape.gperf"
- {"nlE", 3, {226, 137, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2129 "src/html_unescape.gperf"
- {"zscr", 4, {240, 157, 147, 143}},
-#line 995 "src/html_unescape.gperf"
- {"lrhard", 3, {226, 165, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 951 "src/html_unescape.gperf"
- {"lltri", 3, {226, 151, 186}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1243 "src/html_unescape.gperf"
- {"nrArr", 3, {226, 135, 143}},
-#line 1225 "src/html_unescape.gperf"
- {"NotSupersetEqual", 3, {226, 138, 137}},
- {(char*)0,0,{0}},
-#line 1820 "src/html_unescape.gperf"
- {"swArr", 3, {226, 135, 153}},
-#line 1848 "src/html_unescape.gperf"
- {"ThickSpace", 3, {226, 129, 159}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1932 "src/html_unescape.gperf"
- {"ultri", 3, {226, 151, 184}},
-#line 1205 "src/html_unescape.gperf"
- {"notnivb", 3, {226, 139, 190}},
- {(char*)0,0,{0}},
-#line 1450 "src/html_unescape.gperf"
- {"prime", 3, {226, 128, 178}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1452 "src/html_unescape.gperf"
- {"primes", 3, {226, 132, 153}},
- {(char*)0,0,{0}},
-#line 1335 "src/html_unescape.gperf"
- {"ohm", 2, {206, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 265 "src/html_unescape.gperf"
- {"CircleTimes", 3, {226, 138, 151}},
-#line 1160 "src/html_unescape.gperf"
- {"nltri", 3, {226, 139, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1692 "src/html_unescape.gperf"
- {"siml", 3, {226, 170, 157}},
-#line 1308 "src/html_unescape.gperf"
- {"nwArr", 3, {226, 135, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1990 "src/html_unescape.gperf"
- {"varpi", 2, {207, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1368 "src/html_unescape.gperf"
- {"orv", 3, {226, 169, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1664 "src/html_unescape.gperf"
- {"setminus", 3, {226, 136, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 997 "src/html_unescape.gperf"
- {"lrtri", 3, {226, 138, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1398 "src/html_unescape.gperf"
- {"permil", 3, {226, 128, 176}},
-#line 1054 "src/html_unescape.gperf"
- {"mid", 3, {226, 136, 163}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1973 "src/html_unescape.gperf"
- {"urtri", 3, {226, 151, 185}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 369 "src/html_unescape.gperf"
- {"dfr", 4, {240, 157, 148, 161}},
-#line 1050 "src/html_unescape.gperf"
- {"mho", 3, {226, 132, 167}},
-#line 1448 "src/html_unescape.gperf"
- {"prE", 3, {226, 170, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2041 "src/html_unescape.gperf"
- {"vsupne", 3, {226, 138, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1247 "src/html_unescape.gperf"
- {"nrtri", 3, {226, 139, 171}},
-#line 2039 "src/html_unescape.gperf"
- {"vsubne", 3, {226, 138, 138}},
- {(char*)0,0,{0}},
-#line 473 "src/html_unescape.gperf"
- {"eDot", 3, {226, 137, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 919 "src/html_unescape.gperf"
- {"lesges", 3, {226, 170, 147}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 87 "src/html_unescape.gperf"
- {"backepsilon", 2, {207, 182}},
- {(char*)0,0,{0}},
-#line 1513 "src/html_unescape.gperf"
- {"ratail", 3, {226, 164, 154}},
- {(char*)0,0,{0}},
-#line 843 "src/html_unescape.gperf"
- {"latail", 3, {226, 164, 153}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1954 "src/html_unescape.gperf"
- {"UpEquilibrium", 3, {226, 165, 174}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 511 "src/html_unescape.gperf"
- {"epsilon", 2, {206, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1964 "src/html_unescape.gperf"
- {"upsilon", 2, {207, 133}},
- {(char*)0,0,{0}},
-#line 1052 "src/html_unescape.gperf"
- {"midast", 1, {42}},
-#line 698 "src/html_unescape.gperf"
- {"Hopf", 3, {226, 132, 141}},
-#line 2029 "src/html_unescape.gperf"
- {"vltri", 3, {226, 138, 178}},
- {(char*)0,0,{0}},
-#line 1553 "src/html_unescape.gperf"
- {"Rfr", 3, {226, 132, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2048 "src/html_unescape.gperf"
- {"Wedge", 3, {226, 139, 128}},
-#line 2052 "src/html_unescape.gperf"
- {"wfr", 4, {240, 157, 148, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 94 "src/html_unescape.gperf"
- {"barwed", 3, {226, 140, 133}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1031 "src/html_unescape.gperf"
- {"malt", 3, {226, 156, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 251 "src/html_unescape.gperf"
- {"Chi", 2, {206, 167}},
-#line 494 "src/html_unescape.gperf"
- {"emptyv", 3, {226, 136, 133}},
-#line 1203 "src/html_unescape.gperf"
- {"notni", 3, {226, 136, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 926 "src/html_unescape.gperf"
- {"LessGreater", 3, {226, 137, 182}},
- {(char*)0,0,{0}},
-#line 378 "src/html_unescape.gperf"
- {"diam", 3, {226, 139, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2035 "src/html_unescape.gperf"
- {"vrtri", 3, {226, 138, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 263 "src/html_unescape.gperf"
- {"CircleMinus", 3, {226, 138, 150}},
- {(char*)0,0,{0}},
-#line 1342 "src/html_unescape.gperf"
- {"Omacr", 2, {197, 140}},
-#line 1659 "src/html_unescape.gperf"
- {"seArr", 3, {226, 135, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 553 "src/html_unescape.gperf"
- {"Ffr", 4, {240, 157, 148, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1445 "src/html_unescape.gperf"
- {"precneqq", 3, {226, 170, 181}},
- {(char*)0,0,{0}},
-#line 380 "src/html_unescape.gperf"
- {"Diamond", 3, {226, 139, 132}},
-#line 1364 "src/html_unescape.gperf"
- {"ordm", 2, {194, 186}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1103 "src/html_unescape.gperf"
- {"neArr", 3, {226, 135, 151}},
-#line 764 "src/html_unescape.gperf"
- {"Iopf", 4, {240, 157, 149, 128}},
-#line 260 "src/html_unescape.gperf"
- {"CircleDot", 3, {226, 138, 153}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1453 "src/html_unescape.gperf"
- {"prnap", 3, {226, 170, 185}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 404 "src/html_unescape.gperf"
- {"dotminus", 3, {226, 136, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1254 "src/html_unescape.gperf"
- {"nshortmid", 3, {226, 136, 164}},
- {(char*)0,0,{0}},
-#line 148 "src/html_unescape.gperf"
- {"bottom", 3, {226, 138, 165}},
- {(char*)0,0,{0}},
-#line 1428 "src/html_unescape.gperf"
- {"pointint", 3, {226, 168, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1737 "src/html_unescape.gperf"
- {"SquareUnion", 3, {226, 138, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 793 "src/html_unescape.gperf"
- {"jopf", 4, {240, 157, 149, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str1697), {226, 151, 186, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1242 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1700), {226, 135, 143, 0}},
+#line 1224 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1701), {226, 138, 137, 0}},
+ {-1,{0}},
+#line 1819 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1703), {226, 135, 153, 0}},
+#line 1847 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1704), {226, 129, 159, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1931 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1708), {226, 151, 184, 0}},
+#line 1204 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1709), {226, 139, 190, 0}},
+ {-1,{0}},
+#line 1449 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1711), {226, 128, 178, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1451 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1714), {226, 132, 153, 0}},
+ {-1,{0}},
+#line 1334 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1716), {206, 169, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 264 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1719), {226, 138, 151, 0}},
+#line 1159 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1720), {226, 139, 170, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1691 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1723), {226, 170, 157, 0}},
+#line 1307 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1724), {226, 135, 150, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1989 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1727), {207, 150, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1367 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1730), {226, 169, 155, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1663 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1735), {226, 136, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 996 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1739), {226, 138, 191, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1397 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1743), {226, 128, 176, 0}},
+#line 1053 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1744), {226, 136, 163, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1972 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1750), {226, 151, 185, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 368 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1753), {240, 157, 148, 161}},
+#line 1049 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1754), {226, 132, 167, 0}},
+#line 1447 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1755), {226, 170, 179, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2040 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1759), {226, 138, 139, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1246 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1762), {226, 139, 171, 0}},
+#line 2038 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1763), {226, 138, 138, 0}},
+ {-1,{0}},
+#line 472 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1765), {226, 137, 145, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 918 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1778), {226, 170, 147, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 86 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1781), {207, 182, 0}},
+ {-1,{0}},
+#line 1512 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1783), {226, 164, 154, 0}},
+ {-1,{0}},
+#line 842 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1785), {226, 164, 153, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1953 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1788), {226, 165, 174, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 510 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1791), {206, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1963 "src/html_unescape.gperf"
- {"Upsilon", 2, {206, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 279 "src/html_unescape.gperf"
- {"Colone", 3, {226, 169, 180}},
- {(char*)0,0,{0}},
-#line 1301 "src/html_unescape.gperf"
- {"nvlt", 1, {60}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1115 "src/html_unescape.gperf"
- {"NestedLessLess", 3, {226, 137, 170}},
+ {offsetof(struct entity_pool_t, entity_pool_str1796), {207, 133, 0}},
+ {-1,{0}},
+#line 1051 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1798), {42, 0}},
+#line 697 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1799), {226, 132, 141, 0}},
+#line 2028 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1800), {226, 138, 178, 0}},
+ {-1,{0}},
+#line 1552 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1802), {226, 132, 156, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 2047 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1805), {226, 139, 128, 0}},
+#line 2051 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1806), {240, 157, 148, 180}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 93 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1812), {226, 140, 133, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1030 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1815), {226, 156, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 250 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1820), {206, 167, 0}},
+#line 493 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1821), {226, 136, 133, 0}},
+#line 1202 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1822), {226, 136, 140, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 925 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1827), {226, 137, 182, 0}},
+ {-1,{0}},
+#line 377 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1829), {226, 139, 132, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 2034 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1842), {226, 138, 179, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 262 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1849), {226, 138, 150, 0}},
+ {-1,{0}},
+#line 1341 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1851), {197, 140, 0}},
+#line 1658 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1852), {226, 135, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 552 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1859), {240, 157, 148, 137}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1444 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1865), {226, 170, 181, 0}},
+ {-1,{0}},
+#line 379 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1867), {226, 139, 132, 0}},
+#line 1363 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1868), {194, 186, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1102 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1873), {226, 135, 151, 0}},
+#line 763 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1874), {240, 157, 149, 128}},
+#line 259 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1875), {226, 138, 153, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1452 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1878), {226, 170, 185, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 403 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1884), {226, 136, 184, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1253 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1903), {226, 136, 164, 0}},
+ {-1,{0}},
+#line 147 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1905), {226, 138, 165, 0}},
+ {-1,{0}},
+#line 1427 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1907), {226, 168, 149, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1736 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1917), {226, 138, 148, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 792 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1925), {240, 157, 149, 155}},
+ {-1,{0}}, {-1,{0}},
+#line 1962 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1928), {206, 165, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
#line 278 "src/html_unescape.gperf"
- {"Colon", 3, {226, 136, 183}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 205 "src/html_unescape.gperf"
- {"bsolhsub", 3, {226, 159, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 412 "src/html_unescape.gperf"
- {"DoubleLeftRightArrow", 3, {226, 135, 148}},
-#line 1424 "src/html_unescape.gperf"
- {"plussim", 3, {226, 168, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 735 "src/html_unescape.gperf"
- {"image", 3, {226, 132, 145}},
-#line 481 "src/html_unescape.gperf"
- {"egs", 3, {226, 170, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1371 "src/html_unescape.gperf"
- {"oscr", 3, {226, 132, 180}},
-#line 1822 "src/html_unescape.gperf"
- {"swnwar", 3, {226, 164, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2117 "src/html_unescape.gperf"
- {"zeetrf", 3, {226, 132, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1032 "src/html_unescape.gperf"
- {"maltese", 3, {226, 156, 160}},
- {(char*)0,0,{0}},
-#line 1049 "src/html_unescape.gperf"
- {"mfr", 4, {240, 157, 148, 170}},
-#line 1505 "src/html_unescape.gperf"
- {"rarrfs", 3, {226, 164, 158}},
-#line 529 "src/html_unescape.gperf"
- {"Escr", 3, {226, 132, 176}},
-#line 837 "src/html_unescape.gperf"
- {"larrfs", 3, {226, 164, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1063 "src/html_unescape.gperf"
- {"mnplus", 3, {226, 136, 147}},
+ {offsetof(struct entity_pool_t, entity_pool_str1936), {226, 169, 180, 0}},
+ {-1,{0}},
+#line 1300 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1938), {60, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1114 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1941), {226, 137, 170, 0}},
+#line 277 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1942), {226, 136, 183, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 204 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1945), {226, 159, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 411 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1949), {226, 135, 148, 0}},
+#line 1423 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1950), {226, 168, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 734 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1959), {226, 132, 145, 0}},
+#line 480 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1960), {226, 170, 150, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1370 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1963), {226, 132, 180, 0}},
+#line 1821 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1964), {226, 164, 170, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2116 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1969), {226, 132, 168, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1031 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1973), {226, 156, 160, 0}},
+ {-1,{0}},
+#line 1048 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1975), {240, 157, 148, 170}},
+#line 1504 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1976), {226, 164, 158, 0}},
+#line 528 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1977), {226, 132, 176, 0}},
+#line 836 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1978), {226, 164, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1062 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1985), {226, 136, 147, 0}},
+#line 1129 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1986), {226, 137, 175, 0}},
#line 1130 "src/html_unescape.gperf"
- {"ngt", 3, {226, 137, 175}},
-#line 1131 "src/html_unescape.gperf"
- {"ngtr", 3, {226, 137, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 628 "src/html_unescape.gperf"
- {"gl", 3, {226, 137, 183}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 381 "src/html_unescape.gperf"
- {"diamondsuit", 3, {226, 153, 166}},
-#line 656 "src/html_unescape.gperf"
- {"GT", 1, {62}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 929 "src/html_unescape.gperf"
- {"lesssim", 3, {226, 137, 178}},
-#line 447 "src/html_unescape.gperf"
- {"dsol", 3, {226, 167, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1955 "src/html_unescape.gperf"
- {"upharpoonleft", 3, {226, 134, 191}},
-#line 1732 "src/html_unescape.gperf"
- {"SquareIntersection", 3, {226, 138, 147}},
-#line 1004 "src/html_unescape.gperf"
- {"lsime", 3, {226, 170, 141}},
- {(char*)0,0,{0}},
-#line 1158 "src/html_unescape.gperf"
- {"nLt", 3, {226, 137, 170}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str1987), {226, 137, 175, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 627 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str1996), {226, 137, 183, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 380 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2003), {226, 153, 166, 0}},
+#line 655 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2004), {62, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 928 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2014), {226, 137, 178, 0}},
+#line 446 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2015), {226, 167, 182, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1954 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2023), {226, 134, 191, 0}},
+#line 1731 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2024), {226, 138, 147, 0}},
+#line 1003 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2025), {226, 170, 141, 0}},
+ {-1,{0}},
+#line 1157 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2027), {226, 137, 170, 0}},
+ {-1,{0}},
+#line 1194 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2029), {226, 137, 174, 0}},
+ {-1,{0}},
+#line 630 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2031), {226, 170, 138, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1634 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2035), {226, 170, 184, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1036 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2038), {226, 134, 164, 0}},
+#line 1197 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2039), {226, 137, 170, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1550 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2043), {226, 140, 139, 0}},
+ {-1,{0}},
+#line 932 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2045), {226, 140, 138, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1256 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2048), {226, 137, 132, 0}},
+ {-1,{0}},
+#line 201 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2050), {226, 139, 141, 0}},
#line 1195 "src/html_unescape.gperf"
- {"NotLess", 3, {226, 137, 174}},
- {(char*)0,0,{0}},
-#line 631 "src/html_unescape.gperf"
- {"gnap", 3, {226, 170, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1635 "src/html_unescape.gperf"
- {"scap", 3, {226, 170, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1037 "src/html_unescape.gperf"
- {"mapstoleft", 3, {226, 134, 164}},
-#line 1198 "src/html_unescape.gperf"
- {"NotLessLess", 3, {226, 137, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1551 "src/html_unescape.gperf"
- {"rfloor", 3, {226, 140, 139}},
- {(char*)0,0,{0}},
-#line 933 "src/html_unescape.gperf"
- {"lfloor", 3, {226, 140, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1257 "src/html_unescape.gperf"
- {"nsime", 3, {226, 137, 132}},
- {(char*)0,0,{0}},
-#line 202 "src/html_unescape.gperf"
- {"bsime", 3, {226, 139, 141}},
+ {offsetof(struct entity_pool_t, entity_pool_str2051), {226, 137, 176, 0}},
+#line 1199 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2052), {226, 137, 180, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1089 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2056), {226, 169, 131, 0}},
+ {-1,{0}}, {-1,{0}},
#line 1196 "src/html_unescape.gperf"
- {"NotLessEqual", 3, {226, 137, 176}},
-#line 1200 "src/html_unescape.gperf"
- {"NotLessTilde", 3, {226, 137, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1090 "src/html_unescape.gperf"
- {"ncap", 3, {226, 169, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1197 "src/html_unescape.gperf"
- {"NotLessGreater", 3, {226, 137, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1449 "src/html_unescape.gperf"
- {"precsim", 3, {226, 137, 190}},
- {(char*)0,0,{0}},
-#line 977 "src/html_unescape.gperf"
- {"looparrowright", 3, {226, 134, 172}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1433 "src/html_unescape.gperf"
- {"Pr", 3, {226, 170, 187}},
-#line 1531 "src/html_unescape.gperf"
- {"rcub", 1, {125}},
-#line 1038 "src/html_unescape.gperf"
- {"mapstoup", 3, {226, 134, 165}},
-#line 861 "src/html_unescape.gperf"
- {"lcub", 1, {123}},
- {(char*)0,0,{0}},
-#line 2121 "src/html_unescape.gperf"
- {"zfr", 4, {240, 157, 148, 183}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1947 "src/html_unescape.gperf"
- {"uparrow", 3, {226, 134, 145}},
- {(char*)0,0,{0}},
-#line 633 "src/html_unescape.gperf"
- {"gne", 3, {226, 170, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1641 "src/html_unescape.gperf"
- {"sce", 3, {226, 170, 176}},
-#line 740 "src/html_unescape.gperf"
- {"Im", 3, {226, 132, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1527 "src/html_unescape.gperf"
- {"rcaron", 2, {197, 153}},
- {(char*)0,0,{0}},
-#line 857 "src/html_unescape.gperf"
- {"lcaron", 2, {196, 190}},
-#line 1350 "src/html_unescape.gperf"
- {"Oopf", 4, {240, 157, 149, 134}},
-#line 1637 "src/html_unescape.gperf"
- {"scaron", 2, {197, 161}},
-#line 89 "src/html_unescape.gperf"
- {"backsim", 3, {226, 136, 189}},
-#line 1829 "src/html_unescape.gperf"
- {"Tcaron", 2, {197, 164}},
-#line 2111 "src/html_unescape.gperf"
- {"Zcaron", 2, {197, 189}},
-#line 463 "src/html_unescape.gperf"
- {"ecaron", 2, {196, 155}},
- {(char*)0,0,{0}},
-#line 109 "src/html_unescape.gperf"
- {"Bernoullis", 3, {226, 132, 172}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1122 "src/html_unescape.gperf"
- {"nge", 3, {226, 137, 177}},
-#line 1830 "src/html_unescape.gperf"
- {"tcaron", 2, {197, 165}},
- {(char*)0,0,{0}},
-#line 567 "src/html_unescape.gperf"
- {"fork", 3, {226, 139, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 702 "src/html_unescape.gperf"
- {"Hscr", 3, {226, 132, 139}},
- {(char*)0,0,{0}},
-#line 1092 "src/html_unescape.gperf"
- {"ncaron", 2, {197, 136}},
-#line 488 "src/html_unescape.gperf"
- {"elsdot", 3, {226, 170, 151}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str2059), {226, 137, 184, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1448 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2070), {226, 137, 190, 0}},
+ {-1,{0}},
+#line 976 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2072), {226, 134, 172, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1432 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2076), {226, 170, 187, 0}},
+#line 1530 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2077), {125, 0}},
+#line 1037 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2078), {226, 134, 165, 0}},
+#line 860 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2079), {123, 0}},
+ {-1,{0}},
+#line 2120 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2081), {240, 157, 148, 183}},
+ {-1,{0}}, {-1,{0}},
+#line 1946 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2084), {226, 134, 145, 0}},
+ {-1,{0}},
+#line 632 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2086), {226, 170, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1640 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2090), {226, 170, 176, 0}},
+#line 739 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2091), {226, 132, 145, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1526 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2096), {197, 153, 0}},
+ {-1,{0}},
+#line 856 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2098), {196, 190, 0}},
+#line 1349 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2099), {240, 157, 149, 134}},
+#line 1636 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2100), {197, 161, 0}},
+#line 88 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2101), {226, 136, 189, 0}},
#line 1828 "src/html_unescape.gperf"
- {"tbrk", 3, {226, 142, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1887 "src/html_unescape.gperf"
- {"triplus", 3, {226, 168, 185}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 379 "src/html_unescape.gperf"
- {"diamond", 3, {226, 139, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1097 "src/html_unescape.gperf"
- {"ncup", 3, {226, 169, 130}},
- {(char*)0,0,{0}},
-#line 97 "src/html_unescape.gperf"
- {"bbrk", 3, {226, 142, 181}},
- {(char*)0,0,{0}},
-#line 587 "src/html_unescape.gperf"
- {"frown", 3, {226, 140, 162}},
-#line 129 "src/html_unescape.gperf"
- {"bkarow", 3, {226, 164, 141}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str2102), {197, 164, 0}},
+#line 2110 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2103), {197, 189, 0}},
+#line 462 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2104), {196, 155, 0}},
+ {-1,{0}},
+#line 108 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2106), {226, 132, 172, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1121 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2110), {226, 137, 177, 0}},
+#line 1829 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2111), {197, 165, 0}},
+ {-1,{0}},
+#line 566 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2113), {226, 139, 148, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 701 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2119), {226, 132, 139, 0}},
+ {-1,{0}},
+#line 1091 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2121), {197, 136, 0}},
+#line 487 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2122), {226, 170, 151, 0}},
+ {-1,{0}},
+#line 1827 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2124), {226, 142, 180, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1886 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2128), {226, 168, 185, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 378 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2131), {226, 139, 132, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1096 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2134), {226, 169, 130, 0}},
+ {-1,{0}},
+#line 96 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2136), {226, 142, 181, 0}},
+ {-1,{0}},
+#line 586 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2138), {226, 140, 162, 0}},
+#line 128 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2139), {226, 164, 141, 0}},
+ {-1,{0}},
+#line 1713 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2141), {226, 153, 160, 0}},
+ {-1,{0}},
+#line 1469 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2143), {207, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 144 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2150), {240, 157, 148, 185}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 394 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2156), {36, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 385 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2164), {226, 139, 178, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1714 "src/html_unescape.gperf"
- {"spades", 3, {226, 153, 160}},
- {(char*)0,0,{0}},
-#line 1470 "src/html_unescape.gperf"
- {"psi", 2, {207, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 145 "src/html_unescape.gperf"
- {"Bopf", 4, {240, 157, 148, 185}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 395 "src/html_unescape.gperf"
- {"dollar", 1, {36}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 386 "src/html_unescape.gperf"
- {"disin", 3, {226, 139, 178}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1715 "src/html_unescape.gperf"
- {"spadesuit", 3, {226, 153, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1226 "src/html_unescape.gperf"
- {"NotTilde", 3, {226, 137, 129}},
-#line 407 "src/html_unescape.gperf"
- {"doublebarwedge", 3, {226, 140, 134}},
- {(char*)0,0,{0}},
-#line 595 "src/html_unescape.gperf"
- {"gap", 3, {226, 170, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 98 "src/html_unescape.gperf"
- {"bbrktbrk", 3, {226, 142, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1821 "src/html_unescape.gperf"
- {"swarrow", 3, {226, 134, 153}},
-#line 107 "src/html_unescape.gperf"
- {"bepsi", 2, {207, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 771 "src/html_unescape.gperf"
- {"Iscr", 3, {226, 132, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1228 "src/html_unescape.gperf"
- {"NotTildeFullEqual", 3, {226, 137, 135}},
-#line 514 "src/html_unescape.gperf"
- {"eqcolon", 3, {226, 137, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1864 "src/html_unescape.gperf"
- {"tint", 3, {226, 136, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 757 "src/html_unescape.gperf"
- {"intprod", 3, {226, 168, 188}},
- {(char*)0,0,{0}},
-#line 1272 "src/html_unescape.gperf"
- {"nsupE", 3, {226, 171, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1309 "src/html_unescape.gperf"
- {"nwarrow", 3, {226, 134, 150}},
-#line 1264 "src/html_unescape.gperf"
- {"nsubE", 3, {226, 171, 133}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1126 "src/html_unescape.gperf"
- {"nges", 3, {226, 169, 190}},
- {(char*)0,0,{0}},
-#line 1949 "src/html_unescape.gperf"
- {"Uparrow", 3, {226, 135, 145}},
-#line 605 "src/html_unescape.gperf"
- {"ge", 3, {226, 137, 165}},
-#line 1353 "src/html_unescape.gperf"
- {"OpenCurlyDoubleQuote", 3, {226, 128, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1699 "src/html_unescape.gperf"
- {"smallsetminus", 3, {226, 136, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1636 "src/html_unescape.gperf"
- {"Scaron", 2, {197, 160}},
- {(char*)0,0,{0}},
-#line 1302 "src/html_unescape.gperf"
- {"nvltrie", 3, {226, 138, 180}},
-#line 613 "src/html_unescape.gperf"
- {"ges", 3, {226, 169, 190}},
-#line 136 "src/html_unescape.gperf"
- {"blank", 3, {226, 144, 163}},
-#line 1485 "src/html_unescape.gperf"
- {"QUOT", 1, {34}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 140 "src/html_unescape.gperf"
- {"block", 3, {226, 150, 136}},
-#line 1874 "src/html_unescape.gperf"
- {"trade", 3, {226, 132, 162}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 795 "src/html_unescape.gperf"
- {"jscr", 4, {240, 157, 146, 191}},
-#line 2047 "src/html_unescape.gperf"
- {"wedge", 3, {226, 136, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 30 "src/html_unescape.gperf"
- {"Amacr", 2, {196, 128}},
- {(char*)0,0,{0}},
-#line 518 "src/html_unescape.gperf"
- {"Equal", 3, {226, 169, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 352 "src/html_unescape.gperf"
- {"Dcaron", 2, {196, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 400 "src/html_unescape.gperf"
- {"DotDot", 3, {226, 131, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str2170), {226, 153, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1225 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2176), {226, 137, 129, 0}},
+#line 406 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2177), {226, 140, 134, 0}},
+ {-1,{0}},
+#line 594 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2179), {226, 170, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 97 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2186), {226, 142, 182, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1820 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2189), {226, 134, 153, 0}},
+#line 106 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2190), {207, 182, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 770 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2194), {226, 132, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1227 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2198), {226, 137, 135, 0}},
+#line 513 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2199), {226, 137, 149, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1863 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2202), {226, 136, 173, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 756 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2205), {226, 168, 188, 0}},
+ {-1,{0}},
+#line 1271 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2207), {226, 171, 134, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1308 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2210), {226, 134, 150, 0}},
+#line 1263 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2211), {226, 171, 133, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1125 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2214), {226, 169, 190, 0}},
+ {-1,{0}},
+#line 1948 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2216), {226, 135, 145, 0}},
+#line 604 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2217), {226, 137, 165, 0}},
+#line 1352 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2218), {226, 128, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1698 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2223), {226, 136, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1635 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2228), {197, 160, 0}},
+ {-1,{0}},
+#line 1301 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2230), {226, 138, 180, 0}},
+#line 612 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2231), {226, 169, 190, 0}},
+#line 135 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2232), {226, 144, 163, 0}},
+#line 1484 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2233), {34, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 139 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2238), {226, 150, 136, 0}},
+#line 1873 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2239), {226, 132, 162, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 794 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2245), {240, 157, 146, 191}},
+#line 2046 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2246), {226, 136, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 29 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2254), {196, 128, 0}},
+ {-1,{0}},
+#line 517 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2256), {226, 169, 181, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 351 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2259), {196, 142, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 399 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2262), {226, 131, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 634 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2270), {226, 170, 136, 0}},
+#line 1990 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2271), {226, 136, 157, 0}},
+ {-1,{0}},
#line 635 "src/html_unescape.gperf"
- {"gneq", 3, {226, 170, 136}},
-#line 1991 "src/html_unescape.gperf"
- {"varpropto", 3, {226, 136, 157}},
- {(char*)0,0,{0}},
-#line 636 "src/html_unescape.gperf"
- {"gneqq", 3, {226, 137, 169}},
+ {offsetof(struct entity_pool_t, entity_pool_str2273), {226, 137, 169, 0}},
+#line 1461 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2274), {226, 136, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 774 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2279), {226, 139, 180, 0}},
+ {-1,{0}},
+#line 469 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2281), {226, 169, 183, 0}},
+#line 771 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2282), {226, 136, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1885 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2286), {226, 131, 155, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 568 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2290), {226, 132, 177, 0}},
#line 1462 "src/html_unescape.gperf"
- {"Proportional", 3, {226, 136, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 775 "src/html_unescape.gperf"
- {"isins", 3, {226, 139, 180}},
- {(char*)0,0,{0}},
-#line 470 "src/html_unescape.gperf"
- {"eDDot", 3, {226, 169, 183}},
-#line 772 "src/html_unescape.gperf"
- {"isin", 3, {226, 136, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1886 "src/html_unescape.gperf"
- {"TripleDot", 3, {226, 131, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 569 "src/html_unescape.gperf"
- {"Fouriertrf", 3, {226, 132, 177}},
-#line 1463 "src/html_unescape.gperf"
- {"Proportion", 3, {226, 136, 183}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str2291), {226, 136, 183, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1122 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2294), {226, 137, 177, 0}},
+#line 855 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2295), {196, 189, 0}},
+ {-1,{0}},
#line 1123 "src/html_unescape.gperf"
- {"ngeq", 3, {226, 137, 177}},
-#line 856 "src/html_unescape.gperf"
- {"Lcaron", 2, {196, 189}},
- {(char*)0,0,{0}},
-#line 1124 "src/html_unescape.gperf"
- {"ngeqq", 3, {226, 137, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 871 "src/html_unescape.gperf"
- {"lE", 3, {226, 137, 166}},
-#line 228 "src/html_unescape.gperf"
- {"Ccaron", 2, {196, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 200 "src/html_unescape.gperf"
- {"bsemi", 3, {226, 129, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1464 "src/html_unescape.gperf"
- {"propto", 3, {226, 136, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 915 "src/html_unescape.gperf"
- {"lesdot", 3, {226, 169, 191}},
-#line 292 "src/html_unescape.gperf"
- {"Conint", 3, {226, 136, 175}},
- {(char*)0,0,{0}},
-#line 36 "src/html_unescape.gperf"
- {"And", 3, {226, 169, 147}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1660 "src/html_unescape.gperf"
- {"searrow", 3, {226, 134, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1367 "src/html_unescape.gperf"
- {"orslope", 3, {226, 169, 151}},
-#line 677 "src/html_unescape.gperf"
- {"harr", 3, {226, 134, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str2297), {226, 137, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 870 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2313), {226, 137, 166, 0}},
+#line 227 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2314), {196, 140, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 199 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2320), {226, 129, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1463 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2326), {226, 136, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 914 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2331), {226, 169, 191, 0}},
+#line 291 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2332), {226, 136, 175, 0}},
+ {-1,{0}},
+#line 35 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2334), {226, 169, 147, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1659 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2338), {226, 134, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1366 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2343), {226, 169, 151, 0}},
+#line 676 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2344), {226, 134, 148, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 845 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2350), {226, 170, 173, 0}},
+ {-1,{0}},
+#line 243 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2352), {194, 183, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1328 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2355), {240, 157, 148, 172}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1103 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2359), {226, 134, 151, 0}},
+ {-1,{0}},
+#line 1473 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2361), {226, 168, 140, 0}},
+ {-1,{0}}, {-1,{0}},
#line 846 "src/html_unescape.gperf"
- {"late", 3, {226, 170, 173}},
- {(char*)0,0,{0}},
-#line 244 "src/html_unescape.gperf"
- {"CenterDot", 2, {194, 183}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1329 "src/html_unescape.gperf"
- {"ofr", 4, {240, 157, 148, 172}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1104 "src/html_unescape.gperf"
- {"nearrow", 3, {226, 134, 151}},
- {(char*)0,0,{0}},
-#line 1474 "src/html_unescape.gperf"
- {"qint", 3, {226, 168, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 847 "src/html_unescape.gperf"
- {"lates", 3, {226, 170, 173}},
-#line 802 "src/html_unescape.gperf"
- {"kappav", 2, {207, 176}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 699 "src/html_unescape.gperf"
- {"horbar", 3, {226, 128, 149}},
-#line 476 "src/html_unescape.gperf"
- {"Efr", 4, {240, 157, 148, 136}},
-#line 693 "src/html_unescape.gperf"
- {"hoarr", 3, {226, 135, 191}},
-#line 1240 "src/html_unescape.gperf"
- {"npre", 3, {226, 170, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 748 "src/html_unescape.gperf"
- {"inodot", 2, {196, 177}},
- {(char*)0,0,{0}},
-#line 1916 "src/html_unescape.gperf"
- {"udarr", 3, {226, 135, 133}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 609 "src/html_unescape.gperf"
- {"geq", 3, {226, 137, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1258 "src/html_unescape.gperf"
- {"nsimeq", 3, {226, 137, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 610 "src/html_unescape.gperf"
- {"geqq", 3, {226, 137, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str2364), {226, 170, 173, 0}},
+#line 801 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2365), {207, 176, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 698 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2368), {226, 128, 149, 0}},
#line 475 "src/html_unescape.gperf"
- {"efDot", 3, {226, 137, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1611 "src/html_unescape.gperf"
- {"rpargt", 3, {226, 166, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1370 "src/html_unescape.gperf"
- {"Oscr", 4, {240, 157, 146, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1419 "src/html_unescape.gperf"
- {"plusdo", 3, {226, 136, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 822 "src/html_unescape.gperf"
- {"lagran", 3, {226, 132, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1847 "src/html_unescape.gperf"
- {"thicksim", 3, {226, 136, 188}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1446 "src/html_unescape.gperf"
- {"precnsim", 3, {226, 139, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1091 "src/html_unescape.gperf"
- {"Ncaron", 2, {197, 135}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1080 "src/html_unescape.gperf"
- {"napE", 3, {226, 169, 176}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 728 "src/html_unescape.gperf"
- {"iiint", 3, {226, 136, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 199 "src/html_unescape.gperf"
- {"Bscr", 3, {226, 132, 172}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1036 "src/html_unescape.gperf"
- {"mapstodown", 3, {226, 134, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1994 "src/html_unescape.gperf"
- {"varrho", 2, {207, 177}},
- {(char*)0,0,{0}},
-#line 776 "src/html_unescape.gperf"
- {"isinsv", 3, {226, 139, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1297 "src/html_unescape.gperf"
- {"nvHarr", 3, {226, 164, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1192 "src/html_unescape.gperf"
- {"NotLeftTriangleBar", 3, {226, 167, 143}},
- {(char*)0,0,{0}},
-#line 521 "src/html_unescape.gperf"
- {"equest", 3, {226, 137, 159}},
- {(char*)0,0,{0}},
-#line 1194 "src/html_unescape.gperf"
- {"NotLeftTriangleEqual", 3, {226, 139, 172}},
+ {offsetof(struct entity_pool_t, entity_pool_str2369), {240, 157, 148, 136}},
+#line 692 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2370), {226, 135, 191, 0}},
+#line 1239 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2371), {226, 170, 175, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 747 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2377), {196, 177, 0}},
+ {-1,{0}},
+#line 1915 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2379), {226, 135, 133, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 608 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2386), {226, 137, 165, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1257 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2391), {226, 137, 132, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 609 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2404), {226, 137, 167, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 474 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2407), {226, 137, 146, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1610 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2410), {226, 166, 148, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1369 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2419), {240, 157, 146, 170}},
+ {-1,{0}}, {-1,{0}},
+#line 1418 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2422), {226, 136, 148, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 821 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2425), {226, 132, 146, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1846 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2429), {226, 136, 188, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1445 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2440), {226, 139, 168, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1090 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2444), {197, 135, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1079 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2449), {226, 169, 176, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 727 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2457), {226, 136, 173, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 198 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2470), {226, 132, 172, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1035 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2483), {226, 134, 167, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1993 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2486), {207, 177, 0}},
+ {-1,{0}},
+#line 775 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2488), {226, 139, 179, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1296 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2491), {226, 164, 132, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1191 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2494), {226, 167, 143, 0}},
+ {-1,{0}},
+#line 520 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2496), {226, 137, 159, 0}},
+ {-1,{0}},
#line 1193 "src/html_unescape.gperf"
- {"NotLeftTriangle", 3, {226, 139, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 61 "src/html_unescape.gperf"
- {"Aopf", 4, {240, 157, 148, 184}},
-#line 681 "src/html_unescape.gperf"
- {"hbar", 3, {226, 132, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1985 "src/html_unescape.gperf"
- {"vangrt", 3, {226, 166, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 689 "src/html_unescape.gperf"
- {"Hfr", 3, {226, 132, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1495 "src/html_unescape.gperf"
- {"range", 3, {226, 166, 165}},
+ {offsetof(struct entity_pool_t, entity_pool_str2498), {226, 139, 172, 0}},
+#line 1192 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2499), {226, 139, 170, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 60 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2502), {240, 157, 148, 184}},
+#line 680 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2503), {226, 132, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1984 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2507), {226, 166, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 688 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2511), {226, 132, 140, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1494 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2517), {226, 166, 165, 0}},
+#line 1704 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2518), {226, 170, 172, 0}},
+#line 1002 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2519), {226, 137, 178, 0}},
+ {-1,{0}},
+#line 1234 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2521), {226, 168, 148, 0}},
+ {-1,{0}},
+#line 352 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2523), {196, 143, 0}},
+ {-1,{0}},
+#line 531 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2525), {226, 137, 130, 0}},
+ {-1,{0}},
+#line 1939 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2527), {226, 139, 131, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1705 "src/html_unescape.gperf"
- {"smte", 3, {226, 170, 172}},
-#line 1003 "src/html_unescape.gperf"
- {"lsim", 3, {226, 137, 178}},
- {(char*)0,0,{0}},
-#line 1235 "src/html_unescape.gperf"
- {"npolint", 3, {226, 168, 148}},
- {(char*)0,0,{0}},
-#line 353 "src/html_unescape.gperf"
- {"dcaron", 2, {196, 143}},
- {(char*)0,0,{0}},
-#line 532 "src/html_unescape.gperf"
- {"esim", 3, {226, 137, 130}},
- {(char*)0,0,{0}},
-#line 1940 "src/html_unescape.gperf"
- {"Union", 3, {226, 139, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1706 "src/html_unescape.gperf"
- {"smtes", 3, {226, 170, 172}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 815 "src/html_unescape.gperf"
- {"kopf", 4, {240, 157, 149, 156}},
-#line 639 "src/html_unescape.gperf"
- {"gopf", 4, {240, 157, 149, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1256 "src/html_unescape.gperf"
- {"nsim", 3, {226, 137, 129}},
- {(char*)0,0,{0}},
-#line 201 "src/html_unescape.gperf"
- {"bsim", 3, {226, 136, 189}},
- {(char*)0,0,{0}},
-#line 1698 "src/html_unescape.gperf"
- {"SmallCircle", 3, {226, 136, 152}},
- {(char*)0,0,{0}},
-#line 1172 "src/html_unescape.gperf"
- {"NotDoubleVerticalBar", 3, {226, 136, 166}},
-#line 1201 "src/html_unescape.gperf"
- {"NotNestedGreaterGreater", 3, {226, 170, 162}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 520 "src/html_unescape.gperf"
- {"EqualTilde", 3, {226, 137, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1187 "src/html_unescape.gperf"
- {"notindot", 3, {226, 139, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1526 "src/html_unescape.gperf"
- {"Rcaron", 2, {197, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1430 "src/html_unescape.gperf"
- {"Popf", 3, {226, 132, 153}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str2532), {226, 170, 172, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 814 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2536), {240, 157, 149, 156}},
#line 638 "src/html_unescape.gperf"
- {"Gopf", 4, {240, 157, 148, 190}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 723 "src/html_unescape.gperf"
- {"Ifr", 3, {226, 132, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2049 "src/html_unescape.gperf"
- {"wedgeq", 3, {226, 137, 153}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1456 "src/html_unescape.gperf"
- {"prod", 3, {226, 136, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1374 "src/html_unescape.gperf"
- {"osol", 3, {226, 138, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 419 "src/html_unescape.gperf"
- {"DoubleUpArrow", 3, {226, 135, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 290 "src/html_unescape.gperf"
- {"Congruent", 3, {226, 137, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str2537), {240, 157, 149, 152}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1255 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2542), {226, 137, 129, 0}},
+ {-1,{0}},
+#line 200 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2544), {226, 136, 189, 0}},
+ {-1,{0}},
+#line 1697 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2546), {226, 136, 152, 0}},
+ {-1,{0}},
+#line 1171 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2548), {226, 136, 166, 0}},
+#line 1200 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2549), {226, 170, 162, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 519 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2565), {226, 137, 130, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1186 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2568), {226, 139, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1525 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2572), {197, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1429 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2577), {226, 132, 153, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 637 "src/html_unescape.gperf"
- {"gnsim", 3, {226, 139, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1651 "src/html_unescape.gperf"
- {"scsim", 3, {226, 137, 191}},
- {(char*)0,0,{0}},
-#line 790 "src/html_unescape.gperf"
- {"jfr", 4, {240, 157, 148, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1962 "src/html_unescape.gperf"
- {"upsih", 2, {207, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1156 "src/html_unescape.gperf"
- {"nLl", 3, {226, 139, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 420 "src/html_unescape.gperf"
- {"DoubleUpDownArrow", 3, {226, 135, 149}},
- {(char*)0,0,{0}},
-#line 1128 "src/html_unescape.gperf"
- {"ngsim", 3, {226, 137, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str2583), {240, 157, 148, 190}},
+ {-1,{0}}, {-1,{0}},
+#line 722 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2586), {226, 132, 145, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 2048 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2589), {226, 137, 153, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1455 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2595), {226, 136, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1373 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2617), {226, 138, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 418 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2624), {226, 135, 145, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 289 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2627), {226, 137, 161, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 636 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2631), {226, 139, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1650 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2635), {226, 137, 191, 0}},
+ {-1,{0}},
+#line 789 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2637), {240, 157, 148, 167}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1961 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2645), {207, 146, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1155 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2650), {226, 139, 152, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 419 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2653), {226, 135, 149, 0}},
+ {-1,{0}},
+#line 1127 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2655), {226, 137, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 683 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2664), {226, 153, 165, 0}},
+ {-1,{0}},
+#line 921 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2666), {226, 139, 154, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1111 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2670), {226, 164, 168, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 541 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2676), {226, 136, 131, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1702 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2687), {226, 140, 163, 0}},
+ {-1,{0}},
+#line 1983 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2689), {226, 166, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 684 "src/html_unescape.gperf"
- {"hearts", 3, {226, 153, 165}},
- {(char*)0,0,{0}},
-#line 922 "src/html_unescape.gperf"
- {"lesseqgtr", 3, {226, 139, 154}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1112 "src/html_unescape.gperf"
- {"nesear", 3, {226, 164, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 542 "src/html_unescape.gperf"
- {"Exists", 3, {226, 136, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1703 "src/html_unescape.gperf"
- {"smile", 3, {226, 140, 163}},
- {(char*)0,0,{0}},
-#line 1984 "src/html_unescape.gperf"
- {"uwangle", 3, {226, 166, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 685 "src/html_unescape.gperf"
- {"heartsuit", 3, {226, 153, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 700 "src/html_unescape.gperf"
- {"HorizontalLine", 3, {226, 148, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 645 "src/html_unescape.gperf"
- {"GreaterLess", 3, {226, 137, 183}},
- {(char*)0,0,{0}},
-#line 1615 "src/html_unescape.gperf"
- {"rsaquo", 3, {226, 128, 186}},
- {(char*)0,0,{0}},
-#line 998 "src/html_unescape.gperf"
- {"lsaquo", 3, {226, 128, 185}},
- {(char*)0,0,{0}},
-#line 1540 "src/html_unescape.gperf"
- {"realine", 3, {226, 132, 155}},
-#line 348 "src/html_unescape.gperf"
- {"Dashv", 3, {226, 171, 164}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1687 "src/html_unescape.gperf"
- {"simdot", 3, {226, 169, 170}},
-#line 641 "src/html_unescape.gperf"
- {"GreaterEqual", 3, {226, 137, 165}},
-#line 647 "src/html_unescape.gperf"
- {"GreaterTilde", 3, {226, 137, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 642 "src/html_unescape.gperf"
- {"GreaterEqualLess", 3, {226, 139, 155}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str2693), {226, 153, 165, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 699 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2700), {226, 148, 128, 0}},
+ {-1,{0}}, {-1,{0}},
#line 644 "src/html_unescape.gperf"
- {"GreaterGreater", 3, {226, 170, 162}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1530 "src/html_unescape.gperf"
- {"rceil", 3, {226, 140, 137}},
- {(char*)0,0,{0}},
-#line 860 "src/html_unescape.gperf"
- {"lceil", 3, {226, 140, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 927 "src/html_unescape.gperf"
- {"lessgtr", 3, {226, 137, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1340 "src/html_unescape.gperf"
- {"oline", 3, {226, 128, 190}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1852 "src/html_unescape.gperf"
- {"thksim", 3, {226, 136, 188}},
- {(char*)0,0,{0}},
-#line 759 "src/html_unescape.gperf"
- {"InvisibleTimes", 3, {226, 129, 162}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1487 "src/html_unescape.gperf"
- {"race", 3, {226, 136, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 769 "src/html_unescape.gperf"
- {"iquest", 2, {194, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 737 "src/html_unescape.gperf"
- {"imagline", 3, {226, 132, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1966 "src/html_unescape.gperf"
- {"UpTee", 3, {226, 138, 165}},
- {(char*)0,0,{0}},
-#line 1053 "src/html_unescape.gperf"
- {"midcir", 3, {226, 171, 176}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str2703), {226, 137, 183, 0}},
+ {-1,{0}},
+#line 1614 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2705), {226, 128, 186, 0}},
+ {-1,{0}},
+#line 997 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2707), {226, 128, 185, 0}},
+ {-1,{0}},
+#line 1539 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2709), {226, 132, 155, 0}},
+#line 347 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2710), {226, 171, 164, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1686 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2714), {226, 169, 170, 0}},
+#line 640 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2715), {226, 137, 165, 0}},
+#line 646 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2716), {226, 137, 179, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 641 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2721), {226, 139, 155, 0}},
+ {-1,{0}},
+#line 643 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2723), {226, 170, 162, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1529 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2737), {226, 140, 137, 0}},
+ {-1,{0}},
+#line 859 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2739), {226, 140, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 926 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2743), {226, 137, 182, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1339 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2746), {226, 128, 190, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1851 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2753), {226, 136, 188, 0}},
+ {-1,{0}},
+#line 758 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2755), {226, 129, 162, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1486 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2762), {226, 136, 189, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 768 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2766), {194, 191, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 736 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2774), {226, 132, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1965 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2779), {226, 138, 165, 0}},
+ {-1,{0}},
+#line 1052 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2781), {226, 171, 176, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1326 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2790), {226, 166, 191, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 356 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2793), {226, 135, 138, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1493 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2800), {226, 166, 146, 0}},
+ {-1,{0}},
+#line 826 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2802), {226, 166, 145, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 521 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2808), {226, 135, 140, 0}},
+#line 1389 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2809), {226, 171, 179, 0}},
+#line 2011 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2810), {226, 171, 166, 0}},
#line 1327 "src/html_unescape.gperf"
- {"ofcir", 3, {226, 166, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 357 "src/html_unescape.gperf"
- {"ddarr", 3, {226, 135, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1494 "src/html_unescape.gperf"
- {"rangd", 3, {226, 166, 146}},
- {(char*)0,0,{0}},
-#line 827 "src/html_unescape.gperf"
- {"langd", 3, {226, 166, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 522 "src/html_unescape.gperf"
- {"Equilibrium", 3, {226, 135, 140}},
-#line 1390 "src/html_unescape.gperf"
- {"parsim", 3, {226, 171, 179}},
-#line 2012 "src/html_unescape.gperf"
- {"Vdashl", 3, {226, 171, 166}},
-#line 1328 "src/html_unescape.gperf"
- {"Ofr", 4, {240, 157, 148, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 105 "src/html_unescape.gperf"
- {"Because", 3, {226, 136, 181}},
- {(char*)0,0,{0}},
-#line 1514 "src/html_unescape.gperf"
- {"rAtail", 3, {226, 164, 156}},
- {(char*)0,0,{0}},
-#line 844 "src/html_unescape.gperf"
- {"lAtail", 3, {226, 164, 155}},
-#line 1349 "src/html_unescape.gperf"
- {"ominus", 3, {226, 138, 150}},
-#line 74 "src/html_unescape.gperf"
- {"Ascr", 4, {240, 157, 146, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 510 "src/html_unescape.gperf"
- {"Epsilon", 2, {206, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1676 "src/html_unescape.gperf"
- {"ShortLeftArrow", 3, {226, 134, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 777 "src/html_unescape.gperf"
- {"isinv", 3, {226, 136, 136}},
- {(char*)0,0,{0}},
-#line 1051 "src/html_unescape.gperf"
- {"micro", 2, {194, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2112 "src/html_unescape.gperf"
- {"zcaron", 2, {197, 190}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 817 "src/html_unescape.gperf"
- {"kscr", 4, {240, 157, 147, 128}},
-#line 649 "src/html_unescape.gperf"
- {"gscr", 3, {226, 132, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 114 "src/html_unescape.gperf"
- {"Bfr", 4, {240, 157, 148, 133}},
-#line 608 "src/html_unescape.gperf"
- {"gel", 3, {226, 139, 155}},
-#line 687 "src/html_unescape.gperf"
- {"hercon", 3, {226, 138, 185}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1885 "src/html_unescape.gperf"
- {"triminus", 3, {226, 168, 186}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 480 "src/html_unescape.gperf"
- {"egrave", 2, {195, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1655 "src/html_unescape.gperf"
- {"sdot", 3, {226, 139, 133}},
-#line 1924 "src/html_unescape.gperf"
- {"ugrave", 2, {195, 185}},
- {(char*)0,0,{0}},
-#line 2115 "src/html_unescape.gperf"
- {"Zdot", 2, {197, 187}},
-#line 472 "src/html_unescape.gperf"
- {"edot", 2, {196, 151}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1229 "src/html_unescape.gperf"
- {"NotTildeTilde", 3, {226, 137, 137}},
- {(char*)0,0,{0}},
-#line 1835 "src/html_unescape.gperf"
- {"tdot", 3, {226, 131, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1467 "src/html_unescape.gperf"
- {"Pscr", 4, {240, 157, 146, 171}},
-#line 1408 "src/html_unescape.gperf"
- {"Pi", 2, {206, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str2811), {240, 157, 148, 146}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 104 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2816), {226, 136, 181, 0}},
+ {-1,{0}},
+#line 1513 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2818), {226, 164, 156, 0}},
+ {-1,{0}},
+#line 843 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2820), {226, 164, 155, 0}},
+#line 1348 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2821), {226, 138, 150, 0}},
+#line 73 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2822), {240, 157, 146, 156}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 509 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2826), {206, 149, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1675 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2832), {226, 134, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 776 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2845), {226, 136, 136, 0}},
+ {-1,{0}},
+#line 1050 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2847), {194, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2111 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2851), {197, 190, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 816 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2856), {240, 157, 147, 128}},
#line 648 "src/html_unescape.gperf"
- {"Gscr", 4, {240, 157, 146, 162}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1425 "src/html_unescape.gperf"
- {"plustwo", 3, {226, 168, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1173 "src/html_unescape.gperf"
- {"NotElement", 3, {226, 136, 137}},
- {(char*)0,0,{0}},
-#line 1422 "src/html_unescape.gperf"
- {"PlusMinus", 2, {194, 177}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 697 "src/html_unescape.gperf"
- {"hopf", 4, {240, 157, 149, 153}},
-#line 594 "src/html_unescape.gperf"
- {"gammad", 2, {207, 157}},
- {(char*)0,0,{0}},
-#line 1044 "src/html_unescape.gperf"
- {"mDDot", 3, {226, 136, 186}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 389 "src/html_unescape.gperf"
- {"divideontimes", 3, {226, 139, 135}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 401 "src/html_unescape.gperf"
- {"doteq", 3, {226, 137, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1986 "src/html_unescape.gperf"
- {"varepsilon", 2, {207, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1439 "src/html_unescape.gperf"
- {"Precedes", 3, {226, 137, 186}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str2857), {226, 132, 138, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 113 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2862), {240, 157, 148, 133}},
+#line 607 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2863), {226, 139, 155, 0}},
+#line 686 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2864), {226, 138, 185, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1884 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2871), {226, 168, 186, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 479 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2877), {195, 168, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1654 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2881), {226, 139, 133, 0}},
+#line 1923 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2882), {195, 185, 0}},
+ {-1,{0}},
+#line 2114 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2884), {197, 187, 0}},
+#line 471 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2885), {196, 151, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1228 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2890), {226, 137, 137, 0}},
+ {-1,{0}},
+#line 1834 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2892), {226, 131, 155, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1466 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2897), {240, 157, 146, 171}},
+#line 1407 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2898), {206, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 647 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2903), {240, 157, 146, 162}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1424 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2910), {226, 168, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1172 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2914), {226, 136, 137, 0}},
+ {-1,{0}},
+#line 1421 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2916), {194, 177, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 696 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2919), {240, 157, 149, 153}},
#line 593 "src/html_unescape.gperf"
- {"Gammad", 2, {207, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str2920), {207, 157, 0}},
+ {-1,{0}},
+#line 1043 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2922), {226, 136, 186, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 388 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2926), {226, 139, 135, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 400 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2940), {226, 137, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1985 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2956), {207, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1438 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2963), {226, 137, 186, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 592 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2966), {207, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 348 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2974), {226, 138, 163, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1169 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2979), {226, 137, 162, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1910 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2982), {197, 173, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1332 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2990), {226, 167, 129, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1608 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str2994), {226, 165, 176, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1440 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3002), {226, 137, 188, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1687 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3005), {226, 137, 131, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1922 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3014), {195, 153, 0}},
+ {-1,{0}},
#line 349 "src/html_unescape.gperf"
- {"dashv", 3, {226, 138, 163}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1170 "src/html_unescape.gperf"
- {"NotCongruent", 3, {226, 137, 162}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1911 "src/html_unescape.gperf"
- {"ubreve", 2, {197, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1333 "src/html_unescape.gperf"
- {"ogt", 3, {226, 167, 129}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1609 "src/html_unescape.gperf"
- {"RoundImplies", 3, {226, 165, 176}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1441 "src/html_unescape.gperf"
- {"PrecedesSlantEqual", 3, {226, 137, 188}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1688 "src/html_unescape.gperf"
- {"sime", 3, {226, 137, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1923 "src/html_unescape.gperf"
- {"Ugrave", 2, {195, 153}},
- {(char*)0,0,{0}},
-#line 350 "src/html_unescape.gperf"
- {"dbkarow", 3, {226, 164, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1656 "src/html_unescape.gperf"
- {"sdote", 3, {226, 169, 166}},
- {(char*)0,0,{0}},
-#line 2016 "src/html_unescape.gperf"
- {"veeeq", 3, {226, 137, 154}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1035 "src/html_unescape.gperf"
- {"mapsto", 3, {226, 134, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1862 "src/html_unescape.gperf"
- {"times", 2, {195, 151}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1496 "src/html_unescape.gperf"
- {"rangle", 3, {226, 159, 169}},
- {(char*)0,0,{0}},
-#line 828 "src/html_unescape.gperf"
- {"langle", 3, {226, 159, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 878 "src/html_unescape.gperf"
- {"leftarrowtail", 3, {226, 134, 162}},
-#line 673 "src/html_unescape.gperf"
- {"hamilt", 3, {226, 132, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1919 "src/html_unescape.gperf"
- {"udhar", 3, {226, 165, 174}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1138 "src/html_unescape.gperf"
- {"nisd", 3, {226, 139, 186}},
- {(char*)0,0,{0}},
-#line 1550 "src/html_unescape.gperf"
- {"rfisht", 3, {226, 165, 189}},
- {(char*)0,0,{0}},
-#line 932 "src/html_unescape.gperf"
- {"lfisht", 3, {226, 165, 188}},
-#line 676 "src/html_unescape.gperf"
- {"harrcir", 3, {226, 165, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1354 "src/html_unescape.gperf"
- {"OpenCurlyQuote", 3, {226, 128, 152}},
- {(char*)0,0,{0}},
-#line 1920 "src/html_unescape.gperf"
- {"ufisht", 3, {226, 165, 190}},
-#line 1184 "src/html_unescape.gperf"
- {"NotHumpDownHump", 3, {226, 137, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 896 "src/html_unescape.gperf"
- {"LeftTee", 3, {226, 138, 163}},
- {(char*)0,0,{0}},
-#line 1618 "src/html_unescape.gperf"
- {"rsh", 3, {226, 134, 177}},
- {(char*)0,0,{0}},
-#line 1001 "src/html_unescape.gperf"
- {"lsh", 3, {226, 134, 176}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 668 "src/html_unescape.gperf"
- {"gvertneqq", 3, {226, 137, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str3016), {226, 164, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1655 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3021), {226, 169, 166, 0}},
+ {-1,{0}},
+#line 2015 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3023), {226, 137, 154, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1034 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3027), {226, 134, 166, 0}},
+ {-1,{0}}, {-1,{0}},
#line 1861 "src/html_unescape.gperf"
- {"timesb", 3, {226, 138, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1650 "src/html_unescape.gperf"
- {"scpolint", 3, {226, 168, 147}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 237 "src/html_unescape.gperf"
- {"Cdot", 2, {196, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 455 "src/html_unescape.gperf"
- {"dwangle", 3, {226, 166, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1910 "src/html_unescape.gperf"
- {"Ubreve", 2, {197, 172}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 905 "src/html_unescape.gperf"
- {"LeftUpVector", 3, {226, 134, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str3030), {195, 151, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1495 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3033), {226, 159, 169, 0}},
+ {-1,{0}},
+#line 827 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3035), {226, 159, 168, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 877 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3038), {226, 134, 162, 0}},
+#line 672 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3039), {226, 132, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1918 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3044), {226, 165, 174, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1137 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3053), {226, 139, 186, 0}},
+ {-1,{0}},
+#line 1549 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3055), {226, 165, 189, 0}},
+ {-1,{0}},
+#line 931 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3057), {226, 165, 188, 0}},
+#line 675 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3058), {226, 165, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1353 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3066), {226, 128, 152, 0}},
+ {-1,{0}},
+#line 1919 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3068), {226, 165, 190, 0}},
+#line 1183 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3069), {226, 137, 142, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 895 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3072), {226, 138, 163, 0}},
+ {-1,{0}},
+#line 1617 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3074), {226, 134, 177, 0}},
+ {-1,{0}},
+#line 1000 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3076), {226, 134, 176, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 667 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3080), {226, 137, 169, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1860 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3083), {226, 138, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1649 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3092), {226, 168, 147, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 236 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3095), {196, 138, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 454 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3103), {226, 166, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1909 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3114), {197, 172, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
#line 904 "src/html_unescape.gperf"
- {"LeftUpVectorBar", 3, {226, 165, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 462 "src/html_unescape.gperf"
- {"Ecaron", 2, {196, 154}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 694 "src/html_unescape.gperf"
- {"homtht", 3, {226, 136, 187}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 725 "src/html_unescape.gperf"
- {"igrave", 2, {195, 172}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1239 "src/html_unescape.gperf"
- {"npreceq", 3, {226, 170, 175}},
-#line 467 "src/html_unescape.gperf"
- {"ecolon", 3, {226, 137, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 359 "src/html_unescape.gperf"
- {"dd", 3, {226, 133, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1689 "src/html_unescape.gperf"
- {"simeq", 3, {226, 137, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1188 "src/html_unescape.gperf"
- {"notinE", 3, {226, 139, 185}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 120 "src/html_unescape.gperf"
- {"bigoplus", 3, {226, 168, 129}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 22 "src/html_unescape.gperf"
- {"Afr", 4, {240, 157, 148, 132}},
-#line 874 "src/html_unescape.gperf"
- {"leftarrow", 3, {226, 134, 144}},
-#line 1336 "src/html_unescape.gperf"
- {"oint", 3, {226, 136, 174}},
- {(char*)0,0,{0}},
-#line 1824 "src/html_unescape.gperf"
- {"Tab", 1, {9}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1330 "src/html_unescape.gperf"
- {"ogon", 2, {203, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1013 "src/html_unescape.gperf"
- {"lt", 1, {60}},
-#line 1150 "src/html_unescape.gperf"
- {"nLeftrightarrow", 3, {226, 135, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1499 "src/html_unescape.gperf"
- {"rarrb", 3, {226, 135, 165}},
- {(char*)0,0,{0}},
-#line 832 "src/html_unescape.gperf"
- {"larrb", 3, {226, 135, 164}},
- {(char*)0,0,{0}},
-#line 701 "src/html_unescape.gperf"
- {"hscr", 4, {240, 157, 146, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 902 "src/html_unescape.gperf"
- {"LeftUpDownVector", 3, {226, 165, 145}},
- {(char*)0,0,{0}},
-#line 808 "src/html_unescape.gperf"
- {"kfr", 4, {240, 157, 148, 168}},
-#line 620 "src/html_unescape.gperf"
- {"gfr", 4, {240, 157, 148, 164}},
-#line 1946 "src/html_unescape.gperf"
- {"UpArrowBar", 3, {226, 164, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1251 "src/html_unescape.gperf"
- {"nsce", 3, {226, 170, 176}},
-#line 1016 "src/html_unescape.gperf"
- {"ltdot", 3, {226, 139, 150}},
-#line 617 "src/html_unescape.gperf"
- {"gesl", 3, {226, 139, 155}},
-#line 2074 "src/html_unescape.gperf"
- {"xodot", 3, {226, 168, 128}},
-#line 1748 "src/html_unescape.gperf"
- {"star", 3, {226, 152, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 984 "src/html_unescape.gperf"
- {"lowbar", 1, {95}},
- {(char*)0,0,{0}},
-#line 2066 "src/html_unescape.gperf"
- {"xharr", 3, {226, 159, 183}},
+ {offsetof(struct entity_pool_t, entity_pool_str3132), {226, 134, 191, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 903 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3135), {226, 165, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 461 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3139), {196, 154, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 693 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3142), {226, 136, 187, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 724 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3147), {195, 172, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1238 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3155), {226, 170, 175, 0}},
#line 466 "src/html_unescape.gperf"
- {"ecir", 3, {226, 137, 150}},
- {(char*)0,0,{0}},
-#line 1976 "src/html_unescape.gperf"
- {"utdot", 3, {226, 139, 176}},
-#line 1086 "src/html_unescape.gperf"
- {"natur", 3, {226, 153, 174}},
-#line 1002 "src/html_unescape.gperf"
- {"Lsh", 3, {226, 134, 176}},
-#line 746 "src/html_unescape.gperf"
- {"infin", 3, {226, 136, 158}},
- {(char*)0,0,{0}},
-#line 284 "src/html_unescape.gperf"
- {"comp", 3, {226, 136, 129}},
- {(char*)0,0,{0}},
-#line 1685 "src/html_unescape.gperf"
- {"sigmav", 2, {207, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2078 "src/html_unescape.gperf"
- {"xotime", 3, {226, 168, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1401 "src/html_unescape.gperf"
- {"Pfr", 4, {240, 157, 148, 147}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str3156), {226, 137, 149, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 358 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3167), {226, 133, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1688 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3174), {226, 137, 131, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1187 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3179), {226, 139, 185, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 119 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3198), {226, 168, 129, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 21 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3214), {240, 157, 148, 132}},
+#line 873 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3215), {226, 134, 144, 0}},
+#line 1335 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3216), {226, 136, 174, 0}},
+ {-1,{0}},
+#line 1823 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3218), {9, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1329 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3227), {203, 155, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1012 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3230), {60, 0}},
+#line 1149 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3231), {226, 135, 142, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1498 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3235), {226, 135, 165, 0}},
+ {-1,{0}},
+#line 831 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3237), {226, 135, 164, 0}},
+ {-1,{0}},
+#line 700 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3239), {240, 157, 146, 189}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 901 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3246), {226, 165, 145, 0}},
+ {-1,{0}},
+#line 807 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3248), {240, 157, 148, 168}},
#line 619 "src/html_unescape.gperf"
- {"Gfr", 4, {240, 157, 148, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 116 "src/html_unescape.gperf"
- {"bigcap", 3, {226, 139, 130}},
- {(char*)0,0,{0}},
-#line 1693 "src/html_unescape.gperf"
- {"simlE", 3, {226, 170, 159}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 727 "src/html_unescape.gperf"
- {"iiiint", 3, {226, 168, 140}},
-#line 96 "src/html_unescape.gperf"
- {"barwedge", 3, {226, 140, 133}},
-#line 95 "src/html_unescape.gperf"
- {"Barwed", 3, {226, 140, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2070 "src/html_unescape.gperf"
- {"xlarr", 3, {226, 159, 181}},
-#line 924 "src/html_unescape.gperf"
- {"LessEqualGreater", 3, {226, 139, 154}},
- {(char*)0,0,{0}},
-#line 302 "src/html_unescape.gperf"
- {"crarr", 3, {226, 134, 181}},
-#line 773 "src/html_unescape.gperf"
- {"isindot", 3, {226, 139, 181}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str3249), {240, 157, 148, 164}},
+#line 1945 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3250), {226, 164, 146, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1250 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3259), {226, 170, 176, 0}},
+#line 1015 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3260), {226, 139, 150, 0}},
+#line 616 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3261), {226, 139, 155, 0}},
+#line 2073 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3262), {226, 168, 128, 0}},
+#line 1747 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3263), {226, 152, 134, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 983 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3266), {95, 0}},
+ {-1,{0}},
+#line 2065 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3268), {226, 159, 183, 0}},
+#line 465 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3269), {226, 137, 150, 0}},
+ {-1,{0}},
+#line 1975 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3271), {226, 139, 176, 0}},
+#line 1085 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3272), {226, 153, 174, 0}},
+#line 1001 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3273), {226, 134, 176, 0}},
+#line 745 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3274), {226, 136, 158, 0}},
+ {-1,{0}},
#line 283 "src/html_unescape.gperf"
- {"commat", 1, {64}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1055 "src/html_unescape.gperf"
- {"middot", 2, {194, 183}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 917 "src/html_unescape.gperf"
- {"lesdotor", 3, {226, 170, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str3276), {226, 136, 129, 0}},
+ {-1,{0}},
#line 1684 "src/html_unescape.gperf"
- {"sigmaf", 2, {207, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1500 "src/html_unescape.gperf"
- {"rarrbfs", 3, {226, 164, 160}},
- {(char*)0,0,{0}},
-#line 833 "src/html_unescape.gperf"
- {"larrbfs", 3, {226, 164, 159}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2079 "src/html_unescape.gperf"
- {"xrarr", 3, {226, 159, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 118 "src/html_unescape.gperf"
- {"bigcup", 3, {226, 139, 131}},
- {(char*)0,0,{0}},
-#line 275 "src/html_unescape.gperf"
- {"clubs", 3, {226, 153, 163}},
-#line 678 "src/html_unescape.gperf"
- {"hArr", 3, {226, 135, 148}},
-#line 1626 "src/html_unescape.gperf"
- {"rtrie", 3, {226, 138, 181}},
- {(char*)0,0,{0}},
-#line 1022 "src/html_unescape.gperf"
- {"ltrie", 3, {226, 138, 180}},
-#line 742 "src/html_unescape.gperf"
- {"imped", 2, {198, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 503 "src/html_unescape.gperf"
- {"eogon", 2, {196, 153}},
-#line 1631 "src/html_unescape.gperf"
- {"rx", 3, {226, 132, 158}},
-#line 1024 "src/html_unescape.gperf"
- {"ltrPar", 3, {226, 166, 150}},
-#line 1747 "src/html_unescape.gperf"
- {"Star", 3, {226, 139, 134}},
- {(char*)0,0,{0}},
-#line 1943 "src/html_unescape.gperf"
- {"uogon", 2, {197, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1856 "src/html_unescape.gperf"
- {"Tilde", 3, {226, 136, 188}},
- {(char*)0,0,{0}},
-#line 672 "src/html_unescape.gperf"
- {"half", 2, {194, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1855 "src/html_unescape.gperf"
- {"tilde", 2, {203, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 876 "src/html_unescape.gperf"
- {"Leftarrow", 3, {226, 135, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str3278), {207, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 2077 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3285), {226, 168, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1400 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3289), {240, 157, 148, 147}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 618 "src/html_unescape.gperf"
- {"gesles", 3, {226, 170, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 218 "src/html_unescape.gperf"
- {"cap", 3, {226, 136, 169}},
-#line 1752 "src/html_unescape.gperf"
- {"strns", 2, {194, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1015 "src/html_unescape.gperf"
- {"Lt", 3, {226, 137, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1454 "src/html_unescape.gperf"
- {"prnE", 3, {226, 170, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1727 "src/html_unescape.gperf"
- {"sqsupe", 3, {226, 138, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1728 "src/html_unescape.gperf"
- {"sqsupset", 3, {226, 138, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1883 "src/html_unescape.gperf"
- {"tridot", 3, {226, 151, 172}},
-#line 1361 "src/html_unescape.gperf"
- {"order", 3, {226, 132, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 223 "src/html_unescape.gperf"
- {"caps", 3, {226, 136, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 303 "src/html_unescape.gperf"
- {"cross", 3, {226, 156, 151}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 367 "src/html_unescape.gperf"
- {"dfisht", 3, {226, 165, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2072 "src/html_unescape.gperf"
- {"xmap", 3, {226, 159, 188}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1726 "src/html_unescape.gperf"
- {"sqsup", 3, {226, 138, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str3295), {240, 157, 148, 138}},
+ {-1,{0}}, {-1,{0}},
+#line 115 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3298), {226, 139, 130, 0}},
+ {-1,{0}},
+#line 1692 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3300), {226, 170, 159, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 726 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3319), {226, 168, 140, 0}},
+#line 95 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3320), {226, 140, 133, 0}},
+#line 94 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3321), {226, 140, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 2069 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3329), {226, 159, 181, 0}},
+#line 923 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3330), {226, 139, 154, 0}},
+ {-1,{0}},
+#line 301 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3332), {226, 134, 181, 0}},
+#line 772 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3333), {226, 139, 181, 0}},
+ {-1,{0}},
+#line 282 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3335), {64, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1054 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3342), {194, 183, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 916 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3349), {226, 170, 131, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1683 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3356), {207, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1499 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3366), {226, 164, 160, 0}},
+ {-1,{0}},
+#line 832 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3368), {226, 164, 159, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 2078 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3371), {226, 159, 182, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 117 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3376), {226, 139, 131, 0}},
+ {-1,{0}},
+#line 274 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3378), {226, 153, 163, 0}},
+#line 677 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3379), {226, 135, 148, 0}},
#line 1625 "src/html_unescape.gperf"
- {"rtri", 3, {226, 150, 185}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str3380), {226, 138, 181, 0}},
+ {-1,{0}},
#line 1021 "src/html_unescape.gperf"
- {"ltri", 3, {226, 151, 131}},
-#line 778 "src/html_unescape.gperf"
- {"it", 3, {226, 129, 162}},
-#line 1599 "src/html_unescape.gperf"
- {"rmoust", 3, {226, 142, 177}},
- {(char*)0,0,{0}},
-#line 955 "src/html_unescape.gperf"
- {"lmoust", 3, {226, 142, 176}},
-#line 634 "src/html_unescape.gperf"
- {"gnE", 3, {226, 137, 169}},
-#line 937 "src/html_unescape.gperf"
- {"lgE", 3, {226, 170, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1642 "src/html_unescape.gperf"
- {"scE", 3, {226, 170, 180}},
- {(char*)0,0,{0}},
-#line 1979 "src/html_unescape.gperf"
- {"utri", 3, {226, 150, 181}},
- {(char*)0,0,{0}},
-#line 2017 "src/html_unescape.gperf"
- {"vellip", 3, {226, 139, 174}},
- {(char*)0,0,{0}},
-#line 535 "src/html_unescape.gperf"
- {"ETH", 2, {195, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 953 "src/html_unescape.gperf"
- {"lmidot", 2, {197, 128}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str3382), {226, 138, 180, 0}},
+#line 741 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3383), {198, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 502 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3388), {196, 153, 0}},
+#line 1630 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3389), {226, 132, 158, 0}},
+#line 1023 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3390), {226, 166, 150, 0}},
+#line 1746 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3391), {226, 139, 134, 0}},
+ {-1,{0}},
#line 1942 "src/html_unescape.gperf"
- {"Uogon", 2, {197, 178}},
-#line 301 "src/html_unescape.gperf"
- {"CounterClockwiseContourIntegral", 3, {226, 136, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1121 "src/html_unescape.gperf"
- {"ngE", 3, {226, 137, 167}},
-#line 1310 "src/html_unescape.gperf"
- {"nwnear", 3, {226, 164, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 918 "src/html_unescape.gperf"
- {"lesg", 3, {226, 139, 154}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1416 "src/html_unescape.gperf"
- {"plusb", 3, {226, 138, 158}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1619 "src/html_unescape.gperf"
- {"Rsh", 3, {226, 134, 177}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str3393), {197, 179, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1855 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3396), {226, 136, 188, 0}},
+ {-1,{0}},
+#line 671 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3398), {194, 189, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1854 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3405), {203, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 875 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3412), {226, 135, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 617 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3417), {226, 170, 148, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 217 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3422), {226, 136, 169, 0}},
+#line 1751 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3423), {194, 175, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1014 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3427), {226, 137, 170, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1453 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3439), {226, 170, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1726 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3447), {226, 138, 146, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1727 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3462), {226, 138, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1882 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3467), {226, 151, 172, 0}},
+#line 1360 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3468), {226, 132, 180, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 222 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3471), {226, 136, 169, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 302 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3475), {226, 156, 151, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 366 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3482), {226, 165, 191, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2071 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3487), {226, 159, 188, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1725 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3491), {226, 138, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1624 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3503), {226, 150, 185, 0}},
+ {-1,{0}},
+#line 1020 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3505), {226, 151, 131, 0}},
+#line 777 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3506), {226, 129, 162, 0}},
+#line 1598 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3507), {226, 142, 177, 0}},
+ {-1,{0}},
+#line 954 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3509), {226, 142, 176, 0}},
+#line 633 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3510), {226, 137, 169, 0}},
+#line 936 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3511), {226, 170, 145, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1641 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3514), {226, 170, 180, 0}},
+ {-1,{0}},
+#line 1978 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3516), {226, 150, 181, 0}},
+ {-1,{0}},
+#line 2016 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3518), {226, 139, 174, 0}},
+ {-1,{0}},
+#line 534 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3520), {195, 144, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 952 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3523), {197, 128, 0}},
+ {-1,{0}},
+#line 1941 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3525), {197, 178, 0}},
#line 300 "src/html_unescape.gperf"
- {"copysr", 3, {226, 132, 151}},
- {(char*)0,0,{0}},
-#line 747 "src/html_unescape.gperf"
- {"infintie", 3, {226, 167, 157}},
- {(char*)0,0,{0}},
-#line 739 "src/html_unescape.gperf"
- {"imath", 2, {196, 177}},
-#line 531 "src/html_unescape.gperf"
- {"Esim", 3, {226, 169, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1403 "src/html_unescape.gperf"
- {"Phi", 2, {206, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 629 "src/html_unescape.gperf"
- {"glE", 3, {226, 170, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2031 "src/html_unescape.gperf"
- {"vnsup", 3, {226, 138, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1691 "src/html_unescape.gperf"
- {"simgE", 3, {226, 170, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str3526), {226, 136, 179, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1120 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3534), {226, 137, 167, 0}},
+#line 1309 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3535), {226, 164, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 917 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3543), {226, 139, 154, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1415 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3546), {226, 138, 158, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1618 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3550), {226, 134, 177, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 299 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3555), {226, 132, 151, 0}},
+ {-1,{0}},
+#line 746 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3557), {226, 167, 157, 0}},
+ {-1,{0}},
+#line 738 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3559), {196, 177, 0}},
+#line 530 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3560), {226, 169, 179, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1402 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3565), {206, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 628 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3573), {226, 170, 146, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2030 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3579), {226, 138, 131, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1690 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3582), {226, 170, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 413 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3586), {226, 159, 184, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 414 "src/html_unescape.gperf"
- {"DoubleLongLeftArrow", 3, {226, 159, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 415 "src/html_unescape.gperf"
- {"DoubleLongLeftRightArrow", 3, {226, 159, 186}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1296 "src/html_unescape.gperf"
- {"nvgt", 1, {62}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1047 "src/html_unescape.gperf"
- {"Mellintrf", 3, {226, 132, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1451 "src/html_unescape.gperf"
- {"Prime", 3, {226, 128, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 729 "src/html_unescape.gperf"
- {"iinfin", 3, {226, 167, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1547 "src/html_unescape.gperf"
- {"ReverseElement", 3, {226, 136, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 493 "src/html_unescape.gperf"
- {"EmptySmallSquare", 3, {226, 151, 187}},
-#line 1490 "src/html_unescape.gperf"
- {"radic", 3, {226, 136, 154}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 688 "src/html_unescape.gperf"
- {"hfr", 4, {240, 157, 148, 165}},
-#line 2116 "src/html_unescape.gperf"
- {"zdot", 2, {197, 188}},
-#line 1030 "src/html_unescape.gperf"
- {"male", 3, {226, 153, 130}},
- {(char*)0,0,{0}},
-#line 1501 "src/html_unescape.gperf"
- {"rarrc", 3, {226, 164, 179}},
-#line 1437 "src/html_unescape.gperf"
- {"prec", 3, {226, 137, 186}},
-#line 1647 "src/html_unescape.gperf"
- {"scnap", 3, {226, 170, 186}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 384 "src/html_unescape.gperf"
- {"DifferentialD", 3, {226, 133, 134}},
- {(char*)0,0,{0}},
-#line 1064 "src/html_unescape.gperf"
- {"models", 3, {226, 138, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1012 "src/html_unescape.gperf"
- {"ltcir", 3, {226, 169, 185}},
-#line 763 "src/html_unescape.gperf"
- {"iogon", 2, {196, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 217 "src/html_unescape.gperf"
- {"capcap", 3, {226, 169, 139}},
- {(char*)0,0,{0}},
-#line 721 "src/html_unescape.gperf"
- {"iff", 3, {226, 135, 148}},
- {(char*)0,0,{0}},
-#line 361 "src/html_unescape.gperf"
- {"ddotseq", 3, {226, 169, 183}},
- {(char*)0,0,{0}},
-#line 264 "src/html_unescape.gperf"
- {"CirclePlus", 3, {226, 138, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1623 "src/html_unescape.gperf"
- {"rthree", 3, {226, 139, 140}},
- {(char*)0,0,{0}},
-#line 1017 "src/html_unescape.gperf"
- {"lthree", 3, {226, 139, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1442 "src/html_unescape.gperf"
- {"PrecedesTilde", 3, {226, 137, 190}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 450 "src/html_unescape.gperf"
- {"dtdot", 3, {226, 139, 177}},
- {(char*)0,0,{0}},
-#line 276 "src/html_unescape.gperf"
- {"clubsuit", 3, {226, 153, 163}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str3591), {226, 159, 186, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1295 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3594), {62, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1046 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3607), {226, 132, 179, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1450 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3611), {226, 128, 179, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 728 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3615), {226, 167, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1546 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3620), {226, 136, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 492 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3627), {226, 151, 187, 0}},
#line 1489 "src/html_unescape.gperf"
- {"racute", 2, {197, 149}},
- {(char*)0,0,{0}},
-#line 820 "src/html_unescape.gperf"
- {"lacute", 2, {196, 186}},
-#line 1890 "src/html_unescape.gperf"
- {"trpezium", 3, {226, 143, 162}},
-#line 1633 "src/html_unescape.gperf"
- {"sacute", 2, {197, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2109 "src/html_unescape.gperf"
- {"Zacute", 2, {197, 185}},
-#line 460 "src/html_unescape.gperf"
- {"eacute", 2, {195, 169}},
- {(char*)0,0,{0}},
-#line 1859 "src/html_unescape.gperf"
- {"TildeTilde", 3, {226, 137, 136}},
- {(char*)0,0,{0}},
-#line 1907 "src/html_unescape.gperf"
- {"Uarrocir", 3, {226, 165, 137}},
-#line 1903 "src/html_unescape.gperf"
- {"uacute", 2, {195, 186}},
-#line 983 "src/html_unescape.gperf"
- {"lowast", 3, {226, 136, 151}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1077 "src/html_unescape.gperf"
- {"nacute", 2, {197, 132}},
- {(char*)0,0,{0}},
-#line 1207 "src/html_unescape.gperf"
- {"NotPrecedes", 3, {226, 138, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 952 "src/html_unescape.gperf"
- {"Lmidot", 2, {196, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1948 "src/html_unescape.gperf"
- {"UpArrow", 3, {226, 134, 145}},
- {(char*)0,0,{0}},
-#line 1512 "src/html_unescape.gperf"
- {"rarrw", 3, {226, 134, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 439 "src/html_unescape.gperf"
- {"DownTee", 3, {226, 138, 164}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 556 "src/html_unescape.gperf"
- {"FilledSmallSquare", 3, {226, 151, 188}},
-#line 220 "src/html_unescape.gperf"
- {"capcup", 3, {226, 169, 135}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 643 "src/html_unescape.gperf"
- {"GreaterFullEqual", 3, {226, 137, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1300 "src/html_unescape.gperf"
- {"nvle", 3, {226, 137, 164}},
- {(char*)0,0,{0}},
-#line 1884 "src/html_unescape.gperf"
- {"trie", 3, {226, 137, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1347 "src/html_unescape.gperf"
- {"omicron", 2, {206, 191}},
- {(char*)0,0,{0}},
-#line 418 "src/html_unescape.gperf"
- {"DoubleRightTee", 3, {226, 138, 168}},
-#line 234 "src/html_unescape.gperf"
- {"Cconint", 3, {226, 136, 176}},
+ {offsetof(struct entity_pool_t, entity_pool_str3628), {226, 136, 154, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 687 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3631), {240, 157, 148, 165}},
+#line 2115 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3632), {197, 188, 0}},
+#line 1029 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3633), {226, 153, 130, 0}},
+ {-1,{0}},
+#line 1500 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3635), {226, 164, 179, 0}},
+#line 1436 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3636), {226, 137, 186, 0}},
+#line 1646 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3637), {226, 170, 186, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 383 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3641), {226, 133, 134, 0}},
+ {-1,{0}},
+#line 1063 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3643), {226, 138, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1011 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3657), {226, 169, 185, 0}},
+#line 762 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3658), {196, 175, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 216 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3665), {226, 169, 139, 0}},
+ {-1,{0}},
+#line 720 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3667), {226, 135, 148, 0}},
+ {-1,{0}},
+#line 360 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3669), {226, 169, 183, 0}},
+ {-1,{0}},
+#line 263 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3671), {226, 138, 149, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1622 "src/html_unescape.gperf"
- {"rsquor", 3, {226, 128, 153}},
- {(char*)0,0,{0}},
-#line 1008 "src/html_unescape.gperf"
- {"lsquor", 3, {226, 128, 154}},
- {(char*)0,0,{0}},
-#line 2125 "src/html_unescape.gperf"
- {"zigrarr", 3, {226, 135, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 294 "src/html_unescape.gperf"
- {"copf", 4, {240, 157, 149, 148}},
- {(char*)0,0,{0}},
-#line 293 "src/html_unescape.gperf"
- {"ContourIntegral", 3, {226, 136, 174}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 671 "src/html_unescape.gperf"
- {"hairsp", 3, {226, 128, 138}},
-#line 1729 "src/html_unescape.gperf"
- {"sqsupseteq", 3, {226, 138, 146}},
-#line 307 "src/html_unescape.gperf"
- {"csub", 3, {226, 171, 143}},
-#line 1956 "src/html_unescape.gperf"
- {"upharpoonright", 3, {226, 134, 190}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 427 "src/html_unescape.gperf"
- {"DownBreve", 2, {204, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1675 "src/html_unescape.gperf"
- {"ShortDownArrow", 3, {226, 134, 147}},
- {(char*)0,0,{0}},
-#line 2076 "src/html_unescape.gperf"
- {"xopf", 4, {240, 157, 149, 169}},
- {(char*)0,0,{0}},
-#line 1632 "src/html_unescape.gperf"
- {"Sacute", 2, {197, 154}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2040 "src/html_unescape.gperf"
- {"vsupnE", 3, {226, 171, 140}},
-#line 266 "src/html_unescape.gperf"
- {"cir", 3, {226, 151, 139}},
-#line 1415 "src/html_unescape.gperf"
- {"plusacir", 3, {226, 168, 163}},
-#line 309 "src/html_unescape.gperf"
- {"csup", 3, {226, 171, 144}},
-#line 2038 "src/html_unescape.gperf"
- {"vsubnE", 3, {226, 171, 139}},
-#line 1902 "src/html_unescape.gperf"
- {"Uacute", 2, {195, 154}},
- {(char*)0,0,{0}},
-#line 774 "src/html_unescape.gperf"
- {"isinE", 3, {226, 139, 185}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 607 "src/html_unescape.gperf"
- {"gEl", 3, {226, 170, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1720 "src/html_unescape.gperf"
- {"sqcups", 3, {226, 138, 148}},
- {(char*)0,0,{0}},
-#line 1702 "src/html_unescape.gperf"
- {"smid", 3, {226, 136, 163}},
- {(char*)0,0,{0}},
-#line 936 "src/html_unescape.gperf"
- {"lg", 3, {226, 137, 182}},
- {(char*)0,0,{0}},
-#line 416 "src/html_unescape.gperf"
- {"DoubleLongRightArrow", 3, {226, 159, 185}},
-#line 1209 "src/html_unescape.gperf"
- {"NotPrecedesSlantEqual", 3, {226, 139, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 478 "src/html_unescape.gperf"
- {"eg", 3, {226, 170, 154}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 34 "src/html_unescape.gperf"
- {"AMP", 1, {38}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1163 "src/html_unescape.gperf"
- {"nmid", 3, {226, 136, 164}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1863 "src/html_unescape.gperf"
- {"timesd", 3, {226, 168, 176}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 434 "src/html_unescape.gperf"
- {"DownLeftVector", 3, {226, 134, 189}},
-#line 2131 "src/html_unescape.gperf"
- {"zwnj", 3, {226, 128, 140}},
+ {offsetof(struct entity_pool_t, entity_pool_str3676), {226, 139, 140, 0}},
+ {-1,{0}},
+#line 1016 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3678), {226, 139, 139, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1441 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3681), {226, 137, 190, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 449 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3685), {226, 139, 177, 0}},
+ {-1,{0}},
+#line 275 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3687), {226, 153, 163, 0}},
+ {-1,{0}},
+#line 1488 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3689), {197, 149, 0}},
+ {-1,{0}},
#line 819 "src/html_unescape.gperf"
- {"Lacute", 2, {196, 185}},
-#line 433 "src/html_unescape.gperf"
- {"DownLeftVectorBar", 3, {226, 165, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1332 "src/html_unescape.gperf"
- {"ograve", 2, {195, 178}},
-#line 2088 "src/html_unescape.gperf"
- {"Yacute", 2, {195, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1719 "src/html_unescape.gperf"
- {"sqcup", 3, {226, 138, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1323 "src/html_unescape.gperf"
- {"odot", 3, {226, 138, 153}},
-#line 213 "src/html_unescape.gperf"
- {"Cacute", 2, {196, 134}},
- {(char*)0,0,{0}},
-#line 1286 "src/html_unescape.gperf"
- {"nu", 2, {206, 189}},
+ {offsetof(struct entity_pool_t, entity_pool_str3691), {196, 186, 0}},
#line 1889 "src/html_unescape.gperf"
- {"tritime", 3, {226, 168, 187}},
- {(char*)0,0,{0}},
-#line 479 "src/html_unescape.gperf"
- {"Egrave", 2, {195, 136}},
-#line 508 "src/html_unescape.gperf"
- {"eplus", 3, {226, 169, 177}},
- {(char*)0,0,{0}},
-#line 86 "src/html_unescape.gperf"
- {"backcong", 3, {226, 137, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1957 "src/html_unescape.gperf"
- {"uplus", 3, {226, 138, 142}},
- {(char*)0,0,{0}},
-#line 471 "src/html_unescape.gperf"
- {"Edot", 2, {196, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 310 "src/html_unescape.gperf"
- {"csupe", 3, {226, 171, 146}},
- {(char*)0,0,{0}},
-#line 1690 "src/html_unescape.gperf"
- {"simg", 3, {226, 170, 158}},
-#line 1959 "src/html_unescape.gperf"
- {"UpperRightArrow", 3, {226, 134, 151}},
+ {offsetof(struct entity_pool_t, entity_pool_str3692), {226, 143, 162, 0}},
+#line 1632 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3693), {197, 155, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 2108 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3696), {197, 185, 0}},
+#line 459 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3697), {195, 169, 0}},
+ {-1,{0}},
+#line 1858 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3699), {226, 137, 136, 0}},
+ {-1,{0}},
+#line 1906 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3701), {226, 165, 137, 0}},
+#line 1902 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3702), {195, 186, 0}},
+#line 982 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3703), {226, 136, 151, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1076 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3714), {197, 132, 0}},
+ {-1,{0}},
+#line 1206 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3716), {226, 138, 128, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 951 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3720), {196, 191, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1947 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3725), {226, 134, 145, 0}},
+ {-1,{0}},
+#line 1511 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3727), {226, 134, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 438 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3738), {226, 138, 164, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 555 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3742), {226, 151, 188, 0}},
+#line 219 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3743), {226, 169, 135, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 642 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3749), {226, 137, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1299 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3756), {226, 137, 164, 0}},
+ {-1,{0}},
+#line 1883 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3758), {226, 137, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1346 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3764), {206, 191, 0}},
+ {-1,{0}},
+#line 417 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3766), {226, 138, 168, 0}},
+#line 233 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3767), {226, 136, 176, 0}},
+#line 1621 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3768), {226, 128, 153, 0}},
+ {-1,{0}},
+#line 1007 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3770), {226, 128, 154, 0}},
+ {-1,{0}},
+#line 2124 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3772), {226, 135, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 293 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3780), {240, 157, 149, 148}},
+ {-1,{0}},
+#line 292 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3782), {226, 136, 174, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 670 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3798), {226, 128, 138, 0}},
+#line 1728 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3799), {226, 138, 146, 0}},
+#line 306 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3800), {226, 171, 143, 0}},
+#line 1955 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3801), {226, 134, 190, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 426 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3805), {204, 145, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1674 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3817), {226, 134, 147, 0}},
+ {-1,{0}},
+#line 2075 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3819), {240, 157, 149, 169}},
+ {-1,{0}},
+#line 1631 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3821), {197, 154, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 2039 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3829), {226, 171, 140, 0}},
+#line 265 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3830), {226, 151, 139, 0}},
+#line 1414 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3831), {226, 168, 163, 0}},
#line 308 "src/html_unescape.gperf"
- {"csube", 3, {226, 171, 145}},
- {(char*)0,0,{0}},
-#line 451 "src/html_unescape.gperf"
- {"dtri", 3, {226, 150, 191}},
-#line 1455 "src/html_unescape.gperf"
- {"prnsim", 3, {226, 139, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 178 "src/html_unescape.gperf"
- {"boxUr", 3, {226, 149, 153}},
-#line 1981 "src/html_unescape.gperf"
- {"uuarr", 3, {226, 135, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str3832), {226, 171, 144, 0}},
+#line 2037 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3833), {226, 171, 139, 0}},
+#line 1901 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3834), {195, 154, 0}},
+ {-1,{0}},
+#line 773 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3836), {226, 139, 185, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 606 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3845), {226, 170, 140, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1719 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3851), {226, 138, 148, 0}},
+ {-1,{0}},
+#line 1701 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3853), {226, 136, 163, 0}},
+ {-1,{0}},
+#line 935 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3855), {226, 137, 182, 0}},
+ {-1,{0}},
+#line 415 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3857), {226, 159, 185, 0}},
+#line 1208 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3858), {226, 139, 160, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 477 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3861), {226, 170, 154, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 33 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3864), {38, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1162 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3874), {226, 136, 164, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1862 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3883), {226, 168, 176, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 433 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3886), {226, 134, 189, 0}},
+#line 2130 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3887), {226, 128, 140, 0}},
+#line 818 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3888), {196, 185, 0}},
#line 432 "src/html_unescape.gperf"
- {"DownLeftTeeVector", 3, {226, 165, 158}},
-#line 651 "src/html_unescape.gperf"
- {"gsime", 3, {226, 170, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 121 "src/html_unescape.gperf"
- {"bigotimes", 3, {226, 168, 130}},
-#line 342 "src/html_unescape.gperf"
- {"Dagger", 3, {226, 128, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 755 "src/html_unescape.gperf"
- {"Intersection", 3, {226, 139, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 711 "src/html_unescape.gperf"
- {"iacute", 2, {195, 173}},
- {(char*)0,0,{0}},
-#line 1435 "src/html_unescape.gperf"
- {"prcue", 3, {226, 137, 188}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 482 "src/html_unescape.gperf"
- {"egsdot", 3, {226, 170, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 743 "src/html_unescape.gperf"
- {"Implies", 3, {226, 135, 146}},
-#line 2011 "src/html_unescape.gperf"
- {"VDash", 3, {226, 138, 171}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 208 "src/html_unescape.gperf"
- {"bump", 3, {226, 137, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1071 "src/html_unescape.gperf"
- {"Mu", 2, {206, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2009 "src/html_unescape.gperf"
- {"vDash", 3, {226, 138, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1028 "src/html_unescape.gperf"
- {"lvnE", 3, {226, 137, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 895 "src/html_unescape.gperf"
- {"LeftTeeArrow", 3, {226, 134, 164}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1076 "src/html_unescape.gperf"
- {"Nacute", 2, {197, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1937 "src/html_unescape.gperf"
- {"UnderBrace", 3, {226, 143, 159}},
-#line 1469 "src/html_unescape.gperf"
- {"Psi", 2, {206, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1560 "src/html_unescape.gperf"
- {"rhov", 2, {207, 177}},
- {(char*)0,0,{0}},
-#line 913 "src/html_unescape.gperf"
- {"lescc", 3, {226, 170, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str3889), {226, 165, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1331 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3898), {195, 178, 0}},
+#line 2087 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3899), {195, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1718 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3903), {226, 138, 148, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1322 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3906), {226, 138, 153, 0}},
+#line 212 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3907), {196, 134, 0}},
+ {-1,{0}},
+#line 1285 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3909), {206, 189, 0}},
+#line 1888 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3910), {226, 168, 187, 0}},
+ {-1,{0}},
+#line 478 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3912), {195, 136, 0}},
+#line 507 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3913), {226, 169, 177, 0}},
+ {-1,{0}},
+#line 85 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3915), {226, 137, 140, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1956 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3918), {226, 138, 142, 0}},
+ {-1,{0}},
+#line 470 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3920), {196, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 309 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3924), {226, 171, 146, 0}},
+ {-1,{0}},
+#line 1689 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3926), {226, 170, 158, 0}},
+#line 1958 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3927), {226, 134, 151, 0}},
+#line 307 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3928), {226, 171, 145, 0}},
+ {-1,{0}},
+#line 450 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3930), {226, 150, 191, 0}},
+#line 1454 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3931), {226, 139, 168, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 177 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3936), {226, 149, 153, 0}},
+#line 1980 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3937), {226, 135, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 431 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3945), {226, 165, 158, 0}},
+#line 650 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3946), {226, 170, 142, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 120 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3950), {226, 168, 130, 0}},
+#line 341 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3951), {226, 128, 161, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 754 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3954), {226, 139, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 710 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3967), {195, 173, 0}},
+ {-1,{0}},
+#line 1434 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3969), {226, 137, 188, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 481 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3981), {226, 170, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 742 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3987), {226, 135, 146, 0}},
+#line 2010 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3988), {226, 138, 171, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 207 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str3996), {226, 137, 142, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1070 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4015), {206, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 2008 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4022), {226, 138, 168, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1027 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4028), {226, 137, 168, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 894 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4033), {226, 134, 164, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1075 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4037), {197, 131, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1936 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4042), {226, 143, 159, 0}},
+#line 1468 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4043), {206, 168, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1559 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4047), {207, 177, 0}},
+ {-1,{0}},
+#line 912 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4049), {226, 170, 168, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1789 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4055), {194, 185, 0}},
+ {-1,{0}}, {-1,{0}},
#line 1790 "src/html_unescape.gperf"
- {"sup1", 2, {194, 185}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str4058), {194, 178, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
#line 1791 "src/html_unescape.gperf"
- {"sup2", 2, {194, 178}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1792 "src/html_unescape.gperf"
- {"sup3", 2, {194, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 119 "src/html_unescape.gperf"
- {"bigodot", 3, {226, 168, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 425 "src/html_unescape.gperf"
- {"Downarrow", 3, {226, 135, 147}},
- {(char*)0,0,{0}},
-#line 2083 "src/html_unescape.gperf"
- {"xsqcup", 3, {226, 168, 134}},
- {(char*)0,0,{0}},
-#line 93 "src/html_unescape.gperf"
- {"barvee", 3, {226, 138, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1107 "src/html_unescape.gperf"
- {"NegativeMediumSpace", 3, {226, 128, 139}},
-#line 210 "src/html_unescape.gperf"
- {"bumpe", 3, {226, 137, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 306 "src/html_unescape.gperf"
- {"cscr", 4, {240, 157, 146, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1249 "src/html_unescape.gperf"
- {"nsc", 3, {226, 138, 129}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1793 "src/html_unescape.gperf"
- {"sup", 3, {226, 138, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 239 "src/html_unescape.gperf"
- {"cedil", 2, {194, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 192 "src/html_unescape.gperf"
- {"boxVr", 3, {226, 149, 159}},
- {(char*)0,0,{0}},
-#line 1365 "src/html_unescape.gperf"
- {"origof", 3, {226, 138, 182}},
-#line 2130 "src/html_unescape.gperf"
- {"zwj", 3, {226, 128, 141}},
-#line 724 "src/html_unescape.gperf"
- {"Igrave", 2, {195, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 717 "src/html_unescape.gperf"
- {"Idot", 2, {196, 176}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str4066), {194, 179, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 118 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4071), {226, 168, 128, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 424 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4078), {226, 135, 147, 0}},
+ {-1,{0}},
#line 2082 "src/html_unescape.gperf"
- {"xscr", 4, {240, 157, 147, 141}},
-#line 2069 "src/html_unescape.gperf"
- {"xi", 2, {206, 190}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1132 "src/html_unescape.gperf"
- {"nGtv", 3, {226, 137, 171}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 166 "src/html_unescape.gperf"
- {"boxHu", 3, {226, 149, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1853 "src/html_unescape.gperf"
- {"THORN", 2, {195, 158}},
- {(char*)0,0,{0}},
-#line 1488 "src/html_unescape.gperf"
- {"Racute", 2, {197, 148}},
- {(char*)0,0,{0}},
-#line 1506 "src/html_unescape.gperf"
- {"rarrhk", 3, {226, 134, 170}},
- {(char*)0,0,{0}},
-#line 838 "src/html_unescape.gperf"
- {"larrhk", 3, {226, 134, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1628 "src/html_unescape.gperf"
- {"rtriltri", 3, {226, 167, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 181 "src/html_unescape.gperf"
- {"boxV", 3, {226, 149, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 341 "src/html_unescape.gperf"
- {"dagger", 3, {226, 128, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1346 "src/html_unescape.gperf"
- {"Omicron", 2, {206, 159}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 421 "src/html_unescape.gperf"
- {"DoubleVerticalBar", 3, {226, 136, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1118 "src/html_unescape.gperf"
- {"nexists", 3, {226, 136, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1285 "src/html_unescape.gperf"
- {"Nu", 2, {206, 157}},
+ {offsetof(struct entity_pool_t, entity_pool_str4080), {226, 168, 134, 0}},
+ {-1,{0}},
+#line 92 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4082), {226, 138, 189, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1106 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4087), {226, 128, 139, 0}},
+#line 209 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4088), {226, 137, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 305 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4100), {240, 157, 146, 184}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1248 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4109), {226, 138, 129, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1792 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4115), {226, 138, 131, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 238 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4122), {194, 184, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 191 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4125), {226, 149, 159, 0}},
+ {-1,{0}},
+#line 1364 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4127), {226, 138, 182, 0}},
+#line 2129 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4128), {226, 128, 141, 0}},
+#line 723 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4129), {195, 140, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 716 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4137), {196, 176, 0}},
+ {-1,{0}},
+#line 2081 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4139), {240, 157, 147, 141}},
+#line 2068 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4140), {206, 190, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1131 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4144), {226, 137, 171, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 165 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4153), {226, 149, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1852 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4163), {195, 158, 0}},
+ {-1,{0}},
+#line 1487 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4165), {197, 148, 0}},
+ {-1,{0}},
+#line 1505 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4167), {226, 134, 170, 0}},
+ {-1,{0}},
+#line 837 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4169), {226, 134, 169, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1627 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4177), {226, 167, 142, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 180 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4189), {226, 149, 145, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 340 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4215), {226, 128, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1345 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4220), {206, 159, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 420 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4226), {226, 136, 165, 0}},
+ {-1,{0}}, {-1,{0}},
#line 1117 "src/html_unescape.gperf"
- {"nexist", 3, {226, 136, 132}},
-#line 606 "src/html_unescape.gperf"
- {"gE", 3, {226, 137, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 64 "src/html_unescape.gperf"
- {"ap", 3, {226, 137, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1794 "src/html_unescape.gperf"
- {"Sup", 3, {226, 139, 145}},
-#line 402 "src/html_unescape.gperf"
- {"doteqdot", 3, {226, 137, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 500 "src/html_unescape.gperf"
- {"eng", 2, {197, 139}},
- {(char*)0,0,{0}},
-#line 225 "src/html_unescape.gperf"
- {"caron", 2, {203, 135}},
- {(char*)0,0,{0}},
-#line 168 "src/html_unescape.gperf"
- {"boxHU", 3, {226, 149, 169}},
-#line 614 "src/html_unescape.gperf"
- {"gesdot", 3, {226, 170, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1548 "src/html_unescape.gperf"
- {"ReverseEquilibrium", 3, {226, 135, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 175 "src/html_unescape.gperf"
- {"boxUL", 3, {226, 149, 157}},
- {(char*)0,0,{0}},
-#line 1805 "src/html_unescape.gperf"
- {"supmult", 3, {226, 171, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1410 "src/html_unescape.gperf"
- {"pitchfork", 3, {226, 139, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1289 "src/html_unescape.gperf"
- {"numsp", 3, {226, 128, 135}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1492 "src/html_unescape.gperf"
- {"rang", 3, {226, 159, 169}},
- {(char*)0,0,{0}},
-#line 825 "src/html_unescape.gperf"
- {"lang", 3, {226, 159, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1316 "src/html_unescape.gperf"
- {"ocir", 3, {226, 138, 154}},
- {(char*)0,0,{0}},
-#line 1516 "src/html_unescape.gperf"
- {"rationals", 3, {226, 132, 154}},
- {(char*)0,0,{0}},
-#line 296 "src/html_unescape.gperf"
- {"coprod", 3, {226, 136, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1019 "src/html_unescape.gperf"
- {"ltlarr", 3, {226, 165, 182}},
-#line 195 "src/html_unescape.gperf"
- {"breve", 2, {203, 152}},
- {(char*)0,0,{0}},
-#line 1078 "src/html_unescape.gperf"
- {"nang", 3, {226, 136, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1818 "src/html_unescape.gperf"
- {"swarhk", 3, {226, 164, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1497 "src/html_unescape.gperf"
- {"raquo", 2, {194, 187}},
- {(char*)0,0,{0}},
-#line 831 "src/html_unescape.gperf"
- {"laquo", 2, {194, 171}},
-#line 1816 "src/html_unescape.gperf"
- {"supsub", 3, {226, 171, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 322 "src/html_unescape.gperf"
- {"Cup", 3, {226, 139, 147}},
-#line 66 "src/html_unescape.gperf"
- {"ape", 3, {226, 137, 138}},
-#line 1482 "src/html_unescape.gperf"
- {"quest", 1, {63}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1306 "src/html_unescape.gperf"
- {"nwarhk", 3, {226, 164, 163}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1809 "src/html_unescape.gperf"
- {"supset", 3, {226, 138, 131}},
- {(char*)0,0,{0}},
-#line 423 "src/html_unescape.gperf"
- {"downarrow", 3, {226, 134, 147}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 453 "src/html_unescape.gperf"
- {"duarr", 3, {226, 135, 181}},
- {(char*)0,0,{0}},
-#line 68 "src/html_unescape.gperf"
- {"apos", 1, {39}},
-#line 1331 "src/html_unescape.gperf"
- {"Ograve", 2, {195, 146}},
-#line 1678 "src/html_unescape.gperf"
- {"shortparallel", 3, {226, 136, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1269 "src/html_unescape.gperf"
- {"nsucc", 3, {226, 138, 129}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 967 "src/html_unescape.gperf"
- {"LongLeftArrow", 3, {226, 159, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 916 "src/html_unescape.gperf"
- {"lesdoto", 3, {226, 170, 129}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1807 "src/html_unescape.gperf"
- {"supne", 3, {226, 138, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1127 "src/html_unescape.gperf"
- {"nGg", 3, {226, 139, 153}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str4229), {226, 136, 132, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1284 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4232), {206, 157, 0}},
+#line 1116 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4233), {226, 136, 132, 0}},
+#line 605 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4234), {226, 137, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 63 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4238), {226, 137, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1793 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4243), {226, 139, 145, 0}},
+#line 401 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4244), {226, 137, 145, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 499 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4247), {197, 139, 0}},
+ {-1,{0}},
+#line 224 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4249), {203, 135, 0}},
+ {-1,{0}},
+#line 167 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4251), {226, 149, 169, 0}},
+#line 613 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4252), {226, 170, 128, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1547 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4257), {226, 135, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 174 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4262), {226, 149, 157, 0}},
+ {-1,{0}},
+#line 1804 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4264), {226, 171, 130, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1409 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4267), {226, 139, 148, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1288 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4272), {226, 128, 135, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
#line 1491 "src/html_unescape.gperf"
- {"raemptyv", 3, {226, 166, 179}},
+ {offsetof(struct entity_pool_t, entity_pool_str4285), {226, 159, 169, 0}},
+ {-1,{0}},
+#line 824 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4287), {226, 159, 168, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1315 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4290), {226, 138, 154, 0}},
+ {-1,{0}},
+#line 1515 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4292), {226, 132, 154, 0}},
+ {-1,{0}},
+#line 295 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4294), {226, 136, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1018 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4307), {226, 165, 182, 0}},
+#line 194 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4308), {203, 152, 0}},
+ {-1,{0}},
+#line 1077 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4310), {226, 136, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1817 "src/html_unescape.gperf"
- {"supsup", 3, {226, 171, 150}},
-#line 821 "src/html_unescape.gperf"
- {"laemptyv", 3, {226, 166, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1871 "src/html_unescape.gperf"
- {"topfork", 3, {226, 171, 154}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 502 "src/html_unescape.gperf"
- {"Eogon", 2, {196, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1594 "src/html_unescape.gperf"
- {"risingdotseq", 3, {226, 137, 147}},
- {(char*)0,0,{0}},
-#line 212 "src/html_unescape.gperf"
- {"bumpeq", 3, {226, 137, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1010 "src/html_unescape.gperf"
- {"lstrok", 2, {197, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str4315), {226, 164, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1496 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4322), {194, 187, 0}},
+ {-1,{0}},
+#line 830 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4324), {194, 171, 0}},
+#line 1815 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4325), {226, 171, 148, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 321 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4329), {226, 139, 147, 0}},
+#line 65 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4330), {226, 137, 138, 0}},
+#line 1481 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4331), {63, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1305 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4336), {226, 164, 163, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1808 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4340), {226, 138, 131, 0}},
+ {-1,{0}},
+#line 422 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4342), {226, 134, 147, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 452 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4351), {226, 135, 181, 0}},
+ {-1,{0}},
+#line 67 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4353), {39, 0}},
+#line 1330 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4354), {195, 146, 0}},
+#line 1677 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4355), {226, 136, 165, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1268 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4364), {226, 138, 129, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 966 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4368), {226, 159, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 915 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4377), {226, 170, 129, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1806 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4384), {226, 138, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1126 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4388), {226, 139, 153, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1490 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4396), {226, 166, 179, 0}},
+#line 1816 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4397), {226, 171, 150, 0}},
+#line 820 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4398), {226, 166, 180, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1870 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4401), {226, 171, 154, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 501 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4423), {196, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1593 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4429), {226, 137, 147, 0}},
+ {-1,{0}},
+#line 211 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4431), {226, 137, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1009 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4435), {197, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1896 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4439), {197, 166, 0}},
+#line 649 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4440), {226, 137, 179, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 105 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4443), {226, 166, 176, 0}},
+#line 2109 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4444), {197, 186, 0}},
+#line 651 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4445), {226, 170, 144, 0}},
+ {-1,{0}}, {-1,{0}},
#line 1897 "src/html_unescape.gperf"
- {"Tstrok", 2, {197, 166}},
-#line 650 "src/html_unescape.gperf"
- {"gsim", 3, {226, 137, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 106 "src/html_unescape.gperf"
- {"bemptyv", 3, {226, 166, 176}},
-#line 2110 "src/html_unescape.gperf"
- {"zacute", 2, {197, 186}},
-#line 652 "src/html_unescape.gperf"
- {"gsiml", 3, {226, 170, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1898 "src/html_unescape.gperf"
- {"tstrok", 2, {197, 167}},
- {(char*)0,0,{0}},
-#line 1601 "src/html_unescape.gperf"
- {"roang", 3, {226, 159, 173}},
-#line 189 "src/html_unescape.gperf"
- {"boxVL", 3, {226, 149, 163}},
-#line 963 "src/html_unescape.gperf"
- {"loang", 3, {226, 159, 172}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1153 "src/html_unescape.gperf"
- {"nleqslant", 3, {226, 169, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1634 "src/html_unescape.gperf"
- {"sbquo", 3, {226, 128, 154}},
- {(char*)0,0,{0}},
-#line 1657 "src/html_unescape.gperf"
- {"searhk", 3, {226, 164, 165}},
-#line 957 "src/html_unescape.gperf"
- {"lnapprox", 3, {226, 170, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str4448), {197, 167, 0}},
+ {-1,{0}},
+#line 1600 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4450), {226, 159, 173, 0}},
+#line 188 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4451), {226, 149, 163, 0}},
+#line 962 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4452), {226, 159, 172, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1152 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4456), {226, 169, 189, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1633 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4462), {226, 128, 154, 0}},
+ {-1,{0}},
+#line 1656 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4464), {226, 164, 165, 0}},
+#line 956 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4465), {226, 170, 137, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1809 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4468), {226, 139, 145, 0}},
+ {-1,{0}},
+#line 161 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4470), {226, 149, 164, 0}},
+#line 1986 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4471), {207, 176, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 253 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4475), {226, 137, 151, 0}},
+ {-1,{0}},
+#line 2101 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4477), {240, 157, 149, 170}},
+ {-1,{0}},
+#line 1940 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4479), {226, 138, 142, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 825 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4484), {226, 159, 170, 0}},
+#line 1100 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4485), {226, 164, 164, 0}},
+#line 1673 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4486), {209, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 244 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4492), {240, 157, 148, 160}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 799 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4506), {206, 154, 0}},
+#line 943 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4507), {209, 153, 0}},
+#line 1045 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4508), {226, 129, 159, 0}},
+ {-1,{0}}, {-1,{0}},
#line 1810 "src/html_unescape.gperf"
- {"Supset", 3, {226, 139, 145}},
- {(char*)0,0,{0}},
-#line 162 "src/html_unescape.gperf"
- {"boxHd", 3, {226, 149, 164}},
-#line 1987 "src/html_unescape.gperf"
- {"varkappa", 2, {207, 176}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 254 "src/html_unescape.gperf"
- {"circeq", 3, {226, 137, 151}},
- {(char*)0,0,{0}},
-#line 2102 "src/html_unescape.gperf"
- {"yopf", 4, {240, 157, 149, 170}},
- {(char*)0,0,{0}},
-#line 1941 "src/html_unescape.gperf"
- {"UnionPlus", 3, {226, 138, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 826 "src/html_unescape.gperf"
- {"Lang", 3, {226, 159, 170}},
-#line 1101 "src/html_unescape.gperf"
- {"nearhk", 3, {226, 164, 164}},
-#line 1674 "src/html_unescape.gperf"
- {"shcy", 2, {209, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 245 "src/html_unescape.gperf"
- {"cfr", 4, {240, 157, 148, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 800 "src/html_unescape.gperf"
- {"Kappa", 2, {206, 154}},
-#line 944 "src/html_unescape.gperf"
- {"ljcy", 2, {209, 153}},
-#line 1046 "src/html_unescape.gperf"
- {"MediumSpace", 3, {226, 129, 159}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str4511), {226, 138, 135, 0}},
#line 1811 "src/html_unescape.gperf"
- {"supseteq", 3, {226, 138, 135}},
+ {offsetof(struct entity_pool_t, entity_pool_str4512), {226, 171, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1544 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4517), {194, 174, 0}},
+#line 30 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4518), {196, 129, 0}},
+#line 908 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4519), {226, 139, 154, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2049 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4524), {226, 132, 152, 0}},
+#line 1892 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4525), {208, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1812 "src/html_unescape.gperf"
- {"supseteqq", 3, {226, 171, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1545 "src/html_unescape.gperf"
- {"reg", 2, {194, 174}},
-#line 31 "src/html_unescape.gperf"
- {"amacr", 2, {196, 129}},
-#line 909 "src/html_unescape.gperf"
- {"leg", 3, {226, 139, 154}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2050 "src/html_unescape.gperf"
- {"weierp", 3, {226, 132, 152}},
-#line 1893 "src/html_unescape.gperf"
- {"TScy", 2, {208, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1813 "src/html_unescape.gperf"
- {"supsetneq", 3, {226, 138, 139}},
-#line 1141 "src/html_unescape.gperf"
- {"njcy", 2, {209, 154}},
-#line 2065 "src/html_unescape.gperf"
- {"xfr", 4, {240, 157, 148, 181}},
- {(char*)0,0,{0}},
-#line 1072 "src/html_unescape.gperf"
- {"mu", 2, {206, 188}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1298 "src/html_unescape.gperf"
- {"nvinfin", 3, {226, 167, 158}},
-#line 179 "src/html_unescape.gperf"
- {"boxUR", 3, {226, 149, 154}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2077 "src/html_unescape.gperf"
- {"xoplus", 3, {226, 168, 129}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 887 "src/html_unescape.gperf"
- {"leftleftarrows", 3, {226, 135, 135}},
-#line 1787 "src/html_unescape.gperf"
- {"sum", 3, {226, 136, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 112 "src/html_unescape.gperf"
- {"beth", 3, {226, 132, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 286 "src/html_unescape.gperf"
- {"complement", 3, {226, 136, 129}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1287 "src/html_unescape.gperf"
- {"num", 1, {35}},
-#line 33 "src/html_unescape.gperf"
- {"amp", 1, {38}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 174 "src/html_unescape.gperf"
- {"boxUl", 3, {226, 149, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1177 "src/html_unescape.gperf"
- {"NotGreater", 3, {226, 137, 175}},
-#line 170 "src/html_unescape.gperf"
- {"boxplus", 3, {226, 138, 158}},
-#line 791 "src/html_unescape.gperf"
- {"jmath", 2, {200, 183}},
- {(char*)0,0,{0}},
-#line 1669 "src/html_unescape.gperf"
- {"sfrown", 3, {226, 140, 162}},
- {(char*)0,0,{0}},
-#line 448 "src/html_unescape.gperf"
- {"Dstrok", 2, {196, 144}},
- {(char*)0,0,{0}},
-#line 37 "src/html_unescape.gperf"
- {"and", 3, {226, 136, 167}},
-#line 1180 "src/html_unescape.gperf"
- {"NotGreaterGreater", 3, {226, 137, 171}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1182 "src/html_unescape.gperf"
- {"NotGreaterSlantEqual", 3, {226, 169, 190}},
- {(char*)0,0,{0}},
-#line 1181 "src/html_unescape.gperf"
- {"NotGreaterLess", 3, {226, 137, 185}},
-#line 1484 "src/html_unescape.gperf"
- {"quot", 1, {34}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str4529), {226, 138, 139, 0}},
+#line 1140 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4530), {209, 154, 0}},
+#line 2064 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4531), {240, 157, 148, 181}},
+ {-1,{0}},
+#line 1071 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4533), {206, 188, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1297 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4539), {226, 167, 158, 0}},
+#line 178 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4540), {226, 149, 154, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2076 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4545), {226, 168, 129, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 886 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4551), {226, 135, 135, 0}},
+#line 1786 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4552), {226, 136, 145, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 111 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4559), {226, 132, 182, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 285 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4563), {226, 136, 129, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1286 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4573), {35, 0}},
+#line 32 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4574), {38, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 173 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4583), {226, 149, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1176 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4590), {226, 137, 175, 0}},
+#line 169 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4591), {226, 138, 158, 0}},
+#line 790 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4592), {200, 183, 0}},
+ {-1,{0}},
+#line 1668 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4594), {226, 140, 162, 0}},
+ {-1,{0}},
+#line 447 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4596), {196, 144, 0}},
+ {-1,{0}},
+#line 36 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4598), {226, 136, 167, 0}},
#line 1179 "src/html_unescape.gperf"
- {"NotGreaterFullEqual", 3, {226, 137, 167}},
-#line 709 "src/html_unescape.gperf"
- {"hyphen", 3, {226, 128, 144}},
-#line 1412 "src/html_unescape.gperf"
- {"planck", 3, {226, 132, 143}},
- {(char*)0,0,{0}},
-#line 1857 "src/html_unescape.gperf"
- {"TildeEqual", 3, {226, 137, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1872 "src/html_unescape.gperf"
- {"tosa", 3, {226, 164, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1009 "src/html_unescape.gperf"
- {"Lstrok", 2, {197, 129}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1681 "src/html_unescape.gperf"
- {"shy", 2, {194, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2073 "src/html_unescape.gperf"
- {"xnis", 3, {226, 139, 187}},
-#line 762 "src/html_unescape.gperf"
- {"Iogon", 2, {196, 174}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 456 "src/html_unescape.gperf"
- {"DZcy", 2, {208, 143}},
- {(char*)0,0,{0}},
-#line 1334 "src/html_unescape.gperf"
- {"ohbar", 3, {226, 166, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 271 "src/html_unescape.gperf"
- {"cirscir", 3, {226, 167, 130}},
- {(char*)0,0,{0}},
-#line 1666 "src/html_unescape.gperf"
- {"sext", 3, {226, 156, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1387 "src/html_unescape.gperf"
- {"para", 2, {194, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 77 "src/html_unescape.gperf"
- {"ast", 1, {42}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str4599), {226, 137, 171, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1181 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4606), {226, 169, 190, 0}},
+ {-1,{0}},
+#line 1180 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4608), {226, 137, 185, 0}},
#line 1483 "src/html_unescape.gperf"
- {"questeq", 3, {226, 137, 159}},
- {(char*)0,0,{0}},
-#line 1788 "src/html_unescape.gperf"
- {"Sum", 3, {226, 136, 145}},
- {(char*)0,0,{0}},
-#line 445 "src/html_unescape.gperf"
- {"DScy", 2, {208, 133}},
- {(char*)0,0,{0}},
-#line 499 "src/html_unescape.gperf"
- {"ENG", 2, {197, 138}},
- {(char*)0,0,{0}},
-#line 2123 "src/html_unescape.gperf"
- {"ZHcy", 2, {208, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 966 "src/html_unescape.gperf"
- {"longleftarrow", 3, {226, 159, 181}},
- {(char*)0,0,{0}},
-#line 347 "src/html_unescape.gperf"
- {"dash", 3, {226, 128, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 438 "src/html_unescape.gperf"
- {"DownTeeArrow", 3, {226, 134, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1814 "src/html_unescape.gperf"
- {"supsetneqq", 3, {226, 171, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1458 "src/html_unescape.gperf"
- {"profalar", 3, {226, 140, 174}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1312 "src/html_unescape.gperf"
- {"oacute", 2, {195, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 193 "src/html_unescape.gperf"
- {"boxVR", 3, {226, 149, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 459 "src/html_unescape.gperf"
- {"Eacute", 2, {195, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1808 "src/html_unescape.gperf"
- {"supplus", 3, {226, 171, 128}},
- {(char*)0,0,{0}},
-#line 695 "src/html_unescape.gperf"
- {"hookleftarrow", 3, {226, 134, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 274 "src/html_unescape.gperf"
- {"CloseCurlyQuote", 3, {226, 128, 153}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1888 "src/html_unescape.gperf"
- {"trisb", 3, {226, 167, 141}},
-#line 406 "src/html_unescape.gperf"
- {"dotsquare", 3, {226, 138, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1624 "src/html_unescape.gperf"
- {"rtimes", 3, {226, 139, 138}},
- {(char*)0,0,{0}},
-#line 1018 "src/html_unescape.gperf"
- {"ltimes", 3, {226, 139, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1865 "src/html_unescape.gperf"
- {"toea", 3, {226, 164, 168}},
-#line 24 "src/html_unescape.gperf"
- {"Agrave", 2, {195, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 76 "src/html_unescape.gperf"
- {"Assign", 3, {226, 137, 148}},
-#line 1493 "src/html_unescape.gperf"
- {"Rang", 3, {226, 159, 171}},
-#line 761 "src/html_unescape.gperf"
- {"iocy", 2, {209, 145}},
- {(char*)0,0,{0}},
-#line 1208 "src/html_unescape.gperf"
- {"NotPrecedesEqual", 3, {226, 170, 175}},
- {(char*)0,0,{0}},
-#line 62 "src/html_unescape.gperf"
- {"aopf", 4, {240, 157, 149, 146}},
- {(char*)0,0,{0}},
-#line 252 "src/html_unescape.gperf"
- {"chi", 2, {207, 135}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1480 "src/html_unescape.gperf"
- {"quaternions", 3, {226, 132, 141}},
-#line 188 "src/html_unescape.gperf"
- {"boxVl", 3, {226, 149, 162}},
+ {offsetof(struct entity_pool_t, entity_pool_str4609), {34, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
#line 1178 "src/html_unescape.gperf"
- {"NotGreaterEqual", 3, {226, 137, 177}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2067 "src/html_unescape.gperf"
- {"xhArr", 3, {226, 159, 186}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1362 "src/html_unescape.gperf"
- {"orderof", 3, {226, 132, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1621 "src/html_unescape.gperf"
- {"rsquo", 3, {226, 128, 153}},
- {(char*)0,0,{0}},
-#line 1007 "src/html_unescape.gperf"
- {"lsquo", 3, {226, 128, 152}},
-#line 2104 "src/html_unescape.gperf"
- {"yscr", 4, {240, 157, 147, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 604 "src/html_unescape.gperf"
- {"gdot", 2, {196, 161}},
- {(char*)0,0,{0}},
-#line 1215 "src/html_unescape.gperf"
- {"NotSquareSubsetEqual", 3, {226, 139, 162}},
-#line 810 "src/html_unescape.gperf"
- {"KHcy", 2, {208, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 203 "src/html_unescape.gperf"
- {"bsolb", 3, {226, 167, 133}},
+ {offsetof(struct entity_pool_t, entity_pool_str4616), {226, 137, 167, 0}},
+#line 708 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4617), {226, 128, 144, 0}},
+#line 1411 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4618), {226, 132, 143, 0}},
+ {-1,{0}},
+#line 1856 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4620), {226, 137, 131, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1871 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4627), {226, 164, 169, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1008 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4632), {197, 129, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1680 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4635), {194, 173, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2072 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4639), {226, 139, 187, 0}},
+#line 761 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4640), {196, 174, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 455 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4643), {208, 143, 0}},
+ {-1,{0}},
+#line 1333 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4645), {226, 166, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 270 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4652), {226, 167, 130, 0}},
+ {-1,{0}},
+#line 1665 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4654), {226, 156, 182, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1386 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4668), {194, 182, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 76 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4671), {42, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1482 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4678), {226, 137, 159, 0}},
+ {-1,{0}},
+#line 1787 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4680), {226, 136, 145, 0}},
+ {-1,{0}},
+#line 444 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4682), {208, 133, 0}},
+ {-1,{0}},
+#line 498 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4684), {197, 138, 0}},
+ {-1,{0}},
+#line 2122 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4686), {208, 150, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 965 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4689), {226, 159, 181, 0}},
+ {-1,{0}},
+#line 346 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4691), {226, 128, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 437 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4699), {226, 134, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1813 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4706), {226, 171, 140, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1457 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4714), {226, 140, 174, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1311 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4718), {195, 179, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 192 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4729), {226, 149, 160, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 458 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4732), {195, 137, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1807 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4738), {226, 171, 128, 0}},
+ {-1,{0}},
+#line 694 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4740), {226, 134, 169, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 273 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4743), {226, 128, 153, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1887 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4746), {226, 167, 141, 0}},
+#line 405 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4747), {226, 138, 161, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1623 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4751), {226, 139, 138, 0}},
+ {-1,{0}},
+#line 1017 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4753), {226, 139, 137, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1864 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4756), {226, 164, 168, 0}},
+#line 23 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4757), {195, 128, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 75 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4760), {226, 137, 148, 0}},
+#line 1492 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4761), {226, 159, 171, 0}},
+#line 760 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4762), {209, 145, 0}},
+ {-1,{0}},
+#line 1207 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4764), {226, 170, 175, 0}},
+ {-1,{0}},
+#line 61 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4766), {240, 157, 149, 146}},
+ {-1,{0}},
+#line 251 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4768), {207, 135, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1479 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4771), {226, 132, 141, 0}},
+#line 187 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4772), {226, 149, 162, 0}},
+#line 1177 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4773), {226, 137, 177, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2066 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4777), {226, 159, 186, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1361 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4791), {226, 132, 180, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1620 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4794), {226, 128, 153, 0}},
+ {-1,{0}},
+#line 1006 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4796), {226, 128, 152, 0}},
+#line 2103 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4797), {240, 157, 147, 142}},
+ {-1,{0}}, {-1,{0}},
+#line 603 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4800), {196, 161, 0}},
+ {-1,{0}},
#line 1214 "src/html_unescape.gperf"
- {"NotSquareSubset", 3, {226, 138, 143}},
-#line 1673 "src/html_unescape.gperf"
- {"SHcy", 2, {208, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2099 "src/html_unescape.gperf"
- {"YIcy", 2, {208, 135}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 339 "src/html_unescape.gperf"
- {"cwint", 3, {226, 136, 177}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str4802), {226, 139, 162, 0}},
+#line 809 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4803), {208, 165, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 202 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4809), {226, 167, 133, 0}},
+#line 1213 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4810), {226, 138, 143, 0}},
+#line 1672 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4811), {208, 168, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2098 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4821), {208, 135, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 338 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4825), {226, 136, 177, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1841 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4828), {206, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1842 "src/html_unescape.gperf"
- {"Theta", 2, {206, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1843 "src/html_unescape.gperf"
- {"theta", 2, {206, 184}},
-#line 2071 "src/html_unescape.gperf"
- {"xlArr", 3, {226, 159, 184}},
- {(char*)0,0,{0}},
-#line 1217 "src/html_unescape.gperf"
- {"NotSquareSupersetEqual", 3, {226, 139, 163}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 366 "src/html_unescape.gperf"
- {"demptyv", 3, {226, 166, 177}},
-#line 1876 "src/html_unescape.gperf"
- {"triangle", 3, {226, 150, 181}},
- {(char*)0,0,{0}},
-#line 603 "src/html_unescape.gperf"
- {"Gdot", 2, {196, 160}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str4837), {206, 184, 0}},
+#line 2070 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4838), {226, 159, 184, 0}},
+ {-1,{0}},
#line 1216 "src/html_unescape.gperf"
- {"NotSquareSuperset", 3, {226, 138, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 9 "src/html_unescape.gperf"
- {"Abreve", 2, {196, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 449 "src/html_unescape.gperf"
- {"dstrok", 2, {196, 145}},
-#line 1400 "src/html_unescape.gperf"
- {"pertenk", 3, {226, 128, 177}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1522 "src/html_unescape.gperf"
- {"rbrack", 1, {93}},
- {(char*)0,0,{0}},
-#line 852 "src/html_unescape.gperf"
- {"lbrack", 1, {91}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1324 "src/html_unescape.gperf"
- {"odsold", 3, {226, 166, 188}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1348 "src/html_unescape.gperf"
- {"omid", 3, {226, 166, 182}},
- {(char*)0,0,{0}},
-#line 2080 "src/html_unescape.gperf"
- {"xrArr", 3, {226, 159, 185}},
- {(char*)0,0,{0}},
-#line 1878 "src/html_unescape.gperf"
- {"triangleleft", 3, {226, 151, 131}},
-#line 1183 "src/html_unescape.gperf"
- {"NotGreaterTilde", 3, {226, 137, 181}},
-#line 280 "src/html_unescape.gperf"
- {"colone", 3, {226, 137, 148}},
- {(char*)0,0,{0}},
-#line 968 "src/html_unescape.gperf"
- {"Longleftarrow", 3, {226, 159, 184}},
- {(char*)0,0,{0}},
-#line 767 "src/html_unescape.gperf"
- {"iota", 2, {206, 185}},
- {(char*)0,0,{0}},
-#line 277 "src/html_unescape.gperf"
- {"colon", 1, {58}},
-#line 2119 "src/html_unescape.gperf"
- {"Zeta", 2, {206, 150}},
-#line 597 "src/html_unescape.gperf"
- {"gbreve", 2, {196, 159}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 247 "src/html_unescape.gperf"
- {"CHcy", 2, {208, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2105 "src/html_unescape.gperf"
- {"YUcy", 2, {208, 174}},
-#line 1546 "src/html_unescape.gperf"
- {"REG", 2, {194, 174}},
-#line 1823 "src/html_unescape.gperf"
- {"szlig", 2, {195, 159}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 457 "src/html_unescape.gperf"
- {"dzcy", 2, {209, 159}},
- {(char*)0,0,{0}},
-#line 111 "src/html_unescape.gperf"
- {"beta", 2, {206, 178}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 539 "src/html_unescape.gperf"
- {"euro", 3, {226, 130, 172}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 875 "src/html_unescape.gperf"
- {"LeftArrow", 3, {226, 134, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 222 "src/html_unescape.gperf"
- {"CapitalDifferentialD", 3, {226, 133, 133}},
- {(char*)0,0,{0}},
-#line 1593 "src/html_unescape.gperf"
- {"ring", 2, {203, 154}},
-#line 830 "src/html_unescape.gperf"
- {"Laplacetrf", 3, {226, 132, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 392 "src/html_unescape.gperf"
- {"djcy", 2, {209, 146}},
- {(char*)0,0,{0}},
-#line 1356 "src/html_unescape.gperf"
- {"oplus", 3, {226, 138, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 752 "src/html_unescape.gperf"
- {"integers", 3, {226, 132, 164}},
+ {offsetof(struct entity_pool_t, entity_pool_str4840), {226, 139, 163, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 365 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4843), {226, 166, 177, 0}},
+#line 1875 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4844), {226, 150, 181, 0}},
+ {-1,{0}},
+#line 602 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4846), {196, 160, 0}},
+ {-1,{0}},
+#line 1215 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4848), {226, 138, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 8 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4857), {196, 130, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 448 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4860), {196, 145, 0}},
+#line 1399 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4861), {226, 128, 177, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1521 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4866), {93, 0}},
+ {-1,{0}},
+#line 851 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4868), {91, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1323 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4872), {226, 166, 188, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1347 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4878), {226, 166, 182, 0}},
+ {-1,{0}},
+#line 2079 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4880), {226, 159, 185, 0}},
+ {-1,{0}},
+#line 1877 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4882), {226, 151, 131, 0}},
+#line 1182 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4883), {226, 137, 181, 0}},
+#line 279 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4884), {226, 137, 148, 0}},
+ {-1,{0}},
+#line 967 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4886), {226, 159, 184, 0}},
+ {-1,{0}},
+#line 766 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4888), {206, 185, 0}},
+ {-1,{0}},
+#line 276 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4890), {58, 0}},
+#line 2118 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4891), {206, 150, 0}},
#line 596 "src/html_unescape.gperf"
- {"Gbreve", 2, {196, 158}},
- {(char*)0,0,{0}},
-#line 1909 "src/html_unescape.gperf"
- {"ubrcy", 2, {209, 158}},
+ {offsetof(struct entity_pool_t, entity_pool_str4892), {196, 159, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 246 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4897), {208, 167, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 2104 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4900), {208, 174, 0}},
+#line 1545 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4901), {194, 174, 0}},
+#line 1822 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4902), {195, 159, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 456 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4909), {209, 159, 0}},
+ {-1,{0}},
+#line 110 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4911), {206, 178, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
#line 538 "src/html_unescape.gperf"
- {"euml", 2, {195, 171}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 362 "src/html_unescape.gperf"
- {"deg", 2, {194, 176}},
- {(char*)0,0,{0}},
-#line 1983 "src/html_unescape.gperf"
- {"uuml", 2, {195, 188}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 710 "src/html_unescape.gperf"
- {"Iacute", 2, {195, 141}},
-#line 1781 "src/html_unescape.gperf"
- {"succeq", 3, {226, 170, 176}},
- {(char*)0,0,{0}},
-#line 812 "src/html_unescape.gperf"
- {"KJcy", 2, {208, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 320 "src/html_unescape.gperf"
- {"CupCap", 3, {226, 137, 141}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1894 "src/html_unescape.gperf"
- {"tscy", 2, {209, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 242 "src/html_unescape.gperf"
- {"cent", 2, {194, 162}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str4918), {226, 130, 172, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 874 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4921), {226, 134, 144, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 221 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4924), {226, 133, 133, 0}},
+ {-1,{0}},
+#line 1592 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4926), {203, 154, 0}},
+#line 829 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4927), {226, 132, 146, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 391 "src/html_unescape.gperf"
- {"DJcy", 2, {208, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1858 "src/html_unescape.gperf"
- {"TildeFullEqual", 3, {226, 137, 133}},
- {(char*)0,0,{0}},
-#line 1880 "src/html_unescape.gperf"
- {"triangleq", 3, {226, 137, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 454 "src/html_unescape.gperf"
- {"duhar", 3, {226, 165, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 880 "src/html_unescape.gperf"
- {"LeftDoubleBracket", 3, {226, 159, 166}},
- {(char*)0,0,{0}},
-#line 943 "src/html_unescape.gperf"
- {"LJcy", 2, {208, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 719 "src/html_unescape.gperf"
- {"iecy", 2, {208, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1879 "src/html_unescape.gperf"
- {"trianglelefteq", 3, {226, 138, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1111 "src/html_unescape.gperf"
- {"nequiv", 3, {226, 137, 162}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1255 "src/html_unescape.gperf"
- {"nshortparallel", 3, {226, 136, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1100 "src/html_unescape.gperf"
- {"ndash", 3, {226, 128, 147}},
-#line 149 "src/html_unescape.gperf"
- {"bowtie", 3, {226, 139, 136}},
- {(char*)0,0,{0}},
-#line 558 "src/html_unescape.gperf"
- {"fjlig", 1, {102}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str4932), {209, 146, 0}},
+ {-1,{0}},
+#line 1355 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4934), {226, 138, 149, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 751 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4937), {226, 132, 164, 0}},
+#line 595 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4938), {196, 158, 0}},
+ {-1,{0}},
#line 1908 "src/html_unescape.gperf"
- {"Ubrcy", 2, {208, 142}},
- {(char*)0,0,{0}},
-#line 2000 "src/html_unescape.gperf"
- {"vartheta", 2, {207, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str4940), {209, 158, 0}},
+#line 537 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4941), {195, 171, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 361 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4944), {194, 176, 0}},
+ {-1,{0}},
#line 1982 "src/html_unescape.gperf"
- {"Uuml", 2, {195, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2002 "src/html_unescape.gperf"
- {"vartriangleright", 3, {226, 138, 179}},
+ {offsetof(struct entity_pool_t, entity_pool_str4946), {195, 188, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 709 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4949), {195, 141, 0}},
+#line 1780 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4950), {226, 170, 176, 0}},
+ {-1,{0}},
+#line 811 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4952), {208, 140, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 319 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4961), {226, 137, 141, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1893 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4975), {209, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 241 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4982), {194, 162, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 390 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str4991), {208, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1857 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5009), {226, 137, 133, 0}},
+ {-1,{0}},
+#line 1879 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5011), {226, 137, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 453 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5016), {226, 165, 175, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 879 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5025), {226, 159, 166, 0}},
+ {-1,{0}},
+#line 942 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5027), {208, 137, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 718 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5036), {208, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1878 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5043), {226, 138, 180, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1110 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5049), {226, 137, 162, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1254 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5055), {226, 136, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1099 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5062), {226, 128, 147, 0}},
+#line 148 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5063), {226, 139, 136, 0}},
+ {-1,{0}},
+#line 557 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5065), {102, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1907 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5072), {208, 142, 0}},
+ {-1,{0}},
+#line 1999 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5074), {207, 145, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1981 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5078), {195, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 2001 "src/html_unescape.gperf"
- {"vartriangleleft", 3, {226, 138, 178}},
-#line 75 "src/html_unescape.gperf"
- {"ascr", 4, {240, 157, 146, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str5084), {226, 138, 179, 0}},
+#line 2000 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5085), {226, 138, 178, 0}},
+#line 74 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5086), {240, 157, 146, 182}},
+ {-1,{0}}, {-1,{0}},
+#line 1775 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5089), {226, 137, 189, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 337 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5093), {226, 136, 178, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1638 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5101), {226, 137, 187, 0}},
+ {-1,{0}},
+#line 559 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5103), {239, 172, 130, 0}},
+ {-1,{0}},
+#line 256 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5105), {226, 138, 155, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 2009 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5108), {226, 138, 169, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1292 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5112), {226, 138, 174, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1803 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5120), {226, 165, 187, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1602 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5124), {226, 159, 167, 0}},
+ {-1,{0}},
+#line 964 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5126), {226, 159, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2007 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5142), {226, 138, 162, 0}},
+#line 2107 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5143), {197, 184, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 654 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5151), {62, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 226 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5156), {226, 169, 141, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
#line 1776 "src/html_unescape.gperf"
- {"succcurlyeq", 3, {226, 137, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 338 "src/html_unescape.gperf"
- {"cwconint", 3, {226, 136, 178}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1639 "src/html_unescape.gperf"
- {"sc", 3, {226, 137, 187}},
- {(char*)0,0,{0}},
-#line 560 "src/html_unescape.gperf"
- {"fllig", 3, {239, 172, 130}},
- {(char*)0,0,{0}},
-#line 257 "src/html_unescape.gperf"
- {"circledast", 3, {226, 138, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2010 "src/html_unescape.gperf"
- {"Vdash", 3, {226, 138, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1293 "src/html_unescape.gperf"
- {"nVdash", 3, {226, 138, 174}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1804 "src/html_unescape.gperf"
- {"suplarr", 3, {226, 165, 187}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1603 "src/html_unescape.gperf"
- {"robrk", 3, {226, 159, 167}},
- {(char*)0,0,{0}},
-#line 965 "src/html_unescape.gperf"
- {"lobrk", 3, {226, 159, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2008 "src/html_unescape.gperf"
- {"vdash", 3, {226, 138, 162}},
-#line 2108 "src/html_unescape.gperf"
- {"Yuml", 2, {197, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 655 "src/html_unescape.gperf"
- {"gt", 1, {62}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 227 "src/html_unescape.gperf"
- {"ccaps", 3, {226, 169, 141}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1777 "src/html_unescape.gperf"
- {"Succeeds", 3, {226, 137, 187}},
-#line 1311 "src/html_unescape.gperf"
- {"Oacute", 2, {195, 147}},
-#line 1875 "src/html_unescape.gperf"
- {"TRADE", 3, {226, 132, 162}},
-#line 1140 "src/html_unescape.gperf"
- {"NJcy", 2, {208, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 658 "src/html_unescape.gperf"
- {"gtdot", 3, {226, 139, 151}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2098 "src/html_unescape.gperf"
- {"yfr", 4, {240, 157, 148, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 285 "src/html_unescape.gperf"
- {"compfn", 3, {226, 136, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str5173), {226, 137, 187, 0}},
+#line 1310 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5174), {195, 147, 0}},
+#line 1874 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5175), {226, 132, 162, 0}},
+#line 1139 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5176), {208, 138, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 657 "src/html_unescape.gperf"
- {"Gt", 3, {226, 137, 171}},
-#line 1648 "src/html_unescape.gperf"
- {"scnE", 3, {226, 170, 182}},
-#line 732 "src/html_unescape.gperf"
- {"ijlig", 2, {196, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 262 "src/html_unescape.gperf"
- {"circledS", 3, {226, 147, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2096 "src/html_unescape.gperf"
- {"yen", 2, {194, 165}},
- {(char*)0,0,{0}},
-#line 1844 "src/html_unescape.gperf"
- {"thetasym", 2, {207, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 784 "src/html_unescape.gperf"
- {"iuml", 2, {195, 175}},
-#line 1779 "src/html_unescape.gperf"
- {"SucceedsSlantEqual", 3, {226, 137, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 160 "src/html_unescape.gperf"
- {"boxH", 3, {226, 149, 144}},
-#line 1074 "src/html_unescape.gperf"
- {"mumap", 3, {226, 138, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1578 "src/html_unescape.gperf"
- {"rightrightarrows", 3, {226, 135, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 281 "src/html_unescape.gperf"
- {"coloneq", 3, {226, 137, 148}},
- {(char*)0,0,{0}},
-#line 1638 "src/html_unescape.gperf"
- {"Sc", 3, {226, 170, 188}},
-#line 630 "src/html_unescape.gperf"
- {"glj", 3, {226, 170, 164}},
-#line 720 "src/html_unescape.gperf"
- {"iexcl", 2, {194, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 235 "src/html_unescape.gperf"
- {"ccups", 3, {226, 169, 140}},
- {(char*)0,0,{0}},
-#line 2060 "src/html_unescape.gperf"
- {"xcap", 3, {226, 139, 130}},
-#line 2124 "src/html_unescape.gperf"
- {"zhcy", 2, {208, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 164 "src/html_unescape.gperf"
- {"boxHD", 3, {226, 149, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 912 "src/html_unescape.gperf"
- {"leqslant", 3, {226, 169, 189}},
- {(char*)0,0,{0}},
-#line 1958 "src/html_unescape.gperf"
- {"UpperLeftArrow", 3, {226, 134, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 351 "src/html_unescape.gperf"
- {"dblac", 2, {203, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1471 "src/html_unescape.gperf"
- {"puncsp", 3, {226, 128, 136}},
- {(char*)0,0,{0}},
-#line 229 "src/html_unescape.gperf"
- {"ccaron", 2, {196, 141}},
- {(char*)0,0,{0}},
-#line 1520 "src/html_unescape.gperf"
- {"rbbrk", 3, {226, 157, 179}},
- {(char*)0,0,{0}},
-#line 850 "src/html_unescape.gperf"
- {"lbbrk", 3, {226, 157, 178}},
- {(char*)0,0,{0}},
-#line 59 "src/html_unescape.gperf"
- {"Aogon", 2, {196, 132}},
-#line 899 "src/html_unescape.gperf"
- {"LeftTriangleBar", 3, {226, 167, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 616 "src/html_unescape.gperf"
- {"gesdotol", 3, {226, 170, 132}},
-#line 901 "src/html_unescape.gperf"
- {"LeftTriangleEqual", 3, {226, 138, 180}},
+ {offsetof(struct entity_pool_t, entity_pool_str5181), {226, 139, 151, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 2097 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5189), {240, 157, 148, 182}},
+ {-1,{0}}, {-1,{0}},
+#line 284 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5192), {226, 136, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 656 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5197), {226, 137, 171, 0}},
+#line 1647 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5198), {226, 170, 182, 0}},
+#line 731 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5199), {196, 179, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 261 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5203), {226, 147, 136, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 2095 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5206), {194, 165, 0}},
+ {-1,{0}},
+#line 1843 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5208), {207, 145, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 783 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5211), {195, 175, 0}},
+#line 1778 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5212), {226, 137, 189, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 159 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5217), {226, 149, 144, 0}},
+#line 1073 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5218), {226, 138, 184, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1577 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5222), {226, 135, 137, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 280 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5227), {226, 137, 148, 0}},
+ {-1,{0}},
+#line 1637 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5229), {226, 170, 188, 0}},
+#line 629 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5230), {226, 170, 164, 0}},
+#line 719 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5231), {194, 161, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 234 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5234), {226, 169, 140, 0}},
+ {-1,{0}},
+#line 2059 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5236), {226, 139, 130, 0}},
+#line 2123 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5237), {208, 182, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 163 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5241), {226, 149, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 911 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5250), {226, 169, 189, 0}},
+ {-1,{0}},
+#line 1957 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5252), {226, 134, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 350 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5257), {203, 157, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1470 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5260), {226, 128, 136, 0}},
+ {-1,{0}},
+#line 228 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5262), {196, 141, 0}},
+ {-1,{0}},
+#line 1519 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5264), {226, 157, 179, 0}},
+ {-1,{0}},
+#line 849 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5266), {226, 157, 178, 0}},
+ {-1,{0}},
+#line 58 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5268), {196, 132, 0}},
+#line 898 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5269), {226, 167, 143, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 615 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5272), {226, 170, 132, 0}},
#line 900 "src/html_unescape.gperf"
- {"LeftTriangle", 3, {226, 138, 178}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 291 "src/html_unescape.gperf"
- {"conint", 3, {226, 136, 174}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 440 "src/html_unescape.gperf"
- {"drbkarow", 3, {226, 164, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1627 "src/html_unescape.gperf"
- {"rtrif", 3, {226, 150, 184}},
- {(char*)0,0,{0}},
-#line 1023 "src/html_unescape.gperf"
- {"ltrif", 3, {226, 151, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1549 "src/html_unescape.gperf"
- {"ReverseUpEquilibrium", 3, {226, 165, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 879 "src/html_unescape.gperf"
- {"LeftCeiling", 3, {226, 140, 136}},
- {(char*)0,0,{0}},
-#line 1980 "src/html_unescape.gperf"
- {"utrif", 3, {226, 150, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2062 "src/html_unescape.gperf"
- {"xcup", 3, {226, 139, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 546 "src/html_unescape.gperf"
- {"fallingdotseq", 3, {226, 137, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1529 "src/html_unescape.gperf"
- {"rcedil", 2, {197, 151}},
- {(char*)0,0,{0}},
-#line 859 "src/html_unescape.gperf"
- {"lcedil", 2, {196, 188}},
- {(char*)0,0,{0}},
-#line 1644 "src/html_unescape.gperf"
- {"scedil", 2, {197, 159}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str5273), {226, 138, 180, 0}},
+#line 899 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5274), {226, 138, 178, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 290 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5280), {226, 136, 174, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 439 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5283), {226, 164, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1626 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5295), {226, 150, 184, 0}},
+ {-1,{0}},
+#line 1022 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5297), {226, 151, 130, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1548 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5300), {226, 165, 175, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 878 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5306), {226, 140, 136, 0}},
+ {-1,{0}},
+#line 1979 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5308), {226, 150, 180, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2061 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5314), {226, 139, 131, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 545 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5319), {226, 137, 146, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1528 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5325), {197, 151, 0}},
+ {-1,{0}},
+#line 858 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5327), {196, 188, 0}},
+ {-1,{0}},
+#line 1643 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5329), {197, 159, 0}},
+ {-1,{0}},
+#line 1830 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5331), {197, 162, 0}},
+ {-1,{0}},
+#line 1748 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5333), {226, 152, 133, 0}},
+#line 168 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5334), {226, 138, 159, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1831 "src/html_unescape.gperf"
- {"Tcedil", 2, {197, 162}},
- {(char*)0,0,{0}},
-#line 1749 "src/html_unescape.gperf"
- {"starf", 3, {226, 152, 133}},
-#line 169 "src/html_unescape.gperf"
- {"boxminus", 3, {226, 138, 159}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1832 "src/html_unescape.gperf"
- {"tcedil", 2, {197, 163}},
-#line 2118 "src/html_unescape.gperf"
- {"ZeroWidthSpace", 3, {226, 128, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1094 "src/html_unescape.gperf"
- {"ncedil", 2, {197, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1405 "src/html_unescape.gperf"
- {"phiv", 2, {207, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 712 "src/html_unescape.gperf"
- {"ic", 3, {226, 129, 163}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 221 "src/html_unescape.gperf"
- {"capdot", 3, {226, 169, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 446 "src/html_unescape.gperf"
- {"dscy", 2, {209, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 249 "src/html_unescape.gperf"
- {"check", 3, {226, 156, 147}},
-#line 1382 "src/html_unescape.gperf"
- {"ovbar", 3, {226, 140, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1281 "src/html_unescape.gperf"
- {"ntriangleleft", 3, {226, 139, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str5340), {197, 163, 0}},
+#line 2117 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5341), {226, 128, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1093 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5350), {197, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1404 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5358), {207, 149, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 711 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5375), {226, 129, 163, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 220 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5384), {226, 169, 128, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 445 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5387), {209, 149, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 248 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5397), {226, 156, 147, 0}},
+#line 1381 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5398), {226, 140, 189, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1280 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5405), {226, 139, 170, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1580 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5411), {226, 138, 162, 0}},
+#line 1294 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5412), {226, 137, 165, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 892 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5424), {226, 134, 173, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 987 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5431), {226, 151, 138, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1583 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5434), {226, 167, 144, 0}},
+ {-1,{0}},
#line 1581 "src/html_unescape.gperf"
- {"RightTee", 3, {226, 138, 162}},
-#line 1295 "src/html_unescape.gperf"
- {"nvge", 3, {226, 137, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 893 "src/html_unescape.gperf"
- {"leftrightsquigarrow", 3, {226, 134, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 988 "src/html_unescape.gperf"
- {"lozenge", 3, {226, 151, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1584 "src/html_unescape.gperf"
- {"RightTriangleBar", 3, {226, 167, 144}},
- {(char*)0,0,{0}},
-#line 1582 "src/html_unescape.gperf"
- {"RightTeeVector", 3, {226, 165, 155}},
- {(char*)0,0,{0}},
-#line 1586 "src/html_unescape.gperf"
- {"RightTriangleEqual", 3, {226, 138, 181}},
+ {offsetof(struct entity_pool_t, entity_pool_str5436), {226, 165, 155, 0}},
+ {-1,{0}},
#line 1585 "src/html_unescape.gperf"
- {"RightTriangle", 3, {226, 138, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 803 "src/html_unescape.gperf"
- {"Kcedil", 2, {196, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1643 "src/html_unescape.gperf"
- {"Scedil", 2, {197, 158}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 269 "src/html_unescape.gperf"
- {"cirfnint", 3, {226, 168, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 491 "src/html_unescape.gperf"
- {"empty", 3, {226, 136, 133}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 23 "src/html_unescape.gperf"
- {"afr", 4, {240, 157, 148, 158}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 377 "src/html_unescape.gperf"
- {"DiacriticalTilde", 2, {203, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 883 "src/html_unescape.gperf"
- {"LeftDownVector", 3, {226, 135, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str5438), {226, 138, 181, 0}},
+#line 1584 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5439), {226, 138, 179, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 802 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5449), {196, 182, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1642 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5457), {197, 158, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 268 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5468), {226, 168, 144, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 490 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5471), {226, 136, 133, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 22 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5478), {240, 157, 148, 158}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 376 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5482), {203, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
#line 882 "src/html_unescape.gperf"
- {"LeftDownVectorBar", 3, {226, 165, 153}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 908 "src/html_unescape.gperf"
- {"lEg", 3, {226, 170, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 69 "src/html_unescape.gperf"
- {"ApplyFunction", 3, {226, 129, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 209 "src/html_unescape.gperf"
- {"bumpE", 3, {226, 170, 174}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 858 "src/html_unescape.gperf"
- {"Lcedil", 2, {196, 187}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 224 "src/html_unescape.gperf"
- {"caret", 3, {226, 129, 129}},
- {(char*)0,0,{0}},
-#line 92 "src/html_unescape.gperf"
- {"Barv", 3, {226, 171, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 230 "src/html_unescape.gperf"
- {"Ccedil", 2, {195, 135}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 261 "src/html_unescape.gperf"
- {"circledR", 2, {194, 174}},
+ {offsetof(struct entity_pool_t, entity_pool_str5489), {226, 135, 131, 0}},
+ {-1,{0}}, {-1,{0}},
#line 881 "src/html_unescape.gperf"
- {"LeftDownTeeVector", 3, {226, 165, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1896 "src/html_unescape.gperf"
- {"tshcy", 2, {209, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 403 "src/html_unescape.gperf"
- {"DotEqual", 3, {226, 137, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 243 "src/html_unescape.gperf"
- {"centerdot", 2, {194, 183}},
- {(char*)0,0,{0}},
-#line 1282 "src/html_unescape.gperf"
- {"ntrianglelefteq", 3, {226, 139, 172}},
- {(char*)0,0,{0}},
-#line 1057 "src/html_unescape.gperf"
- {"minus", 3, {226, 136, 146}},
- {(char*)0,0,{0}},
-#line 624 "src/html_unescape.gperf"
- {"gimel", 3, {226, 132, 183}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 7 "src/html_unescape.gperf"
- {"Aacute", 2, {195, 129}},
-#line 654 "src/html_unescape.gperf"
- {"gtcir", 3, {226, 169, 186}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 662 "src/html_unescape.gperf"
- {"gtrarr", 3, {226, 165, 184}},
-#line 206 "src/html_unescape.gperf"
- {"bull", 3, {226, 128, 162}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 424 "src/html_unescape.gperf"
- {"DownArrow", 3, {226, 134, 147}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1537 "src/html_unescape.gperf"
- {"rdquor", 3, {226, 128, 157}},
- {(char*)0,0,{0}},
-#line 866 "src/html_unescape.gperf"
- {"ldquor", 3, {226, 128, 158}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 756 "src/html_unescape.gperf"
- {"intlarhk", 3, {226, 168, 151}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1978 "src/html_unescape.gperf"
- {"utilde", 2, {197, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 590 "src/html_unescape.gperf"
- {"gacute", 2, {199, 181}},
- {(char*)0,0,{0}},
-#line 1279 "src/html_unescape.gperf"
- {"ntilde", 2, {195, 177}},
-#line 21 "src/html_unescape.gperf"
- {"af", 3, {226, 129, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 704 "src/html_unescape.gperf"
- {"Hstrok", 2, {196, 166}},
- {(char*)0,0,{0}},
-#line 544 "src/html_unescape.gperf"
- {"exponentiale", 3, {226, 133, 135}},
+ {offsetof(struct entity_pool_t, entity_pool_str5492), {226, 165, 153, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 907 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5501), {226, 170, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 68 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5509), {226, 129, 161, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 208 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5512), {226, 170, 174, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 857 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5524), {196, 187, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 223 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5528), {226, 129, 129, 0}},
+ {-1,{0}},
+#line 91 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5530), {226, 171, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 229 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5543), {195, 135, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 260 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5547), {194, 174, 0}},
+#line 880 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5548), {226, 165, 161, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1895 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5552), {209, 155, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 402 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5556), {226, 137, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 242 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5564), {194, 183, 0}},
+ {-1,{0}},
+#line 1281 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5566), {226, 139, 172, 0}},
+ {-1,{0}},
#line 1056 "src/html_unescape.gperf"
- {"minusb", 3, {226, 138, 159}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1588 "src/html_unescape.gperf"
- {"RightUpTeeVector", 3, {226, 165, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1965 "src/html_unescape.gperf"
- {"UpTeeArrow", 3, {226, 134, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2120 "src/html_unescape.gperf"
- {"zeta", 2, {206, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 374 "src/html_unescape.gperf"
- {"DiacriticalDot", 2, {203, 153}},
-#line 375 "src/html_unescape.gperf"
- {"DiacriticalDoubleAcute", 2, {203, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1147 "src/html_unescape.gperf"
- {"nleftarrow", 3, {226, 134, 154}},
-#line 692 "src/html_unescape.gperf"
- {"hkswarow", 3, {226, 164, 166}},
- {(char*)0,0,{0}},
-#line 730 "src/html_unescape.gperf"
- {"iiota", 3, {226, 132, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 63 "src/html_unescape.gperf"
- {"apacir", 3, {226, 169, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1093 "src/html_unescape.gperf"
- {"Ncedil", 2, {197, 133}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 215 "src/html_unescape.gperf"
- {"capand", 3, {226, 169, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1043 "src/html_unescape.gperf"
- {"mdash", 3, {226, 128, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 555 "src/html_unescape.gperf"
- {"filig", 3, {239, 172, 129}},
-#line 1649 "src/html_unescape.gperf"
- {"scnsim", 3, {226, 139, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1541 "src/html_unescape.gperf"
- {"realpart", 3, {226, 132, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 898 "src/html_unescape.gperf"
- {"leftthreetimes", 3, {226, 139, 139}},
-#line 78 "src/html_unescape.gperf"
- {"asymp", 3, {226, 137, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 686 "src/html_unescape.gperf"
- {"hellip", 3, {226, 128, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 452 "src/html_unescape.gperf"
- {"dtrif", 3, {226, 150, 190}},
- {(char*)0,0,{0}},
-#line 1176 "src/html_unescape.gperf"
- {"NotExists", 3, {226, 136, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1640 "src/html_unescape.gperf"
- {"sccue", 3, {226, 137, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2090 "src/html_unescape.gperf"
- {"YAcy", 2, {208, 175}},
+ {offsetof(struct entity_pool_t, entity_pool_str5568), {226, 136, 146, 0}},
+ {-1,{0}},
+#line 623 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5570), {226, 132, 183, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 6 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5577), {195, 129, 0}},
+#line 653 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5578), {226, 169, 186, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 661 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5583), {226, 165, 184, 0}},
+#line 205 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5584), {226, 128, 162, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 423 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5587), {226, 134, 147, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1536 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5593), {226, 128, 157, 0}},
+ {-1,{0}},
+#line 865 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5595), {226, 128, 158, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 755 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5598), {226, 168, 151, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1977 "src/html_unescape.gperf"
- {"Utilde", 2, {197, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1174 "src/html_unescape.gperf"
- {"NotEqual", 3, {226, 137, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1849 "src/html_unescape.gperf"
- {"ThinSpace", 3, {226, 128, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 65 "src/html_unescape.gperf"
- {"apE", 3, {226, 169, 176}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 207 "src/html_unescape.gperf"
- {"bullet", 3, {226, 128, 162}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 273 "src/html_unescape.gperf"
- {"CloseCurlyDoubleQuote", 3, {226, 128, 157}},
-#line 364 "src/html_unescape.gperf"
- {"Delta", 2, {206, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 621 "src/html_unescape.gperf"
- {"gg", 3, {226, 137, 171}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1379 "src/html_unescape.gperf"
- {"otimes", 3, {226, 138, 151}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2057 "src/html_unescape.gperf"
- {"wreath", 3, {226, 137, 128}},
- {(char*)0,0,{0}},
-#line 1528 "src/html_unescape.gperf"
- {"Rcedil", 2, {197, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 536 "src/html_unescape.gperf"
- {"eth", 2, {195, 176}},
-#line 1806 "src/html_unescape.gperf"
- {"supnE", 3, {226, 171, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 85 "src/html_unescape.gperf"
- {"awint", 3, {226, 168, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 196 "src/html_unescape.gperf"
- {"Breve", 2, {203, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 622 "src/html_unescape.gperf"
- {"Gg", 3, {226, 139, 153}},
- {(char*)0,0,{0}},
-#line 707 "src/html_unescape.gperf"
- {"HumpEqual", 3, {226, 137, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 949 "src/html_unescape.gperf"
- {"Lleftarrow", 3, {226, 135, 154}},
-#line 155 "src/html_unescape.gperf"
- {"boxdr", 3, {226, 148, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1783 "src/html_unescape.gperf"
- {"succneqq", 3, {226, 170, 182}},
-#line 1972 "src/html_unescape.gperf"
- {"uring", 2, {197, 175}},
-#line 930 "src/html_unescape.gperf"
- {"LessSlantEqual", 3, {226, 169, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1291 "src/html_unescape.gperf"
- {"nvdash", 3, {226, 138, 172}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 670 "src/html_unescape.gperf"
- {"Hacek", 2, {203, 135}},
-#line 780 "src/html_unescape.gperf"
- {"itilde", 2, {196, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 766 "src/html_unescape.gperf"
- {"Iota", 2, {206, 153}},
- {(char*)0,0,{0}},
-#line 760 "src/html_unescape.gperf"
- {"IOcy", 2, {208, 129}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 157 "src/html_unescape.gperf"
- {"boxDr", 3, {226, 149, 147}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1780 "src/html_unescape.gperf"
- {"SucceedsTilde", 3, {226, 137, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 884 "src/html_unescape.gperf"
- {"LeftFloor", 3, {226, 140, 138}},
-#line 2042 "src/html_unescape.gperf"
- {"Vvdash", 3, {226, 138, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1877 "src/html_unescape.gperf"
- {"triangledown", 3, {226, 150, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 970 "src/html_unescape.gperf"
- {"LongLeftRightArrow", 3, {226, 159, 183}},
-#line 1573 "src/html_unescape.gperf"
- {"RightFloor", 3, {226, 140, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 435 "src/html_unescape.gperf"
- {"DownRightTeeVector", 3, {226, 165, 159}},
- {(char*)0,0,{0}},
-#line 1481 "src/html_unescape.gperf"
- {"quatint", 3, {226, 168, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str5602), {197, 169, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 589 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5612), {199, 181, 0}},
+ {-1,{0}},
#line 1278 "src/html_unescape.gperf"
- {"Ntilde", 2, {195, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 211 "src/html_unescape.gperf"
- {"Bumpeq", 3, {226, 137, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 669 "src/html_unescape.gperf"
- {"gvnE", 3, {226, 137, 169}},
- {(char*)0,0,{0}},
-#line 165 "src/html_unescape.gperf"
- {"boxhu", 3, {226, 148, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 659 "src/html_unescape.gperf"
- {"gtlPar", 3, {226, 166, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1238 "src/html_unescape.gperf"
- {"nprec", 3, {226, 138, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1381 "src/html_unescape.gperf"
- {"ouml", 2, {195, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 612 "src/html_unescape.gperf"
- {"gescc", 3, {226, 170, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 537 "src/html_unescape.gperf"
- {"Euml", 2, {195, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1971 "src/html_unescape.gperf"
- {"Uring", 2, {197, 174}},
- {(char*)0,0,{0}},
-#line 1938 "src/html_unescape.gperf"
- {"UnderBracket", 3, {226, 142, 181}},
-#line 1162 "src/html_unescape.gperf"
- {"nLtv", 3, {226, 137, 170}},
-#line 873 "src/html_unescape.gperf"
- {"LeftArrowBar", 3, {226, 135, 164}},
-#line 1096 "src/html_unescape.gperf"
- {"ncongdot", 3, {226, 169, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 79 "src/html_unescape.gperf"
- {"asympeq", 3, {226, 137, 141}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1059 "src/html_unescape.gperf"
- {"minusdu", 3, {226, 168, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 365 "src/html_unescape.gperf"
- {"delta", 2, {206, 180}},
- {(char*)0,0,{0}},
-#line 679 "src/html_unescape.gperf"
- {"harrw", 3, {226, 134, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 39 "src/html_unescape.gperf"
- {"andslope", 3, {226, 169, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 238 "src/html_unescape.gperf"
- {"cdot", 2, {196, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 226 "src/html_unescape.gperf"
- {"Cayleys", 3, {226, 132, 173}},
-#line 167 "src/html_unescape.gperf"
- {"boxhU", 3, {226, 149, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1785 "src/html_unescape.gperf"
- {"succsim", 3, {226, 137, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 267 "src/html_unescape.gperf"
- {"cirE", 3, {226, 167, 131}},
-#line 1654 "src/html_unescape.gperf"
- {"sdotb", 3, {226, 138, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1319 "src/html_unescape.gperf"
- {"odash", 3, {226, 138, 157}},
-#line 270 "src/html_unescape.gperf"
- {"cirmid", 3, {226, 171, 175}},
-#line 1803 "src/html_unescape.gperf"
- {"suphsub", 3, {226, 171, 151}},
-#line 1796 "src/html_unescape.gperf"
- {"supdsub", 3, {226, 171, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1795 "src/html_unescape.gperf"
- {"supdot", 3, {226, 170, 190}},
- {(char*)0,0,{0}},
-#line 84 "src/html_unescape.gperf"
- {"awconint", 3, {226, 136, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1895 "src/html_unescape.gperf"
- {"TSHcy", 2, {208, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 640 "src/html_unescape.gperf"
- {"grave", 1, {96}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1005 "src/html_unescape.gperf"
- {"lsimg", 3, {226, 170, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1950 "src/html_unescape.gperf"
- {"UpArrowDownArrow", 3, {226, 135, 133}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 907 "src/html_unescape.gperf"
- {"LeftVector", 3, {226, 134, 188}},
-#line 417 "src/html_unescape.gperf"
- {"DoubleRightArrow", 3, {226, 135, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1109 "src/html_unescape.gperf"
- {"NegativeThinSpace", 3, {226, 128, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 942 "src/html_unescape.gperf"
- {"lhblk", 3, {226, 150, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 268 "src/html_unescape.gperf"
- {"cire", 3, {226, 137, 151}},
-#line 1294 "src/html_unescape.gperf"
- {"nVDash", 3, {226, 138, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1928 "src/html_unescape.gperf"
- {"uhblk", 3, {226, 150, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 738 "src/html_unescape.gperf"
- {"imagpart", 3, {226, 132, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str5614), {195, 177, 0}},
+#line 20 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5615), {226, 129, 161, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 703 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5618), {196, 166, 0}},
+ {-1,{0}},
+#line 543 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5620), {226, 133, 135, 0}},
+#line 1055 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5621), {226, 138, 159, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1587 "src/html_unescape.gperf"
- {"RightUpDownVector", 3, {226, 165, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 152 "src/html_unescape.gperf"
- {"boxdL", 3, {226, 149, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 627 "src/html_unescape.gperf"
- {"gla", 3, {226, 170, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 783 "src/html_unescape.gperf"
- {"Iuml", 2, {195, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1326 "src/html_unescape.gperf"
- {"oelig", 2, {197, 147}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1199 "src/html_unescape.gperf"
- {"NotLessSlantEqual", 3, {226, 169, 189}},
- {(char*)0,0,{0}},
-#line 154 "src/html_unescape.gperf"
- {"boxDL", 3, {226, 149, 151}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 592 "src/html_unescape.gperf"
- {"gamma", 2, {206, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str5625), {226, 165, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1964 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5630), {226, 134, 165, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2119 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5639), {206, 182, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 373 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5644), {203, 153, 0}},
+#line 374 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5645), {203, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1146 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5663), {226, 134, 154, 0}},
+#line 691 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5664), {226, 164, 166, 0}},
+ {-1,{0}},
+#line 729 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5666), {226, 132, 169, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 62 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5669), {226, 169, 175, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1092 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5673), {197, 133, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 214 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5678), {226, 169, 132, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1042 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5686), {226, 128, 148, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 554 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5689), {239, 172, 129, 0}},
+#line 1648 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5690), {226, 139, 169, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1540 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5699), {226, 132, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 897 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5703), {226, 139, 139, 0}},
+#line 77 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5704), {226, 137, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 685 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5718), {226, 128, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 451 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5722), {226, 150, 190, 0}},
+ {-1,{0}},
+#line 1175 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5724), {226, 136, 132, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1639 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5728), {226, 137, 189, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2089 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5733), {208, 175, 0}},
+#line 1976 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5734), {197, 168, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1173 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5741), {226, 137, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1848 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5747), {226, 128, 137, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 64 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5754), {226, 169, 176, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 206 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5762), {226, 128, 162, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 272 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5765), {226, 128, 157, 0}},
+#line 363 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5766), {206, 148, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 620 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5776), {226, 137, 171, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1378 "src/html_unescape.gperf"
- {"Otimes", 3, {226, 168, 183}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str5780), {226, 138, 151, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2056 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5799), {226, 137, 128, 0}},
+ {-1,{0}},
+#line 1527 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5801), {197, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 535 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5807), {195, 176, 0}},
+#line 1805 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5808), {226, 171, 140, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 84 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5811), {226, 168, 145, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 195 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5817), {203, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 621 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5822), {226, 139, 153, 0}},
+ {-1,{0}},
+#line 706 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5824), {226, 137, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 948 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5837), {226, 135, 154, 0}},
+#line 154 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5838), {226, 148, 140, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1782 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5847), {226, 170, 182, 0}},
+#line 1971 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5848), {197, 175, 0}},
+#line 929 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5849), {226, 169, 189, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1290 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5860), {226, 138, 172, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 669 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5866), {203, 135, 0}},
+#line 779 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5867), {196, 169, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 765 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5870), {206, 153, 0}},
+ {-1,{0}},
+#line 759 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5872), {208, 129, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 156 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5884), {226, 149, 147, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1779 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5891), {226, 137, 191, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 883 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5905), {226, 140, 138, 0}},
+#line 2041 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5906), {226, 138, 170, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1876 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5923), {226, 150, 191, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 969 "src/html_unescape.gperf"
- {"longleftrightarrow", 3, {226, 159, 183}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 591 "src/html_unescape.gperf"
- {"Gamma", 2, {206, 147}},
-#line 128 "src/html_unescape.gperf"
- {"bigwedge", 3, {226, 139, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 161 "src/html_unescape.gperf"
- {"boxhd", 3, {226, 148, 172}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1797 "src/html_unescape.gperf"
- {"supE", 3, {226, 171, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 903 "src/html_unescape.gperf"
- {"LeftUpTeeVector", 3, {226, 165, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 615 "src/html_unescape.gperf"
- {"gesdoto", 3, {226, 170, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 801 "src/html_unescape.gperf"
- {"kappa", 2, {206, 186}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1125 "src/html_unescape.gperf"
- {"ngeqslant", 3, {226, 169, 190}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 666 "src/html_unescape.gperf"
- {"gtrless", 3, {226, 137, 183}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 551 "src/html_unescape.gperf"
- {"fflig", 3, {239, 172, 128}},
-#line 122 "src/html_unescape.gperf"
- {"bigsqcup", 3, {226, 168, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 809 "src/html_unescape.gperf"
- {"kgreen", 2, {196, 184}},
-#line 1798 "src/html_unescape.gperf"
- {"supe", 3, {226, 138, 135}},
- {(char*)0,0,{0}},
-#line 171 "src/html_unescape.gperf"
- {"boxtimes", 3, {226, 138, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 632 "src/html_unescape.gperf"
- {"gnapprox", 3, {226, 170, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 428 "src/html_unescape.gperf"
- {"downdownarrows", 3, {226, 135, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 126 "src/html_unescape.gperf"
- {"biguplus", 3, {226, 168, 132}},
-#line 811 "src/html_unescape.gperf"
- {"khcy", 2, {209, 133}},
- {(char*)0,0,{0}},
-#line 356 "src/html_unescape.gperf"
- {"ddagger", 3, {226, 128, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str5927), {226, 159, 183, 0}},
+#line 1572 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5928), {226, 140, 139, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 434 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5931), {226, 165, 159, 0}},
+ {-1,{0}},
+#line 1480 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5933), {226, 168, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1277 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5937), {195, 145, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 210 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5940), {226, 137, 142, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 668 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5949), {226, 137, 169, 0}},
+ {-1,{0}},
+#line 164 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5951), {226, 148, 180, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 658 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5956), {226, 166, 149, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1237 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5959), {226, 138, 128, 0}},
+ {-1,{0}}, {-1,{0}},
#line 1380 "src/html_unescape.gperf"
- {"Ouml", 2, {195, 150}},
- {(char*)0,0,{0}},
-#line 110 "src/html_unescape.gperf"
- {"Beta", 2, {206, 146}},
+ {offsetof(struct entity_pool_t, entity_pool_str5962), {195, 182, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 611 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5970), {226, 170, 169, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 536 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5976), {195, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1970 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5980), {197, 174, 0}},
+ {-1,{0}},
+#line 1937 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5982), {226, 142, 181, 0}},
+#line 1161 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5983), {226, 137, 170, 0}},
+#line 872 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5984), {226, 135, 164, 0}},
+#line 1095 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str5985), {226, 169, 173, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 78 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6003), {226, 137, 141, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1058 "src/html_unescape.gperf"
- {"minusd", 3, {226, 136, 184}},
+ {offsetof(struct entity_pool_t, entity_pool_str6023), {226, 168, 170, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 364 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6030), {206, 180, 0}},
+ {-1,{0}},
+#line 678 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6032), {226, 134, 173, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 38 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6038), {226, 169, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 237 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6043), {196, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 225 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6048), {226, 132, 173, 0}},
+#line 166 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6049), {226, 149, 168, 0}},
+ {-1,{0}}, {-1,{0}},
#line 1784 "src/html_unescape.gperf"
- {"succnsim", 3, {226, 139, 169}},
- {(char*)0,0,{0}},
-#line 311 "src/html_unescape.gperf"
- {"ctdot", 3, {226, 139, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 813 "src/html_unescape.gperf"
- {"kjcy", 2, {209, 156}},
-#line 626 "src/html_unescape.gperf"
- {"gjcy", 2, {209, 147}},
- {(char*)0,0,{0}},
-#line 1095 "src/html_unescape.gperf"
- {"ncong", 3, {226, 137, 135}},
-#line 2086 "src/html_unescape.gperf"
- {"xvee", 3, {226, 139, 129}},
-#line 99 "src/html_unescape.gperf"
- {"bcong", 3, {226, 137, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1723 "src/html_unescape.gperf"
- {"sqsube", 3, {226, 138, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 156 "src/html_unescape.gperf"
- {"boxdR", 3, {226, 149, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 971 "src/html_unescape.gperf"
- {"Longleftrightarrow", 3, {226, 159, 186}},
- {(char*)0,0,{0}},
-#line 1722 "src/html_unescape.gperf"
- {"sqsub", 3, {226, 138, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 431 "src/html_unescape.gperf"
- {"DownLeftRightVector", 3, {226, 165, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1724 "src/html_unescape.gperf"
- {"sqsubset", 3, {226, 138, 143}},
- {(char*)0,0,{0}},
-#line 1230 "src/html_unescape.gperf"
- {"NotVerticalBar", 3, {226, 136, 164}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1175 "src/html_unescape.gperf"
- {"NotEqualTilde", 3, {226, 137, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str6052), {226, 137, 191, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 266 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6061), {226, 167, 131, 0}},
+#line 1653 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6062), {226, 138, 161, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1318 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6066), {226, 138, 157, 0}},
+#line 269 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6067), {226, 171, 175, 0}},
+#line 1802 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6068), {226, 171, 151, 0}},
+#line 1795 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6069), {226, 171, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1794 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6077), {226, 170, 190, 0}},
+ {-1,{0}},
+#line 83 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6079), {226, 136, 179, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1894 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6084), {208, 139, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 639 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6087), {96, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1004 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6101), {226, 170, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1949 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6106), {226, 135, 133, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 906 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6121), {226, 134, 188, 0}},
+#line 416 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6122), {226, 135, 146, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1108 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6129), {226, 128, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 941 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6140), {226, 150, 132, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 267 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6146), {226, 137, 151, 0}},
+#line 1293 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6147), {226, 138, 175, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1927 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6151), {226, 150, 128, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 737 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6155), {226, 132, 145, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1586 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6161), {226, 165, 143, 0}},
+ {-1,{0}}, {-1,{0}},
#line 151 "src/html_unescape.gperf"
- {"boxdl", 3, {226, 148, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 158 "src/html_unescape.gperf"
- {"boxDR", 3, {226, 149, 148}},
- {(char*)0,0,{0}},
-#line 35 "src/html_unescape.gperf"
- {"andand", 3, {226, 169, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1592 "src/html_unescape.gperf"
- {"RightVector", 3, {226, 135, 128}},
- {(char*)0,0,{0}},
-#line 731 "src/html_unescape.gperf"
- {"IJlig", 2, {196, 178}},
-#line 1227 "src/html_unescape.gperf"
- {"NotTildeEqual", 3, {226, 137, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 58 "src/html_unescape.gperf"
- {"angzarr", 3, {226, 141, 188}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 53 "src/html_unescape.gperf"
- {"angrt", 3, {226, 136, 159}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 12 "src/html_unescape.gperf"
- {"acd", 3, {226, 136, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 38 "src/html_unescape.gperf"
- {"andd", 3, {226, 169, 156}},
- {(char*)0,0,{0}},
-#line 1241 "src/html_unescape.gperf"
- {"nrarrc", 3, {226, 164, 179}},
-#line 2026 "src/html_unescape.gperf"
- {"VeryThinSpace", 3, {226, 128, 138}},
- {(char*)0,0,{0}},
-#line 1800 "src/html_unescape.gperf"
- {"Superset", 3, {226, 138, 131}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str6164), {226, 149, 149, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 626 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6176), {226, 170, 165, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 782 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6193), {195, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1325 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6203), {197, 147, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1198 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6208), {226, 169, 189, 0}},
+ {-1,{0}},
#line 153 "src/html_unescape.gperf"
- {"boxDl", 3, {226, 149, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2030 "src/html_unescape.gperf"
- {"vnsub", 3, {226, 138, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 236 "src/html_unescape.gperf"
- {"ccupssm", 3, {226, 169, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1988 "src/html_unescape.gperf"
- {"varnothing", 3, {226, 136, 133}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1533 "src/html_unescape.gperf"
- {"rcy", 2, {209, 128}},
- {(char*)0,0,{0}},
-#line 863 "src/html_unescape.gperf"
- {"lcy", 2, {208, 187}},
- {(char*)0,0,{0}},
-#line 1653 "src/html_unescape.gperf"
- {"scy", 2, {209, 129}},
- {(char*)0,0,{0}},
-#line 1833 "src/html_unescape.gperf"
- {"Tcy", 2, {208, 162}},
-#line 2113 "src/html_unescape.gperf"
- {"Zcy", 2, {208, 151}},
-#line 469 "src/html_unescape.gperf"
- {"ecy", 2, {209, 141}},
-#line 1538 "src/html_unescape.gperf"
- {"rdsh", 3, {226, 134, 179}},
- {(char*)0,0,{0}},
-#line 869 "src/html_unescape.gperf"
- {"ldsh", 3, {226, 134, 178}},
- {(char*)0,0,{0}},
-#line 1915 "src/html_unescape.gperf"
- {"ucy", 2, {209, 131}},
-#line 185 "src/html_unescape.gperf"
- {"boxVH", 3, {226, 149, 172}},
-#line 1834 "src/html_unescape.gperf"
- {"tcy", 2, {209, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1099 "src/html_unescape.gperf"
- {"ncy", 2, {208, 189}},
- {(char*)0,0,{0}},
-#line 101 "src/html_unescape.gperf"
- {"bcy", 2, {208, 177}},
-#line 1277 "src/html_unescape.gperf"
- {"ntgl", 3, {226, 137, 185}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 787 "src/html_unescape.gperf"
- {"Jcy", 2, {208, 153}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 289 "src/html_unescape.gperf"
- {"congdot", 3, {226, 169, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str6210), {226, 149, 151, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 591 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6215), {206, 179, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1377 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6236), {226, 168, 183, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 968 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6248), {226, 159, 183, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 590 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6261), {206, 147, 0}},
+#line 127 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6262), {226, 139, 128, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 160 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6268), {226, 148, 172, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1796 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6283), {226, 171, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 902 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6292), {226, 165, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 614 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6298), {226, 170, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 800 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6304), {206, 186, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1124 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6315), {226, 169, 190, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 665 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6340), {226, 137, 183, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 550 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6351), {239, 172, 128, 0}},
+#line 121 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6352), {226, 168, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 808 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6367), {196, 184, 0}},
+#line 1797 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6368), {226, 138, 135, 0}},
+ {-1,{0}},
+#line 170 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6370), {226, 138, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 631 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6386), {226, 170, 138, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 427 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6394), {226, 135, 138, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 125 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6403), {226, 168, 132, 0}},
+#line 810 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6404), {209, 133, 0}},
+ {-1,{0}},
+#line 355 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6406), {226, 128, 161, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1379 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6418), {195, 150, 0}},
+ {-1,{0}},
+#line 109 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6420), {206, 146, 0}},
+#line 1057 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6421), {226, 136, 184, 0}},
+#line 1783 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6422), {226, 139, 169, 0}},
+ {-1,{0}},
+#line 310 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6424), {226, 139, 175, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 812 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6427), {209, 156, 0}},
+#line 625 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6428), {209, 147, 0}},
+ {-1,{0}},
+#line 1094 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6430), {226, 137, 135, 0}},
+#line 2085 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6431), {226, 139, 129, 0}},
+#line 98 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6432), {226, 137, 140, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1722 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6439), {226, 138, 145, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 155 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6442), {226, 149, 146, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 970 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6445), {226, 159, 186, 0}},
+ {-1,{0}},
+#line 1721 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6447), {226, 138, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 430 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6451), {226, 165, 144, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1723 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6454), {226, 138, 143, 0}},
+ {-1,{0}},
+#line 1229 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6456), {226, 136, 164, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1174 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6461), {226, 137, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 150 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6485), {226, 148, 144, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 157 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6488), {226, 149, 148, 0}},
+ {-1,{0}},
+#line 34 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6490), {226, 169, 149, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1591 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6502), {226, 135, 128, 0}},
+ {-1,{0}},
+#line 730 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6504), {196, 178, 0}},
+#line 1226 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6505), {226, 137, 132, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 57 "src/html_unescape.gperf"
- {"angst", 2, {195, 133}},
- {(char*)0,0,{0}},
-#line 1570 "src/html_unescape.gperf"
- {"RightDownTeeVector", 3, {226, 165, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1386 "src/html_unescape.gperf"
- {"OverParenthesis", 3, {226, 143, 156}},
-#line 1020 "src/html_unescape.gperf"
- {"ltquest", 3, {226, 169, 187}},
- {(char*)0,0,{0}},
-#line 1395 "src/html_unescape.gperf"
- {"pcy", 2, {208, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1376 "src/html_unescape.gperf"
- {"otilde", 2, {195, 181}},
-#line 1536 "src/html_unescape.gperf"
- {"rdquo", 3, {226, 128, 157}},
- {(char*)0,0,{0}},
-#line 865 "src/html_unescape.gperf"
- {"ldquo", 3, {226, 128, 156}},
- {(char*)0,0,{0}},
-#line 2006 "src/html_unescape.gperf"
- {"Vcy", 2, {208, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 216 "src/html_unescape.gperf"
- {"capbrcup", 3, {226, 169, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 102 "src/html_unescape.gperf"
- {"bdquo", 3, {226, 128, 158}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 422 "src/html_unescape.gperf"
- {"DownArrowBar", 3, {226, 164, 147}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2007 "src/html_unescape.gperf"
- {"vcy", 2, {208, 178}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 54 "src/html_unescape.gperf"
- {"angrtvb", 3, {226, 138, 190}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 805 "src/html_unescape.gperf"
- {"Kcy", 2, {208, 154}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1041 "src/html_unescape.gperf"
- {"Mcy", 2, {208, 156}},
+ {offsetof(struct entity_pool_t, entity_pool_str6509), {226, 141, 188, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 52 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6515), {226, 136, 159, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 11 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6521), {226, 136, 191, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 37 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6524), {226, 169, 156, 0}},
+ {-1,{0}},
+#line 1240 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6526), {226, 164, 179, 0}},
+#line 2025 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6527), {226, 128, 138, 0}},
+ {-1,{0}},
+#line 1799 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6529), {226, 138, 131, 0}},
+ {-1,{0}},
+#line 152 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6531), {226, 149, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2029 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6535), {226, 138, 130, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 235 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6538), {226, 169, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1987 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6548), {226, 136, 133, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1532 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6552), {209, 128, 0}},
+ {-1,{0}},
+#line 862 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6554), {208, 187, 0}},
+ {-1,{0}},
#line 1652 "src/html_unescape.gperf"
- {"Scy", 2, {208, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1116 "src/html_unescape.gperf"
- {"NewLine", 1, {10}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 548 "src/html_unescape.gperf"
- {"fcy", 2, {209, 132}},
+ {offsetof(struct entity_pool_t, entity_pool_str6556), {209, 129, 0}},
+ {-1,{0}},
+#line 1832 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6558), {208, 162, 0}},
+#line 2112 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6559), {208, 151, 0}},
+#line 468 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6560), {209, 141, 0}},
+#line 1537 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6561), {226, 134, 179, 0}},
+ {-1,{0}},
+#line 868 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6563), {226, 134, 178, 0}},
+ {-1,{0}},
#line 1914 "src/html_unescape.gperf"
- {"Ucy", 2, {208, 163}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str6565), {209, 131, 0}},
#line 184 "src/html_unescape.gperf"
- {"boxVh", 3, {226, 149, 171}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 354 "src/html_unescape.gperf"
- {"Dcy", 2, {208, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 705 "src/html_unescape.gperf"
- {"hstrok", 2, {196, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 862 "src/html_unescape.gperf"
- {"Lcy", 2, {208, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2094 "src/html_unescape.gperf"
- {"Ycy", 2, {208, 171}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1815 "src/html_unescape.gperf"
- {"supsim", 3, {226, 171, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1165 "src/html_unescape.gperf"
- {"NonBreakingSpace", 2, {194, 160}},
-#line 1383 "src/html_unescape.gperf"
- {"OverBar", 3, {226, 128, 190}},
-#line 1725 "src/html_unescape.gperf"
- {"sqsubseteq", 3, {226, 138, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 625 "src/html_unescape.gperf"
- {"GJcy", 2, {208, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1384 "src/html_unescape.gperf"
- {"OverBrace", 3, {226, 143, 158}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 513 "src/html_unescape.gperf"
- {"eqcirc", 3, {226, 137, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str6566), {226, 149, 172, 0}},
+#line 1833 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6567), {209, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1098 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6577), {208, 189, 0}},
+ {-1,{0}},
+#line 100 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6579), {208, 177, 0}},
+#line 1276 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6580), {226, 137, 185, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 786 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6585), {208, 153, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 288 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6600), {226, 169, 173, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 56 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6607), {195, 133, 0}},
+ {-1,{0}},
+#line 1569 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6609), {226, 165, 157, 0}},
+ {-1,{0}}, {-1,{0}},
#line 1385 "src/html_unescape.gperf"
- {"OverBracket", 3, {226, 142, 180}},
- {(char*)0,0,{0}},
-#line 82 "src/html_unescape.gperf"
- {"Auml", 2, {195, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 16 "src/html_unescape.gperf"
- {"acute", 2, {194, 180}},
-#line 716 "src/html_unescape.gperf"
- {"icy", 2, {208, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 779 "src/html_unescape.gperf"
- {"Itilde", 2, {196, 168}},
-#line 690 "src/html_unescape.gperf"
- {"HilbertSpace", 3, {226, 132, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1345 "src/html_unescape.gperf"
- {"omega", 2, {207, 137}},
-#line 214 "src/html_unescape.gperf"
- {"cacute", 2, {196, 135}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1646 "src/html_unescape.gperf"
- {"scirc", 2, {197, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 465 "src/html_unescape.gperf"
- {"ecirc", 2, {195, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str6612), {226, 143, 156, 0}},
+#line 1019 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6613), {226, 169, 187, 0}},
+ {-1,{0}},
+#line 1394 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6615), {208, 191, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1375 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6618), {195, 181, 0}},
+#line 1535 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6619), {226, 128, 157, 0}},
+ {-1,{0}},
+#line 864 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6621), {226, 128, 156, 0}},
+ {-1,{0}},
+#line 2005 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6623), {208, 146, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 215 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6626), {226, 169, 137, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 101 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6646), {226, 128, 158, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 421 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6650), {226, 164, 147, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 2006 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6657), {208, 178, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 53 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6665), {226, 138, 190, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 804 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6676), {208, 154, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1040 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6683), {208, 156, 0}},
+#line 1651 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6684), {208, 161, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1115 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6691), {10, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 547 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6696), {209, 132, 0}},
#line 1913 "src/html_unescape.gperf"
- {"ucirc", 2, {195, 187}},
- {(char*)0,0,{0}},
-#line 646 "src/html_unescape.gperf"
- {"GreaterSlantEqual", 3, {226, 169, 190}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 785 "src/html_unescape.gperf"
- {"Jcirc", 2, {196, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1292 "src/html_unescape.gperf"
- {"nvDash", 3, {226, 138, 173}},
-#line 2044 "src/html_unescape.gperf"
- {"Wcirc", 2, {197, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1098 "src/html_unescape.gperf"
- {"Ncy", 2, {208, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1580 "src/html_unescape.gperf"
- {"RightTeeArrow", 3, {226, 134, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 925 "src/html_unescape.gperf"
- {"LessFullEqual", 3, {226, 137, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1011 "src/html_unescape.gperf"
- {"ltcc", 3, {226, 170, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 27 "src/html_unescape.gperf"
- {"aleph", 3, {226, 132, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 355 "src/html_unescape.gperf"
- {"dcy", 2, {208, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str6697), {208, 163, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 183 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6704), {226, 149, 171, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 353 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6715), {208, 148, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 704 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6738), {196, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 861 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6751), {208, 155, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2093 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6762), {208, 171, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1814 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6775), {226, 171, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1164 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6789), {194, 160, 0}},
+#line 1382 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6790), {226, 128, 190, 0}},
+#line 1724 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6791), {226, 138, 145, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 624 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6797), {208, 131, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1383 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6800), {226, 143, 158, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 512 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6806), {226, 137, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1384 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6819), {226, 142, 180, 0}},
+ {-1,{0}},
+#line 81 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6821), {195, 132, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 15 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6829), {194, 180, 0}},
+#line 715 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6830), {208, 184, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 778 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6849), {196, 168, 0}},
+#line 689 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6850), {226, 132, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1344 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6854), {207, 137, 0}},
+#line 213 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6855), {196, 135, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1645 "src/html_unescape.gperf"
- {"Scirc", 2, {197, 156}},
- {(char*)0,0,{0}},
-#line 920 "src/html_unescape.gperf"
- {"lessapprox", 3, {226, 170, 133}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 718 "src/html_unescape.gperf"
- {"IEcy", 2, {208, 149}},
-#line 986 "src/html_unescape.gperf"
- {"LowerRightArrow", 3, {226, 134, 152}},
+ {offsetof(struct entity_pool_t, entity_pool_str6861), {197, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 464 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6865), {195, 170, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1912 "src/html_unescape.gperf"
- {"Ucirc", 2, {195, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 25 "src/html_unescape.gperf"
- {"agrave", 2, {195, 160}},
- {(char*)0,0,{0}},
-#line 1060 "src/html_unescape.gperf"
- {"MinusPlus", 3, {226, 136, 147}},
-#line 127 "src/html_unescape.gperf"
- {"bigvee", 3, {226, 139, 129}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1532 "src/html_unescape.gperf"
- {"Rcy", 2, {208, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1802 "src/html_unescape.gperf"
- {"suphsol", 3, {226, 159, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 495 "src/html_unescape.gperf"
- {"EmptyVerySmallSquare", 3, {226, 150, 171}},
- {(char*)0,0,{0}},
-#line 163 "src/html_unescape.gperf"
- {"boxhD", 3, {226, 149, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1436 "src/html_unescape.gperf"
- {"precapprox", 3, {226, 170, 183}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 55 "src/html_unescape.gperf"
- {"angrtvbd", 3, {226, 166, 157}},
-#line 2092 "src/html_unescape.gperf"
- {"Ycirc", 2, {197, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str6870), {195, 187, 0}},
+ {-1,{0}},
+#line 645 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6872), {226, 169, 190, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 784 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6890), {196, 180, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1291 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6895), {226, 138, 173, 0}},
+#line 2043 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6896), {197, 180, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1097 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6900), {208, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1579 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6921), {226, 134, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 924 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6942), {226, 137, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1010 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6958), {226, 170, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 26 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6963), {226, 132, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 354 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6979), {208, 180, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1644 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6989), {197, 156, 0}},
+ {-1,{0}},
+#line 919 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str6991), {226, 170, 133, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 717 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7000), {208, 149, 0}},
+#line 985 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7001), {226, 134, 152, 0}},
+#line 1911 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7002), {195, 155, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 24 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7021), {195, 160, 0}},
+ {-1,{0}},
+#line 1059 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7023), {226, 136, 147, 0}},
+#line 126 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7024), {226, 139, 129, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1531 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7028), {208, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1801 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7034), {226, 159, 137, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 494 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7037), {226, 150, 171, 0}},
+ {-1,{0}},
+#line 162 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7039), {226, 149, 165, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1435 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7047), {226, 170, 183, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 54 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7066), {226, 166, 157, 0}},
+#line 2091 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7067), {197, 182, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1752 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7071), {226, 138, 130, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1374 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7074), {195, 149, 0}},
+#line 231 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7075), {196, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 546 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7085), {208, 164, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 286 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7090), {226, 132, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1762 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7096), {226, 165, 185, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 757 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7115), {226, 129, 163, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 175 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7120), {226, 148, 148, 0}},
+#line 9 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7121), {196, 131, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1279 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7127), {226, 137, 184, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 713 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7135), {195, 174, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 2062 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7142), {226, 150, 189, 0}},
+#line 252 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7143), {203, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 662 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7168), {226, 139, 151, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 610 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7171), {226, 169, 190, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1282 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7183), {226, 139, 171, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 313 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7198), {226, 139, 158, 0}},
#line 1753 "src/html_unescape.gperf"
- {"sub", 3, {226, 138, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1375 "src/html_unescape.gperf"
- {"Otilde", 2, {195, 149}},
-#line 232 "src/html_unescape.gperf"
- {"Ccirc", 2, {196, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 547 "src/html_unescape.gperf"
- {"Fcy", 2, {208, 164}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 287 "src/html_unescape.gperf"
- {"complexes", 3, {226, 132, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str7199), {226, 139, 144, 0}},
+ {-1,{0}},
+#line 1041 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7201), {208, 188, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1859 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7212), {226, 168, 177, 0}},
+ {-1,{0}},
+#line 690 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7214), {226, 164, 165, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1682 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7217), {207, 131, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 324 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7224), {226, 169, 133, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1372 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7230), {195, 184, 0}},
+#line 457 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7231), {226, 159, 191, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 891 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7234), {226, 135, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1576 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7245), {226, 135, 140, 0}},
+ {-1,{0}},
+#line 803 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7247), {196, 183, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1758 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7256), {226, 171, 129, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 332 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7260), {194, 164, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 896 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7269), {226, 165, 154, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 122 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7274), {226, 152, 133, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 320 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7277), {226, 136, 170, 0}},
+#line 973 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7278), {226, 159, 182, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 597 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7294), {196, 162, 0}},
+ {-1,{0}},
+#line 1439 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7296), {226, 170, 175, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2113 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7307), {208, 183, 0}},
+ {-1,{0}},
+#line 1412 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7309), {226, 132, 142, 0}},
+#line 1343 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7310), {206, 169, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1771 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7317), {226, 171, 149, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1533 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7325), {226, 164, 183, 0}},
+#line 325 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7326), {226, 136, 170, 0}},
+#line 863 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7327), {226, 164, 182, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1763 "src/html_unescape.gperf"
- {"subrarr", 3, {226, 165, 185}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 758 "src/html_unescape.gperf"
- {"InvisibleComma", 3, {226, 129, 163}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 176 "src/html_unescape.gperf"
- {"boxur", 3, {226, 148, 148}},
-#line 10 "src/html_unescape.gperf"
- {"abreve", 2, {196, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1280 "src/html_unescape.gperf"
- {"ntlg", 3, {226, 137, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 714 "src/html_unescape.gperf"
- {"icirc", 2, {195, 174}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2063 "src/html_unescape.gperf"
- {"xdtri", 3, {226, 150, 189}},
-#line 253 "src/html_unescape.gperf"
- {"circ", 2, {203, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 663 "src/html_unescape.gperf"
- {"gtrdot", 3, {226, 139, 151}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 611 "src/html_unescape.gperf"
- {"geqslant", 3, {226, 169, 190}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str7332), {226, 138, 130, 0}},
+#line 1219 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7333), {226, 138, 129, 0}},
+#line 876 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7334), {226, 135, 134, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 2044 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7337), {197, 181, 0}},
+#line 1560 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7338), {226, 159, 169, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1283 "src/html_unescape.gperf"
- {"ntriangleright", 3, {226, 139, 171}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 314 "src/html_unescape.gperf"
- {"cuepr", 3, {226, 139, 158}},
-#line 1754 "src/html_unescape.gperf"
- {"Sub", 3, {226, 139, 144}},
- {(char*)0,0,{0}},
-#line 1042 "src/html_unescape.gperf"
- {"mcy", 2, {208, 188}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1860 "src/html_unescape.gperf"
- {"timesbar", 3, {226, 168, 177}},
- {(char*)0,0,{0}},
-#line 691 "src/html_unescape.gperf"
- {"hksearow", 3, {226, 164, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1683 "src/html_unescape.gperf"
- {"sigma", 2, {207, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 325 "src/html_unescape.gperf"
- {"cupor", 3, {226, 169, 133}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1373 "src/html_unescape.gperf"
- {"oslash", 2, {195, 184}},
-#line 458 "src/html_unescape.gperf"
- {"dzigrarr", 3, {226, 159, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 892 "src/html_unescape.gperf"
- {"leftrightharpoons", 3, {226, 135, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1577 "src/html_unescape.gperf"
- {"rightleftharpoons", 3, {226, 135, 140}},
- {(char*)0,0,{0}},
-#line 804 "src/html_unescape.gperf"
- {"kcedil", 2, {196, 183}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1759 "src/html_unescape.gperf"
- {"submult", 3, {226, 171, 129}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 333 "src/html_unescape.gperf"
- {"curren", 2, {194, 164}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 897 "src/html_unescape.gperf"
- {"LeftTeeVector", 3, {226, 165, 154}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 123 "src/html_unescape.gperf"
- {"bigstar", 3, {226, 152, 133}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 321 "src/html_unescape.gperf"
- {"cup", 3, {226, 136, 170}},
-#line 974 "src/html_unescape.gperf"
- {"LongRightArrow", 3, {226, 159, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 598 "src/html_unescape.gperf"
- {"Gcedil", 2, {196, 162}},
- {(char*)0,0,{0}},
-#line 1440 "src/html_unescape.gperf"
- {"PrecedesEqual", 3, {226, 170, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2114 "src/html_unescape.gperf"
- {"zcy", 2, {208, 183}},
- {(char*)0,0,{0}},
-#line 1413 "src/html_unescape.gperf"
- {"planckh", 3, {226, 132, 142}},
-#line 1344 "src/html_unescape.gperf"
- {"Omega", 2, {206, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str7344), {226, 139, 173, 0}},
+#line 1681 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7345), {206, 163, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1222 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7350), {226, 137, 191, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 372 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7364), {194, 180, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1760 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7376), {226, 138, 138, 0}},
+ {-1,{0}},
+#line 1456 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7378), {226, 136, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 258 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7385), {226, 138, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1772 "src/html_unescape.gperf"
- {"subsub", 3, {226, 171, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1534 "src/html_unescape.gperf"
- {"rdca", 3, {226, 164, 183}},
-#line 326 "src/html_unescape.gperf"
- {"cups", 3, {226, 136, 170}},
-#line 864 "src/html_unescape.gperf"
- {"ldca", 3, {226, 164, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1764 "src/html_unescape.gperf"
- {"subset", 3, {226, 138, 130}},
-#line 1220 "src/html_unescape.gperf"
- {"NotSucceeds", 3, {226, 138, 129}},
-#line 877 "src/html_unescape.gperf"
- {"LeftArrowRightArrow", 3, {226, 135, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2045 "src/html_unescape.gperf"
- {"wcirc", 2, {197, 181}},
-#line 1561 "src/html_unescape.gperf"
- {"RightAngleBracket", 3, {226, 159, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1284 "src/html_unescape.gperf"
- {"ntrianglerighteq", 3, {226, 139, 173}},
-#line 1682 "src/html_unescape.gperf"
- {"Sigma", 2, {206, 163}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1223 "src/html_unescape.gperf"
- {"NotSucceedsTilde", 3, {226, 137, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 373 "src/html_unescape.gperf"
- {"DiacriticalAcute", 2, {194, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1761 "src/html_unescape.gperf"
- {"subne", 3, {226, 138, 138}},
- {(char*)0,0,{0}},
-#line 1457 "src/html_unescape.gperf"
- {"Product", 3, {226, 136, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 259 "src/html_unescape.gperf"
- {"circleddash", 3, {226, 138, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1773 "src/html_unescape.gperf"
- {"subsup", 3, {226, 171, 147}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 298 "src/html_unescape.gperf"
- {"copy", 2, {194, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 534 "src/html_unescape.gperf"
- {"eta", 2, {206, 183}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 52 "src/html_unescape.gperf"
- {"angmsd", 3, {226, 136, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str7389), {226, 171, 147, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 297 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7397), {194, 169, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 533 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7403), {206, 183, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 51 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7409), {226, 136, 161, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1083 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7434), {226, 153, 174, 0}},
+ {-1,{0}},
+#line 1798 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7436), {226, 171, 132, 0}},
#line 1084 "src/html_unescape.gperf"
- {"natural", 3, {226, 153, 174}},
- {(char*)0,0,{0}},
-#line 1799 "src/html_unescape.gperf"
- {"supedot", 3, {226, 171, 132}},
-#line 1085 "src/html_unescape.gperf"
- {"naturals", 3, {226, 132, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1881 "src/html_unescape.gperf"
- {"triangleright", 3, {226, 150, 185}},
- {(char*)0,0,{0}},
-#line 376 "src/html_unescape.gperf"
- {"DiacriticalGrave", 1, {96}},
-#line 173 "src/html_unescape.gperf"
- {"boxuL", 3, {226, 149, 155}},
-#line 288 "src/html_unescape.gperf"
- {"cong", 3, {226, 137, 133}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1836 "src/html_unescape.gperf"
- {"telrec", 3, {226, 140, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 282 "src/html_unescape.gperf"
- {"comma", 1, {44}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1765 "src/html_unescape.gperf"
- {"Subset", 3, {226, 139, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1222 "src/html_unescape.gperf"
- {"NotSucceedsSlantEqual", 3, {226, 139, 161}},
-#line 664 "src/html_unescape.gperf"
- {"gtreqless", 3, {226, 139, 155}},
-#line 80 "src/html_unescape.gperf"
- {"Atilde", 2, {195, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 327 "src/html_unescape.gperf"
- {"curarr", 3, {226, 134, 183}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 313 "src/html_unescape.gperf"
- {"cudarrr", 3, {226, 164, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str7437), {226, 132, 149, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1880 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7443), {226, 150, 185, 0}},
+ {-1,{0}},
+#line 375 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7445), {96, 0}},
+#line 172 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7446), {226, 149, 155, 0}},
+#line 287 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7447), {226, 137, 133, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1835 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7451), {226, 140, 149, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 281 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7454), {44, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1764 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7460), {226, 139, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1221 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7475), {226, 139, 161, 0}},
+#line 663 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7476), {226, 139, 155, 0}},
+#line 79 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7477), {195, 131, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 326 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7484), {226, 134, 183, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
#line 312 "src/html_unescape.gperf"
- {"cudarrl", 3, {226, 164, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str7491), {226, 164, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 311 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7495), {226, 164, 184, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1765 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7503), {226, 138, 134, 0}},
#line 1766 "src/html_unescape.gperf"
- {"subseteq", 3, {226, 138, 134}},
-#line 1767 "src/html_unescape.gperf"
- {"subseteqq", 3, {226, 171, 133}},
-#line 1579 "src/html_unescape.gperf"
- {"rightsquigarrow", 3, {226, 134, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 319 "src/html_unescape.gperf"
- {"cupcap", 3, {226, 169, 134}},
+ {offsetof(struct entity_pool_t, entity_pool_str7504), {226, 171, 133, 0}},
+#line 1578 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7505), {226, 134, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 318 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7520), {226, 169, 134, 0}},
+#line 1768 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7521), {226, 138, 138, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 59 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7532), {196, 133, 0}},
+#line 1190 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7533), {226, 139, 182, 0}},
+#line 1582 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7534), {226, 139, 140, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 2088 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7552), {195, 189, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1147 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7563), {226, 135, 141, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1317 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7581), {208, 190, 0}},
+#line 240 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7582), {226, 166, 178, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 467 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7595), {208, 173, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 322 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7598), {226, 169, 138, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1881 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7604), {226, 138, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 888 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7615), {226, 134, 148, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1774 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7618), {226, 137, 187, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 425 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7631), {226, 135, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1324 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7641), {197, 146, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 247 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7648), {209, 135, 0}},
+#line 664 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7649), {226, 170, 140, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 42 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7655), {226, 136, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 12 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7662), {226, 136, 190, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1597 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7668), {226, 142, 177, 0}},
+ {-1,{0}},
+#line 953 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7670), {226, 142, 176, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1109 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7674), {226, 128, 139, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1082 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7677), {226, 137, 137, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1371 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7686), {195, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
#line 1769 "src/html_unescape.gperf"
- {"subsetneq", 3, {226, 138, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 60 "src/html_unescape.gperf"
- {"aogon", 2, {196, 133}},
-#line 1191 "src/html_unescape.gperf"
- {"notinvc", 3, {226, 139, 182}},
-#line 1583 "src/html_unescape.gperf"
- {"rightthreetimes", 3, {226, 139, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2089 "src/html_unescape.gperf"
- {"yacute", 2, {195, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1148 "src/html_unescape.gperf"
- {"nLeftarrow", 3, {226, 135, 141}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1318 "src/html_unescape.gperf"
- {"ocy", 2, {208, 190}},
-#line 241 "src/html_unescape.gperf"
- {"cemptyv", 3, {226, 166, 178}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 468 "src/html_unescape.gperf"
- {"Ecy", 2, {208, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 323 "src/html_unescape.gperf"
- {"cupcup", 3, {226, 169, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1882 "src/html_unescape.gperf"
- {"trianglerighteq", 3, {226, 138, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 889 "src/html_unescape.gperf"
- {"LeftRightArrow", 3, {226, 134, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1775 "src/html_unescape.gperf"
- {"succ", 3, {226, 137, 187}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 426 "src/html_unescape.gperf"
- {"DownArrowUpArrow", 3, {226, 135, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1325 "src/html_unescape.gperf"
- {"OElig", 2, {197, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 248 "src/html_unescape.gperf"
- {"chcy", 2, {209, 135}},
-#line 665 "src/html_unescape.gperf"
- {"gtreqqless", 3, {226, 170, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 43 "src/html_unescape.gperf"
- {"angle", 3, {226, 136, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 13 "src/html_unescape.gperf"
- {"acE", 3, {226, 136, 190}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1598 "src/html_unescape.gperf"
- {"rmoustache", 3, {226, 142, 177}},
- {(char*)0,0,{0}},
-#line 954 "src/html_unescape.gperf"
- {"lmoustache", 3, {226, 142, 176}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1110 "src/html_unescape.gperf"
- {"NegativeVeryThinSpace", 3, {226, 128, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1083 "src/html_unescape.gperf"
- {"napprox", 3, {226, 137, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1372 "src/html_unescape.gperf"
- {"Oslash", 2, {195, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1770 "src/html_unescape.gperf"
- {"subsetneqq", 3, {226, 171, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 72 "src/html_unescape.gperf"
- {"Aring", 2, {195, 133}},
-#line 177 "src/html_unescape.gperf"
- {"boxuR", 3, {226, 149, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1762 "src/html_unescape.gperf"
- {"subplus", 3, {226, 170, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2087 "src/html_unescape.gperf"
- {"xwedge", 3, {226, 139, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 172 "src/html_unescape.gperf"
- {"boxul", 3, {226, 148, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 190 "src/html_unescape.gperf"
- {"boxvr", 3, {226, 148, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 706 "src/html_unescape.gperf"
- {"HumpDownHump", 3, {226, 137, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 715 "src/html_unescape.gperf"
- {"Icy", 2, {208, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str7698), {226, 171, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 71 "src/html_unescape.gperf"
- {"approxeq", 3, {226, 137, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 8 "src/html_unescape.gperf"
- {"aacute", 2, {195, 161}},
-#line 67 "src/html_unescape.gperf"
- {"apid", 3, {226, 137, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1952 "src/html_unescape.gperf"
- {"UpDownArrow", 3, {226, 134, 149}},
- {(char*)0,0,{0}},
-#line 1114 "src/html_unescape.gperf"
- {"NestedGreaterGreater", 3, {226, 137, 171}},
- {(char*)0,0,{0}},
-#line 788 "src/html_unescape.gperf"
- {"jcy", 2, {208, 185}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 667 "src/html_unescape.gperf"
- {"gtrsim", 3, {226, 137, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 180 "src/html_unescape.gperf"
- {"boxv", 3, {226, 148, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1315 "src/html_unescape.gperf"
- {"ocirc", 2, {195, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 464 "src/html_unescape.gperf"
- {"Ecirc", 2, {195, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1206 "src/html_unescape.gperf"
- {"notnivc", 3, {226, 139, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 125 "src/html_unescape.gperf"
- {"bigtriangleup", 3, {226, 150, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 343 "src/html_unescape.gperf"
- {"daleth", 3, {226, 132, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1317 "src/html_unescape.gperf"
- {"Ocy", 2, {208, 158}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 682 "src/html_unescape.gperf"
- {"Hcirc", 2, {196, 164}},
-#line 1591 "src/html_unescape.gperf"
- {"RightVectorBar", 3, {226, 165, 147}},
-#line 19 "src/html_unescape.gperf"
- {"AElig", 2, {195, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 557 "src/html_unescape.gperf"
- {"FilledVerySmallSquare", 3, {226, 150, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 623 "src/html_unescape.gperf"
- {"ggg", 3, {226, 139, 153}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 100 "src/html_unescape.gperf"
- {"Bcy", 2, {208, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1427 "src/html_unescape.gperf"
- {"Poincareplane", 3, {226, 132, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 187 "src/html_unescape.gperf"
- {"boxvL", 3, {226, 149, 161}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1393 "src/html_unescape.gperf"
- {"PartialD", 3, {226, 136, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 713 "src/html_unescape.gperf"
- {"Icirc", 2, {195, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 316 "src/html_unescape.gperf"
- {"cularr", 3, {226, 134, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 159 "src/html_unescape.gperf"
- {"boxh", 3, {226, 148, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 40 "src/html_unescape.gperf"
- {"andv", 3, {226, 169, 154}},
- {(char*)0,0,{0}},
-#line 1789 "src/html_unescape.gperf"
- {"sung", 3, {226, 153, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1569 "src/html_unescape.gperf"
- {"RightDoubleBracket", 3, {226, 159, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 786 "src/html_unescape.gperf"
- {"jcirc", 2, {196, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1936 "src/html_unescape.gperf"
- {"UnderBar", 1, {95}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1564 "src/html_unescape.gperf"
- {"RightArrow", 3, {226, 134, 146}},
-#line 258 "src/html_unescape.gperf"
- {"circledcirc", 3, {226, 138, 154}},
-#line 28 "src/html_unescape.gperf"
- {"Alpha", 2, {206, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 886 "src/html_unescape.gperf"
- {"leftharpoonup", 3, {226, 134, 188}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 317 "src/html_unescape.gperf"
- {"cularrp", 3, {226, 164, 189}},
- {(char*)0,0,{0}},
-#line 1566 "src/html_unescape.gperf"
- {"RightArrowLeftArrow", 3, {226, 135, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1995 "src/html_unescape.gperf"
- {"varsigma", 2, {207, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1288 "src/html_unescape.gperf"
- {"numero", 3, {226, 132, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 552 "src/html_unescape.gperf"
- {"ffllig", 3, {239, 172, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 985 "src/html_unescape.gperf"
- {"LowerLeftArrow", 3, {226, 134, 153}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 543 "src/html_unescape.gperf"
- {"expectation", 3, {226, 132, 176}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str7723), {195, 133, 0}},
+#line 176 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7724), {226, 149, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1761 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7730), {226, 170, 191, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 2086 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7742), {226, 139, 128, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 171 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7767), {226, 148, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 189 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7778), {226, 148, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 705 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7800), {226, 137, 142, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 714 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7812), {208, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 70 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7828), {226, 137, 138, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 7 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7841), {195, 161, 0}},
+#line 66 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7842), {226, 137, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1951 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7859), {226, 134, 149, 0}},
+ {-1,{0}},
+#line 1113 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7861), {226, 137, 171, 0}},
+ {-1,{0}},
+#line 787 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7863), {208, 185, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 666 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7866), {226, 137, 179, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 179 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7876), {226, 148, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1314 "src/html_unescape.gperf"
- {"Ocirc", 2, {195, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2091 "src/html_unescape.gperf"
- {"yacy", 2, {209, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 824 "src/html_unescape.gperf"
- {"lambda", 2, {206, 187}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1221 "src/html_unescape.gperf"
- {"NotSucceedsEqual", 3, {226, 170, 176}},
-#line 191 "src/html_unescape.gperf"
- {"boxvR", 3, {226, 149, 158}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str7886), {195, 180, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 463 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7900), {195, 138, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1205 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str7987), {226, 139, 189, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 124 "src/html_unescape.gperf"
- {"bigtriangledown", 3, {226, 150, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 41 "src/html_unescape.gperf"
- {"ang", 3, {226, 136, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2084 "src/html_unescape.gperf"
- {"xuplus", 3, {226, 168, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1075 "src/html_unescape.gperf"
- {"nabla", 3, {226, 136, 135}},
+ {offsetof(struct entity_pool_t, entity_pool_str8006), {226, 150, 179, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 342 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8032), {226, 132, 184, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1316 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8037), {208, 158, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 681 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8042), {196, 164, 0}},
+#line 1590 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8043), {226, 165, 147, 0}},
+#line 18 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8044), {195, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 556 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8063), {226, 150, 170, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 622 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8084), {226, 139, 153, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 99 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8088), {208, 145, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1426 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8099), {226, 132, 140, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 186 "src/html_unescape.gperf"
- {"boxvl", 3, {226, 148, 164}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 533 "src/html_unescape.gperf"
- {"Eta", 2, {206, 151}},
- {(char*)0,0,{0}},
-#line 17 "src/html_unescape.gperf"
- {"Acy", 2, {208, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 806 "src/html_unescape.gperf"
- {"kcy", 2, {208, 186}},
-#line 602 "src/html_unescape.gperf"
- {"gcy", 2, {208, 179}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 894 "src/html_unescape.gperf"
- {"LeftRightVector", 3, {226, 165, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 231 "src/html_unescape.gperf"
- {"ccedil", 2, {195, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 91 "src/html_unescape.gperf"
- {"Backslash", 3, {226, 136, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 703 "src/html_unescape.gperf"
- {"hslash", 3, {226, 132, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1394 "src/html_unescape.gperf"
- {"Pcy", 2, {208, 159}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 601 "src/html_unescape.gperf"
- {"Gcy", 2, {208, 147}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 660 "src/html_unescape.gperf"
- {"gtquest", 3, {226, 169, 188}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 823 "src/html_unescape.gperf"
- {"Lambda", 2, {206, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1322 "src/html_unescape.gperf"
- {"odiv", 3, {226, 168, 184}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str8104), {226, 149, 161, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1392 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8107), {226, 136, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 712 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8117), {195, 142, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 315 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8129), {226, 134, 182, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 158 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8135), {226, 148, 128, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 39 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8142), {226, 169, 154, 0}},
+ {-1,{0}},
+#line 1788 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8144), {226, 153, 170, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1568 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8148), {226, 159, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 785 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8168), {196, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1935 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8174), {95, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1563 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8241), {226, 134, 146, 0}},
+#line 257 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8242), {226, 138, 154, 0}},
+#line 27 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8243), {206, 145, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
#line 885 "src/html_unescape.gperf"
- {"leftharpoondown", 3, {226, 134, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 972 "src/html_unescape.gperf"
- {"longmapsto", 3, {226, 159, 188}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 798 "src/html_unescape.gperf"
- {"Jukcy", 2, {208, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 867 "src/html_unescape.gperf"
- {"ldrdhar", 3, {226, 165, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2085 "src/html_unescape.gperf"
- {"xutri", 3, {226, 150, 179}},
-#line 1246 "src/html_unescape.gperf"
- {"nRightarrow", 3, {226, 135, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 545 "src/html_unescape.gperf"
- {"ExponentialE", 3, {226, 133, 135}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1245 "src/html_unescape.gperf"
- {"nrightarrow", 3, {226, 134, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 14 "src/html_unescape.gperf"
- {"Acirc", 2, {195, 130}},
-#line 1164 "src/html_unescape.gperf"
- {"NoBreak", 3, {226, 129, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str8251), {226, 134, 188, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 316 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8258), {226, 164, 189, 0}},
+ {-1,{0}},
+#line 1565 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8260), {226, 135, 132, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1994 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8281), {207, 130, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1287 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8300), {226, 132, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 551 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8310), {239, 172, 132, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 984 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8326), {226, 134, 153, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 542 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8340), {226, 132, 176, 0}},
+ {-1,{0}},
+#line 1313 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8342), {195, 148, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2090 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8351), {209, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 823 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8375), {206, 187, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1220 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8381), {226, 170, 176, 0}},
+#line 190 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8382), {226, 149, 158, 0}},
+ {-1,{0}},
+#line 123 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8384), {226, 150, 189, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 40 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8391), {226, 136, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 2083 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8404), {226, 168, 132, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1074 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8424), {226, 136, 135, 0}},
+#line 185 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8425), {226, 148, 164, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 532 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8438), {206, 151, 0}},
+ {-1,{0}},
+#line 16 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8440), {208, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 805 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8474), {208, 186, 0}},
+#line 601 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8475), {208, 179, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 893 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8485), {226, 165, 142, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 230 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8491), {195, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 90 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8495), {226, 136, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 702 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8506), {226, 132, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1393 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8515), {208, 159, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 600 "src/html_unescape.gperf"
- {"gcirc", 2, {196, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 42 "src/html_unescape.gperf"
- {"ange", 3, {226, 166, 164}},
-#line 328 "src/html_unescape.gperf"
- {"curarrm", 3, {226, 164, 188}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1671 "src/html_unescape.gperf"
- {"SHCHcy", 2, {208, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2107 "src/html_unescape.gperf"
- {"yuml", 2, {195, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1760 "src/html_unescape.gperf"
- {"subnE", 3, {226, 171, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 360 "src/html_unescape.gperf"
- {"DDotrahd", 3, {226, 164, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1629 "src/html_unescape.gperf"
- {"RuleDelayed", 3, {226, 167, 180}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str8521), {208, 147, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 659 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8534), {226, 169, 188, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 822 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8572), {206, 155, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1321 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8627), {226, 168, 184, 0}},
+ {-1,{0}},
+#line 884 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8629), {226, 134, 189, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 971 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8672), {226, 159, 188, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 797 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8677), {208, 132, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 866 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8687), {226, 165, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 2084 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8700), {226, 150, 179, 0}},
+#line 1245 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8701), {226, 135, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 544 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8725), {226, 133, 135, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1244 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8735), {226, 134, 155, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 13 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8745), {195, 130, 0}},
+#line 1163 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8746), {226, 129, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 599 "src/html_unescape.gperf"
- {"Gcirc", 2, {196, 156}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 796 "src/html_unescape.gperf"
- {"Jsercy", 2, {208, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 653 "src/html_unescape.gperf"
- {"gtcc", 3, {226, 170, 167}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 782 "src/html_unescape.gperf"
- {"iukcy", 2, {209, 150}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1951 "src/html_unescape.gperf"
- {"updownarrow", 3, {226, 134, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 331 "src/html_unescape.gperf"
- {"curlyvee", 3, {226, 139, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 550 "src/html_unescape.gperf"
- {"ffilig", 3, {239, 172, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2100 "src/html_unescape.gperf"
- {"yicy", 2, {209, 151}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 390 "src/html_unescape.gperf"
- {"divonx", 3, {226, 139, 135}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 661 "src/html_unescape.gperf"
- {"gtrapprox", 3, {226, 170, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1755 "src/html_unescape.gperf"
- {"subdot", 3, {226, 170, 189}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 891 "src/html_unescape.gperf"
- {"leftrightarrows", 3, {226, 135, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 83 "src/html_unescape.gperf"
- {"auml", 2, {195, 164}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1953 "src/html_unescape.gperf"
- {"Updownarrow", 3, {226, 135, 149}},
- {(char*)0,0,{0}},
-#line 1576 "src/html_unescape.gperf"
- {"rightleftarrows", 3, {226, 135, 132}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 437 "src/html_unescape.gperf"
- {"DownRightVector", 3, {226, 135, 129}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str8780), {196, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 41 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8784), {226, 166, 164, 0}},
+#line 327 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8785), {226, 164, 188, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1670 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8791), {208, 169, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2106 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8796), {195, 191, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1759 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8800), {226, 171, 139, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 359 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8803), {226, 164, 145, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1628 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8810), {226, 167, 180, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 598 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8826), {196, 156, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 795 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8843), {208, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 652 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8879), {226, 170, 167, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 781 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8922), {209, 150, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1950 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8956), {226, 134, 149, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 330 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8962), {226, 139, 142, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 549 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8972), {239, 172, 131, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2099 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str8992), {209, 151, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 389 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9015), {226, 139, 135, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 660 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9026), {226, 170, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1754 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9069), {226, 170, 189, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 890 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9079), {226, 135, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 82 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9085), {195, 164, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1952 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9088), {226, 135, 149, 0}},
+ {-1,{0}},
+#line 1575 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9090), {226, 135, 132, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 436 "src/html_unescape.gperf"
- {"DownRightVectorBar", 3, {226, 165, 151}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 683 "src/html_unescape.gperf"
- {"hcirc", 2, {196, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1614 "src/html_unescape.gperf"
- {"Rrightarrow", 3, {226, 135, 155}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 973 "src/html_unescape.gperf"
- {"longrightarrow", 3, {226, 159, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 324 "src/html_unescape.gperf"
- {"cupdot", 3, {226, 138, 141}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 11 "src/html_unescape.gperf"
- {"ac", 3, {226, 136, 190}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 696 "src/html_unescape.gperf"
- {"hookrightarrow", 3, {226, 134, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1108 "src/html_unescape.gperf"
- {"NegativeThickSpace", 3, {226, 128, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1756 "src/html_unescape.gperf"
- {"subE", 3, {226, 171, 133}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1901 "src/html_unescape.gperf"
- {"twoheadrightarrow", 3, {226, 134, 160}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 430 "src/html_unescape.gperf"
- {"downharpoonright", 3, {226, 135, 130}},
+ {offsetof(struct entity_pool_t, entity_pool_str9151), {226, 135, 129, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 435 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9154), {226, 165, 151, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 682 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9162), {196, 165, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1613 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9186), {226, 135, 155, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 972 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9217), {226, 159, 182, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 323 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9239), {226, 138, 141, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 10 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9249), {226, 136, 190, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 695 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9268), {226, 134, 170, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1107 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9271), {226, 128, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1755 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9275), {226, 171, 133, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1900 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9307), {226, 134, 160, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
#line 429 "src/html_unescape.gperf"
- {"downharpoonleft", 3, {226, 135, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 20 "src/html_unescape.gperf"
- {"aelig", 2, {195, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1535 "src/html_unescape.gperf"
- {"rdldhar", 3, {226, 165, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 332 "src/html_unescape.gperf"
- {"curlywedge", 3, {226, 139, 143}},
- {(char*)0,0,{0}},
-#line 708 "src/html_unescape.gperf"
- {"hybull", 3, {226, 129, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1757 "src/html_unescape.gperf"
- {"sube", 3, {226, 138, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 975 "src/html_unescape.gperf"
- {"Longrightarrow", 3, {226, 159, 185}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 240 "src/html_unescape.gperf"
- {"Cedilla", 2, {194, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1189 "src/html_unescape.gperf"
- {"notinva", 3, {226, 136, 137}},
-#line 1778 "src/html_unescape.gperf"
- {"SucceedsEqual", 3, {226, 170, 176}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 888 "src/html_unescape.gperf"
- {"leftrightarrow", 3, {226, 134, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1750 "src/html_unescape.gperf"
- {"straightepsilon", 2, {207, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 32 "src/html_unescape.gperf"
- {"amalg", 3, {226, 168, 191}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 81 "src/html_unescape.gperf"
- {"atilde", 2, {195, 163}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1568 "src/html_unescape.gperf"
- {"RightCeiling", 3, {226, 140, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 890 "src/html_unescape.gperf"
- {"Leftrightarrow", 3, {226, 135, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1771 "src/html_unescape.gperf"
- {"subsim", 3, {226, 171, 135}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2023 "src/html_unescape.gperf"
- {"VerticalLine", 1, {124}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1590 "src/html_unescape.gperf"
- {"RightUpVector", 3, {226, 134, 190}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str9320), {226, 135, 130, 0}},
+#line 428 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9321), {226, 135, 131, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 19 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9326), {195, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1534 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9330), {226, 165, 169, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 331 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9349), {226, 139, 143, 0}},
+ {-1,{0}},
+#line 707 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9351), {226, 129, 131, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1756 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9360), {226, 138, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 974 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9414), {226, 159, 185, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 239 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9484), {194, 184, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1188 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9505), {226, 136, 137, 0}},
+#line 1777 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9506), {226, 170, 176, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 887 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9554), {226, 134, 148, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1749 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9580), {207, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 31 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9627), {226, 168, 191, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 80 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9741), {195, 163, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1567 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9747), {226, 140, 137, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 889 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9751), {226, 135, 148, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1770 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9767), {226, 171, 135, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2022 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9788), {124, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
#line 1589 "src/html_unescape.gperf"
- {"RightUpVectorBar", 3, {226, 165, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1572 "src/html_unescape.gperf"
- {"RightDownVector", 3, {226, 135, 130}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str9801), {226, 134, 190, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1588 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9804), {226, 165, 148, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1571 "src/html_unescape.gperf"
- {"RightDownVectorBar", 3, {226, 165, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 26 "src/html_unescape.gperf"
- {"alefsym", 3, {226, 132, 181}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 256 "src/html_unescape.gperf"
- {"circlearrowright", 3, {226, 134, 187}},
+ {offsetof(struct entity_pool_t, entity_pool_str9829), {226, 135, 130, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 1570 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9832), {226, 165, 149, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 25 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9836), {226, 132, 181, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 255 "src/html_unescape.gperf"
- {"circlearrowleft", 3, {226, 134, 186}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 781 "src/html_unescape.gperf"
- {"Iukcy", 2, {208, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1377 "src/html_unescape.gperf"
- {"otimesas", 3, {226, 168, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 754 "src/html_unescape.gperf"
- {"intercal", 3, {226, 138, 186}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1846 "src/html_unescape.gperf"
- {"thickapprox", 3, {226, 137, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 799 "src/html_unescape.gperf"
- {"jukcy", 2, {209, 148}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1204 "src/html_unescape.gperf"
- {"notniva", 3, {226, 136, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1444 "src/html_unescape.gperf"
- {"precnapprox", 3, {226, 170, 185}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 336 "src/html_unescape.gperf"
- {"cuvee", 3, {226, 139, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 73 "src/html_unescape.gperf"
- {"aring", 2, {195, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 233 "src/html_unescape.gperf"
- {"ccirc", 2, {196, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1563 "src/html_unescape.gperf"
- {"rightarrow", 3, {226, 134, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str9852), {226, 134, 187, 0}},
+#line 254 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9853), {226, 134, 186, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 780 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9904), {208, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1376 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9936), {226, 168, 182, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
#line 753 "src/html_unescape.gperf"
- {"Integral", 3, {226, 136, 171}},
-#line 2061 "src/html_unescape.gperf"
- {"xcirc", 3, {226, 151, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 797 "src/html_unescape.gperf"
- {"jsercy", 2, {209, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 250 "src/html_unescape.gperf"
- {"checkmark", 3, {226, 156, 147}},
- {(char*)0,0,{0}},
-#line 2025 "src/html_unescape.gperf"
- {"VerticalTilde", 3, {226, 137, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 183 "src/html_unescape.gperf"
- {"boxvH", 3, {226, 149, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1211 "src/html_unescape.gperf"
- {"NotRightTriangleBar", 3, {226, 167, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1213 "src/html_unescape.gperf"
- {"NotRightTriangleEqual", 3, {226, 139, 173}},
-#line 1212 "src/html_unescape.gperf"
- {"NotRightTriangle", 3, {226, 139, 171}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 906 "src/html_unescape.gperf"
- {"LeftVectorBar", 3, {226, 165, 146}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str9944), {226, 138, 186, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1845 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9952), {226, 137, 136, 0}},
+ {-1,{0}}, {-1,{0}},
+#line 798 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9955), {209, 148, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1203 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9959), {226, 136, 140, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1443 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9963), {226, 170, 185, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 335 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9983), {226, 139, 142, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 72 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str9987), {195, 165, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 232 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10023), {196, 137, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1562 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10029), {226, 134, 146, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 752 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10061), {226, 136, 171, 0}},
+#line 2060 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10062), {226, 151, 175, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 796 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10121), {209, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 249 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10206), {226, 156, 147, 0}},
+ {-1,{0}},
+#line 2024 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10208), {226, 137, 128, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 182 "src/html_unescape.gperf"
- {"boxvh", 3, {226, 148, 188}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 150 "src/html_unescape.gperf"
- {"boxbox", 3, {226, 167, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2095 "src/html_unescape.gperf"
- {"ycy", 2, {209, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1758 "src/html_unescape.gperf"
- {"subedot", 3, {226, 171, 131}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str10219), {226, 149, 170, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1210 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10240), {226, 167, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1212 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10244), {226, 139, 173, 0}},
+#line 1211 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10245), {226, 139, 171, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 905 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10278), {226, 165, 146, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 181 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10357), {226, 148, 188, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 149 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10395), {226, 167, 137, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2094 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10415), {209, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1757 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10428), {226, 171, 131, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1706 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10445), {208, 172, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1564 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10505), {226, 135, 146, 0}},
+ {-1,{0}},
+#line 28 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10507), {206, 177, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1671 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10528), {209, 137, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1707 "src/html_unescape.gperf"
- {"SOFTcy", 2, {208, 172}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1565 "src/html_unescape.gperf"
- {"Rightarrow", 3, {226, 135, 146}},
- {(char*)0,0,{0}},
-#line 29 "src/html_unescape.gperf"
- {"alpha", 2, {206, 177}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1672 "src/html_unescape.gperf"
- {"shchcy", 2, {209, 137}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1708 "src/html_unescape.gperf"
- {"softcy", 2, {209, 140}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 18 "src/html_unescape.gperf"
- {"acy", 2, {208, 176}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2093 "src/html_unescape.gperf"
- {"ycirc", 2, {197, 183}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 117 "src/html_unescape.gperf"
- {"bigcirc", 3, {226, 151, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 736 "src/html_unescape.gperf"
- {"ImaginaryI", 3, {226, 133, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 70 "src/html_unescape.gperf"
- {"approx", 3, {226, 137, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1801 "src/html_unescape.gperf"
- {"SupersetEqual", 3, {226, 138, 135}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2043 "src/html_unescape.gperf"
- {"vzigzag", 3, {226, 166, 154}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 315 "src/html_unescape.gperf"
- {"cuesc", 3, {226, 139, 159}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1939 "src/html_unescape.gperf"
- {"UnderParenthesis", 3, {226, 143, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 15 "src/html_unescape.gperf"
- {"acirc", 2, {195, 162}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1774 "src/html_unescape.gperf"
- {"succapprox", 3, {226, 170, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1040 "src/html_unescape.gperf"
- {"mcomma", 3, {226, 168, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 48 "src/html_unescape.gperf"
- {"angmsdae", 3, {226, 166, 172}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 45 "src/html_unescape.gperf"
- {"angmsdab", 3, {226, 166, 169}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 49 "src/html_unescape.gperf"
- {"angmsdaf", 3, {226, 166, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 56 "src/html_unescape.gperf"
- {"angsph", 3, {226, 136, 162}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1026 "src/html_unescape.gperf"
- {"luruhar", 3, {226, 165, 166}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str10584), {209, 140, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 17 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10704), {208, 176, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2092 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10720), {197, 183, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 116 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10791), {226, 151, 175, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 735 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10808), {226, 133, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 69 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10847), {226, 137, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1800 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10851), {226, 138, 135, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 2042 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10879), {226, 166, 154, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 314 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10888), {226, 139, 159, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1938 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str10947), {226, 143, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 14 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str11009), {195, 162, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1773 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str11029), {226, 170, 184, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1039 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str11047), {226, 168, 169, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 47 "src/html_unescape.gperf"
- {"angmsdad", 3, {226, 166, 171}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1900 "src/html_unescape.gperf"
- {"twoheadleftarrow", 3, {226, 134, 158}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 340 "src/html_unescape.gperf"
- {"cylcty", 3, {226, 140, 173}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1751 "src/html_unescape.gperf"
- {"straightphi", 2, {207, 149}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1073 "src/html_unescape.gperf"
- {"multimap", 3, {226, 138, 184}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1562 "src/html_unescape.gperf"
- {"RightArrowBar", 3, {226, 135, 165}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 868 "src/html_unescape.gperf"
- {"ldrushar", 3, {226, 165, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 872 "src/html_unescape.gperf"
- {"LeftAngleBracket", 3, {226, 159, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1630 "src/html_unescape.gperf"
- {"ruluhar", 3, {226, 165, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 329 "src/html_unescape.gperf"
- {"curlyeqprec", 3, {226, 139, 158}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2106 "src/html_unescape.gperf"
- {"yucy", 2, {209, 142}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str11146), {226, 166, 172, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 44 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str11165), {226, 166, 169, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 48 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str11282), {226, 166, 173, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 55 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str11366), {226, 136, 162, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1025 "src/html_unescape.gperf"
- {"lurdshar", 3, {226, 165, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 675 "src/html_unescape.gperf"
- {"hardcy", 2, {209, 138}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1574 "src/html_unescape.gperf"
- {"rightharpoondown", 3, {226, 135, 129}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1575 "src/html_unescape.gperf"
- {"rightharpoonup", 3, {226, 135, 128}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str11527), {226, 165, 166, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 46 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str11565), {226, 166, 171, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1899 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str11664), {226, 134, 158, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 339 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str11720), {226, 140, 173, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1750 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str11791), {207, 149, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1072 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str11840), {226, 138, 184, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1561 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str11918), {226, 135, 165, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 867 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str12012), {226, 165, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 871 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str12103), {226, 159, 168, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1629 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str12170), {226, 165, 168, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 328 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str12202), {226, 139, 158, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2105 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str12206), {209, 142, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1024 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str12288), {226, 165, 138, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 674 "src/html_unescape.gperf"
- {"HARDcy", 2, {208, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1768 "src/html_unescape.gperf"
- {"SubsetEqual", 3, {226, 138, 134}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 385 "src/html_unescape.gperf"
- {"digamma", 2, {207, 157}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1918 "src/html_unescape.gperf"
- {"udblac", 2, {197, 177}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1786 "src/html_unescape.gperf"
- {"SuchThat", 3, {226, 136, 139}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 337 "src/html_unescape.gperf"
- {"cuwed", 3, {226, 139, 143}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str12413), {209, 138, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1573 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str12461), {226, 135, 129, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1574 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str12497), {226, 135, 128, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 673 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str12502), {208, 170, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1767 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str12651), {226, 138, 134, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 384 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str12809), {207, 157, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
#line 1917 "src/html_unescape.gperf"
- {"Udblac", 2, {197, 176}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str12892), {197, 177, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1785 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str12985), {226, 136, 139, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 336 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str12991), {226, 139, 143, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}},
+#line 1916 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str13024), {197, 176, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 49 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str13061), {226, 166, 174, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
#line 50 "src/html_unescape.gperf"
- {"angmsdag", 3, {226, 166, 174}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 51 "src/html_unescape.gperf"
- {"angmsdah", 3, {226, 166, 175}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 2022 "src/html_unescape.gperf"
- {"VerticalBar", 3, {226, 136, 163}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 2024 "src/html_unescape.gperf"
- {"VerticalSeparator", 3, {226, 157, 152}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 1567 "src/html_unescape.gperf"
- {"rightarrowtail", 3, {226, 134, 163}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1321 "src/html_unescape.gperf"
- {"odblac", 2, {197, 145}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 1782 "src/html_unescape.gperf"
- {"succnapprox", 3, {226, 170, 186}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}},
-#line 46 "src/html_unescape.gperf"
- {"angmsdac", 3, {226, 166, 170}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str13443), {226, 166, 175, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2021 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str13643), {226, 136, 163, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 2023 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str13659), {226, 157, 152, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1566 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str13709), {226, 134, 163, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 1320 "src/html_unescape.gperf"
- {"Odblac", 2, {197, 144}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 318 "src/html_unescape.gperf"
- {"cupbrcap", 3, {226, 169, 136}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 44 "src/html_unescape.gperf"
- {"angmsdaa", 3, {226, 166, 168}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 330 "src/html_unescape.gperf"
- {"curlyeqsucc", 3, {226, 139, 159}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}},
+ {offsetof(struct entity_pool_t, entity_pool_str13908), {197, 145, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}},
+#line 1781 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str13945), {226, 170, 186, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 45 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str14304), {226, 166, 170, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 1319 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str14364), {197, 144, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 317 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str14620), {226, 169, 136, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 43 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str15290), {226, 166, 168, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 329 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str15360), {226, 139, 159, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}},
+#line 333 "src/html_unescape.gperf"
+ {offsetof(struct entity_pool_t, entity_pool_str15729), {226, 134, 182, 0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
+ {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}}, {-1,{0}},
#line 334 "src/html_unescape.gperf"
- {"curvearrowleft", 3, {226, 134, 182}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
- {(char*)0,0,{0}}, {(char*)0,0,{0}}, {(char*)0,0,{0}},
-#line 335 "src/html_unescape.gperf"
- {"curvearrowright", 3, {226, 134, 183}}
+ {offsetof(struct entity_pool_t, entity_pool_str16000), {226, 134, 183, 0}}
};
if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH)
@@ -10772,9 +13365,9 @@ find_entity (register const char *str, register unsigned int len)
if (key <= MAX_HASH_VALUE)
if (len == lengthtable[key])
{
- register const char *s = wordlist[key].entity;
+ register const char *s = wordlist[key].entity + entity_pool;
- if (s && *str == *s && !memcmp (str + 1, s + 1, len - 1))
+ if (*str == *s && !memcmp (str + 1, s + 1, len - 1))
return &wordlist[key];
}
}