LLVMFuzzerTestOneInput:
   33|  35.8k|int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
   34|  35.8k|  static const size_t bsizes[] = {1, 2, 16, 256, 8192};
   35|  35.8k|  size_t bsize;
   36|  35.8k|  char *s, *catbuff;
   37|       |
   38|  35.8k|  if (size == 0)
  ------------------
  |  Branch (38:7): [True: 0, False: 35.8k]
  ------------------
   39|      0|    return 0;
   40|  35.8k|  bsize = bsizes[data[0] % (sizeof(bsizes) / sizeof(bsizes[0]))];
   41|  35.8k|  data++, size--;
   42|  35.8k|  s = fuzz_strdup(data, size);
   43|  35.8k|  catbuff = malloct(bsize);
  ------------------
  |  |  644|  35.8k|#define malloct(A) malloc(A)
  ------------------
   44|       |
   45|  35.8k|  (void) unescape_http(catbuff, bsize, s);
   46|  35.8k|  (void) unescape_http_unharm(catbuff, bsize, s, 0);
   47|  35.8k|  (void) unescape_http_unharm(catbuff, bsize, s, 1);
   48|  35.8k|  unescape_amp(s);
   49|       |
   50|  35.8k|  freet(catbuff);
  ------------------
  |  |  649|  35.8k|  do {                                                                         \
  |  |  650|  35.8k|    if ((A) != NULL) {                                                         \
  |  |  ------------------
  |  |  |  Branch (650:9): [True: 35.8k, False: 0]
  |  |  ------------------
  |  |  651|  35.8k|      free(A);                                                                 \
  |  |  652|  35.8k|      (A) = NULL;                                                              \
  |  |  653|  35.8k|    }                                                                          \
  |  |  654|  35.8k|  } while (0)
  |  |  ------------------
  |  |  |  Branch (654:12): [Folded, False: 35.8k]
  |  |  ------------------
  ------------------
   51|       |  freet(s);
  ------------------
  |  |  649|  35.8k|  do {                                                                         \
  |  |  650|  35.8k|    if ((A) != NULL) {                                                         \
  |  |  ------------------
  |  |  |  Branch (650:9): [True: 35.8k, False: 0]
  |  |  ------------------
  |  |  651|  35.8k|      free(A);                                                                 \
  |  |  652|  35.8k|      (A) = NULL;                                                              \
  |  |  653|  35.8k|    }                                                                          \
  |  |  654|  35.8k|  } while (0)
  |  |  ------------------
  |  |  |  Branch (654:12): [Folded, False: 35.8k]
  |  |  ------------------
  ------------------
   52|  35.8k|  return 0;
   53|  35.8k|}

fuzz-unescape.c:fuzz_strdup:
   41|  35.8k|HTS_UNUSED static char *fuzz_strdup(const uint8_t *data, size_t size) {
   42|  35.8k|  char *s = malloct(size + 1);
  ------------------
  |  |  644|  35.8k|#define malloct(A) malloc(A)
  ------------------
   43|       |
   44|  35.8k|  memcpy(s, data, size);
   45|  35.8k|  s[size] = '\0';
   46|  35.8k|  return s;
   47|  35.8k|}

hts_isCharsetUTF8:
  717|   485k|int hts_isCharsetUTF8(const char *charset) {
  718|   485k|  return charset != NULL 
  ------------------
  |  Branch (718:10): [True: 485k, False: 0]
  ------------------
  719|   485k|    && ( strcasecmp(charset, "utf-8") == 0 
  ------------------
  |  Branch (719:10): [True: 485k, False: 0]
  ------------------
  720|      0|         || strcasecmp(charset, "utf8") == 0 );
  ------------------
  |  Branch (720:13): [True: 0, False: 0]
  ------------------
  721|   485k|}
hts_writeUTF8:
 1319|   485k|size_t hts_writeUTF8(hts_UCS4 uc, char *dest, size_t size) {
 1320|   485k|  size_t offs = 0;
 1321|   485k|#define EM(C) do {       \
 1322|   485k|  if (offs + 1 < size) { \
 1323|   485k|    dest[offs++] = C;    \
 1324|   485k|  } else {               \
 1325|   485k|    return 0;            \
 1326|   485k|  }                      \
 1327|   485k|} while(0)
 1328|   485k|  EMIT_UNICODE(uc, EM);
  ------------------
  |  |  880|   485k|#define EMIT_UNICODE(UC, EMITTER) do {          \
  |  |  881|   485k|    if ((UC) < 0x80) {                          \
  |  |  ------------------
  |  |  |  Branch (881:9): [True: 139k, False: 345k]
  |  |  ------------------
  |  |  882|   139k|      EMITTER(((unsigned char) (UC)));          \
  |  |  ------------------
  |  |  |  | 1328|   139k|  EMIT_UNICODE(uc, EM);
  |  |  |  |  ------------------
  |  |  |  |  |  | 1321|   139k|#define EM(C) do {       \
  |  |  |  |  |  | 1322|   139k|  if (offs + 1 < size) { \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (1322:7): [True: 139k, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  | 1323|   139k|    dest[offs++] = C;    \
  |  |  |  |  |  | 1324|   139k|  } else {               \
  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  | 1327|   139k|} while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 139k]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  883|   345k|    } else if ((UC) < 0x0800) {                 \
  |  |  ------------------
  |  |  |  Branch (883:16): [True: 79.3k, False: 266k]
  |  |  ------------------
  |  |  884|  79.3k|      ADD_FIRST_SEQ(UC, 2, EMITTER);            \
  |  |  ------------------
  |  |  |  |  862|  79.3k|#define ADD_FIRST_SEQ(UC, LEN, EMITTER) do {                            \
  |  |  |  |  863|  79.3k|  /* first octet */                                                     \
  |  |  |  |  864|  79.3k|  const unsigned char lead =                                            \
  |  |  |  |  865|  79.3k|    /* leading bits: LEN "1" bits */                                    \
  |  |  |  |  866|  79.3k|    ~ ( ( 1 << (unsigned) ( 8 - LEN ) ) - 1 )                           \
  |  |  |  |  867|  79.3k|    /* encoded bits */                                                  \
  |  |  |  |  868|  79.3k|    | ( (UC) >> (unsigned) ( ( LEN - 1 ) * 6 ) );                       \
  |  |  |  |  869|  79.3k|  EMITTER(lead);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|  79.3k|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|  79.3k|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|  79.3k|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 79.3k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|  79.3k|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|  79.3k|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|  79.3k|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 79.3k]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  870|  79.3k|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (870:11): [Folded, False: 79.3k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  885|  79.3k|      ADD_NEXT_SEQ(UC, 0, EMITTER);             \
  |  |  ------------------
  |  |  |  |  872|  79.3k|#define ADD_NEXT_SEQ(UC, SHIFT, EMITTER) do {                           \
  |  |  |  |  873|  79.3k|  /* further bytes are encoding 6 bits */                               \
  |  |  |  |  874|  79.3k|  const unsigned char next =                                            \
  |  |  |  |  875|  79.3k|    0x80 | ( ( (UC) >> SHIFT ) & 0x3f );                                \
  |  |  |  |  876|  79.3k|  EMITTER(next);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|  79.3k|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|  79.3k|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|  79.3k|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 79.3k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|  79.3k|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|  79.3k|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|  79.3k|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 79.3k]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  877|  79.3k|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (877:11): [Folded, False: 79.3k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  886|   266k|    } else if ((UC) < 0x10000) {                \
  |  |  ------------------
  |  |  |  Branch (886:16): [True: 240k, False: 25.8k]
  |  |  ------------------
  |  |  887|   240k|      ADD_FIRST_SEQ(UC, 3, EMITTER);            \
  |  |  ------------------
  |  |  |  |  862|   240k|#define ADD_FIRST_SEQ(UC, LEN, EMITTER) do {                            \
  |  |  |  |  863|   240k|  /* first octet */                                                     \
  |  |  |  |  864|   240k|  const unsigned char lead =                                            \
  |  |  |  |  865|   240k|    /* leading bits: LEN "1" bits */                                    \
  |  |  |  |  866|   240k|    ~ ( ( 1 << (unsigned) ( 8 - LEN ) ) - 1 )                           \
  |  |  |  |  867|   240k|    /* encoded bits */                                                  \
  |  |  |  |  868|   240k|    | ( (UC) >> (unsigned) ( ( LEN - 1 ) * 6 ) );                       \
  |  |  |  |  869|   240k|  EMITTER(lead);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|   240k|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|   240k|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|   240k|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 240k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|   240k|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|   240k|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|   240k|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 240k]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  870|   240k|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (870:11): [Folded, False: 240k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  888|   240k|      ADD_NEXT_SEQ(UC, 6, EMITTER);             \
  |  |  ------------------
  |  |  |  |  872|   240k|#define ADD_NEXT_SEQ(UC, SHIFT, EMITTER) do {                           \
  |  |  |  |  873|   240k|  /* further bytes are encoding 6 bits */                               \
  |  |  |  |  874|   240k|  const unsigned char next =                                            \
  |  |  |  |  875|   240k|    0x80 | ( ( (UC) >> SHIFT ) & 0x3f );                                \
  |  |  |  |  876|   240k|  EMITTER(next);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|   240k|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|   240k|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|   240k|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 240k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|   240k|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|   240k|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|   240k|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 240k]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  877|   240k|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (877:11): [Folded, False: 240k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  889|   240k|      ADD_NEXT_SEQ(UC, 0, EMITTER);             \
  |  |  ------------------
  |  |  |  |  872|   240k|#define ADD_NEXT_SEQ(UC, SHIFT, EMITTER) do {                           \
  |  |  |  |  873|   240k|  /* further bytes are encoding 6 bits */                               \
  |  |  |  |  874|   240k|  const unsigned char next =                                            \
  |  |  |  |  875|   240k|    0x80 | ( ( (UC) >> SHIFT ) & 0x3f );                                \
  |  |  |  |  876|   240k|  EMITTER(next);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|   240k|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|   240k|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|   240k|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 240k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|   240k|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|   240k|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|   240k|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 240k]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  877|   240k|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (877:11): [Folded, False: 240k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  890|   240k|    } else if ((UC) < 0x200000) {               \
  |  |  ------------------
  |  |  |  Branch (890:16): [True: 25.8k, False: 0]
  |  |  ------------------
  |  |  891|  25.8k|      ADD_FIRST_SEQ(UC, 4, EMITTER);            \
  |  |  ------------------
  |  |  |  |  862|  25.8k|#define ADD_FIRST_SEQ(UC, LEN, EMITTER) do {                            \
  |  |  |  |  863|  25.8k|  /* first octet */                                                     \
  |  |  |  |  864|  25.8k|  const unsigned char lead =                                            \
  |  |  |  |  865|  25.8k|    /* leading bits: LEN "1" bits */                                    \
  |  |  |  |  866|  25.8k|    ~ ( ( 1 << (unsigned) ( 8 - LEN ) ) - 1 )                           \
  |  |  |  |  867|  25.8k|    /* encoded bits */                                                  \
  |  |  |  |  868|  25.8k|    | ( (UC) >> (unsigned) ( ( LEN - 1 ) * 6 ) );                       \
  |  |  |  |  869|  25.8k|  EMITTER(lead);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|  25.8k|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|  25.8k|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|  25.8k|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 25.8k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|  25.8k|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|  25.8k|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|  25.8k|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 25.8k]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  870|  25.8k|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (870:11): [Folded, False: 25.8k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  892|  25.8k|      ADD_NEXT_SEQ(UC, 12, EMITTER);            \
  |  |  ------------------
  |  |  |  |  872|  25.8k|#define ADD_NEXT_SEQ(UC, SHIFT, EMITTER) do {                           \
  |  |  |  |  873|  25.8k|  /* further bytes are encoding 6 bits */                               \
  |  |  |  |  874|  25.8k|  const unsigned char next =                                            \
  |  |  |  |  875|  25.8k|    0x80 | ( ( (UC) >> SHIFT ) & 0x3f );                                \
  |  |  |  |  876|  25.8k|  EMITTER(next);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|  25.8k|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|  25.8k|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|  25.8k|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 25.8k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|  25.8k|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|  25.8k|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|  25.8k|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 25.8k]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  877|  25.8k|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (877:11): [Folded, False: 25.8k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  893|  25.8k|      ADD_NEXT_SEQ(UC, 6, EMITTER);             \
  |  |  ------------------
  |  |  |  |  872|  25.8k|#define ADD_NEXT_SEQ(UC, SHIFT, EMITTER) do {                           \
  |  |  |  |  873|  25.8k|  /* further bytes are encoding 6 bits */                               \
  |  |  |  |  874|  25.8k|  const unsigned char next =                                            \
  |  |  |  |  875|  25.8k|    0x80 | ( ( (UC) >> SHIFT ) & 0x3f );                                \
  |  |  |  |  876|  25.8k|  EMITTER(next);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|  25.8k|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|  25.8k|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|  25.8k|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 25.8k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|  25.8k|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|  25.8k|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|  25.8k|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 25.8k]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  877|  25.8k|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (877:11): [Folded, False: 25.8k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  894|  25.8k|      ADD_NEXT_SEQ(UC, 0, EMITTER);             \
  |  |  ------------------
  |  |  |  |  872|  25.8k|#define ADD_NEXT_SEQ(UC, SHIFT, EMITTER) do {                           \
  |  |  |  |  873|  25.8k|  /* further bytes are encoding 6 bits */                               \
  |  |  |  |  874|  25.8k|  const unsigned char next =                                            \
  |  |  |  |  875|  25.8k|    0x80 | ( ( (UC) >> SHIFT ) & 0x3f );                                \
  |  |  |  |  876|  25.8k|  EMITTER(next);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|  25.8k|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|  25.8k|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|  25.8k|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 25.8k, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|  25.8k|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|  25.8k|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|  25.8k|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 25.8k]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  877|  25.8k|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (877:11): [Folded, False: 25.8k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  895|  25.8k|    } else if ((UC) < 0x4000000) {              \
  |  |  ------------------
  |  |  |  Branch (895:16): [True: 0, False: 0]
  |  |  ------------------
  |  |  896|      0|      ADD_FIRST_SEQ(UC, 5, EMITTER);            \
  |  |  ------------------
  |  |  |  |  862|      0|#define ADD_FIRST_SEQ(UC, LEN, EMITTER) do {                            \
  |  |  |  |  863|      0|  /* first octet */                                                     \
  |  |  |  |  864|      0|  const unsigned char lead =                                            \
  |  |  |  |  865|      0|    /* leading bits: LEN "1" bits */                                    \
  |  |  |  |  866|      0|    ~ ( ( 1 << (unsigned) ( 8 - LEN ) ) - 1 )                           \
  |  |  |  |  867|      0|    /* encoded bits */                                                  \
  |  |  |  |  868|      0|    | ( (UC) >> (unsigned) ( ( LEN - 1 ) * 6 ) );                       \
  |  |  |  |  869|      0|  EMITTER(lead);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|      0|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|      0|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|      0|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|      0|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|      0|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|      0|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  870|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (870:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  897|      0|      ADD_NEXT_SEQ(UC, 18, EMITTER);            \
  |  |  ------------------
  |  |  |  |  872|      0|#define ADD_NEXT_SEQ(UC, SHIFT, EMITTER) do {                           \
  |  |  |  |  873|      0|  /* further bytes are encoding 6 bits */                               \
  |  |  |  |  874|      0|  const unsigned char next =                                            \
  |  |  |  |  875|      0|    0x80 | ( ( (UC) >> SHIFT ) & 0x3f );                                \
  |  |  |  |  876|      0|  EMITTER(next);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|      0|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|      0|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|      0|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|      0|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|      0|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|      0|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  877|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (877:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  898|      0|      ADD_NEXT_SEQ(UC, 12, EMITTER);            \
  |  |  ------------------
  |  |  |  |  872|      0|#define ADD_NEXT_SEQ(UC, SHIFT, EMITTER) do {                           \
  |  |  |  |  873|      0|  /* further bytes are encoding 6 bits */                               \
  |  |  |  |  874|      0|  const unsigned char next =                                            \
  |  |  |  |  875|      0|    0x80 | ( ( (UC) >> SHIFT ) & 0x3f );                                \
  |  |  |  |  876|      0|  EMITTER(next);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|      0|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|      0|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|      0|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|      0|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|      0|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|      0|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  877|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (877:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  899|      0|      ADD_NEXT_SEQ(UC, 6, EMITTER);             \
  |  |  ------------------
  |  |  |  |  872|      0|#define ADD_NEXT_SEQ(UC, SHIFT, EMITTER) do {                           \
  |  |  |  |  873|      0|  /* further bytes are encoding 6 bits */                               \
  |  |  |  |  874|      0|  const unsigned char next =                                            \
  |  |  |  |  875|      0|    0x80 | ( ( (UC) >> SHIFT ) & 0x3f );                                \
  |  |  |  |  876|      0|  EMITTER(next);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|      0|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|      0|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|      0|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|      0|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|      0|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|      0|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  877|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (877:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  900|      0|      ADD_NEXT_SEQ(UC, 0, EMITTER);             \
  |  |  ------------------
  |  |  |  |  872|      0|#define ADD_NEXT_SEQ(UC, SHIFT, EMITTER) do {                           \
  |  |  |  |  873|      0|  /* further bytes are encoding 6 bits */                               \
  |  |  |  |  874|      0|  const unsigned char next =                                            \
  |  |  |  |  875|      0|    0x80 | ( ( (UC) >> SHIFT ) & 0x3f );                                \
  |  |  |  |  876|      0|  EMITTER(next);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|      0|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|      0|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|      0|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|      0|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|      0|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|      0|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  877|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (877:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  901|      0|    } else {                                    \
  |  |  902|      0|      ADD_FIRST_SEQ(UC, 6, EMITTER);            \
  |  |  ------------------
  |  |  |  |  862|      0|#define ADD_FIRST_SEQ(UC, LEN, EMITTER) do {                            \
  |  |  |  |  863|      0|  /* first octet */                                                     \
  |  |  |  |  864|      0|  const unsigned char lead =                                            \
  |  |  |  |  865|      0|    /* leading bits: LEN "1" bits */                                    \
  |  |  |  |  866|      0|    ~ ( ( 1 << (unsigned) ( 8 - LEN ) ) - 1 )                           \
  |  |  |  |  867|      0|    /* encoded bits */                                                  \
  |  |  |  |  868|      0|    | ( (UC) >> (unsigned) ( ( LEN - 1 ) * 6 ) );                       \
  |  |  |  |  869|      0|  EMITTER(lead);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|      0|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|      0|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|      0|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|      0|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|      0|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|      0|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  870|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (870:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  903|      0|      ADD_NEXT_SEQ(UC, 24, EMITTER);            \
  |  |  ------------------
  |  |  |  |  872|      0|#define ADD_NEXT_SEQ(UC, SHIFT, EMITTER) do {                           \
  |  |  |  |  873|      0|  /* further bytes are encoding 6 bits */                               \
  |  |  |  |  874|      0|  const unsigned char next =                                            \
  |  |  |  |  875|      0|    0x80 | ( ( (UC) >> SHIFT ) & 0x3f );                                \
  |  |  |  |  876|      0|  EMITTER(next);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|      0|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|      0|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|      0|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|      0|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|      0|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|      0|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  877|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (877:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  904|      0|      ADD_NEXT_SEQ(UC, 18, EMITTER);            \
  |  |  ------------------
  |  |  |  |  872|      0|#define ADD_NEXT_SEQ(UC, SHIFT, EMITTER) do {                           \
  |  |  |  |  873|      0|  /* further bytes are encoding 6 bits */                               \
  |  |  |  |  874|      0|  const unsigned char next =                                            \
  |  |  |  |  875|      0|    0x80 | ( ( (UC) >> SHIFT ) & 0x3f );                                \
  |  |  |  |  876|      0|  EMITTER(next);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|      0|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|      0|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|      0|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|      0|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|      0|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|      0|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  877|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (877:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  905|      0|      ADD_NEXT_SEQ(UC, 12, EMITTER);            \
  |  |  ------------------
  |  |  |  |  872|      0|#define ADD_NEXT_SEQ(UC, SHIFT, EMITTER) do {                           \
  |  |  |  |  873|      0|  /* further bytes are encoding 6 bits */                               \
  |  |  |  |  874|      0|  const unsigned char next =                                            \
  |  |  |  |  875|      0|    0x80 | ( ( (UC) >> SHIFT ) & 0x3f );                                \
  |  |  |  |  876|      0|  EMITTER(next);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|      0|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|      0|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|      0|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|      0|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|      0|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|      0|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  877|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (877:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  906|      0|      ADD_NEXT_SEQ(UC, 6, EMITTER);             \
  |  |  ------------------
  |  |  |  |  872|      0|#define ADD_NEXT_SEQ(UC, SHIFT, EMITTER) do {                           \
  |  |  |  |  873|      0|  /* further bytes are encoding 6 bits */                               \
  |  |  |  |  874|      0|  const unsigned char next =                                            \
  |  |  |  |  875|      0|    0x80 | ( ( (UC) >> SHIFT ) & 0x3f );                                \
  |  |  |  |  876|      0|  EMITTER(next);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|      0|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|      0|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|      0|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|      0|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|      0|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|      0|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  877|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (877:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  907|      0|      ADD_NEXT_SEQ(UC, 0, EMITTER);             \
  |  |  ------------------
  |  |  |  |  872|      0|#define ADD_NEXT_SEQ(UC, SHIFT, EMITTER) do {                           \
  |  |  |  |  873|      0|  /* further bytes are encoding 6 bits */                               \
  |  |  |  |  874|      0|  const unsigned char next =                                            \
  |  |  |  |  875|      0|    0x80 | ( ( (UC) >> SHIFT ) & 0x3f );                                \
  |  |  |  |  876|      0|  EMITTER(next);                                                        \
  |  |  |  |  ------------------
  |  |  |  |  |  | 1328|      0|  EMIT_UNICODE(uc, EM);
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1321|      0|#define EM(C) do {       \
  |  |  |  |  |  |  |  | 1322|      0|  if (offs + 1 < size) { \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1322:7): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  | 1323|      0|    dest[offs++] = C;    \
  |  |  |  |  |  |  |  | 1324|      0|  } else {               \
  |  |  |  |  |  |  |  | 1325|      0|    return 0;            \
  |  |  |  |  |  |  |  | 1326|      0|  }                      \
  |  |  |  |  |  |  |  | 1327|      0|} while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (1327:9): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  877|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (877:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  908|      0|    }                                           \
  |  |  909|   485k|  } while(0)
  |  |  ------------------
  |  |  |  Branch (909:11): [Folded, False: 485k]
  |  |  ------------------
  ------------------
 1329|   485k|#undef EM
 1330|   485k|  return offs; 
 1331|   485k|}

hts_unescapeEntitiesWithCharset:
   53|  35.8k|int hts_unescapeEntitiesWithCharset(const char *src, char *dest, const size_t max, const char *charset) {
   54|  35.8k|  return hts_unescapeEntitiesWithCharsetSpecial(src, dest, max, charset, 0);
   55|  35.8k|}
hts_unescapeEntitiesWithCharsetSpecial:
   60|  35.8k|                                           const int flags) {
   61|  35.8k|  size_t i, j, ampStart, ampStartDest;
   62|  35.8k|  int uc;
   63|  35.8k|  int hex;
   64|  35.8k|  uint64_t hash;
   65|       |
   66|  35.8k|  assertf(max != 0);
  ------------------
  |  |   91|  35.8k|#define assertf(exp) assertf_(exp, __FILE__, __LINE__)
  |  |  ------------------
  |  |  |  |   86|  35.8k|#define assertf_(exp, file, line) assertf__(exp, #exp, file, line)
  |  |  |  |  ------------------
  |  |  |  |  |  |   81|  35.8k|  (void) ((exp) || (abortf_(sexp, file, line), 0))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (81:11): [True: 35.8k, False: 0]
  |  |  |  |  |  |  |  Branch (81:20): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   67|  35.8k|  for (i = 0, j = 0, ampStart = (size_t) -1, ampStartDest = 0, uc = -1, hex = 0,
   68|  35.8k|      hash = HASH_INIT;
  ------------------
  |  |   45|  35.8k|#define HASH_INIT 0xcbf29ce484222325ULL
  ------------------
   69|  4.33M|       src[i] != '\0'; i++) {
  ------------------
  |  Branch (69:8): [True: 4.30M, False: 35.8k]
  ------------------
   70|       |    /* start of entity */
   71|  4.30M|    if (src[i] == '&') {
  ------------------
  |  Branch (71:9): [True: 540k, False: 3.76M]
  ------------------
   72|   540k|      ampStart = i;
   73|   540k|      ampStartDest = j;
   74|   540k|      hash = HASH_INIT;
  ------------------
  |  |   45|   540k|#define HASH_INIT 0xcbf29ce484222325ULL
  ------------------
   75|   540k|      uc = -1;
   76|   540k|    }
   77|       |    /* inside a potential entity */
   78|  3.76M|    else if (ampStart != (size_t) -1) {
  ------------------
  |  Branch (78:14): [True: 3.50M, False: 257k]
  ------------------
   79|       |      /* &#..; entity */
   80|  3.50M|      if (ampStart + 1 == i && src[ampStart + 1] == '#') {
  ------------------
  |  Branch (80:11): [True: 530k, False: 2.97M]
  |  Branch (80:32): [True: 2.04k, False: 528k]
  ------------------
   81|  2.04k|        uc = 0;
   82|  2.04k|        hex = 0;
   83|  2.04k|      }
   84|       |      /* &#x..; entity */
   85|  3.50M|      else if (ampStart + 2 == i && src[ampStart + 1] == '#'
  ------------------
  |  Branch (85:16): [True: 522k, False: 2.98M]
  |  Branch (85:37): [True: 1.84k, False: 520k]
  ------------------
   86|  1.84k|               && src[ampStart + 2] == 'x') {
  ------------------
  |  Branch (86:19): [True: 948, False: 896]
  ------------------
   87|    948|        hex = 1;
   88|    948|      }
   89|       |      /* end of entity */
   90|  3.50M|      else if (src[i] == ';') {
  ------------------
  |  Branch (90:16): [True: 516k, False: 2.98M]
  ------------------
   91|   516k|        size_t len;
   92|       |        
   93|       |        /* decode entity */
   94|   516k|        if (uc == -1) {
  ------------------
  |  Branch (94:13): [True: 516k, False: 239]
  ------------------
   95|       |          /* &foo; */
   96|   516k|          uc = decode_entity(hash, /*&src[ampStart + 1],*/
   97|   516k|                             i - ampStart - 1);
   98|       |          /* FIXME: TEMPORARY HACK FROM PREVIOUS VERSION TO BE INVESTIGATED */
   99|   516k|          if (uc == 160) {
  ------------------
  |  Branch (99:15): [True: 194, False: 516k]
  ------------------
  100|    194|            uc = 32;
  101|    194|          }
  102|   516k|        }
  103|       |        
  104|       |        /* end */
  105|   516k|        ampStart = (size_t) -1;
  106|       |        
  107|       |        /* success ? */
  108|   516k|        if (uc > 0) {
  ------------------
  |  Branch (108:13): [True: 485k, False: 31.3k]
  ------------------
  109|   485k|          const size_t maxOut = max - ampStartDest;
  110|       |          /* write at position */
  111|   485k|          if (charset != NULL && hts_isCharsetUTF8(charset)) {
  ------------------
  |  Branch (111:15): [True: 485k, False: 0]
  |  Branch (111:34): [True: 485k, False: 0]
  ------------------
  112|   485k|            len = hts_writeUTF8(uc, &dest[ampStartDest], maxOut);
  113|   485k|          } else {
  114|      0|            size_t ulen;
  115|      0|            char buffer[32];
  116|      0|            len = 0;
  117|      0|            if ( ( ulen = hts_writeUTF8(uc, buffer, sizeof(buffer)) ) != 0) {
  ------------------
  |  Branch (117:18): [True: 0, False: 0]
  ------------------
  118|      0|              const hts_boolean urlQuery =
  119|      0|                  (flags & UNESCAPE_ENTITIES_URL_QUERY) != 0;
  120|      0|              char *s;
  121|      0|              buffer[ulen] = '\0';
  122|       |              /* Strict for a query only: a substituted '?' must not pass for
  123|       |                 the code point the document wrote. */
  124|      0|              if (urlQuery) {
  ------------------
  |  Branch (124:19): [True: 0, False: 0]
  ------------------
  125|      0|                s = hts_convertStringFromUTF8Strict(buffer, strlen(buffer),
  126|      0|                                                    charset);
  127|      0|              } else {
  128|      0|                s = hts_convertStringFromUTF8(buffer, strlen(buffer), charset);
  129|      0|              }
  130|      0|              if (s != NULL) {
  ------------------
  |  Branch (130:19): [True: 0, False: 0]
  ------------------
  131|      0|                const size_t sLen = strlen(s);
  132|      0|                if (sLen < maxOut) {
  ------------------
  |  Branch (132:21): [True: 0, False: 0]
  ------------------
  133|       |                  /* Do not copy \0. */
  134|      0|                  memcpy(&dest[ampStartDest], s, sLen);
  135|      0|                  len = sLen;
  136|      0|                }
  137|      0|                freet(s);
  ------------------
  |  |  649|      0|  do {                                                                         \
  |  |  650|      0|    if ((A) != NULL) {                                                         \
  |  |  ------------------
  |  |  |  Branch (650:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  651|      0|      free(A);                                                                 \
  |  |  652|      0|      (A) = NULL;                                                              \
  |  |  653|      0|    }                                                                          \
  |  |  654|      0|  } while (0)
  |  |  ------------------
  |  |  |  Branch (654:12): [Folded, False: 0]
  |  |  ------------------
  ------------------
  138|      0|              } else if (urlQuery) {
  ------------------
  |  Branch (138:26): [True: 0, False: 0]
  ------------------
  139|       |                /* URL Standard: an unrepresentable code point is written
  140|       |                   %26%23<decimal>%3B rather than left as source text. */
  141|      0|                char esc[32];
  142|      0|                const int escLen =
  143|      0|                    snprintf(esc, sizeof(esc), "%%26%%23%d%%3B", uc);
  144|       |
  145|      0|                if (escLen > 0 && (size_t) escLen < maxOut) {
  ------------------
  |  Branch (145:21): [True: 0, False: 0]
  |  Branch (145:35): [True: 0, False: 0]
  ------------------
  146|      0|                  memcpy(&dest[ampStartDest], esc, (size_t) escLen);
  147|      0|                  len = (size_t) escLen;
  148|      0|                }
  149|      0|              }
  150|      0|            }
  151|      0|          }
  152|   485k|          if (len > 0) {
  ------------------
  |  Branch (152:15): [True: 485k, False: 0]
  ------------------
  153|       |            /* new dest position */
  154|   485k|            j = ampStartDest + len;
  155|       |            /* do not copy ; */
  156|   485k|            continue;
  157|   485k|          }
  158|   485k|        }
  159|   516k|      }
  160|       |      /* numerical entity */
  161|  2.98M|      else if (uc != -1) {
  ------------------
  |  Branch (161:16): [True: 4.87k, False: 2.98M]
  ------------------
  162|       |        /* decimal */
  163|  4.87k|        if (!hex) {
  ------------------
  |  Branch (163:13): [True: 2.23k, False: 2.63k]
  ------------------
  164|  2.23k|          if (src[i] >= '0' && src[i] <= '9') {
  ------------------
  |  Branch (164:15): [True: 2.00k, False: 236]
  |  Branch (164:32): [True: 1.80k, False: 203]
  ------------------
  165|  1.80k|            const int h = src[i] - '0';
  166|       |            /* Guard before multiplying: a codepoint past the Unicode max
  167|       |               (0x10FFFF) is invalid anyway, so stop rather than overflow uc. */
  168|  1.80k|            if (uc > (0x10FFFF - h) / 10) {
  ------------------
  |  Branch (168:17): [True: 213, False: 1.58k]
  ------------------
  169|    213|              ampStart = (size_t) -1;
  170|  1.58k|            } else {
  171|  1.58k|              uc = uc * 10 + h;
  172|  1.58k|            }
  173|  1.80k|          } else {
  174|       |            /* abandon */
  175|    439|            ampStart = (size_t) -1;
  176|    439|          }
  177|  2.23k|        }
  178|       |        /* hex */
  179|  2.63k|        else {
  180|  2.63k|          const int h = hts_ehexh(src[i]);
  181|  2.63k|          if (h != -1) {
  ------------------
  |  Branch (181:15): [True: 2.21k, False: 424]
  ------------------
  182|  2.21k|            if (uc > (0x10FFFF - h) / 16) {
  ------------------
  |  Branch (182:17): [True: 239, False: 1.97k]
  ------------------
  183|    239|              ampStart = (size_t) -1;
  184|  1.97k|            } else {
  185|  1.97k|              uc = uc * 16 + h;
  186|  1.97k|            }
  187|  2.21k|          } else {
  188|       |            /* abandon */
  189|    424|            ampStart = (size_t) -1;
  190|    424|          }
  191|  2.63k|        }
  192|  4.87k|      }
  193|       |      /* alphanumerical entity */
  194|  2.98M|      else {
  195|       |        /* alphanum, capped at the longest name
  196|       |         * '&CounterClockwiseContourIntegral;' (31) */
  197|  2.98M|        if (i <= ampStart + 31 && ((src[i] >= '0' && src[i] <= '9') ||
  ------------------
  |  Branch (197:13): [True: 2.98M, False: 198]
  |  Branch (197:37): [True: 2.97M, False: 5.68k]
  |  Branch (197:54): [True: 20.5k, False: 2.95M]
  ------------------
  198|  2.96M|                                   (src[i] >= 'A' && src[i] <= 'Z') ||
  ------------------
  |  Branch (198:37): [True: 2.95M, False: 5.88k]
  |  Branch (198:54): [True: 170k, False: 2.78M]
  ------------------
  199|  2.97M|                                   (src[i] >= 'a' && src[i] <= 'z'))) {
  ------------------
  |  Branch (199:37): [True: 2.78M, False: 6.03k]
  |  Branch (199:54): [True: 2.78M, False: 279]
  ------------------
  200|       |          /* compute hash */
  201|  2.97M|          HASH_ADD(hash, (unsigned char) src[i]);
  ------------------
  |  |   48|  2.97M|  do {                                                                         \
  |  |   49|  2.97M|    (HASH) ^= (unsigned char) (C);                                             \
  |  |   50|  2.97M|    (HASH) *= HASH_PRIME;                                                      \
  |  |  ------------------
  |  |  |  |   46|  2.97M|#define HASH_PRIME 0x100000001b3ULL
  |  |  ------------------
  |  |   51|  2.97M|  } while (0)
  |  |  ------------------
  |  |  |  Branch (51:12): [Folded, False: 2.97M]
  |  |  ------------------
  ------------------
  202|  2.97M|        } else {
  203|       |          /* abandon */
  204|  6.50k|          ampStart = (size_t) -1;
  205|  6.50k|        }
  206|  2.98M|      }
  207|  3.50M|    }
  208|       |
  209|       |    /* reserve one byte for the trailing NUL written after the loop */
  210|  3.81M|    if (j + 1 >= max) {
  ------------------
  |  Branch (210:9): [True: 0, False: 3.81M]
  ------------------
  211|       |      /* overflow */
  212|      0|      return -1;
  213|      0|    }
  214|  3.81M|    if (src != dest || i != j) {
  ------------------
  |  Branch (214:9): [True: 0, False: 3.81M]
  |  Branch (214:24): [True: 3.49M, False: 320k]
  ------------------
  215|  3.49M|      dest[j] = src[i];
  216|  3.49M|    }
  217|  3.81M|    j++;
  218|  3.81M|  }
  219|  35.8k|  dest[j] = '\0';
  220|       |
  221|  35.8k|  return 0;
  222|  35.8k|}
hts_unescapeEntities:
  224|  35.8k|int hts_unescapeEntities(const char *src, char *dest, const size_t max) {
  225|  35.8k|  return hts_unescapeEntitiesWithCharset(src, dest, max, "UTF-8");
  226|  35.8k|}

htslib.c:hts_ehex:
   67|  19.7k|static HTS_INLINE HTS_UNUSED int hts_ehex(const char *s) {
   68|  19.7k|  const int c1 = hts_ehexh(s[0]);
   69|       |
   70|  19.7k|  if (c1 >= 0) {
  ------------------
  |  Branch (70:7): [True: 15.7k, False: 3.99k]
  ------------------
   71|  15.7k|    const int c2 = hts_ehexh(s[1]);
   72|       |
   73|  15.7k|    if (c2 >= 0) {
  ------------------
  |  Branch (73:9): [True: 12.1k, False: 3.63k]
  ------------------
   74|  12.1k|      return 16 * c1 + c2;
   75|  12.1k|    }
   76|  15.7k|  }
   77|  7.62k|  return -1;
   78|  19.7k|}
htslib.c:hts_ehexh:
   54|  35.5k|static HTS_INLINE HTS_UNUSED int hts_ehexh(const char c) {
   55|  35.5k|  if (c >= '0' && c <= '9')
  ------------------
  |  Branch (55:7): [True: 30.3k, False: 5.23k]
  |  Branch (55:19): [True: 17.5k, False: 12.7k]
  ------------------
   56|  17.5k|    return c - '0';
   57|  18.0k|  else if (c >= 'a' && c <= 'f')
  ------------------
  |  Branch (57:12): [True: 8.65k, False: 9.37k]
  |  Branch (57:24): [True: 6.42k, False: 2.23k]
  ------------------
   58|  6.42k|    return (c - 'a' + 10);
   59|  11.6k|  else if (c >= 'A' && c <= 'F')
  ------------------
  |  Branch (59:12): [True: 6.28k, False: 5.31k]
  |  Branch (59:24): [True: 3.97k, False: 2.31k]
  ------------------
   60|  3.97k|    return (c - 'A' + 10);
   61|  7.62k|  else
   62|  7.62k|    return -1;
   63|  35.5k|}
htsencoding.c:hts_ehexh:
   54|  2.63k|static HTS_INLINE HTS_UNUSED int hts_ehexh(const char c) {
   55|  2.63k|  if (c >= '0' && c <= '9')
  ------------------
  |  Branch (55:7): [True: 2.43k, False: 201]
  |  Branch (55:19): [True: 560, False: 1.87k]
  ------------------
   56|    560|    return c - '0';
   57|  2.07k|  else if (c >= 'a' && c <= 'f')
  ------------------
  |  Branch (57:12): [True: 565, False: 1.51k]
  |  Branch (57:24): [True: 351, False: 214]
  ------------------
   58|    351|    return (c - 'a' + 10);
   59|  1.72k|  else if (c >= 'A' && c <= 'F')
  ------------------
  |  Branch (59:12): [True: 1.52k, False: 203]
  |  Branch (59:24): [True: 1.30k, False: 221]
  ------------------
   60|  1.30k|    return (c - 'A' + 10);
   61|    424|  else
   62|    424|    return -1;
   63|  2.63k|}

htsencoding.c:decode_entity:
    8|   516k|static int decode_entity(const uint64_t hash, const size_t len) {
    9|   516k|  switch(hash) {
  ------------------
  |  Branch (9:10): [True: 485k, False: 31.1k]
  ------------------
   10|       |    /* AElig */
   11|    194|  case 0x18394e1ff5776859ULL:
  ------------------
  |  Branch (11:3): [True: 194, False: 516k]
  ------------------
   12|    194|    if (len == 5) {
  ------------------
  |  Branch (12:9): [True: 194, False: 0]
  ------------------
   13|    194|      return 198;
   14|    194|    }
   15|      0|    break;
   16|       |    /* AMP */
   17|    194|  case 0xfa03a519a04ea059ULL:
  ------------------
  |  Branch (17:3): [True: 194, False: 516k]
  ------------------
   18|    194|    if (len == 3) {
  ------------------
  |  Branch (18:9): [True: 194, False: 0]
  ------------------
   19|    194|      return 38;
   20|    194|    }
   21|      0|    break;
   22|       |    /* Aacute */
   23|    194|  case 0x2409a9c702169658ULL:
  ------------------
  |  Branch (23:3): [True: 194, False: 516k]
  ------------------
   24|    194|    if (len == 6) {
  ------------------
  |  Branch (24:9): [True: 194, False: 0]
  ------------------
   25|    194|      return 193;
   26|    194|    }
   27|      0|    break;
   28|       |    /* Abreve */
   29|    195|  case 0x78d7c9535a197302ULL:
  ------------------
  |  Branch (29:3): [True: 195, False: 516k]
  ------------------
   30|    195|    if (len == 6) {
  ------------------
  |  Branch (30:9): [True: 195, False: 0]
  ------------------
   31|    195|      return 258;
   32|    195|    }
   33|      0|    break;
   34|       |    /* Acirc */
   35|    194|  case 0x56bc5044a5cc4f2bULL:
  ------------------
  |  Branch (35:3): [True: 194, False: 516k]
  ------------------
   36|    194|    if (len == 5) {
  ------------------
  |  Branch (36:9): [True: 194, False: 0]
  ------------------
   37|    194|      return 194;
   38|    194|    }
   39|      0|    break;
   40|       |    /* Acy */
   41|    194|  case 0xf9c5d019a019884cULL:
  ------------------
  |  Branch (41:3): [True: 194, False: 516k]
  ------------------
   42|    194|    if (len == 3) {
  ------------------
  |  Branch (42:9): [True: 194, False: 0]
  ------------------
   43|    194|      return 1040;
   44|    194|    }
   45|      0|    break;
   46|       |    /* Afr */
   47|    194|  case 0xf9b4d919a00b2464ULL:
  ------------------
  |  Branch (47:3): [True: 194, False: 516k]
  ------------------
   48|    194|    if (len == 3) {
  ------------------
  |  Branch (48:9): [True: 194, False: 0]
  ------------------
   49|    194|      return 120068;
   50|    194|    }
   51|      0|    break;
   52|       |    /* Agrave */
   53|    194|  case 0x752278feab81816dULL:
  ------------------
  |  Branch (53:3): [True: 194, False: 516k]
  ------------------
   54|    194|    if (len == 6) {
  ------------------
  |  Branch (54:9): [True: 194, False: 0]
  ------------------
   55|    194|      return 192;
   56|    194|    }
   57|      0|    break;
   58|       |    /* Alpha */
   59|    194|  case 0x4fda04cbc245e18bULL:
  ------------------
  |  Branch (59:3): [True: 194, False: 516k]
  ------------------
   60|    194|    if (len == 5) {
  ------------------
  |  Branch (60:9): [True: 194, False: 0]
  ------------------
   61|    194|      return 913;
   62|    194|    }
   63|      0|    break;
   64|       |    /* Amacr */
   65|    194|  case 0x32167cd28afa9067ULL:
  ------------------
  |  Branch (65:3): [True: 194, False: 516k]
  ------------------
   66|    194|    if (len == 5) {
  ------------------
  |  Branch (66:9): [True: 194, False: 0]
  ------------------
   67|    194|      return 256;
   68|    194|    }
   69|      0|    break;
   70|       |    /* And */
   71|    194|  case 0xf999b7199ff422e6ULL:
  ------------------
  |  Branch (71:3): [True: 194, False: 516k]
  ------------------
   72|    194|    if (len == 3) {
  ------------------
  |  Branch (72:9): [True: 194, False: 0]
  ------------------
   73|    194|      return 10835;
   74|    194|    }
   75|      0|    break;
   76|       |    /* Aogon */
   77|    194|  case 0xd20842e4903aab13ULL:
  ------------------
  |  Branch (77:3): [True: 194, False: 516k]
  ------------------
   78|    194|    if (len == 5) {
  ------------------
  |  Branch (78:9): [True: 194, False: 0]
  ------------------
   79|    194|      return 260;
   80|    194|    }
   81|      0|    break;
   82|       |    /* Aopf */
   83|    194|  case 0x1f61db8ad2c66497ULL:
  ------------------
  |  Branch (83:3): [True: 194, False: 516k]
  ------------------
   84|    194|    if (len == 4) {
  ------------------
  |  Branch (84:9): [True: 194, False: 0]
  ------------------
   85|    194|      return 120120;
   86|    194|    }
   87|      0|    break;
   88|       |    /* ApplyFunction */
   89|      0|  case 0x8ca35dcd7fa3cafbULL:
  ------------------
  |  Branch (89:3): [True: 0, False: 516k]
  ------------------
   90|      0|    if (len == 13) {
  ------------------
  |  Branch (90:9): [True: 0, False: 0]
  ------------------
   91|      0|      return 8289;
   92|      0|    }
   93|      0|    break;
   94|       |    /* Aring */
   95|    194|  case 0xc8c1a0c1bd9dc5c6ULL:
  ------------------
  |  Branch (95:3): [True: 194, False: 516k]
  ------------------
   96|    194|    if (len == 5) {
  ------------------
  |  Branch (96:9): [True: 194, False: 0]
  ------------------
   97|    194|      return 197;
   98|    194|    }
   99|      0|    break;
  100|       |    /* Ascr */
  101|    194|  case 0x114c618b5b9fe568ULL:
  ------------------
  |  Branch (101:3): [True: 194, False: 516k]
  ------------------
  102|    194|    if (len == 4) {
  ------------------
  |  Branch (102:9): [True: 194, False: 0]
  ------------------
  103|    194|      return 119964;
  104|    194|    }
  105|      0|    break;
  106|       |    /* Assign */
  107|    202|  case 0xc92c1a54034e21ccULL:
  ------------------
  |  Branch (107:3): [True: 202, False: 516k]
  ------------------
  108|    202|    if (len == 6) {
  ------------------
  |  Branch (108:9): [True: 202, False: 0]
  ------------------
  109|    202|      return 8788;
  110|    202|    }
  111|      0|    break;
  112|       |    /* Atilde */
  113|    194|  case 0x3f5a954e8956508aULL:
  ------------------
  |  Branch (113:3): [True: 194, False: 516k]
  ------------------
  114|    194|    if (len == 6) {
  ------------------
  |  Branch (114:9): [True: 194, False: 0]
  ------------------
  115|    194|      return 195;
  116|    194|    }
  117|      0|    break;
  118|       |    /* Auml */
  119|    202|  case 0xdb8b598b3cabbc4aULL:
  ------------------
  |  Branch (119:3): [True: 202, False: 516k]
  ------------------
  120|    202|    if (len == 4) {
  ------------------
  |  Branch (120:9): [True: 202, False: 0]
  ------------------
  121|    202|      return 196;
  122|    202|    }
  123|      0|    break;
  124|       |    /* Backslash */
  125|    194|  case 0x2e51bac8425c11b7ULL:
  ------------------
  |  Branch (125:3): [True: 194, False: 516k]
  ------------------
  126|    194|    if (len == 9) {
  ------------------
  |  Branch (126:9): [True: 194, False: 0]
  ------------------
  127|    194|      return 8726;
  128|    194|    }
  129|      0|    break;
  130|       |    /* Barv */
  131|    194|  case 0xc1a0f3a7a8de4164ULL:
  ------------------
  |  Branch (131:3): [True: 194, False: 516k]
  ------------------
  132|    194|    if (len == 4) {
  ------------------
  |  Branch (132:9): [True: 194, False: 0]
  ------------------
  133|    194|      return 10983;
  134|    194|    }
  135|      0|    break;
  136|       |    /* Barwed */
  137|    194|  case 0xfe3cb353a84b12d6ULL:
  ------------------
  |  Branch (137:3): [True: 194, False: 516k]
  ------------------
  138|    194|    if (len == 6) {
  ------------------
  |  Branch (138:9): [True: 194, False: 0]
  ------------------
  139|    194|      return 8966;
  140|    194|    }
  141|      0|    break;
  142|       |    /* Bcy */
  143|    194|  case 0x16484719b0f6a811ULL:
  ------------------
  |  Branch (143:3): [True: 194, False: 516k]
  ------------------
  144|    194|    if (len == 3) {
  ------------------
  |  Branch (144:9): [True: 194, False: 0]
  ------------------
  145|    194|      return 1041;
  146|    194|    }
  147|      0|    break;
  148|       |    /* Because */
  149|    194|  case 0xa966b5956e468a1bULL:
  ------------------
  |  Branch (149:3): [True: 194, False: 516k]
  ------------------
  150|    194|    if (len == 7) {
  ------------------
  |  Branch (150:9): [True: 194, False: 0]
  ------------------
  151|    194|      return 8757;
  152|    194|    }
  153|      0|    break;
  154|       |    /* Bernoullis */
  155|      0|  case 0xd2ae2f19d7112f40ULL:
  ------------------
  |  Branch (155:3): [True: 0, False: 516k]
  ------------------
  156|      0|    if (len == 10) {
  ------------------
  |  Branch (156:9): [True: 0, False: 0]
  ------------------
  157|      0|      return 8492;
  158|      0|    }
  159|      0|    break;
  160|       |    /* Beta */
  161|    194|  case 0xa0b562a796b69487ULL:
  ------------------
  |  Branch (161:3): [True: 194, False: 516k]
  ------------------
  162|    194|    if (len == 4) {
  ------------------
  |  Branch (162:9): [True: 194, False: 0]
  ------------------
  163|    194|      return 914;
  164|    194|    }
  165|      0|    break;
  166|       |    /* Bfr */
  167|    194|  case 0x163e4e19b0ee5f71ULL:
  ------------------
  |  Branch (167:3): [True: 194, False: 516k]
  ------------------
  168|    194|    if (len == 3) {
  ------------------
  |  Branch (168:9): [True: 194, False: 0]
  ------------------
  169|    194|      return 120069;
  170|    194|    }
  171|      0|    break;
  172|       |    /* Bopf */
  173|    194|  case 0xf7b2d9a7c81687e4ULL:
  ------------------
  |  Branch (173:3): [True: 194, False: 516k]
  ------------------
  174|    194|    if (len == 4) {
  ------------------
  |  Branch (174:9): [True: 194, False: 0]
  ------------------
  175|    194|      return 120121;
  176|    194|    }
  177|      0|    break;
  178|       |    /* Breve */
  179|    194|  case 0x4feb5e845ad95b55ULL:
  ------------------
  |  Branch (179:3): [True: 194, False: 516k]
  ------------------
  180|    194|    if (len == 5) {
  ------------------
  |  Branch (180:9): [True: 194, False: 0]
  ------------------
  181|    194|      return 728;
  182|    194|    }
  183|      0|    break;
  184|       |    /* Bscr */
  185|    194|  case 0x5fd7c3a803221213ULL:
  ------------------
  |  Branch (185:3): [True: 194, False: 516k]
  ------------------
  186|    194|    if (len == 4) {
  ------------------
  |  Branch (186:9): [True: 194, False: 0]
  ------------------
  187|    194|      return 8492;
  188|    194|    }
  189|      0|    break;
  190|       |    /* Bumpeq */
  191|    194|  case 0xc372a340673c7953ULL:
  ------------------
  |  Branch (191:3): [True: 194, False: 516k]
  ------------------
  192|    194|    if (len == 6) {
  ------------------
  |  Branch (192:9): [True: 194, False: 0]
  ------------------
  193|    194|      return 8782;
  194|    194|    }
  195|      0|    break;
  196|       |    /* CHcy */
  197|    194|  case 0x07216d9c6f0c7baaULL:
  ------------------
  |  Branch (197:3): [True: 194, False: 516k]
  ------------------
  198|    194|    if (len == 4) {
  ------------------
  |  Branch (198:9): [True: 194, False: 0]
  ------------------
  199|    194|      return 1063;
  200|    194|    }
  201|      0|    break;
  202|       |    /* COPY */
  203|    194|  case 0x2011c49c7ce10124ULL:
  ------------------
  |  Branch (203:3): [True: 194, False: 516k]
  ------------------
  204|    194|    if (len == 4) {
  ------------------
  |  Branch (204:9): [True: 194, False: 0]
  ------------------
  205|    194|      return 169;
  206|    194|    }
  207|      0|    break;
  208|       |    /* Cacute */
  209|    194|  case 0x5f62ead6c2dfa02eULL:
  ------------------
  |  Branch (209:3): [True: 194, False: 516k]
  ------------------
  210|    194|    if (len == 6) {
  ------------------
  |  Branch (210:9): [True: 194, False: 0]
  ------------------
  211|    194|      return 262;
  212|    194|    }
  213|      0|    break;
  214|       |    /* Cap */
  215|    194|  case 0x0bec2319aa9da8bbULL:
  ------------------
  |  Branch (215:3): [True: 194, False: 516k]
  ------------------
  216|    194|    if (len == 3) {
  ------------------
  |  Branch (216:9): [True: 194, False: 0]
  ------------------
  217|    194|      return 8914;
  218|    194|    }
  219|      0|    break;
  220|       |    /* CapitalDifferentialD */
  221|      0|  case 0x259b2e059cfe5452ULL:
  ------------------
  |  Branch (221:3): [True: 0, False: 516k]
  ------------------
  222|      0|    if (len == 20) {
  ------------------
  |  Branch (222:9): [True: 0, False: 0]
  ------------------
  223|      0|      return 8517;
  224|      0|    }
  225|      0|    break;
  226|       |    /* Cayleys */
  227|      0|  case 0x72d086c7441f4827ULL:
  ------------------
  |  Branch (227:3): [True: 0, False: 516k]
  ------------------
  228|      0|    if (len == 7) {
  ------------------
  |  Branch (228:9): [True: 0, False: 0]
  ------------------
  229|      0|      return 8493;
  230|      0|    }
  231|      0|    break;
  232|       |    /* Ccaron */
  233|    194|  case 0xfbc31a5af710a9a5ULL:
  ------------------
  |  Branch (233:3): [True: 194, False: 516k]
  ------------------
  234|    194|    if (len == 6) {
  ------------------
  |  Branch (234:9): [True: 194, False: 0]
  ------------------
  235|    194|      return 268;
  236|    194|    }
  237|      0|    break;
  238|       |    /* Ccedil */
  239|    194|  case 0x7bbc767e947c3727ULL:
  ------------------
  |  Branch (239:3): [True: 194, False: 516k]
  ------------------
  240|    194|    if (len == 6) {
  ------------------
  |  Branch (240:9): [True: 194, False: 0]
  ------------------
  241|    194|      return 199;
  242|    194|    }
  243|      0|    break;
  244|       |    /* Ccirc */
  245|    194|  case 0xa49cc48f5e302fc5ULL:
  ------------------
  |  Branch (245:3): [True: 194, False: 516k]
  ------------------
  246|    194|    if (len == 5) {
  ------------------
  |  Branch (246:9): [True: 194, False: 0]
  ------------------
  247|    194|      return 264;
  248|    194|    }
  249|      0|    break;
  250|       |    /* Cconint */
  251|    194|  case 0x6be9c6f80d3187afULL:
  ------------------
  |  Branch (251:3): [True: 194, False: 516k]
  ------------------
  252|    194|    if (len == 7) {
  ------------------
  |  Branch (252:9): [True: 194, False: 0]
  ------------------
  253|    194|      return 8752;
  254|    194|    }
  255|      0|    break;
  256|       |    /* Cdot */
  257|    194|  case 0xf8f9de9cf7d5b299ULL:
  ------------------
  |  Branch (257:3): [True: 194, False: 516k]
  ------------------
  258|    194|    if (len == 4) {
  ------------------
  |  Branch (258:9): [True: 194, False: 0]
  ------------------
  259|    194|      return 266;
  260|    194|    }
  261|      0|    break;
  262|       |    /* Cedilla */
  263|    194|  case 0x14fd3053685d065dULL:
  ------------------
  |  Branch (263:3): [True: 194, False: 516k]
  ------------------
  264|    194|    if (len == 7) {
  ------------------
  |  Branch (264:9): [True: 194, False: 0]
  ------------------
  265|    194|      return 184;
  266|    194|    }
  267|      0|    break;
  268|       |    /* CenterDot */
  269|    194|  case 0x526bfb3a65a4da8bULL:
  ------------------
  |  Branch (269:3): [True: 194, False: 516k]
  ------------------
  270|    194|    if (len == 9) {
  ------------------
  |  Branch (270:9): [True: 194, False: 0]
  ------------------
  271|    194|      return 183;
  272|    194|    }
  273|      0|    break;
  274|       |    /* Cfr */
  275|    194|  case 0x0bef2b19aa9fec2aULL:
  ------------------
  |  Branch (275:3): [True: 194, False: 516k]
  ------------------
  276|    194|    if (len == 3) {
  ------------------
  |  Branch (276:9): [True: 194, False: 0]
  ------------------
  277|    194|      return 8493;
  278|    194|    }
  279|      0|    break;
  280|       |    /* Chi */
  281|    194|  case 0x0c041619aab22485ULL:
  ------------------
  |  Branch (281:3): [True: 194, False: 516k]
  ------------------
  282|    194|    if (len == 3) {
  ------------------
  |  Branch (282:9): [True: 194, False: 0]
  ------------------
  283|    194|      return 935;
  284|    194|    }
  285|      0|    break;
  286|       |    /* CircleDot */
  287|    194|  case 0x9c35f65c65d93bb4ULL:
  ------------------
  |  Branch (287:3): [True: 194, False: 516k]
  ------------------
  288|    194|    if (len == 9) {
  ------------------
  |  Branch (288:9): [True: 194, False: 0]
  ------------------
  289|    194|      return 8857;
  290|    194|    }
  291|      0|    break;
  292|       |    /* CircleMinus */
  293|    196|  case 0xf5c0f0dddd1e9163ULL:
  ------------------
  |  Branch (293:3): [True: 196, False: 516k]
  ------------------
  294|    196|    if (len == 11) {
  ------------------
  |  Branch (294:9): [True: 196, False: 0]
  ------------------
  295|    196|      return 8854;
  296|    196|    }
  297|      0|    break;
  298|       |    /* CirclePlus */
  299|    194|  case 0xc657d9663aedb929ULL:
  ------------------
  |  Branch (299:3): [True: 194, False: 516k]
  ------------------
  300|    194|    if (len == 10) {
  ------------------
  |  Branch (300:9): [True: 194, False: 0]
  ------------------
  301|    194|      return 8853;
  302|    194|    }
  303|      0|    break;
  304|       |    /* CircleTimes */
  305|    194|  case 0x7cb9857a413b6649ULL:
  ------------------
  |  Branch (305:3): [True: 194, False: 516k]
  ------------------
  306|    194|    if (len == 11) {
  ------------------
  |  Branch (306:9): [True: 194, False: 0]
  ------------------
  307|    194|      return 8855;
  308|    194|    }
  309|      0|    break;
  310|       |    /* ClockwiseContourIntegral */
  311|      0|  case 0x4ceca49e8cb0a701ULL:
  ------------------
  |  Branch (311:3): [True: 0, False: 516k]
  ------------------
  312|      0|    if (len == 24) {
  ------------------
  |  Branch (312:9): [True: 0, False: 0]
  ------------------
  313|      0|      return 8754;
  314|      0|    }
  315|      0|    break;
  316|       |    /* CloseCurlyDoubleQuote */
  317|      0|  case 0x0b6335f2463cae57ULL:
  ------------------
  |  Branch (317:3): [True: 0, False: 516k]
  ------------------
  318|      0|    if (len == 21) {
  ------------------
  |  Branch (318:9): [True: 0, False: 0]
  ------------------
  319|      0|      return 8221;
  320|      0|    }
  321|      0|    break;
  322|       |    /* CloseCurlyQuote */
  323|      0|  case 0x90ce96f2eab07a8cULL:
  ------------------
  |  Branch (323:3): [True: 0, False: 516k]
  ------------------
  324|      0|    if (len == 15) {
  ------------------
  |  Branch (324:9): [True: 0, False: 0]
  ------------------
  325|      0|      return 8217;
  326|      0|    }
  327|      0|    break;
  328|       |    /* Colon */
  329|    194|  case 0x344eb4f4939cf0fcULL:
  ------------------
  |  Branch (329:3): [True: 194, False: 516k]
  ------------------
  330|    194|    if (len == 5) {
  ------------------
  |  Branch (330:9): [True: 194, False: 0]
  ------------------
  331|    194|      return 8759;
  332|    194|    }
  333|      0|    break;
  334|       |    /* Colone */
  335|    194|  case 0x7eae1496d3acd3fbULL:
  ------------------
  |  Branch (335:3): [True: 194, False: 516k]
  ------------------
  336|    194|    if (len == 6) {
  ------------------
  |  Branch (336:9): [True: 194, False: 0]
  ------------------
  337|    194|      return 10868;
  338|    194|    }
  339|      0|    break;
  340|       |    /* Congruent */
  341|      0|  case 0x3f9ce4a5b87c9c4aULL:
  ------------------
  |  Branch (341:3): [True: 0, False: 516k]
  ------------------
  342|      0|    if (len == 9) {
  ------------------
  |  Branch (342:9): [True: 0, False: 0]
  ------------------
  343|      0|      return 8801;
  344|      0|    }
  345|      0|    break;
  346|       |    /* Conint */
  347|    194|  case 0x01ec91896b92baa4ULL:
  ------------------
  |  Branch (347:3): [True: 194, False: 516k]
  ------------------
  348|    194|    if (len == 6) {
  ------------------
  |  Branch (348:9): [True: 194, False: 0]
  ------------------
  349|    194|      return 8751;
  350|    194|    }
  351|      0|    break;
  352|       |    /* ContourIntegral */
  353|      0|  case 0xbcef3cb5d2f74ed1ULL:
  ------------------
  |  Branch (353:3): [True: 0, False: 516k]
  ------------------
  354|      0|    if (len == 15) {
  ------------------
  |  Branch (354:9): [True: 0, False: 0]
  ------------------
  355|      0|      return 8750;
  356|      0|    }
  357|      0|    break;
  358|       |    /* Copf */
  359|    194|  case 0x36870b9d1af56ea9ULL:
  ------------------
  |  Branch (359:3): [True: 194, False: 516k]
  ------------------
  360|    194|    if (len == 4) {
  ------------------
  |  Branch (360:9): [True: 194, False: 0]
  ------------------
  361|    194|      return 8450;
  362|    194|    }
  363|      0|    break;
  364|       |    /* Coproduct */
  365|      0|  case 0x01a44e62517ef6b6ULL:
  ------------------
  |  Branch (365:3): [True: 0, False: 516k]
  ------------------
  366|      0|    if (len == 9) {
  ------------------
  |  Branch (366:9): [True: 0, False: 0]
  ------------------
  367|      0|      return 8720;
  368|      0|    }
  369|      0|    break;
  370|       |    /* CounterClockwiseContourIntegral */
  371|      0|  case 0x1811b86e5419cf3fULL:
  ------------------
  |  Branch (371:3): [True: 0, False: 516k]
  ------------------
  372|      0|    if (len == 31) {
  ------------------
  |  Branch (372:9): [True: 0, False: 0]
  ------------------
  373|      0|      return 8755;
  374|      0|    }
  375|      0|    break;
  376|       |    /* Cross */
  377|    194|  case 0x1f152e00912ee85bULL:
  ------------------
  |  Branch (377:3): [True: 194, False: 516k]
  ------------------
  378|    194|    if (len == 5) {
  ------------------
  |  Branch (378:9): [True: 194, False: 0]
  ------------------
  379|    194|      return 10799;
  380|    194|    }
  381|      0|    break;
  382|       |    /* Cscr */
  383|    194|  case 0x4496799c92176dc6ULL:
  ------------------
  |  Branch (383:3): [True: 194, False: 516k]
  ------------------
  384|    194|    if (len == 4) {
  ------------------
  |  Branch (384:9): [True: 194, False: 0]
  ------------------
  385|    194|      return 119966;
  386|    194|    }
  387|      0|    break;
  388|       |    /* Cup */
  389|    194|  case 0x0bc31b19aa7a960fULL:
  ------------------
  |  Branch (389:3): [True: 194, False: 516k]
  ------------------
  390|    194|    if (len == 3) {
  ------------------
  |  Branch (390:9): [True: 194, False: 0]
  ------------------
  391|    194|      return 8915;
  392|    194|    }
  393|      0|    break;
  394|       |    /* CupCap */
  395|    194|  case 0xc9dc0a414ff5303dULL:
  ------------------
  |  Branch (395:3): [True: 194, False: 516k]
  ------------------
  396|    194|    if (len == 6) {
  ------------------
  |  Branch (396:9): [True: 194, False: 0]
  ------------------
  397|    194|      return 8781;
  398|    194|    }
  399|      0|    break;
  400|       |    /* DD */
  401|    194|  case 0x08fe3407b5984795ULL:
  ------------------
  |  Branch (401:3): [True: 194, False: 516k]
  ------------------
  402|    194|    if (len == 2) {
  ------------------
  |  Branch (402:9): [True: 194, False: 0]
  ------------------
  403|    194|      return 8517;
  404|    194|    }
  405|      0|    break;
  406|       |    /* DDotrahd */
  407|      0|  case 0x901265414c8afab3ULL:
  ------------------
  |  Branch (407:3): [True: 0, False: 516k]
  ------------------
  408|      0|    if (len == 8) {
  ------------------
  |  Branch (408:9): [True: 0, False: 0]
  ------------------
  409|      0|      return 10513;
  410|      0|    }
  411|      0|    break;
  412|       |    /* DJcy */
  413|    194|  case 0xd42f6172b4b89343ULL:
  ------------------
  |  Branch (413:3): [True: 194, False: 516k]
  ------------------
  414|    194|    if (len == 4) {
  ------------------
  |  Branch (414:9): [True: 194, False: 0]
  ------------------
  415|    194|      return 1026;
  416|    194|    }
  417|      0|    break;
  418|       |    /* DScy */
  419|    194|  case 0xfe4360723c4c9940ULL:
  ------------------
  |  Branch (419:3): [True: 194, False: 516k]
  ------------------
  420|    194|    if (len == 4) {
  ------------------
  |  Branch (420:9): [True: 194, False: 0]
  ------------------
  421|    194|      return 1029;
  422|    194|    }
  423|      0|    break;
  424|       |    /* DZcy */
  425|    194|  case 0x4a70d17266f0cfb3ULL:
  ------------------
  |  Branch (425:3): [True: 194, False: 516k]
  ------------------
  426|    194|    if (len == 4) {
  ------------------
  |  Branch (426:9): [True: 194, False: 0]
  ------------------
  427|    194|      return 1039;
  428|    194|    }
  429|      0|    break;
  430|       |    /* Dagger */
  431|    194|  case 0x9357e823f15b88bbULL:
  ------------------
  |  Branch (431:3): [True: 194, False: 516k]
  ------------------
  432|    194|    if (len == 6) {
  ------------------
  |  Branch (432:9): [True: 194, False: 0]
  ------------------
  433|    194|      return 8225;
  434|    194|    }
  435|      0|    break;
  436|       |    /* Darr */
  437|    194|  case 0xac8973732f3531daULL:
  ------------------
  |  Branch (437:3): [True: 194, False: 516k]
  ------------------
  438|    194|    if (len == 4) {
  ------------------
  |  Branch (438:9): [True: 194, False: 0]
  ------------------
  439|    194|      return 8609;
  440|    194|    }
  441|      0|    break;
  442|       |    /* Dashv */
  443|    194|  case 0x6a38f3b93b485c39ULL:
  ------------------
  |  Branch (443:3): [True: 194, False: 516k]
  ------------------
  444|    194|    if (len == 5) {
  ------------------
  |  Branch (444:9): [True: 194, False: 0]
  ------------------
  445|    194|      return 10980;
  446|    194|    }
  447|      0|    break;
  448|       |    /* Dcaron */
  449|    194|  case 0x276eaf4593a8149eULL:
  ------------------
  |  Branch (449:3): [True: 194, False: 516k]
  ------------------
  450|    194|    if (len == 6) {
  ------------------
  |  Branch (450:9): [True: 194, False: 0]
  ------------------
  451|    194|      return 270;
  452|    194|    }
  453|      0|    break;
  454|       |    /* Dcy */
  455|    194|  case 0xe08f4d19920a686bULL:
  ------------------
  |  Branch (455:3): [True: 194, False: 516k]
  ------------------
  456|    194|    if (len == 3) {
  ------------------
  |  Branch (456:9): [True: 194, False: 0]
  ------------------
  457|    194|      return 1044;
  458|    194|    }
  459|      0|    break;
  460|       |    /* Del */
  461|    194|  case 0xe0a34419921b022aULL:
  ------------------
  |  Branch (461:3): [True: 194, False: 516k]
  ------------------
  462|    194|    if (len == 3) {
  ------------------
  |  Branch (462:9): [True: 194, False: 0]
  ------------------
  463|    194|      return 8711;
  464|    194|    }
  465|      0|    break;
  466|       |    /* Delta */
  467|    194|  case 0x11c74ddc5e28f321ULL:
  ------------------
  |  Branch (467:3): [True: 194, False: 516k]
  ------------------
  468|    194|    if (len == 5) {
  ------------------
  |  Branch (468:9): [True: 194, False: 0]
  ------------------
  469|    194|      return 916;
  470|    194|    }
  471|      0|    break;
  472|       |    /* Dfr */
  473|    194|  case 0xe0a060199218fbe7ULL:
  ------------------
  |  Branch (473:3): [True: 194, False: 516k]
  ------------------
  474|    194|    if (len == 3) {
  ------------------
  |  Branch (474:9): [True: 194, False: 0]
  ------------------
  475|    194|      return 120071;
  476|    194|    }
  477|      0|    break;
  478|       |    /* DiacriticalAcute */
  479|      0|  case 0x3da5cc0bd8f135acULL:
  ------------------
  |  Branch (479:3): [True: 0, False: 516k]
  ------------------
  480|      0|    if (len == 16) {
  ------------------
  |  Branch (480:9): [True: 0, False: 0]
  ------------------
  481|      0|      return 180;
  482|      0|    }
  483|      0|    break;
  484|       |    /* DiacriticalDot */
  485|      0|  case 0x2fca11ea37b686a7ULL:
  ------------------
  |  Branch (485:3): [True: 0, False: 516k]
  ------------------
  486|      0|    if (len == 14) {
  ------------------
  |  Branch (486:9): [True: 0, False: 0]
  ------------------
  487|      0|      return 729;
  488|      0|    }
  489|      0|    break;
  490|       |    /* DiacriticalDoubleAcute */
  491|      0|  case 0x697966d35e56545bULL:
  ------------------
  |  Branch (491:3): [True: 0, False: 516k]
  ------------------
  492|      0|    if (len == 22) {
  ------------------
  |  Branch (492:9): [True: 0, False: 0]
  ------------------
  493|      0|      return 733;
  494|      0|    }
  495|      0|    break;
  496|       |    /* DiacriticalGrave */
  497|      0|  case 0xe697b4ef50298271ULL:
  ------------------
  |  Branch (497:3): [True: 0, False: 516k]
  ------------------
  498|      0|    if (len == 16) {
  ------------------
  |  Branch (498:9): [True: 0, False: 0]
  ------------------
  499|      0|      return 96;
  500|      0|    }
  501|      0|    break;
  502|       |    /* DiacriticalTilde */
  503|      0|  case 0xa5ac81d49b3b7a76ULL:
  ------------------
  |  Branch (503:3): [True: 0, False: 516k]
  ------------------
  504|      0|    if (len == 16) {
  ------------------
  |  Branch (504:9): [True: 0, False: 0]
  ------------------
  505|      0|      return 732;
  506|      0|    }
  507|      0|    break;
  508|       |    /* Diamond */
  509|    194|  case 0x469d5c53c3a49087ULL:
  ------------------
  |  Branch (509:3): [True: 194, False: 516k]
  ------------------
  510|    194|    if (len == 7) {
  ------------------
  |  Branch (510:9): [True: 194, False: 0]
  ------------------
  511|    194|      return 8900;
  512|    194|    }
  513|      0|    break;
  514|       |    /* DifferentialD */
  515|      0|  case 0xafd6823df46bd190ULL:
  ------------------
  |  Branch (515:3): [True: 0, False: 516k]
  ------------------
  516|      0|    if (len == 13) {
  ------------------
  |  Branch (516:9): [True: 0, False: 0]
  ------------------
  517|      0|      return 8518;
  518|      0|    }
  519|      0|    break;
  520|       |    /* Dopf */
  521|    194|  case 0x032ef973604ac8deULL:
  ------------------
  |  Branch (521:3): [True: 194, False: 516k]
  ------------------
  522|    194|    if (len == 4) {
  ------------------
  |  Branch (522:9): [True: 194, False: 0]
  ------------------
  523|    194|      return 120123;
  524|    194|    }
  525|      0|    break;
  526|       |    /* Dot */
  527|    197|  case 0xe0b74819922bb200ULL:
  ------------------
  |  Branch (527:3): [True: 197, False: 516k]
  ------------------
  528|    197|    if (len == 3) {
  ------------------
  |  Branch (528:9): [True: 197, False: 0]
  ------------------
  529|    197|      return 168;
  530|    197|    }
  531|      0|    break;
  532|       |    /* DotDot */
  533|    194|  case 0x38048652ea66e057ULL:
  ------------------
  |  Branch (533:3): [True: 194, False: 516k]
  ------------------
  534|    194|    if (len == 6) {
  ------------------
  |  Branch (534:9): [True: 194, False: 0]
  ------------------
  535|    194|      return 8412;
  536|    194|    }
  537|      0|    break;
  538|       |    /* DotEqual */
  539|    194|  case 0xfcd861c29dcf7b78ULL:
  ------------------
  |  Branch (539:3): [True: 194, False: 516k]
  ------------------
  540|    194|    if (len == 8) {
  ------------------
  |  Branch (540:9): [True: 194, False: 0]
  ------------------
  541|    194|      return 8784;
  542|    194|    }
  543|      0|    break;
  544|       |    /* DoubleContourIntegral */
  545|      0|  case 0x38d735568019cffeULL:
  ------------------
  |  Branch (545:3): [True: 0, False: 516k]
  ------------------
  546|      0|    if (len == 21) {
  ------------------
  |  Branch (546:9): [True: 0, False: 0]
  ------------------
  547|      0|      return 8751;
  548|      0|    }
  549|      0|    break;
  550|       |    /* DoubleDot */
  551|      0|  case 0x3b02db5e0cf064ffULL:
  ------------------
  |  Branch (551:3): [True: 0, False: 516k]
  ------------------
  552|      0|    if (len == 9) {
  ------------------
  |  Branch (552:9): [True: 0, False: 0]
  ------------------
  553|      0|      return 168;
  554|      0|    }
  555|      0|    break;
  556|       |    /* DoubleDownArrow */
  557|      0|  case 0xfcd66c821474ff95ULL:
  ------------------
  |  Branch (557:3): [True: 0, False: 516k]
  ------------------
  558|      0|    if (len == 15) {
  ------------------
  |  Branch (558:9): [True: 0, False: 0]
  ------------------
  559|      0|      return 8659;
  560|      0|    }
  561|      0|    break;
  562|       |    /* DoubleLeftArrow */
  563|      0|  case 0xd2280f2631444542ULL:
  ------------------
  |  Branch (563:3): [True: 0, False: 516k]
  ------------------
  564|      0|    if (len == 15) {
  ------------------
  |  Branch (564:9): [True: 0, False: 0]
  ------------------
  565|      0|      return 8656;
  566|      0|    }
  567|      0|    break;
  568|       |    /* DoubleLeftRightArrow */
  569|      0|  case 0xed379a75ef7ba4eaULL:
  ------------------
  |  Branch (569:3): [True: 0, False: 516k]
  ------------------
  570|      0|    if (len == 20) {
  ------------------
  |  Branch (570:9): [True: 0, False: 0]
  ------------------
  571|      0|      return 8660;
  572|      0|    }
  573|      0|    break;
  574|       |    /* DoubleLeftTee */
  575|      0|  case 0xc5d69da98539f2a9ULL:
  ------------------
  |  Branch (575:3): [True: 0, False: 516k]
  ------------------
  576|      0|    if (len == 13) {
  ------------------
  |  Branch (576:9): [True: 0, False: 0]
  ------------------
  577|      0|      return 10980;
  578|      0|    }
  579|      0|    break;
  580|       |    /* DoubleLongLeftArrow */
  581|      0|  case 0xdab5e8fffc2e1428ULL:
  ------------------
  |  Branch (581:3): [True: 0, False: 516k]
  ------------------
  582|      0|    if (len == 19) {
  ------------------
  |  Branch (582:9): [True: 0, False: 0]
  ------------------
  583|      0|      return 10232;
  584|      0|    }
  585|      0|    break;
  586|       |    /* DoubleLongLeftRightArrow */
  587|      0|  case 0xecd240b222683554ULL:
  ------------------
  |  Branch (587:3): [True: 0, False: 516k]
  ------------------
  588|      0|    if (len == 24) {
  ------------------
  |  Branch (588:9): [True: 0, False: 0]
  ------------------
  589|      0|      return 10234;
  590|      0|    }
  591|      0|    break;
  592|       |    /* DoubleLongRightArrow */
  593|      0|  case 0x00b22dbb0394e83dULL:
  ------------------
  |  Branch (593:3): [True: 0, False: 516k]
  ------------------
  594|      0|    if (len == 20) {
  ------------------
  |  Branch (594:9): [True: 0, False: 0]
  ------------------
  595|      0|      return 10233;
  596|      0|    }
  597|      0|    break;
  598|       |    /* DoubleRightArrow */
  599|      0|  case 0x9b535f4bac8cb587ULL:
  ------------------
  |  Branch (599:3): [True: 0, False: 516k]
  ------------------
  600|      0|    if (len == 16) {
  ------------------
  |  Branch (600:9): [True: 0, False: 0]
  ------------------
  601|      0|      return 8658;
  602|      0|    }
  603|      0|    break;
  604|       |    /* DoubleRightTee */
  605|      0|  case 0x124d249f38917d28ULL:
  ------------------
  |  Branch (605:3): [True: 0, False: 516k]
  ------------------
  606|      0|    if (len == 14) {
  ------------------
  |  Branch (606:9): [True: 0, False: 0]
  ------------------
  607|      0|      return 8872;
  608|      0|    }
  609|      0|    break;
  610|       |    /* DoubleUpArrow */
  611|      0|  case 0x67ad3d3178b57a76ULL:
  ------------------
  |  Branch (611:3): [True: 0, False: 516k]
  ------------------
  612|      0|    if (len == 13) {
  ------------------
  |  Branch (612:9): [True: 0, False: 0]
  ------------------
  613|      0|      return 8657;
  614|      0|    }
  615|      0|    break;
  616|       |    /* DoubleUpDownArrow */
  617|      0|  case 0x10af8b1fbdae0666ULL:
  ------------------
  |  Branch (617:3): [True: 0, False: 516k]
  ------------------
  618|      0|    if (len == 17) {
  ------------------
  |  Branch (618:9): [True: 0, False: 0]
  ------------------
  619|      0|      return 8661;
  620|      0|    }
  621|      0|    break;
  622|       |    /* DoubleVerticalBar */
  623|      0|  case 0x2e053385b30ff243ULL:
  ------------------
  |  Branch (623:3): [True: 0, False: 516k]
  ------------------
  624|      0|    if (len == 17) {
  ------------------
  |  Branch (624:9): [True: 0, False: 0]
  ------------------
  625|      0|      return 8741;
  626|      0|    }
  627|      0|    break;
  628|       |    /* DownArrow */
  629|    195|  case 0x26d4481d1ebb7cf6ULL:
  ------------------
  |  Branch (629:3): [True: 195, False: 516k]
  ------------------
  630|    195|    if (len == 9) {
  ------------------
  |  Branch (630:9): [True: 195, False: 0]
  ------------------
  631|    195|      return 8595;
  632|    195|    }
  633|      0|    break;
  634|       |    /* DownArrowBar */
  635|    194|  case 0x1d700911e309b06fULL:
  ------------------
  |  Branch (635:3): [True: 194, False: 516k]
  ------------------
  636|    194|    if (len == 12) {
  ------------------
  |  Branch (636:9): [True: 194, False: 0]
  ------------------
  637|    194|      return 10515;
  638|    194|    }
  639|      0|    break;
  640|       |    /* DownArrowUpArrow */
  641|    194|  case 0x660c8d2a95771820ULL:
  ------------------
  |  Branch (641:3): [True: 194, False: 516k]
  ------------------
  642|    194|    if (len == 16) {
  ------------------
  |  Branch (642:9): [True: 194, False: 0]
  ------------------
  643|    194|      return 8693;
  644|    194|    }
  645|      0|    break;
  646|       |    /* DownBreve */
  647|    194|  case 0xfead7089204461c5ULL:
  ------------------
  |  Branch (647:3): [True: 194, False: 516k]
  ------------------
  648|    194|    if (len == 9) {
  ------------------
  |  Branch (648:9): [True: 194, False: 0]
  ------------------
  649|    194|      return 785;
  650|    194|    }
  651|      0|    break;
  652|       |    /* DownLeftRightVector */
  653|      0|  case 0xd23f54705228a8c9ULL:
  ------------------
  |  Branch (653:3): [True: 0, False: 516k]
  ------------------
  654|      0|    if (len == 19) {
  ------------------
  |  Branch (654:9): [True: 0, False: 0]
  ------------------
  655|      0|      return 10576;
  656|      0|    }
  657|      0|    break;
  658|       |    /* DownLeftTeeVector */
  659|      0|  case 0xd44f1c23bb48b291ULL:
  ------------------
  |  Branch (659:3): [True: 0, False: 516k]
  ------------------
  660|      0|    if (len == 17) {
  ------------------
  |  Branch (660:9): [True: 0, False: 0]
  ------------------
  661|      0|      return 10590;
  662|      0|    }
  663|      0|    break;
  664|       |    /* DownLeftVector */
  665|      0|  case 0xdc3caa672ac6218fULL:
  ------------------
  |  Branch (665:3): [True: 0, False: 516k]
  ------------------
  666|      0|    if (len == 14) {
  ------------------
  |  Branch (666:9): [True: 0, False: 0]
  ------------------
  667|      0|      return 8637;
  668|      0|    }
  669|      0|    break;
  670|       |    /* DownLeftVectorBar */
  671|      0|  case 0x977d27a9db7d9310ULL:
  ------------------
  |  Branch (671:3): [True: 0, False: 516k]
  ------------------
  672|      0|    if (len == 17) {
  ------------------
  |  Branch (672:9): [True: 0, False: 0]
  ------------------
  673|      0|      return 10582;
  674|      0|    }
  675|      0|    break;
  676|       |    /* DownRightTeeVector */
  677|      0|  case 0x855c623a4ac07ce2ULL:
  ------------------
  |  Branch (677:3): [True: 0, False: 516k]
  ------------------
  678|      0|    if (len == 18) {
  ------------------
  |  Branch (678:9): [True: 0, False: 0]
  ------------------
  679|      0|      return 10591;
  680|      0|    }
  681|      0|    break;
  682|       |    /* DownRightVector */
  683|      0|  case 0x018b1d823c40a8f2ULL:
  ------------------
  |  Branch (683:3): [True: 0, False: 516k]
  ------------------
  684|      0|    if (len == 15) {
  ------------------
  |  Branch (684:9): [True: 0, False: 0]
  ------------------
  685|      0|      return 8641;
  686|      0|    }
  687|      0|    break;
  688|       |    /* DownRightVectorBar */
  689|      0|  case 0xa72ff2c15e781b03ULL:
  ------------------
  |  Branch (689:3): [True: 0, False: 516k]
  ------------------
  690|      0|    if (len == 18) {
  ------------------
  |  Branch (690:9): [True: 0, False: 0]
  ------------------
  691|      0|      return 10583;
  692|      0|    }
  693|      0|    break;
  694|       |    /* DownTee */
  695|    194|  case 0x86f46e3bb2ad2a45ULL:
  ------------------
  |  Branch (695:3): [True: 194, False: 516k]
  ------------------
  696|    194|    if (len == 7) {
  ------------------
  |  Branch (696:9): [True: 194, False: 0]
  ------------------
  697|    194|      return 8868;
  698|    194|    }
  699|      0|    break;
  700|       |    /* DownTeeArrow */
  701|    194|  case 0xba1fb3380a414a86ULL:
  ------------------
  |  Branch (701:3): [True: 194, False: 516k]
  ------------------
  702|    194|    if (len == 12) {
  ------------------
  |  Branch (702:9): [True: 194, False: 0]
  ------------------
  703|    194|      return 8615;
  704|    194|    }
  705|      0|    break;
  706|       |    /* Downarrow */
  707|    194|  case 0x108f60bb94a4d596ULL:
  ------------------
  |  Branch (707:3): [True: 194, False: 516k]
  ------------------
  708|    194|    if (len == 9) {
  ------------------
  |  Branch (708:9): [True: 194, False: 0]
  ------------------
  709|    194|      return 8659;
  710|    194|    }
  711|      0|    break;
  712|       |    /* Dscr */
  713|    194|  case 0x10e68b72d7228f51ULL:
  ------------------
  |  Branch (713:3): [True: 194, False: 516k]
  ------------------
  714|    194|    if (len == 4) {
  ------------------
  |  Branch (714:9): [True: 194, False: 0]
  ------------------
  715|    194|      return 119967;
  716|    194|    }
  717|      0|    break;
  718|       |    /* Dstrok */
  719|    196|  case 0xcc9161f743672e5cULL:
  ------------------
  |  Branch (719:3): [True: 196, False: 516k]
  ------------------
  720|    196|    if (len == 6) {
  ------------------
  |  Branch (720:9): [True: 196, False: 0]
  ------------------
  721|    196|      return 272;
  722|    196|    }
  723|      0|    break;
  724|       |    /* ENG */
  725|    194|  case 0xd96542198e67aff7ULL:
  ------------------
  |  Branch (725:3): [True: 194, False: 516k]
  ------------------
  726|    194|    if (len == 3) {
  ------------------
  |  Branch (726:9): [True: 194, False: 0]
  ------------------
  727|    194|      return 330;
  728|    194|    }
  729|      0|    break;
  730|       |    /* ETH */
  731|    194|  case 0xd97a1b198e79c9bcULL:
  ------------------
  |  Branch (731:3): [True: 194, False: 516k]
  ------------------
  732|    194|    if (len == 3) {
  ------------------
  |  Branch (732:9): [True: 194, False: 0]
  ------------------
  733|    194|      return 208;
  734|    194|    }
  735|      0|    break;
  736|       |    /* Eacute */
  737|    194|  case 0x293857f837f4d6fcULL:
  ------------------
  |  Branch (737:3): [True: 194, False: 516k]
  ------------------
  738|    194|    if (len == 6) {
  ------------------
  |  Branch (738:9): [True: 194, False: 0]
  ------------------
  739|    194|      return 201;
  740|    194|    }
  741|      0|    break;
  742|       |    /* Ecaron */
  743|    194|  case 0x7aceb873f959a987ULL:
  ------------------
  |  Branch (743:3): [True: 194, False: 516k]
  ------------------
  744|    194|    if (len == 6) {
  ------------------
  |  Branch (744:9): [True: 194, False: 0]
  ------------------
  745|    194|      return 282;
  746|    194|    }
  747|      0|    break;
  748|       |    /* Ecirc */
  749|    199|  case 0x4e4287c70797d11fULL:
  ------------------
  |  Branch (749:3): [True: 199, False: 516k]
  ------------------
  750|    199|    if (len == 5) {
  ------------------
  |  Branch (750:9): [True: 199, False: 0]
  ------------------
  751|    199|      return 202;
  752|    199|    }
  753|      0|    break;
  754|       |    /* Ecy */
  755|    194|  case 0xd8d324198deb8ee0ULL:
  ------------------
  |  Branch (755:3): [True: 194, False: 516k]
  ------------------
  756|    194|    if (len == 3) {
  ------------------
  |  Branch (756:9): [True: 194, False: 0]
  ------------------
  757|    194|      return 1069;
  758|    194|    }
  759|      0|    break;
  760|       |    /* Edot */
  761|    194|  case 0x64e8266c2dcbae57ULL:
  ------------------
  |  Branch (761:3): [True: 194, False: 516k]
  ------------------
  762|    194|    if (len == 4) {
  ------------------
  |  Branch (762:9): [True: 194, False: 0]
  ------------------
  763|    194|      return 278;
  764|    194|    }
  765|      0|    break;
  766|       |    /* Efr */
  767|    195|  case 0xd8dd1d198df3d780ULL:
  ------------------
  |  Branch (767:3): [True: 195, False: 516k]
  ------------------
  768|    195|    if (len == 3) {
  ------------------
  |  Branch (768:9): [True: 195, False: 0]
  ------------------
  769|    195|      return 120072;
  770|    195|    }
  771|      0|    break;
  772|       |    /* Egrave */
  773|    194|  case 0xbda55fd04b75bc41ULL:
  ------------------
  |  Branch (773:3): [True: 194, False: 516k]
  ------------------
  774|    194|    if (len == 6) {
  ------------------
  |  Branch (774:9): [True: 194, False: 0]
  ------------------
  775|    194|      return 200;
  776|    194|    }
  777|      0|    break;
  778|       |    /* Element */
  779|      0|  case 0x190747c04bd639f7ULL:
  ------------------
  |  Branch (779:3): [True: 0, False: 516k]
  ------------------
  780|      0|    if (len == 7) {
  ------------------
  |  Branch (780:9): [True: 0, False: 0]
  ------------------
  781|      0|      return 8712;
  782|      0|    }
  783|      0|    break;
  784|       |    /* Emacr */
  785|    194|  case 0xd1d2351a8ba4fbd3ULL:
  ------------------
  |  Branch (785:3): [True: 194, False: 516k]
  ------------------
  786|    194|    if (len == 5) {
  ------------------
  |  Branch (786:9): [True: 194, False: 0]
  ------------------
  787|    194|      return 274;
  788|    194|    }
  789|      0|    break;
  790|       |    /* EmptySmallSquare */
  791|      0|  case 0x0f15f0a793f57d6eULL:
  ------------------
  |  Branch (791:3): [True: 0, False: 516k]
  ------------------
  792|      0|    if (len == 16) {
  ------------------
  |  Branch (792:9): [True: 0, False: 0]
  ------------------
  793|      0|      return 9723;
  794|      0|    }
  795|      0|    break;
  796|       |    /* EmptyVerySmallSquare */
  797|      0|  case 0xf5944636ac261c32ULL:
  ------------------
  |  Branch (797:3): [True: 0, False: 516k]
  ------------------
  798|      0|    if (len == 20) {
  ------------------
  |  Branch (798:9): [True: 0, False: 0]
  ------------------
  799|      0|      return 9643;
  800|      0|    }
  801|      0|    break;
  802|       |    /* Eogon */
  803|    194|  case 0x29d0eb2c67647507ULL:
  ------------------
  |  Branch (803:3): [True: 194, False: 516k]
  ------------------
  804|    194|    if (len == 5) {
  ------------------
  |  Branch (804:9): [True: 194, False: 0]
  ------------------
  805|    194|      return 280;
  806|    194|    }
  807|      0|    break;
  808|       |    /* Eopf */
  809|    194|  case 0xc33eeb6c62f63cc3ULL:
  ------------------
  |  Branch (809:3): [True: 194, False: 516k]
  ------------------
  810|    194|    if (len == 4) {
  ------------------
  |  Branch (810:9): [True: 194, False: 0]
  ------------------
  811|    194|      return 120124;
  812|    194|    }
  813|      0|    break;
  814|       |    /* Epsilon */
  815|    194|  case 0x970db63fbdff8cfdULL:
  ------------------
  |  Branch (815:3): [True: 194, False: 516k]
  ------------------
  816|    194|    if (len == 7) {
  ------------------
  |  Branch (816:9): [True: 194, False: 0]
  ------------------
  817|    194|      return 917;
  818|    194|    }
  819|      0|    break;
  820|       |    /* Equal */
  821|    195|  case 0x2a391b3d81594d0fULL:
  ------------------
  |  Branch (821:3): [True: 195, False: 516k]
  ------------------
  822|    195|    if (len == 5) {
  ------------------
  |  Branch (822:9): [True: 195, False: 0]
  ------------------
  823|    195|      return 10869;
  824|    195|    }
  825|      0|    break;
  826|       |    /* EqualTilde */
  827|    194|  case 0xd0799ddebecdcf57ULL:
  ------------------
  |  Branch (827:3): [True: 194, False: 516k]
  ------------------
  828|    194|    if (len == 10) {
  ------------------
  |  Branch (828:9): [True: 194, False: 0]
  ------------------
  829|    194|      return 8770;
  830|    194|    }
  831|      0|    break;
  832|       |    /* Equilibrium */
  833|      0|  case 0x2f8809ed80bedfb7ULL:
  ------------------
  |  Branch (833:3): [True: 0, False: 516k]
  ------------------
  834|      0|    if (len == 11) {
  ------------------
  |  Branch (834:9): [True: 0, False: 0]
  ------------------
  835|      0|      return 8652;
  836|      0|    }
  837|      0|    break;
  838|       |    /* Escr */
  839|    194|  case 0xe6f8916c7780dc84ULL:
  ------------------
  |  Branch (839:3): [True: 194, False: 516k]
  ------------------
  840|    194|    if (len == 4) {
  ------------------
  |  Branch (840:9): [True: 194, False: 0]
  ------------------
  841|    194|      return 8496;
  842|    194|    }
  843|      0|    break;
  844|       |    /* Esim */
  845|    195|  case 0xe6d6746c7763c4d7ULL:
  ------------------
  |  Branch (845:3): [True: 195, False: 516k]
  ------------------
  846|    195|    if (len == 4) {
  ------------------
  |  Branch (846:9): [True: 195, False: 0]
  ------------------
  847|    195|      return 10867;
  848|    195|    }
  849|      0|    break;
  850|       |    /* Eta */
  851|    194|  case 0xd90d44198e1d3d87ULL:
  ------------------
  |  Branch (851:3): [True: 194, False: 516k]
  ------------------
  852|    194|    if (len == 3) {
  ------------------
  |  Branch (852:9): [True: 194, False: 0]
  ------------------
  853|    194|      return 919;
  854|    194|    }
  855|      0|    break;
  856|       |    /* Euml */
  857|    194|  case 0xf58ec96c7efcedfeULL:
  ------------------
  |  Branch (857:3): [True: 194, False: 516k]
  ------------------
  858|    194|    if (len == 4) {
  ------------------
  |  Branch (858:9): [True: 194, False: 0]
  ------------------
  859|    194|      return 203;
  860|    194|    }
  861|      0|    break;
  862|       |    /* Exists */
  863|    194|  case 0x582f5ee767500efdULL:
  ------------------
  |  Branch (863:3): [True: 194, False: 516k]
  ------------------
  864|    194|    if (len == 6) {
  ------------------
  |  Branch (864:9): [True: 194, False: 0]
  ------------------
  865|    194|      return 8707;
  866|    194|    }
  867|      0|    break;
  868|       |    /* ExponentialE */
  869|      0|  case 0x6964bde464e30f97ULL:
  ------------------
  |  Branch (869:3): [True: 0, False: 516k]
  ------------------
  870|      0|    if (len == 12) {
  ------------------
  |  Branch (870:9): [True: 0, False: 0]
  ------------------
  871|      0|      return 8519;
  872|      0|    }
  873|      0|    break;
  874|       |    /* Fcy */
  875|    194|  case 0xf2c8ab199c9d9195ULL:
  ------------------
  |  Branch (875:3): [True: 194, False: 516k]
  ------------------
  876|    194|    if (len == 3) {
  ------------------
  |  Branch (876:9): [True: 194, False: 0]
  ------------------
  877|    194|      return 1060;
  878|    194|    }
  879|      0|    break;
  880|       |    /* Ffr */
  881|    194|  case 0xf2d9b2199cac10adULL:
  ------------------
  |  Branch (881:3): [True: 194, False: 516k]
  ------------------
  882|    194|    if (len == 3) {
  ------------------
  |  Branch (882:9): [True: 194, False: 0]
  ------------------
  883|    194|      return 120073;
  884|    194|    }
  885|      0|    break;
  886|       |    /* FilledSmallSquare */
  887|      0|  case 0xecddc2fcdbf0d53fULL:
  ------------------
  |  Branch (887:3): [True: 0, False: 516k]
  ------------------
  888|      0|    if (len == 17) {
  ------------------
  |  Branch (888:9): [True: 0, False: 0]
  ------------------
  889|      0|      return 9724;
  890|      0|    }
  891|      0|    break;
  892|       |    /* FilledVerySmallSquare */
  893|      0|  case 0xd431c42516c4124bULL:
  ------------------
  |  Branch (893:3): [True: 0, False: 516k]
  ------------------
  894|      0|    if (len == 21) {
  ------------------
  |  Branch (894:9): [True: 0, False: 0]
  ------------------
  895|      0|      return 9642;
  896|      0|    }
  897|      0|    break;
  898|       |    /* Fopf */
  899|    194|  case 0x07b109850da3ef90ULL:
  ------------------
  |  Branch (899:3): [True: 194, False: 516k]
  ------------------
  900|    194|    if (len == 4) {
  ------------------
  |  Branch (900:9): [True: 194, False: 0]
  ------------------
  901|    194|      return 120125;
  902|    194|    }
  903|      0|    break;
  904|       |    /* ForAll */
  905|    194|  case 0x51327d9e4480ac43ULL:
  ------------------
  |  Branch (905:3): [True: 194, False: 516k]
  ------------------
  906|    194|    if (len == 6) {
  ------------------
  |  Branch (906:9): [True: 194, False: 0]
  ------------------
  907|    194|      return 8704;
  908|    194|    }
  909|      0|    break;
  910|       |    /* Fouriertrf */
  911|      0|  case 0x046c2d05614647c9ULL:
  ------------------
  |  Branch (911:3): [True: 0, False: 516k]
  ------------------
  912|      0|    if (len == 10) {
  ------------------
  |  Branch (912:9): [True: 0, False: 0]
  ------------------
  913|      0|      return 8497;
  914|      0|    }
  915|      0|    break;
  916|       |    /* Fscr */
  917|    194|  case 0x9f861384d293e54fULL:
  ------------------
  |  Branch (917:3): [True: 194, False: 516k]
  ------------------
  918|    194|    if (len == 4) {
  ------------------
  |  Branch (918:9): [True: 194, False: 0]
  ------------------
  919|    194|      return 8497;
  920|    194|    }
  921|      0|    break;
  922|       |    /* GJcy */
  923|    194|  case 0xcaaf3f7d80711154ULL:
  ------------------
  |  Branch (923:3): [True: 194, False: 516k]
  ------------------
  924|    194|    if (len == 4) {
  ------------------
  |  Branch (924:9): [True: 194, False: 0]
  ------------------
  925|    194|      return 1027;
  926|    194|    }
  927|      0|    break;
  928|       |    /* GT */
  929|    195|  case 0x09022207b59c11d6ULL:
  ------------------
  |  Branch (929:3): [True: 195, False: 516k]
  ------------------
  930|    195|    if (len == 2) {
  ------------------
  |  Branch (930:9): [True: 195, False: 0]
  ------------------
  931|    195|      return 62;
  932|    195|    }
  933|      0|    break;
  934|       |    /* Gamma */
  935|    194|  case 0xe2505e23917f48caULL:
  ------------------
  |  Branch (935:3): [True: 194, False: 516k]
  ------------------
  936|    194|    if (len == 5) {
  ------------------
  |  Branch (936:9): [True: 194, False: 0]
  ------------------
  937|    194|      return 915;
  938|    194|    }
  939|      0|    break;
  940|       |    /* Gammad */
  941|    194|  case 0x0dd8a4703b487faaULL:
  ------------------
  |  Branch (941:3): [True: 194, False: 516k]
  ------------------
  942|    194|    if (len == 6) {
  ------------------
  |  Branch (942:9): [True: 194, False: 0]
  ------------------
  943|    194|      return 988;
  944|    194|    }
  945|      0|    break;
  946|       |    /* Gbreve */
  947|    194|  case 0x3def9a2add10cf0cULL:
  ------------------
  |  Branch (947:3): [True: 194, False: 516k]
  ------------------
  948|    194|    if (len == 6) {
  ------------------
  |  Branch (948:9): [True: 194, False: 0]
  ------------------
  949|    194|      return 286;
  950|    194|    }
  951|      0|    break;
  952|       |    /* Gcedil */
  953|    194|  case 0xc2621ed750bb277bULL:
  ------------------
  |  Branch (953:3): [True: 194, False: 516k]
  ------------------
  954|    194|    if (len == 6) {
  ------------------
  |  Branch (954:9): [True: 194, False: 0]
  ------------------
  955|    194|      return 290;
  956|    194|    }
  957|      0|    break;
  958|       |    /* Gcirc */
  959|    194|  case 0x3b7ccc12ab1e3329ULL:
  ------------------
  |  Branch (959:3): [True: 194, False: 516k]
  ------------------
  960|    194|    if (len == 5) {
  ------------------
  |  Branch (960:9): [True: 194, False: 0]
  ------------------
  961|    194|      return 284;
  962|    194|    }
  963|      0|    break;
  964|       |    /* Gcy */
  965|    194|  case 0xeaf282199869a352ULL:
  ------------------
  |  Branch (965:3): [True: 194, False: 516k]
  ------------------
  966|    194|    if (len == 3) {
  ------------------
  |  Branch (966:9): [True: 194, False: 0]
  ------------------
  967|    194|      return 1043;
  968|    194|    }
  969|      0|    break;
  970|       |    /* Gdot */
  971|    194|  case 0x8a18ce7ded18dfadULL:
  ------------------
  |  Branch (971:3): [True: 194, False: 516k]
  ------------------
  972|    194|    if (len == 4) {
  ------------------
  |  Branch (972:9): [True: 194, False: 0]
  ------------------
  973|    194|      return 288;
  974|    194|    }
  975|      0|    break;
  976|       |    /* Gfr */
  977|    194|  case 0xeae16f19985b0fd6ULL:
  ------------------
  |  Branch (977:3): [True: 194, False: 516k]
  ------------------
  978|    194|    if (len == 3) {
  ------------------
  |  Branch (978:9): [True: 194, False: 0]
  ------------------
  979|    194|      return 120074;
  980|    194|    }
  981|      0|    break;
  982|       |    /* Gg */
  983|    194|  case 0x09023107b59c2b53ULL:
  ------------------
  |  Branch (983:3): [True: 194, False: 516k]
  ------------------
  984|    194|    if (len == 2) {
  ------------------
  |  Branch (984:9): [True: 194, False: 0]
  ------------------
  985|    194|      return 8921;
  986|    194|    }
  987|      0|    break;
  988|       |    /* Gopf */
  989|    194|  case 0xc45acb7e0d6be8e5ULL:
  ------------------
  |  Branch (989:3): [True: 194, False: 516k]
  ------------------
  990|    194|    if (len == 4) {
  ------------------
  |  Branch (990:9): [True: 194, False: 0]
  ------------------
  991|    194|      return 120126;
  992|    194|    }
  993|      0|    break;
  994|       |    /* GreaterEqual */
  995|      0|  case 0xa3dd70537b7792f3ULL:
  ------------------
  |  Branch (995:3): [True: 0, False: 516k]
  ------------------
  996|      0|    if (len == 12) {
  ------------------
  |  Branch (996:9): [True: 0, False: 0]
  ------------------
  997|      0|      return 8805;
  998|      0|    }
  999|      0|    break;
 1000|       |    /* GreaterEqualLess */
 1001|      0|  case 0xf2066efc08b70866ULL:
  ------------------
  |  Branch (1001:3): [True: 0, False: 516k]
  ------------------
 1002|      0|    if (len == 16) {
  ------------------
  |  Branch (1002:9): [True: 0, False: 0]
  ------------------
 1003|      0|      return 8923;
 1004|      0|    }
 1005|      0|    break;
 1006|       |    /* GreaterFullEqual */
 1007|      0|  case 0xc5889a1887e94e18ULL:
  ------------------
  |  Branch (1007:3): [True: 0, False: 516k]
  ------------------
 1008|      0|    if (len == 16) {
  ------------------
  |  Branch (1008:9): [True: 0, False: 0]
  ------------------
 1009|      0|      return 8807;
 1010|      0|    }
 1011|      0|    break;
 1012|       |    /* GreaterGreater */
 1013|      0|  case 0x2413f0571e6356e5ULL:
  ------------------
  |  Branch (1013:3): [True: 0, False: 516k]
  ------------------
 1014|      0|    if (len == 14) {
  ------------------
  |  Branch (1014:9): [True: 0, False: 0]
  ------------------
 1015|      0|      return 10914;
 1016|      0|    }
 1017|      0|    break;
 1018|       |    /* GreaterLess */
 1019|      0|  case 0x0fd0afb2c34a778cULL:
  ------------------
  |  Branch (1019:3): [True: 0, False: 516k]
  ------------------
 1020|      0|    if (len == 11) {
  ------------------
  |  Branch (1020:9): [True: 0, False: 0]
  ------------------
 1021|      0|      return 8823;
 1022|      0|    }
 1023|      0|    break;
 1024|       |    /* GreaterSlantEqual */
 1025|      0|  case 0x60ebd069a99841b5ULL:
  ------------------
  |  Branch (1025:3): [True: 0, False: 516k]
  ------------------
 1026|      0|    if (len == 17) {
  ------------------
  |  Branch (1026:9): [True: 0, False: 0]
  ------------------
 1027|      0|      return 10878;
 1028|      0|    }
 1029|      0|    break;
 1030|       |    /* GreaterTilde */
 1031|      0|  case 0x3874578ddfdf3b55ULL:
  ------------------
  |  Branch (1031:3): [True: 0, False: 516k]
  ------------------
 1032|      0|    if (len == 12) {
  ------------------
  |  Branch (1032:9): [True: 0, False: 0]
  ------------------
 1033|      0|      return 8819;
 1034|      0|    }
 1035|      0|    break;
 1036|       |    /* Gscr */
 1037|    194|  case 0x2ce5c97e48ce4842ULL:
  ------------------
  |  Branch (1037:3): [True: 194, False: 516k]
  ------------------
 1038|    194|    if (len == 4) {
  ------------------
  |  Branch (1038:9): [True: 194, False: 0]
  ------------------
 1039|    194|      return 119970;
 1040|    194|    }
 1041|      0|    break;
 1042|       |    /* Gt */
 1043|    194|  case 0x09024207b59c4836ULL:
  ------------------
  |  Branch (1043:3): [True: 194, False: 516k]
  ------------------
 1044|    194|    if (len == 2) {
  ------------------
  |  Branch (1044:9): [True: 194, False: 0]
  ------------------
 1045|    194|      return 8811;
 1046|    194|    }
 1047|      0|    break;
 1048|       |    /* HARDcy */
 1049|      0|  case 0xb780824b09d5171cULL:
  ------------------
  |  Branch (1049:3): [True: 0, False: 516k]
  ------------------
 1050|      0|    if (len == 6) {
  ------------------
  |  Branch (1050:9): [True: 0, False: 0]
  ------------------
 1051|      0|      return 1066;
 1052|      0|    }
 1053|      0|    break;
 1054|       |    /* Hacek */
 1055|    194|  case 0xe09086cf6b0e644bULL:
  ------------------
  |  Branch (1055:3): [True: 194, False: 516k]
  ------------------
 1056|    194|    if (len == 5) {
  ------------------
  |  Branch (1056:9): [True: 194, False: 0]
  ------------------
 1057|    194|      return 711;
 1058|    194|    }
 1059|      0|    break;
 1060|       |    /* Hat */
 1061|    196|  case 0x49613819cda8aa22ULL:
  ------------------
  |  Branch (1061:3): [True: 196, False: 516k]
  ------------------
 1062|    196|    if (len == 3) {
  ------------------
  |  Branch (1062:9): [True: 196, False: 0]
  ------------------
 1063|    196|      return 94;
 1064|    196|    }
 1065|      0|    break;
 1066|       |    /* Hcirc */
 1067|    194|  case 0x6cc7e4bea15311acULL:
  ------------------
  |  Branch (1067:3): [True: 194, False: 516k]
  ------------------
 1068|    194|    if (len == 5) {
  ------------------
  |  Branch (1068:9): [True: 194, False: 0]
  ------------------
 1069|    194|      return 292;
 1070|    194|    }
 1071|      0|    break;
 1072|       |    /* Hfr */
 1073|    194|  case 0x49503419cd9a3023ULL:
  ------------------
  |  Branch (1073:3): [True: 194, False: 516k]
  ------------------
 1074|    194|    if (len == 3) {
  ------------------
  |  Branch (1074:9): [True: 194, False: 0]
  ------------------
 1075|    194|      return 8460;
 1076|    194|    }
 1077|      0|    break;
 1078|       |    /* HilbertSpace */
 1079|      0|  case 0xa665d3b7c25fa4c9ULL:
  ------------------
  |  Branch (1079:3): [True: 0, False: 516k]
  ------------------
 1080|      0|    if (len == 12) {
  ------------------
  |  Branch (1080:9): [True: 0, False: 0]
  ------------------
 1081|      0|      return 8459;
 1082|      0|    }
 1083|      0|    break;
 1084|       |    /* Hopf */
 1085|    194|  case 0x6afaf9d88015b9caULL:
  ------------------
  |  Branch (1085:3): [True: 194, False: 516k]
  ------------------
 1086|    194|    if (len == 4) {
  ------------------
  |  Branch (1086:9): [True: 194, False: 0]
  ------------------
 1087|    194|      return 8461;
 1088|    194|    }
 1089|      0|    break;
 1090|       |    /* HorizontalLine */
 1091|      0|  case 0xa84633c21b088ef3ULL:
  ------------------
  |  Branch (1091:3): [True: 0, False: 516k]
  ------------------
 1092|      0|    if (len == 14) {
  ------------------
  |  Branch (1092:9): [True: 0, False: 0]
  ------------------
 1093|      0|      return 9472;
 1094|      0|    }
 1095|      0|    break;
 1096|       |    /* Hscr */
 1097|    198|  case 0xbd91dbd81dd16f9dULL:
  ------------------
  |  Branch (1097:3): [True: 198, False: 516k]
  ------------------
 1098|    198|    if (len == 4) {
  ------------------
  |  Branch (1098:9): [True: 198, False: 0]
  ------------------
 1099|    198|      return 8459;
 1100|    198|    }
 1101|      0|    break;
 1102|       |    /* Hstrok */
 1103|    194|  case 0x617004f852d7cec8ULL:
  ------------------
  |  Branch (1103:3): [True: 194, False: 516k]
  ------------------
 1104|    194|    if (len == 6) {
  ------------------
  |  Branch (1104:9): [True: 194, False: 0]
  ------------------
 1105|    194|      return 294;
 1106|    194|    }
 1107|      0|    break;
 1108|       |    /* HumpDownHump */
 1109|      0|  case 0x8a0af290bf6e95d5ULL:
  ------------------
  |  Branch (1109:3): [True: 0, False: 516k]
  ------------------
 1110|      0|    if (len == 12) {
  ------------------
  |  Branch (1110:9): [True: 0, False: 0]
  ------------------
 1111|      0|      return 8782;
 1112|      0|    }
 1113|      0|    break;
 1114|       |    /* HumpEqual */
 1115|    194|  case 0x098df57083159179ULL:
  ------------------
  |  Branch (1115:3): [True: 194, False: 516k]
  ------------------
 1116|    194|    if (len == 9) {
  ------------------
  |  Branch (1116:9): [True: 194, False: 0]
  ------------------
 1117|    194|      return 8783;
 1118|    194|    }
 1119|      0|    break;
 1120|       |    /* IEcy */
 1121|    194|  case 0xbabd22d0b0df608bULL:
  ------------------
  |  Branch (1121:3): [True: 194, False: 516k]
  ------------------
 1122|    194|    if (len == 4) {
  ------------------
  |  Branch (1122:9): [True: 194, False: 0]
  ------------------
 1123|    194|      return 1045;
 1124|    194|    }
 1125|      0|    break;
 1126|       |    /* IJlig */
 1127|    194|  case 0xc44cfa0c94d7db92ULL:
  ------------------
  |  Branch (1127:3): [True: 194, False: 516k]
  ------------------
 1128|    194|    if (len == 5) {
  ------------------
  |  Branch (1128:9): [True: 194, False: 0]
  ------------------
 1129|    194|      return 306;
 1130|    194|    }
 1131|      0|    break;
 1132|       |    /* IOcy */
 1133|    194|  case 0x1169c8d0e1fb4c9dULL:
  ------------------
  |  Branch (1133:3): [True: 194, False: 516k]
  ------------------
 1134|    194|    if (len == 4) {
  ------------------
  |  Branch (1134:9): [True: 194, False: 0]
  ------------------
 1135|    194|      return 1025;
 1136|    194|    }
 1137|      0|    break;
 1138|       |    /* Iacute */
 1139|    194|  case 0x611b2b3b32d7a900ULL:
  ------------------
  |  Branch (1139:3): [True: 194, False: 516k]
  ------------------
 1140|    194|    if (len == 6) {
  ------------------
  |  Branch (1140:9): [True: 194, False: 0]
  ------------------
 1141|    194|      return 205;
 1142|    194|    }
 1143|      0|    break;
 1144|       |    /* Icirc */
 1145|    194|  case 0xc4e21fdd379b9753ULL:
  ------------------
  |  Branch (1145:3): [True: 194, False: 516k]
  ------------------
 1146|    194|    if (len == 5) {
  ------------------
  |  Branch (1146:9): [True: 194, False: 0]
  ------------------
 1147|    194|      return 206;
 1148|    194|    }
 1149|      0|    break;
 1150|       |    /* Icy */
 1151|    194|  case 0x419f1819c9857434ULL:
  ------------------
  |  Branch (1151:3): [True: 194, False: 516k]
  ------------------
 1152|    194|    if (len == 3) {
  ------------------
  |  Branch (1152:9): [True: 194, False: 0]
  ------------------
 1153|    194|      return 1048;
 1154|    194|    }
 1155|      0|    break;
 1156|       |    /* Idot */
 1157|    194|  case 0xc93326d14a9cae8bULL:
  ------------------
  |  Branch (1157:3): [True: 194, False: 516k]
  ------------------
 1158|    194|    if (len == 4) {
  ------------------
  |  Branch (1158:9): [True: 194, False: 0]
  ------------------
 1159|    194|      return 304;
 1160|    194|    }
 1161|      0|    break;
 1162|       |    /* Ifr */
 1163|    194|  case 0x418e1119c976f51cULL:
  ------------------
  |  Branch (1163:3): [True: 194, False: 516k]
  ------------------
 1164|    194|    if (len == 3) {
  ------------------
  |  Branch (1164:9): [True: 194, False: 0]
  ------------------
 1165|    194|      return 8465;
 1166|    194|    }
 1167|      0|    break;
 1168|       |    /* Igrave */
 1169|    194|  case 0xb233fa72dc429415ULL:
  ------------------
  |  Branch (1169:3): [True: 194, False: 516k]
  ------------------
 1170|    194|    if (len == 6) {
  ------------------
  |  Branch (1170:9): [True: 194, False: 0]
  ------------------
 1171|    194|      return 204;
 1172|    194|    }
 1173|      0|    break;
 1174|       |    /* Im */
 1175|    194|  case 0x09243707b5b91bebULL:
  ------------------
  |  Branch (1175:3): [True: 194, False: 516k]
  ------------------
 1176|    194|    if (len == 2) {
  ------------------
  |  Branch (1176:9): [True: 194, False: 0]
  ------------------
 1177|    194|      return 8465;
 1178|    194|    }
 1179|      0|    break;
 1180|       |    /* Imacr */
 1181|    194|  case 0x3da1dcea0c66200fULL:
  ------------------
  |  Branch (1181:3): [True: 194, False: 516k]
  ------------------
 1182|    194|    if (len == 5) {
  ------------------
  |  Branch (1182:9): [True: 194, False: 0]
  ------------------
 1183|    194|      return 298;
 1184|    194|    }
 1185|      0|    break;
 1186|       |    /* ImaginaryI */
 1187|      0|  case 0x389428f9c96cd97dULL:
  ------------------
  |  Branch (1187:3): [True: 0, False: 516k]
  ------------------
 1188|      0|    if (len == 10) {
  ------------------
  |  Branch (1188:9): [True: 0, False: 0]
  ------------------
 1189|      0|      return 8520;
 1190|      0|    }
 1191|      0|    break;
 1192|       |    /* Implies */
 1193|      0|  case 0x41612187d0b1f7daULL:
  ------------------
  |  Branch (1193:3): [True: 0, False: 516k]
  ------------------
 1194|      0|    if (len == 7) {
  ------------------
  |  Branch (1194:9): [True: 0, False: 0]
  ------------------
 1195|      0|      return 8658;
 1196|      0|    }
 1197|      0|    break;
 1198|       |    /* Int */
 1199|    194|  case 0x41a91f19c98dd49eULL:
  ------------------
  |  Branch (1199:3): [True: 194, False: 516k]
  ------------------
 1200|    194|    if (len == 3) {
  ------------------
  |  Branch (1200:9): [True: 194, False: 0]
  ------------------
 1201|    194|      return 8748;
 1202|    194|    }
 1203|      0|    break;
 1204|       |    /* Integral */
 1205|      0|  case 0x62e9d5a8014ff16dULL:
  ------------------
  |  Branch (1205:3): [True: 0, False: 516k]
  ------------------
 1206|      0|    if (len == 8) {
  ------------------
  |  Branch (1206:9): [True: 0, False: 0]
  ------------------
 1207|      0|      return 8747;
 1208|      0|    }
 1209|      0|    break;
 1210|       |    /* Intersection */
 1211|      0|  case 0xdf10200e295b0108ULL:
  ------------------
  |  Branch (1211:3): [True: 0, False: 516k]
  ------------------
 1212|      0|    if (len == 12) {
  ------------------
  |  Branch (1212:9): [True: 0, False: 0]
  ------------------
 1213|      0|      return 8898;
 1214|      0|    }
 1215|      0|    break;
 1216|       |    /* InvisibleComma */
 1217|      0|  case 0x75f617f5755dbcb3ULL:
  ------------------
  |  Branch (1217:3): [True: 0, False: 516k]
  ------------------
 1218|      0|    if (len == 14) {
  ------------------
  |  Branch (1218:9): [True: 0, False: 0]
  ------------------
 1219|      0|      return 8291;
 1220|      0|    }
 1221|      0|    break;
 1222|       |    /* InvisibleTimes */
 1223|      0|  case 0x0120e653d0b4f90eULL:
  ------------------
  |  Branch (1223:3): [True: 0, False: 516k]
  ------------------
 1224|      0|    if (len == 14) {
  ------------------
  |  Branch (1224:9): [True: 0, False: 0]
  ------------------
 1225|      0|      return 8290;
 1226|      0|    }
 1227|      0|    break;
 1228|       |    /* Iogon */
 1229|    194|  case 0xdcf0d2fc111c2afbULL:
  ------------------
  |  Branch (1229:3): [True: 194, False: 516k]
  ------------------
 1230|    194|    if (len == 5) {
  ------------------
  |  Branch (1230:9): [True: 194, False: 0]
  ------------------
 1231|    194|      return 302;
 1232|    194|    }
 1233|      0|    break;
 1234|       |    /* Iopf */
 1235|    194|  case 0x2738ebd17f82e5cfULL:
  ------------------
  |  Branch (1235:3): [True: 194, False: 516k]
  ------------------
 1236|    194|    if (len == 4) {
  ------------------
  |  Branch (1236:9): [True: 194, False: 0]
  ------------------
 1237|    194|      return 120128;
 1238|    194|    }
 1239|      0|    break;
 1240|       |    /* Iota */
 1241|    194|  case 0x274600d17f8d93daULL:
  ------------------
  |  Branch (1241:3): [True: 194, False: 516k]
  ------------------
 1242|    194|    if (len == 4) {
  ------------------
  |  Branch (1242:9): [True: 194, False: 0]
  ------------------
 1243|    194|      return 921;
 1244|    194|    }
 1245|      0|    break;
 1246|       |    /* Iscr */
 1247|    194|  case 0x903dc1d1bb4c5d70ULL:
  ------------------
  |  Branch (1247:3): [True: 194, False: 516k]
  ------------------
 1248|    194|    if (len == 4) {
  ------------------
  |  Branch (1248:9): [True: 194, False: 0]
  ------------------
 1249|    194|      return 8464;
 1250|    194|    }
 1251|      0|    break;
 1252|       |    /* Itilde */
 1253|    194|  case 0xc6b3a746949731b2ULL:
  ------------------
  |  Branch (1253:3): [True: 194, False: 516k]
  ------------------
 1254|    194|    if (len == 6) {
  ------------------
  |  Branch (1254:9): [True: 194, False: 0]
  ------------------
 1255|    194|      return 296;
 1256|    194|    }
 1257|      0|    break;
 1258|       |    /* Iukcy */
 1259|    194|  case 0xf24d40308b009a08ULL:
  ------------------
  |  Branch (1259:3): [True: 194, False: 516k]
  ------------------
 1260|    194|    if (len == 5) {
  ------------------
  |  Branch (1260:9): [True: 194, False: 0]
  ------------------
 1261|    194|      return 1030;
 1262|    194|    }
 1263|      0|    break;
 1264|       |    /* Iuml */
 1265|    194|  case 0x5d3fc9d19eb11732ULL:
  ------------------
  |  Branch (1265:3): [True: 194, False: 516k]
  ------------------
 1266|    194|    if (len == 4) {
  ------------------
  |  Branch (1266:9): [True: 194, False: 0]
  ------------------
 1267|    194|      return 207;
 1268|    194|    }
 1269|      0|    break;
 1270|       |    /* Jcirc */
 1271|    194|  case 0x2f27794bbc42ce66ULL:
  ------------------
  |  Branch (1271:3): [True: 194, False: 516k]
  ------------------
 1272|    194|    if (len == 5) {
  ------------------
  |  Branch (1272:9): [True: 194, False: 0]
  ------------------
 1273|    194|      return 308;
 1274|    194|    }
 1275|      0|    break;
 1276|       |    /* Jcy */
 1277|    194|  case 0x5b948f19d8375bb9ULL:
  ------------------
  |  Branch (1277:3): [True: 194, False: 516k]
  ------------------
 1278|    194|    if (len == 3) {
  ------------------
  |  Branch (1278:9): [True: 194, False: 0]
  ------------------
 1279|    194|      return 1049;
 1280|    194|    }
 1281|      0|    break;
 1282|       |    /* Jfr */
 1283|    194|  case 0x5b8a8619d82ef7e9ULL:
  ------------------
  |  Branch (1283:3): [True: 194, False: 516k]
  ------------------
 1284|    194|    if (len == 3) {
  ------------------
  |  Branch (1284:9): [True: 194, False: 0]
  ------------------
 1285|    194|      return 120077;
 1286|    194|    }
 1287|      0|    break;
 1288|       |    /* Jopf */
 1289|    194|  case 0x6c1709ea2a8bb77cULL:
  ------------------
  |  Branch (1289:3): [True: 194, False: 516k]
  ------------------
 1290|    194|    if (len == 4) {
  ------------------
  |  Branch (1290:9): [True: 194, False: 0]
  ------------------
 1291|    194|      return 120129;
 1292|    194|    }
 1293|      0|    break;
 1294|       |    /* Jscr */
 1295|    194|  case 0x47f163ea15a5f8dbULL:
  ------------------
  |  Branch (1295:3): [True: 194, False: 516k]
  ------------------
 1296|    194|    if (len == 4) {
  ------------------
  |  Branch (1296:9): [True: 194, False: 0]
  ------------------
 1297|    194|      return 119973;
 1298|    194|    }
 1299|      0|    break;
 1300|       |    /* Jsercy */
 1301|    194|  case 0x0682822bd5c4db99ULL:
  ------------------
  |  Branch (1301:3): [True: 194, False: 516k]
  ------------------
 1302|    194|    if (len == 6) {
  ------------------
  |  Branch (1302:9): [True: 194, False: 0]
  ------------------
 1303|    194|      return 1032;
 1304|    194|    }
 1305|      0|    break;
 1306|       |    /* Jukcy */
 1307|    194|  case 0x58e44893256f5305ULL:
  ------------------
  |  Branch (1307:3): [True: 194, False: 516k]
  ------------------
 1308|    194|    if (len == 5) {
  ------------------
  |  Branch (1308:9): [True: 194, False: 0]
  ------------------
 1309|    194|      return 1028;
 1310|    194|    }
 1311|      0|    break;
 1312|       |    /* KHcy */
 1313|    194|  case 0x7b858dded1819012ULL:
  ------------------
  |  Branch (1313:3): [True: 194, False: 516k]
  ------------------
 1314|    194|    if (len == 4) {
  ------------------
  |  Branch (1314:9): [True: 194, False: 0]
  ------------------
 1315|    194|      return 1061;
 1316|    194|    }
 1317|      0|    break;
 1318|       |    /* KJcy */
 1319|    194|  case 0x69672fdec7052ea0ULL:
  ------------------
  |  Branch (1319:3): [True: 194, False: 516k]
  ------------------
 1320|    194|    if (len == 4) {
  ------------------
  |  Branch (1320:9): [True: 194, False: 0]
  ------------------
 1321|    194|      return 1036;
 1322|    194|    }
 1323|      0|    break;
 1324|       |    /* Kappa */
 1325|    194|  case 0xadb0aedf301d6fe8ULL:
  ------------------
  |  Branch (1325:3): [True: 194, False: 516k]
  ------------------
 1326|    194|    if (len == 5) {
  ------------------
  |  Branch (1326:9): [True: 194, False: 0]
  ------------------
 1327|    194|      return 922;
 1328|    194|    }
 1329|      0|    break;
 1330|       |    /* Kcedil */
 1331|    194|  case 0x0a21dd757602446fULL:
  ------------------
  |  Branch (1331:3): [True: 194, False: 516k]
  ------------------
 1332|    194|    if (len == 6) {
  ------------------
  |  Branch (1332:9): [True: 194, False: 0]
  ------------------
 1333|    194|      return 310;
 1334|    194|    }
 1335|      0|    break;
 1336|       |    /* Kcy */
 1337|    194|  case 0x50576619d11e9176ULL:
  ------------------
  |  Branch (1337:3): [True: 194, False: 516k]
  ------------------
 1338|    194|    if (len == 3) {
  ------------------
  |  Branch (1338:9): [True: 194, False: 0]
  ------------------
 1339|    194|      return 1050;
 1340|    194|    }
 1341|      0|    break;
 1342|       |    /* Kfr */
 1343|    194|  case 0x50616319d126e0e2ULL:
  ------------------
  |  Branch (1343:3): [True: 194, False: 516k]
  ------------------
 1344|    194|    if (len == 3) {
  ------------------
  |  Branch (1344:9): [True: 194, False: 0]
  ------------------
 1345|    194|      return 120078;
 1346|    194|    }
 1347|      0|    break;
 1348|       |    /* Kopf */
 1349|    194|  case 0x7f45fbde42555761ULL:
  ------------------
  |  Branch (1349:3): [True: 194, False: 516k]
  ------------------
 1350|    194|    if (len == 4) {
  ------------------
  |  Branch (1350:9): [True: 194, False: 0]
  ------------------
 1351|    194|      return 120130;
 1352|    194|    }
 1353|      0|    break;
 1354|       |    /* Kscr */
 1355|    194|  case 0x2cb019dea49b548eULL:
  ------------------
  |  Branch (1355:3): [True: 194, False: 516k]
  ------------------
 1356|    194|    if (len == 4) {
  ------------------
  |  Branch (1356:9): [True: 194, False: 0]
  ------------------
 1357|    194|      return 119974;
 1358|    194|    }
 1359|      0|    break;
 1360|       |    /* LJcy */
 1361|    194|  case 0x4bf981b51a10d0abULL:
  ------------------
  |  Branch (1361:3): [True: 194, False: 516k]
  ------------------
 1362|    194|    if (len == 4) {
  ------------------
  |  Branch (1362:9): [True: 194, False: 0]
  ------------------
 1363|    194|      return 1033;
 1364|    194|    }
 1365|      0|    break;
 1366|       |    /* LT */
 1367|    195|  case 0x09197407b5af7c0dULL:
  ------------------
  |  Branch (1367:3): [True: 195, False: 516k]
  ------------------
 1368|    195|    if (len == 2) {
  ------------------
  |  Branch (1368:9): [True: 195, False: 0]
  ------------------
 1369|    195|      return 60;
 1370|    195|    }
 1371|      0|    break;
 1372|       |    /* Lacute */
 1373|    194|  case 0x4c26a63ed00adb19ULL:
  ------------------
  |  Branch (1373:3): [True: 194, False: 516k]
  ------------------
 1374|    194|    if (len == 6) {
  ------------------
  |  Branch (1374:9): [True: 194, False: 0]
  ------------------
 1375|    194|      return 313;
 1376|    194|    }
 1377|      0|    break;
 1378|       |    /* Lambda */
 1379|    194|  case 0xc144eceb4839a42aULL:
  ------------------
  |  Branch (1379:3): [True: 194, False: 516k]
  ------------------
 1380|    194|    if (len == 6) {
  ------------------
  |  Branch (1380:9): [True: 194, False: 0]
  ------------------
 1381|    194|      return 923;
 1382|    194|    }
 1383|      0|    break;
 1384|       |    /* Lang */
 1385|    194|  case 0x820de0b4a6ef5255ULL:
  ------------------
  |  Branch (1385:3): [True: 194, False: 516k]
  ------------------
 1386|    194|    if (len == 4) {
  ------------------
  |  Branch (1386:9): [True: 194, False: 0]
  ------------------
 1387|    194|      return 10218;
 1388|    194|    }
 1389|      0|    break;
 1390|       |    /* Laplacetrf */
 1391|      0|  case 0x3d864e2a46103cd3ULL:
  ------------------
  |  Branch (1391:3): [True: 0, False: 516k]
  ------------------
 1392|      0|    if (len == 10) {
  ------------------
  |  Branch (1392:9): [True: 0, False: 0]
  ------------------
 1393|      0|      return 8466;
 1394|      0|    }
 1395|      0|    break;
 1396|       |    /* Larr */
 1397|    194|  case 0x81ffd3b4a6e2fee2ULL:
  ------------------
  |  Branch (1397:3): [True: 194, False: 516k]
  ------------------
 1398|    194|    if (len == 4) {
  ------------------
  |  Branch (1398:9): [True: 194, False: 0]
  ------------------
 1399|    194|      return 8606;
 1400|    194|    }
 1401|      0|    break;
 1402|       |    /* Lcaron */
 1403|    194|  case 0xc876363d10025246ULL:
  ------------------
  |  Branch (1403:3): [True: 194, False: 516k]
  ------------------
 1404|    194|    if (len == 6) {
  ------------------
  |  Branch (1404:9): [True: 194, False: 0]
  ------------------
 1405|    194|      return 317;
 1406|    194|    }
 1407|      0|    break;
 1408|       |    /* Lcedil */
 1409|    194|  case 0x450f2a5b01aeef74ULL:
  ------------------
  |  Branch (1409:3): [True: 194, False: 516k]
  ------------------
 1410|    194|    if (len == 6) {
  ------------------
  |  Branch (1410:9): [True: 194, False: 0]
  ------------------
 1411|    194|      return 315;
 1412|    194|    }
 1413|      0|    break;
 1414|       |    /* Lcy */
 1415|    197|  case 0x25019519b8917853ULL:
  ------------------
  |  Branch (1415:3): [True: 197, False: 516k]
  ------------------
 1416|    197|    if (len == 3) {
  ------------------
  |  Branch (1416:9): [True: 197, False: 0]
  ------------------
 1417|    197|      return 1051;
 1418|    197|    }
 1419|      0|    break;
 1420|       |    /* LeftAngleBracket */
 1421|      0|  case 0x2968f74168def26dULL:
  ------------------
  |  Branch (1421:3): [True: 0, False: 516k]
  ------------------
 1422|      0|    if (len == 16) {
  ------------------
  |  Branch (1422:9): [True: 0, False: 0]
  ------------------
 1423|      0|      return 10216;
 1424|      0|    }
 1425|      0|    break;
 1426|       |    /* LeftArrow */
 1427|    194|  case 0xf830c8e6a80dc009ULL:
  ------------------
  |  Branch (1427:3): [True: 194, False: 516k]
  ------------------
 1428|    194|    if (len == 9) {
  ------------------
  |  Branch (1428:9): [True: 194, False: 0]
  ------------------
 1429|    194|      return 8592;
 1430|    194|    }
 1431|      0|    break;
 1432|       |    /* LeftArrowBar */
 1433|    194|  case 0xf64a5d39948ee826ULL:
  ------------------
  |  Branch (1433:3): [True: 194, False: 516k]
  ------------------
 1434|    194|    if (len == 12) {
  ------------------
  |  Branch (1434:9): [True: 194, False: 0]
  ------------------
 1435|    194|      return 8676;
 1436|    194|    }
 1437|      0|    break;
 1438|       |    /* LeftArrowRightArrow */
 1439|      0|  case 0xa6f861bae44cb51aULL:
  ------------------
  |  Branch (1439:3): [True: 0, False: 516k]
  ------------------
 1440|      0|    if (len == 19) {
  ------------------
  |  Branch (1440:9): [True: 0, False: 0]
  ------------------
 1441|      0|      return 8646;
 1442|      0|    }
 1443|      0|    break;
 1444|       |    /* LeftCeiling */
 1445|      0|  case 0x0ad1cd518ce1efdfULL:
  ------------------
  |  Branch (1445:3): [True: 0, False: 516k]
  ------------------
 1446|      0|    if (len == 11) {
  ------------------
  |  Branch (1446:9): [True: 0, False: 0]
  ------------------
 1447|      0|      return 8968;
 1448|      0|    }
 1449|      0|    break;
 1450|       |    /* LeftDoubleBracket */
 1451|      0|  case 0xeb1999ad476605ebULL:
  ------------------
  |  Branch (1451:3): [True: 0, False: 516k]
  ------------------
 1452|      0|    if (len == 17) {
  ------------------
  |  Branch (1452:9): [True: 0, False: 0]
  ------------------
 1453|      0|      return 10214;
 1454|      0|    }
 1455|      0|    break;
 1456|       |    /* LeftDownTeeVector */
 1457|      0|  case 0xbef8934c07775ccdULL:
  ------------------
  |  Branch (1457:3): [True: 0, False: 516k]
  ------------------
 1458|      0|    if (len == 17) {
  ------------------
  |  Branch (1458:9): [True: 0, False: 0]
  ------------------
 1459|      0|      return 10593;
 1460|      0|    }
 1461|      0|    break;
 1462|       |    /* LeftDownVector */
 1463|      0|  case 0x99f1bb94710f7e2bULL:
  ------------------
  |  Branch (1463:3): [True: 0, False: 516k]
  ------------------
 1464|      0|    if (len == 14) {
  ------------------
  |  Branch (1464:9): [True: 0, False: 0]
  ------------------
 1465|      0|      return 8643;
 1466|      0|    }
 1467|      0|    break;
 1468|       |    /* LeftDownVectorBar */
 1469|      0|  case 0x6d0f3249986bc9e4ULL:
  ------------------
  |  Branch (1469:3): [True: 0, False: 516k]
  ------------------
 1470|      0|    if (len == 17) {
  ------------------
  |  Branch (1470:9): [True: 0, False: 0]
  ------------------
 1471|      0|      return 10585;
 1472|      0|    }
 1473|      0|    break;
 1474|       |    /* LeftFloor */
 1475|      0|  case 0x7df812ab4b69ff46ULL:
  ------------------
  |  Branch (1475:3): [True: 0, False: 516k]
  ------------------
 1476|      0|    if (len == 9) {
  ------------------
  |  Branch (1476:9): [True: 0, False: 0]
  ------------------
 1477|      0|      return 8970;
 1478|      0|    }
 1479|      0|    break;
 1480|       |    /* LeftRightArrow */
 1481|      0|  case 0xec367f1888d4875fULL:
  ------------------
  |  Branch (1481:3): [True: 0, False: 516k]
  ------------------
 1482|      0|    if (len == 14) {
  ------------------
  |  Branch (1482:9): [True: 0, False: 0]
  ------------------
 1483|      0|      return 8596;
 1484|      0|    }
 1485|      0|    break;
 1486|       |    /* LeftRightVector */
 1487|      0|  case 0xa5dcb09d5e448b19ULL:
  ------------------
  |  Branch (1487:3): [True: 0, False: 516k]
  ------------------
 1488|      0|    if (len == 15) {
  ------------------
  |  Branch (1488:9): [True: 0, False: 0]
  ------------------
 1489|      0|      return 10574;
 1490|      0|    }
 1491|      0|    break;
 1492|       |    /* LeftTee */
 1493|    194|  case 0x866621b196a0d9caULL:
  ------------------
  |  Branch (1493:3): [True: 194, False: 516k]
  ------------------
 1494|    194|    if (len == 7) {
  ------------------
  |  Branch (1494:9): [True: 194, False: 0]
  ------------------
 1495|    194|      return 8867;
 1496|    194|    }
 1497|      0|    break;
 1498|       |    /* LeftTeeArrow */
 1499|    194|  case 0xca2f474b0a7f73b7ULL:
  ------------------
  |  Branch (1499:3): [True: 194, False: 516k]
  ------------------
 1500|    194|    if (len == 12) {
  ------------------
  |  Branch (1500:9): [True: 194, False: 0]
  ------------------
 1501|    194|      return 8612;
 1502|    194|    }
 1503|      0|    break;
 1504|       |    /* LeftTeeVector */
 1505|      0|  case 0x59969fdd10bd2781ULL:
  ------------------
  |  Branch (1505:3): [True: 0, False: 516k]
  ------------------
 1506|      0|    if (len == 13) {
  ------------------
  |  Branch (1506:9): [True: 0, False: 0]
  ------------------
 1507|      0|      return 10586;
 1508|      0|    }
 1509|      0|    break;
 1510|       |    /* LeftTriangle */
 1511|    194|  case 0x83b891b0a5486ae4ULL:
  ------------------
  |  Branch (1511:3): [True: 194, False: 516k]
  ------------------
 1512|    194|    if (len == 12) {
  ------------------
  |  Branch (1512:9): [True: 194, False: 0]
  ------------------
 1513|    194|      return 8882;
 1514|    194|    }
 1515|      0|    break;
 1516|       |    /* LeftTriangleBar */
 1517|    194|  case 0xb9edf4ff16117ee1ULL:
  ------------------
  |  Branch (1517:3): [True: 194, False: 516k]
  ------------------
 1518|    194|    if (len == 15) {
  ------------------
  |  Branch (1518:9): [True: 194, False: 0]
  ------------------
 1519|    194|      return 10703;
 1520|    194|    }
 1521|      0|    break;
 1522|       |    /* LeftTriangleEqual */
 1523|  8.38k|  case 0xfa0246281c1c0f9cULL:
  ------------------
  |  Branch (1523:3): [True: 8.38k, False: 508k]
  ------------------
 1524|  8.38k|    if (len == 17) {
  ------------------
  |  Branch (1524:9): [True: 8.38k, False: 0]
  ------------------
 1525|  8.38k|      return 8884;
 1526|  8.38k|    }
 1527|      0|    break;
 1528|       |    /* LeftUpDownVector */
 1529|      0|  case 0xb2a0ac3a1b8fb2daULL:
  ------------------
  |  Branch (1529:3): [True: 0, False: 516k]
  ------------------
 1530|      0|    if (len == 16) {
  ------------------
  |  Branch (1530:9): [True: 0, False: 0]
  ------------------
 1531|      0|      return 10577;
 1532|      0|    }
 1533|      0|    break;
 1534|       |    /* LeftUpTeeVector */
 1535|      0|  case 0xa1fdb8f5c67812caULL:
  ------------------
  |  Branch (1535:3): [True: 0, False: 516k]
  ------------------
 1536|      0|    if (len == 15) {
  ------------------
  |  Branch (1536:9): [True: 0, False: 0]
  ------------------
 1537|      0|      return 10592;
 1538|      0|    }
 1539|      0|    break;
 1540|       |    /* LeftUpVector */
 1541|      0|  case 0xdae7e8806f02e76aULL:
  ------------------
  |  Branch (1541:3): [True: 0, False: 516k]
  ------------------
 1542|      0|    if (len == 12) {
  ------------------
  |  Branch (1542:9): [True: 0, False: 0]
  ------------------
 1543|      0|      return 8639;
 1544|      0|    }
 1545|      0|    break;
 1546|       |    /* LeftUpVectorBar */
 1547|      0|  case 0x5c6cdf2a3c4f09cbULL:
  ------------------
  |  Branch (1547:3): [True: 0, False: 516k]
  ------------------
 1548|      0|    if (len == 15) {
  ------------------
  |  Branch (1548:9): [True: 0, False: 0]
  ------------------
 1549|      0|      return 10584;
 1550|      0|    }
 1551|      0|    break;
 1552|       |    /* LeftVector */
 1553|      0|  case 0xedfacdace3d35e3fULL:
  ------------------
  |  Branch (1553:3): [True: 0, False: 516k]
  ------------------
 1554|      0|    if (len == 10) {
  ------------------
  |  Branch (1554:9): [True: 0, False: 0]
  ------------------
 1555|      0|      return 8636;
 1556|      0|    }
 1557|      0|    break;
 1558|       |    /* LeftVectorBar */
 1559|      0|  case 0xeecb44bc1ba328c0ULL:
  ------------------
  |  Branch (1559:3): [True: 0, False: 516k]
  ------------------
 1560|      0|    if (len == 13) {
  ------------------
  |  Branch (1560:9): [True: 0, False: 0]
  ------------------
 1561|      0|      return 10578;
 1562|      0|    }
 1563|      0|    break;
 1564|       |    /* Leftarrow */
 1565|    196|  case 0xb7f0b04d1a231269ULL:
  ------------------
  |  Branch (1565:3): [True: 196, False: 516k]
  ------------------
 1566|    196|    if (len == 9) {
  ------------------
  |  Branch (1566:9): [True: 196, False: 0]
  ------------------
 1567|    196|      return 8656;
 1568|    196|    }
 1569|      0|    break;
 1570|       |    /* Leftrightarrow */
 1571|      0|  case 0xaa360dd070bc6edfULL:
  ------------------
  |  Branch (1571:3): [True: 0, False: 516k]
  ------------------
 1572|      0|    if (len == 14) {
  ------------------
  |  Branch (1572:9): [True: 0, False: 0]
  ------------------
 1573|      0|      return 8660;
 1574|      0|    }
 1575|      0|    break;
 1576|       |    /* LessEqualGreater */
 1577|      0|  case 0x30ba5df908994bf6ULL:
  ------------------
  |  Branch (1577:3): [True: 0, False: 516k]
  ------------------
 1578|      0|    if (len == 16) {
  ------------------
  |  Branch (1578:9): [True: 0, False: 0]
  ------------------
 1579|      0|      return 8922;
 1580|      0|    }
 1581|      0|    break;
 1582|       |    /* LessFullEqual */
 1583|      0|  case 0x69a448427cd9ebc7ULL:
  ------------------
  |  Branch (1583:3): [True: 0, False: 516k]
  ------------------
 1584|      0|    if (len == 13) {
  ------------------
  |  Branch (1584:9): [True: 0, False: 0]
  ------------------
 1585|      0|      return 8806;
 1586|      0|    }
 1587|      0|    break;
 1588|       |    /* LessGreater */
 1589|      0|  case 0x3f38c31da2d1d88eULL:
  ------------------
  |  Branch (1589:3): [True: 0, False: 516k]
  ------------------
 1590|      0|    if (len == 11) {
  ------------------
  |  Branch (1590:9): [True: 0, False: 0]
  ------------------
 1591|      0|      return 8822;
 1592|      0|    }
 1593|      0|    break;
 1594|       |    /* LessLess */
 1595|    194|  case 0x592aca48ff441331ULL:
  ------------------
  |  Branch (1595:3): [True: 194, False: 516k]
  ------------------
 1596|    194|    if (len == 8) {
  ------------------
  |  Branch (1596:9): [True: 194, False: 0]
  ------------------
 1597|    194|      return 10913;
 1598|    194|    }
 1599|      0|    break;
 1600|       |    /* LessSlantEqual */
 1601|      0|  case 0x80ac2b7de90da398ULL:
  ------------------
  |  Branch (1601:3): [True: 0, False: 516k]
  ------------------
 1602|      0|    if (len == 14) {
  ------------------
  |  Branch (1602:9): [True: 0, False: 0]
  ------------------
 1603|      0|      return 10877;
 1604|      0|    }
 1605|      0|    break;
 1606|       |    /* LessTilde */
 1607|    194|  case 0x7f26901917bec0aeULL:
  ------------------
  |  Branch (1607:3): [True: 194, False: 516k]
  ------------------
 1608|    194|    if (len == 9) {
  ------------------
  |  Branch (1608:9): [True: 194, False: 0]
  ------------------
 1609|    194|      return 8818;
 1610|    194|    }
 1611|      0|    break;
 1612|       |    /* Lfr */
 1613|    194|  case 0x25129819b89ff09fULL:
  ------------------
  |  Branch (1613:3): [True: 194, False: 516k]
  ------------------
 1614|    194|    if (len == 3) {
  ------------------
  |  Branch (1614:9): [True: 194, False: 0]
  ------------------
 1615|    194|      return 120079;
 1616|    194|    }
 1617|      0|    break;
 1618|       |    /* Ll */
 1619|    196|  case 0x09193c07b5af1ce5ULL:
  ------------------
  |  Branch (1619:3): [True: 196, False: 516k]
  ------------------
 1620|    196|    if (len == 2) {
  ------------------
  |  Branch (1620:9): [True: 196, False: 0]
  ------------------
 1621|    196|      return 8920;
 1622|    196|    }
 1623|      0|    break;
 1624|       |    /* Lleftarrow */
 1625|    194|  case 0x48037d8511cb5f9fULL:
  ------------------
  |  Branch (1625:3): [True: 194, False: 516k]
  ------------------
 1626|    194|    if (len == 10) {
  ------------------
  |  Branch (1626:9): [True: 194, False: 0]
  ------------------
 1627|    194|      return 8666;
 1628|    194|    }
 1629|      0|    break;
 1630|       |    /* Lmidot */
 1631|    194|  case 0x460c2e146cec80ccULL:
  ------------------
  |  Branch (1631:3): [True: 194, False: 516k]
  ------------------
 1632|    194|    if (len == 6) {
  ------------------
  |  Branch (1632:9): [True: 194, False: 0]
  ------------------
 1633|    194|      return 319;
 1634|    194|    }
 1635|      0|    break;
 1636|       |    /* LongLeftArrow */
 1637|    194|  case 0xc12897a053fb7097ULL:
  ------------------
  |  Branch (1637:3): [True: 194, False: 516k]
  ------------------
 1638|    194|    if (len == 13) {
  ------------------
  |  Branch (1638:9): [True: 194, False: 0]
  ------------------
 1639|    194|      return 10229;
 1640|    194|    }
 1641|      0|    break;
 1642|       |    /* LongLeftRightArrow */
 1643|      0|  case 0x26f0b9fb3e33d3d1ULL:
  ------------------
  |  Branch (1643:3): [True: 0, False: 516k]
  ------------------
 1644|      0|    if (len == 18) {
  ------------------
  |  Branch (1644:9): [True: 0, False: 0]
  ------------------
 1645|      0|      return 10231;
 1646|      0|    }
 1647|      0|    break;
 1648|       |    /* LongRightArrow */
 1649|      0|  case 0x66102cc8d047ee34ULL:
  ------------------
  |  Branch (1649:3): [True: 0, False: 516k]
  ------------------
 1650|      0|    if (len == 14) {
  ------------------
  |  Branch (1650:9): [True: 0, False: 0]
  ------------------
 1651|      0|      return 10230;
 1652|      0|    }
 1653|      0|    break;
 1654|       |    /* Longleftarrow */
 1655|    194|  case 0x14599cf578e73897ULL:
  ------------------
  |  Branch (1655:3): [True: 194, False: 516k]
  ------------------
 1656|    194|    if (len == 13) {
  ------------------
  |  Branch (1656:9): [True: 194, False: 0]
  ------------------
 1657|    194|      return 10232;
 1658|    194|    }
 1659|      0|    break;
 1660|       |    /* Longleftrightarrow */
 1661|      0|  case 0xfb4d47fe6563f731ULL:
  ------------------
  |  Branch (1661:3): [True: 0, False: 516k]
  ------------------
 1662|      0|    if (len == 18) {
  ------------------
  |  Branch (1662:9): [True: 0, False: 0]
  ------------------
 1663|      0|      return 10234;
 1664|      0|    }
 1665|      0|    break;
 1666|       |    /* Longrightarrow */
 1667|      0|  case 0xa431fff6dda41874ULL:
  ------------------
  |  Branch (1667:3): [True: 0, False: 516k]
  ------------------
 1668|      0|    if (len == 14) {
  ------------------
  |  Branch (1668:9): [True: 0, False: 0]
  ------------------
 1669|      0|      return 10233;
 1670|      0|    }
 1671|      0|    break;
 1672|       |    /* Lopf */
 1673|    194|  case 0x4f53e9b48a8dda96ULL:
  ------------------
  |  Branch (1673:3): [True: 194, False: 516k]
  ------------------
 1674|    194|    if (len == 4) {
  ------------------
  |  Branch (1674:9): [True: 194, False: 0]
  ------------------
 1675|    194|      return 120131;
 1676|    194|    }
 1677|      0|    break;
 1678|       |    /* LowerLeftArrow */
 1679|      0|  case 0xa357b8935751a8b4ULL:
  ------------------
  |  Branch (1679:3): [True: 0, False: 516k]
  ------------------
 1680|      0|    if (len == 14) {
  ------------------
  |  Branch (1680:9): [True: 0, False: 0]
  ------------------
 1681|      0|      return 8601;
 1682|      0|    }
 1683|      0|    break;
 1684|       |    /* LowerRightArrow */
 1685|      0|  case 0xfc66572c16fdd701ULL:
  ------------------
  |  Branch (1685:3): [True: 0, False: 516k]
  ------------------
 1686|      0|    if (len == 15) {
  ------------------
  |  Branch (1686:9): [True: 0, False: 0]
  ------------------
 1687|      0|      return 8600;
 1688|      0|    }
 1689|      0|    break;
 1690|       |    /* Lscr */
 1691|    195|  case 0xfc660bb4ec8968b9ULL:
  ------------------
  |  Branch (1691:3): [True: 195, False: 516k]
  ------------------
 1692|    195|    if (len == 4) {
  ------------------
  |  Branch (1692:9): [True: 195, False: 0]
  ------------------
 1693|    195|      return 8466;
 1694|    195|    }
 1695|      0|    break;
 1696|       |    /* Lsh */
 1697|    194|  case 0x25378419b8beeae0ULL:
  ------------------
  |  Branch (1697:3): [True: 194, False: 516k]
  ------------------
 1698|    194|    if (len == 3) {
  ------------------
  |  Branch (1698:9): [True: 194, False: 0]
  ------------------
 1699|    194|      return 8624;
 1700|    194|    }
 1701|      0|    break;
 1702|       |    /* Lstrok */
 1703|    194|  case 0x1b239054975f2984ULL:
  ------------------
  |  Branch (1703:3): [True: 194, False: 516k]
  ------------------
 1704|    194|    if (len == 6) {
  ------------------
  |  Branch (1704:9): [True: 194, False: 0]
  ------------------
 1705|    194|      return 321;
 1706|    194|    }
 1707|      0|    break;
 1708|       |    /* Lt */
 1709|    194|  case 0x09195407b5af45adULL:
  ------------------
  |  Branch (1709:3): [True: 194, False: 516k]
  ------------------
 1710|    194|    if (len == 2) {
  ------------------
  |  Branch (1710:9): [True: 194, False: 0]
  ------------------
 1711|    194|      return 8810;
 1712|    194|    }
 1713|      0|    break;
 1714|       |    /* Map */
 1715|    194|  case 0x1e187919b52639f1ULL:
  ------------------
  |  Branch (1715:3): [True: 194, False: 516k]
  ------------------
 1716|    194|    if (len == 3) {
  ------------------
  |  Branch (1716:9): [True: 194, False: 0]
  ------------------
 1717|    194|      return 10501;
 1718|    194|    }
 1719|      0|    break;
 1720|       |    /* Mcy */
 1721|    228|  case 0x1e1f6c19b52c4288ULL:
  ------------------
  |  Branch (1721:3): [True: 228, False: 516k]
  ------------------
 1722|    228|    if (len == 3) {
  ------------------
  |  Branch (1722:9): [True: 228, False: 0]
  ------------------
 1723|    228|      return 1052;
 1724|    228|    }
 1725|      0|    break;
 1726|       |    /* MediumSpace */
 1727|      0|  case 0xd60de09388a69ab0ULL:
  ------------------
  |  Branch (1727:3): [True: 0, False: 516k]
  ------------------
 1728|      0|    if (len == 11) {
  ------------------
  |  Branch (1728:9): [True: 0, False: 0]
  ------------------
 1729|      0|      return 8287;
 1730|      0|    }
 1731|      0|    break;
 1732|       |    /* Mellintrf */
 1733|      0|  case 0x22898c79c7454538ULL:
  ------------------
  |  Branch (1733:3): [True: 0, False: 516k]
  ------------------
 1734|      0|    if (len == 9) {
  ------------------
  |  Branch (1734:9): [True: 0, False: 0]
  ------------------
 1735|      0|      return 8499;
 1736|      0|    }
 1737|      0|    break;
 1738|       |    /* Mfr */
 1739|    194|  case 0x1e297519b534a658ULL:
  ------------------
  |  Branch (1739:3): [True: 194, False: 516k]
  ------------------
 1740|    194|    if (len == 3) {
  ------------------
  |  Branch (1740:9): [True: 194, False: 0]
  ------------------
 1741|    194|      return 120080;
 1742|    194|    }
 1743|      0|    break;
 1744|       |    /* MinusPlus */
 1745|      0|  case 0xb534b986d10ae4b3ULL:
  ------------------
  |  Branch (1745:3): [True: 0, False: 516k]
  ------------------
 1746|      0|    if (len == 9) {
  ------------------
  |  Branch (1746:9): [True: 0, False: 0]
  ------------------
 1747|      0|      return 8723;
 1748|      0|    }
 1749|      0|    break;
 1750|       |    /* Mopf */
 1751|    194|  case 0x37a31baec56b6c5bULL:
  ------------------
  |  Branch (1751:3): [True: 194, False: 516k]
  ------------------
 1752|    194|    if (len == 4) {
  ------------------
  |  Branch (1752:9): [True: 194, False: 0]
  ------------------
 1753|    194|      return 120132;
 1754|    194|    }
 1755|      0|    break;
 1756|       |    /* Mscr */
 1757|    194|  case 0xcf1211ae8a048cecULL:
  ------------------
  |  Branch (1757:3): [True: 194, False: 516k]
  ------------------
 1758|    194|    if (len == 4) {
  ------------------
  |  Branch (1758:9): [True: 194, False: 0]
  ------------------
 1759|    194|      return 8499;
 1760|    194|    }
 1761|      0|    break;
 1762|       |    /* Mu */
 1763|    194|  case 0x09164f07b5ad0757ULL:
  ------------------
  |  Branch (1763:3): [True: 194, False: 516k]
  ------------------
 1764|    194|    if (len == 2) {
  ------------------
  |  Branch (1764:9): [True: 194, False: 0]
  ------------------
 1765|    194|      return 924;
 1766|    194|    }
 1767|      0|    break;
 1768|       |    /* NJcy */
 1769|    194|  case 0x36ad6dc6267d26adULL:
  ------------------
  |  Branch (1769:3): [True: 194, False: 516k]
  ------------------
 1770|    194|    if (len == 4) {
  ------------------
  |  Branch (1770:9): [True: 194, False: 0]
  ------------------
 1771|    194|      return 1034;
 1772|    194|    }
 1773|      0|    break;
 1774|       |    /* Nacute */
 1775|    194|  case 0xca720fa4f058efbfULL:
  ------------------
  |  Branch (1775:3): [True: 194, False: 516k]
  ------------------
 1776|    194|    if (len == 6) {
  ------------------
  |  Branch (1776:9): [True: 194, False: 0]
  ------------------
 1777|    194|      return 323;
 1778|    194|    }
 1779|      0|    break;
 1780|       |    /* Ncaron */
 1781|    194|  case 0x0971ffaba29e8650ULL:
  ------------------
  |  Branch (1781:3): [True: 194, False: 516k]
  ------------------
 1782|    194|    if (len == 6) {
  ------------------
  |  Branch (1782:9): [True: 194, False: 0]
  ------------------
 1783|    194|      return 327;
 1784|    194|    }
 1785|      0|    break;
 1786|       |    /* Ncedil */
 1787|    194|  case 0xce2e0b882bf258e2ULL:
  ------------------
  |  Branch (1787:3): [True: 194, False: 516k]
  ------------------
 1788|    194|    if (len == 6) {
  ------------------
  |  Branch (1788:9): [True: 194, False: 0]
  ------------------
 1789|    194|      return 325;
 1790|    194|    }
 1791|      0|    break;
 1792|       |    /* Ncy */
 1793|    194|  case 0x373af319c324a17dULL:
  ------------------
  |  Branch (1793:3): [True: 194, False: 516k]
  ------------------
 1794|    194|    if (len == 3) {
  ------------------
  |  Branch (1794:9): [True: 194, False: 0]
  ------------------
 1795|    194|      return 1053;
 1796|    194|    }
 1797|      0|    break;
 1798|       |    /* NegativeMediumSpace */
 1799|      0|  case 0x19debba8c9847c49ULL:
  ------------------
  |  Branch (1799:3): [True: 0, False: 516k]
  ------------------
 1800|      0|    if (len == 19) {
  ------------------
  |  Branch (1800:9): [True: 0, False: 0]
  ------------------
 1801|      0|      return 8203;
 1802|      0|    }
 1803|      0|    break;
 1804|       |    /* NegativeThickSpace */
 1805|      0|  case 0xe26781d0fb9f116fULL:
  ------------------
  |  Branch (1805:3): [True: 0, False: 516k]
  ------------------
 1806|      0|    if (len == 18) {
  ------------------
  |  Branch (1806:9): [True: 0, False: 0]
  ------------------
 1807|      0|      return 8203;
 1808|      0|    }
 1809|      0|    break;
 1810|       |    /* NegativeThinSpace */
 1811|      0|  case 0x0ea5c203b7089559ULL:
  ------------------
  |  Branch (1811:3): [True: 0, False: 516k]
  ------------------
 1812|      0|    if (len == 17) {
  ------------------
  |  Branch (1812:9): [True: 0, False: 0]
  ------------------
 1813|      0|      return 8203;
 1814|      0|    }
 1815|      0|    break;
 1816|       |    /* NegativeVeryThinSpace */
 1817|      0|  case 0xb579544e957d24bdULL:
  ------------------
  |  Branch (1817:3): [True: 0, False: 516k]
  ------------------
 1818|      0|    if (len == 21) {
  ------------------
  |  Branch (1818:9): [True: 0, False: 0]
  ------------------
 1819|      0|      return 8203;
 1820|      0|    }
 1821|      0|    break;
 1822|       |    /* NestedGreaterGreater */
 1823|      0|  case 0x5758e6986106b41eULL:
  ------------------
  |  Branch (1823:3): [True: 0, False: 516k]
  ------------------
 1824|      0|    if (len == 20) {
  ------------------
  |  Branch (1824:9): [True: 0, False: 0]
  ------------------
 1825|      0|      return 8811;
 1826|      0|    }
 1827|      0|    break;
 1828|       |    /* NestedLessLess */
 1829|      0|  case 0x7e6e4d869e6055a6ULL:
  ------------------
  |  Branch (1829:3): [True: 0, False: 516k]
  ------------------
 1830|      0|    if (len == 14) {
  ------------------
  |  Branch (1830:9): [True: 0, False: 0]
  ------------------
 1831|      0|      return 8810;
 1832|      0|    }
 1833|      0|    break;
 1834|       |    /* NewLine */
 1835|      0|  case 0xfad6d57bb600f52bULL:
  ------------------
  |  Branch (1835:3): [True: 0, False: 516k]
  ------------------
 1836|      0|    if (len == 7) {
  ------------------
  |  Branch (1836:9): [True: 0, False: 0]
  ------------------
 1837|      0|      return 10;
 1838|      0|    }
 1839|      0|    break;
 1840|       |    /* Nfr */
 1841|    195|  case 0x374bea19c3330565ULL:
  ------------------
  |  Branch (1841:3): [True: 195, False: 516k]
  ------------------
 1842|    195|    if (len == 3) {
  ------------------
  |  Branch (1842:9): [True: 195, False: 0]
  ------------------
 1843|    195|      return 120081;
 1844|    195|    }
 1845|      0|    break;
 1846|       |    /* NoBreak */
 1847|    194|  case 0x2d456cb830009081ULL:
  ------------------
  |  Branch (1847:3): [True: 194, False: 516k]
  ------------------
 1848|    194|    if (len == 7) {
  ------------------
  |  Branch (1848:9): [True: 194, False: 0]
  ------------------
 1849|    194|      return 8288;
 1850|    194|    }
 1851|      0|    break;
 1852|       |    /* NonBreakingSpace */
 1853|      0|  case 0x7b31cce93cea6eedULL:
  ------------------
  |  Branch (1853:3): [True: 0, False: 516k]
  ------------------
 1854|      0|    if (len == 16) {
  ------------------
  |  Branch (1854:9): [True: 0, False: 0]
  ------------------
 1855|      0|      return 160;
 1856|      0|    }
 1857|      0|    break;
 1858|       |    /* Nopf */
 1859|    195|  case 0x667919c6d2bce4a8ULL:
  ------------------
  |  Branch (1859:3): [True: 195, False: 516k]
  ------------------
 1860|    195|    if (len == 4) {
  ------------------
  |  Branch (1860:9): [True: 195, False: 0]
  ------------------
 1861|    195|      return 8469;
 1862|    195|    }
 1863|      0|    break;
 1864|       |    /* Not */
 1865|    197|  case 0x3763f619c347abaaULL:
  ------------------
  |  Branch (1865:3): [True: 197, False: 516k]
  ------------------
 1866|    197|    if (len == 3) {
  ------------------
  |  Branch (1866:9): [True: 197, False: 0]
  ------------------
 1867|    197|      return 10988;
 1868|    197|    }
 1869|      0|    break;
 1870|       |    /* NotCongruent */
 1871|      0|  case 0x4351c2813b6a656fULL:
  ------------------
  |  Branch (1871:3): [True: 0, False: 516k]
  ------------------
 1872|      0|    if (len == 12) {
  ------------------
  |  Branch (1872:9): [True: 0, False: 0]
  ------------------
 1873|      0|      return 8802;
 1874|      0|    }
 1875|      0|    break;
 1876|       |    /* NotCupCap */
 1877|    194|  case 0x466b9878ce5017e6ULL:
  ------------------
  |  Branch (1877:3): [True: 194, False: 516k]
  ------------------
 1878|    194|    if (len == 9) {
  ------------------
  |  Branch (1878:9): [True: 194, False: 0]
  ------------------
 1879|    194|      return 8813;
 1880|    194|    }
 1881|      0|    break;
 1882|       |    /* NotDoubleVerticalBar */
 1883|      0|  case 0x853c3fab883e22f6ULL:
  ------------------
  |  Branch (1883:3): [True: 0, False: 516k]
  ------------------
 1884|      0|    if (len == 20) {
  ------------------
  |  Branch (1884:9): [True: 0, False: 0]
  ------------------
 1885|      0|      return 8742;
 1886|      0|    }
 1887|      0|    break;
 1888|       |    /* NotElement */
 1889|      0|  case 0x903ba6121033d1a2ULL:
  ------------------
  |  Branch (1889:3): [True: 0, False: 516k]
  ------------------
 1890|      0|    if (len == 10) {
  ------------------
  |  Branch (1890:9): [True: 0, False: 0]
  ------------------
 1891|      0|      return 8713;
 1892|      0|    }
 1893|      0|    break;
 1894|       |    /* NotEqual */
 1895|    194|  case 0x0d4ceeaea619091eULL:
  ------------------
  |  Branch (1895:3): [True: 194, False: 516k]
  ------------------
 1896|    194|    if (len == 8) {
  ------------------
  |  Branch (1896:9): [True: 194, False: 0]
  ------------------
 1897|    194|      return 8800;
 1898|    194|    }
 1899|      0|    break;
 1900|       |    /* NotExists */
 1901|    194|  case 0x253dd2e3b56e9af2ULL:
  ------------------
  |  Branch (1901:3): [True: 194, False: 516k]
  ------------------
 1902|    194|    if (len == 9) {
  ------------------
  |  Branch (1902:9): [True: 194, False: 0]
  ------------------
 1903|    194|      return 8708;
 1904|    194|    }
 1905|      0|    break;
 1906|       |    /* NotGreater */
 1907|      0|  case 0xa309559f8de4c088ULL:
  ------------------
  |  Branch (1907:3): [True: 0, False: 516k]
  ------------------
 1908|      0|    if (len == 10) {
  ------------------
  |  Branch (1908:9): [True: 0, False: 0]
  ------------------
 1909|      0|      return 8815;
 1910|      0|    }
 1911|      0|    break;
 1912|       |    /* NotGreaterEqual */
 1913|      0|  case 0x46f6693b515e7d00ULL:
  ------------------
  |  Branch (1913:3): [True: 0, False: 516k]
  ------------------
 1914|      0|    if (len == 15) {
  ------------------
  |  Branch (1914:9): [True: 0, False: 0]
  ------------------
 1915|      0|      return 8817;
 1916|      0|    }
 1917|      0|    break;
 1918|       |    /* NotGreaterLess */
 1919|      0|  case 0xc7672ad2e40ce6c1ULL:
  ------------------
  |  Branch (1919:3): [True: 0, False: 516k]
  ------------------
 1920|      0|    if (len == 14) {
  ------------------
  |  Branch (1920:9): [True: 0, False: 0]
  ------------------
 1921|      0|      return 8825;
 1922|      0|    }
 1923|      0|    break;
 1924|       |    /* NotGreaterTilde */
 1925|      0|  case 0x99bfab9077f8173eULL:
  ------------------
  |  Branch (1925:3): [True: 0, False: 516k]
  ------------------
 1926|      0|    if (len == 15) {
  ------------------
  |  Branch (1926:9): [True: 0, False: 0]
  ------------------
 1927|      0|      return 8821;
 1928|      0|    }
 1929|      0|    break;
 1930|       |    /* NotLeftTriangle */
 1931|    194|  case 0xb6d07c58c6cacd7bULL:
  ------------------
  |  Branch (1931:3): [True: 194, False: 516k]
  ------------------
 1932|    194|    if (len == 15) {
  ------------------
  |  Branch (1932:9): [True: 194, False: 0]
  ------------------
 1933|    194|      return 8938;
 1934|    194|    }
 1935|      0|    break;
 1936|       |    /* NotLeftTriangleEqual */
 1937|    194|  case 0x06a5b31737d35b81ULL:
  ------------------
  |  Branch (1937:3): [True: 194, False: 516k]
  ------------------
 1938|    194|    if (len == 20) {
  ------------------
  |  Branch (1938:9): [True: 194, False: 0]
  ------------------
 1939|    194|      return 8940;
 1940|    194|    }
 1941|      0|    break;
 1942|       |    /* NotLess */
 1943|    194|  case 0x724794c592bb03f3ULL:
  ------------------
  |  Branch (1943:3): [True: 194, False: 516k]
  ------------------
 1944|    194|    if (len == 7) {
  ------------------
  |  Branch (1944:9): [True: 194, False: 0]
  ------------------
 1945|    194|      return 8814;
 1946|    194|    }
 1947|      0|    break;
 1948|       |    /* NotLessEqual */
 1949|    194|  case 0x853d540f1dbe87b9ULL:
  ------------------
  |  Branch (1949:3): [True: 194, False: 516k]
  ------------------
 1950|    194|    if (len == 12) {
  ------------------
  |  Branch (1950:9): [True: 194, False: 0]
  ------------------
 1951|    194|      return 8816;
 1952|    194|    }
 1953|      0|    break;
 1954|       |    /* NotLessGreater */
 1955|      0|  case 0x12c3e7b8bbc52e97ULL:
  ------------------
  |  Branch (1955:3): [True: 0, False: 516k]
  ------------------
 1956|      0|    if (len == 14) {
  ------------------
  |  Branch (1956:9): [True: 0, False: 0]
  ------------------
 1957|      0|      return 8824;
 1958|      0|    }
 1959|      0|    break;
 1960|       |    /* NotLessTilde */
 1961|    194|  case 0xda17123ce3b64603ULL:
  ------------------
  |  Branch (1961:3): [True: 194, False: 516k]
  ------------------
 1962|    194|    if (len == 12) {
  ------------------
  |  Branch (1962:9): [True: 194, False: 0]
  ------------------
 1963|    194|      return 8820;
 1964|    194|    }
 1965|      0|    break;
 1966|       |    /* NotPrecedes */
 1967|      0|  case 0xc59399a1c2ef102dULL:
  ------------------
  |  Branch (1967:3): [True: 0, False: 516k]
  ------------------
 1968|      0|    if (len == 11) {
  ------------------
  |  Branch (1968:9): [True: 0, False: 0]
  ------------------
 1969|      0|      return 8832;
 1970|      0|    }
 1971|      0|    break;
 1972|       |    /* NotPrecedesSlantEqual */
 1973|      0|  case 0x239b8f4946764e99ULL:
  ------------------
  |  Branch (1973:3): [True: 0, False: 516k]
  ------------------
 1974|      0|    if (len == 21) {
  ------------------
  |  Branch (1974:9): [True: 0, False: 0]
  ------------------
 1975|      0|      return 8928;
 1976|      0|    }
 1977|      0|    break;
 1978|       |    /* NotReverseElement */
 1979|      0|  case 0xf96d9dec557a2b3cULL:
  ------------------
  |  Branch (1979:3): [True: 0, False: 516k]
  ------------------
 1980|      0|    if (len == 17) {
  ------------------
  |  Branch (1980:9): [True: 0, False: 0]
  ------------------
 1981|      0|      return 8716;
 1982|      0|    }
 1983|      0|    break;
 1984|       |    /* NotRightTriangle */
 1985|      0|  case 0xe8122021d906fb1cULL:
  ------------------
  |  Branch (1985:3): [True: 0, False: 516k]
  ------------------
 1986|      0|    if (len == 16) {
  ------------------
  |  Branch (1986:9): [True: 0, False: 0]
  ------------------
 1987|      0|      return 8939;
 1988|      0|    }
 1989|      0|    break;
 1990|       |    /* NotRightTriangleEqual */
 1991|      0|  case 0x4f3fd3ed231340d4ULL:
  ------------------
  |  Branch (1991:3): [True: 0, False: 516k]
  ------------------
 1992|      0|    if (len == 21) {
  ------------------
  |  Branch (1992:9): [True: 0, False: 0]
  ------------------
 1993|      0|      return 8941;
 1994|      0|    }
 1995|      0|    break;
 1996|       |    /* NotSquareSubsetEqual */
 1997|    194|  case 0xcacbb1171b5c0d45ULL:
  ------------------
  |  Branch (1997:3): [True: 194, False: 516k]
  ------------------
 1998|    194|    if (len == 20) {
  ------------------
  |  Branch (1998:9): [True: 194, False: 0]
  ------------------
 1999|    194|      return 8930;
 2000|    194|    }
 2001|      0|    break;
 2002|       |    /* NotSquareSupersetEqual */
 2003|    194|  case 0xf8c7805b376606d8ULL:
  ------------------
  |  Branch (2003:3): [True: 194, False: 516k]
  ------------------
 2004|    194|    if (len == 22) {
  ------------------
  |  Branch (2004:9): [True: 194, False: 0]
  ------------------
 2005|    194|      return 8931;
 2006|    194|    }
 2007|      0|    break;
 2008|       |    /* NotSubsetEqual */
 2009|    194|  case 0xd44a0592c59fa290ULL:
  ------------------
  |  Branch (2009:3): [True: 194, False: 516k]
  ------------------
 2010|    194|    if (len == 14) {
  ------------------
  |  Branch (2010:9): [True: 194, False: 0]
  ------------------
 2011|    194|      return 8840;
 2012|    194|    }
 2013|      0|    break;
 2014|       |    /* NotSucceeds */
 2015|      0|  case 0x09d693ed0d95f60fULL:
  ------------------
  |  Branch (2015:3): [True: 0, False: 516k]
  ------------------
 2016|      0|    if (len == 11) {
  ------------------
  |  Branch (2016:9): [True: 0, False: 0]
  ------------------
 2017|      0|      return 8833;
 2018|      0|    }
 2019|      0|    break;
 2020|       |    /* NotSucceedsSlantEqual */
 2021|      0|  case 0x9e993f5a9f37526bULL:
  ------------------
  |  Branch (2021:3): [True: 0, False: 516k]
  ------------------
 2022|      0|    if (len == 21) {
  ------------------
  |  Branch (2022:9): [True: 0, False: 0]
  ------------------
 2023|      0|      return 8929;
 2024|      0|    }
 2025|      0|    break;
 2026|       |    /* NotSupersetEqual */
 2027|    194|  case 0x3afee4d81ada51b5ULL:
  ------------------
  |  Branch (2027:3): [True: 194, False: 516k]
  ------------------
 2028|    194|    if (len == 16) {
  ------------------
  |  Branch (2028:9): [True: 194, False: 0]
  ------------------
 2029|    194|      return 8841;
 2030|    194|    }
 2031|      0|    break;
 2032|       |    /* NotTilde */
 2033|    197|  case 0xf662187b583e68ccULL:
  ------------------
  |  Branch (2033:3): [True: 197, False: 516k]
  ------------------
 2034|    197|    if (len == 8) {
  ------------------
  |  Branch (2034:9): [True: 197, False: 0]
  ------------------
 2035|    197|      return 8769;
 2036|    197|    }
 2037|      0|    break;
 2038|       |    /* NotTildeEqual */
 2039|    222|  case 0x0a0cd8787cfaa724ULL:
  ------------------
  |  Branch (2039:3): [True: 222, False: 516k]
  ------------------
 2040|    222|    if (len == 13) {
  ------------------
  |  Branch (2040:9): [True: 222, False: 0]
  ------------------
 2041|    222|      return 8772;
 2042|    222|    }
 2043|      0|    break;
 2044|       |    /* NotTildeFullEqual */
 2045|      0|  case 0x36649eef7d4cf96bULL:
  ------------------
  |  Branch (2045:3): [True: 0, False: 516k]
  ------------------
 2046|      0|    if (len == 17) {
  ------------------
  |  Branch (2046:9): [True: 0, False: 0]
  ------------------
 2047|      0|      return 8775;
 2048|      0|    }
 2049|      0|    break;
 2050|       |    /* NotTildeTilde */
 2051|    194|  case 0xfe5aa93e65a1628aULL:
  ------------------
  |  Branch (2051:3): [True: 194, False: 516k]
  ------------------
 2052|    194|    if (len == 13) {
  ------------------
  |  Branch (2052:9): [True: 194, False: 0]
  ------------------
 2053|    194|      return 8777;
 2054|    194|    }
 2055|      0|    break;
 2056|       |    /* NotVerticalBar */
 2057|      0|  case 0xfe4e4f0b8ac8c825ULL:
  ------------------
  |  Branch (2057:3): [True: 0, False: 516k]
  ------------------
 2058|      0|    if (len == 14) {
  ------------------
  |  Branch (2058:9): [True: 0, False: 0]
  ------------------
 2059|      0|      return 8740;
 2060|      0|    }
 2061|      0|    break;
 2062|       |    /* Nscr */
 2063|    194|  case 0x742293c6498844f7ULL:
  ------------------
  |  Branch (2063:3): [True: 194, False: 516k]
  ------------------
 2064|    194|    if (len == 4) {
  ------------------
  |  Branch (2064:9): [True: 194, False: 0]
  ------------------
 2065|    194|      return 119977;
 2066|    194|    }
 2067|      0|    break;
 2068|       |    /* Ntilde */
 2069|    194|  case 0xaf0ceb437fc0e09dULL:
  ------------------
  |  Branch (2069:3): [True: 194, False: 516k]
  ------------------
 2070|    194|    if (len == 6) {
  ------------------
  |  Branch (2070:9): [True: 194, False: 0]
  ------------------
 2071|    194|      return 209;
 2072|    194|    }
 2073|      0|    break;
 2074|       |    /* Nu */
 2075|    195|  case 0x09203f07b5b540acULL:
  ------------------
  |  Branch (2075:3): [True: 195, False: 516k]
  ------------------
 2076|    195|    if (len == 2) {
  ------------------
  |  Branch (2076:9): [True: 195, False: 0]
  ------------------
 2077|    195|      return 925;
 2078|    195|    }
 2079|      0|    break;
 2080|       |    /* OElig */
 2081|    194|  case 0xeb66994a4df8e9a7ULL:
  ------------------
  |  Branch (2081:3): [True: 194, False: 516k]
  ------------------
 2082|    194|    if (len == 5) {
  ------------------
  |  Branch (2082:9): [True: 194, False: 0]
  ------------------
 2083|    194|      return 338;
 2084|    194|    }
 2085|      0|    break;
 2086|       |    /* Oacute */
 2087|    194|  case 0x854fdecc5971ea7aULL:
  ------------------
  |  Branch (2087:3): [True: 194, False: 516k]
  ------------------
 2088|    194|    if (len == 6) {
  ------------------
  |  Branch (2088:9): [True: 194, False: 0]
  ------------------
 2089|    194|      return 211;
 2090|    194|    }
 2091|      0|    break;
 2092|       |    /* Ocirc */
 2093|    194|  case 0xaabc956334a948f1ULL:
  ------------------
  |  Branch (2093:3): [True: 194, False: 516k]
  ------------------
 2094|    194|    if (len == 5) {
  ------------------
  |  Branch (2094:9): [True: 194, False: 0]
  ------------------
 2095|    194|      return 212;
 2096|    194|    }
 2097|      0|    break;
 2098|       |    /* Ocy */
 2099|    194|  case 0x303dca19bfa8a3faULL:
  ------------------
  |  Branch (2099:3): [True: 194, False: 516k]
  ------------------
 2100|    194|    if (len == 3) {
  ------------------
  |  Branch (2100:9): [True: 194, False: 0]
  ------------------
 2101|    194|      return 1054;
 2102|    194|    }
 2103|      0|    break;
 2104|       |    /* Odblac */
 2105|    194|  case 0xa83017dd56bc3fc8ULL:
  ------------------
  |  Branch (2105:3): [True: 194, False: 516k]
  ------------------
 2106|    194|    if (len == 6) {
  ------------------
  |  Branch (2106:9): [True: 194, False: 0]
  ------------------
 2107|    194|      return 336;
 2108|    194|    }
 2109|      0|    break;
 2110|       |    /* Ofr */
 2111|    194|  case 0x302cc719bf9a2baeULL:
  ------------------
  |  Branch (2111:3): [True: 194, False: 516k]
  ------------------
 2112|    194|    if (len == 3) {
  ------------------
  |  Branch (2112:9): [True: 194, False: 0]
  ------------------
 2113|    194|      return 120082;
 2114|    194|    }
 2115|      0|    break;
 2116|       |    /* Ograve */
 2117|    194|  case 0x4330ef573e269be7ULL:
  ------------------
  |  Branch (2117:3): [True: 194, False: 516k]
  ------------------
 2118|    194|    if (len == 6) {
  ------------------
  |  Branch (2118:9): [True: 194, False: 0]
  ------------------
 2119|    194|      return 210;
 2120|    194|    }
 2121|      0|    break;
 2122|       |    /* Omacr */
 2123|    194|  case 0x2733f20fb0a24de9ULL:
  ------------------
  |  Branch (2123:3): [True: 194, False: 516k]
  ------------------
 2124|    194|    if (len == 5) {
  ------------------
  |  Branch (2124:9): [True: 194, False: 0]
  ------------------
 2125|    194|      return 332;
 2126|    194|    }
 2127|      0|    break;
 2128|       |    /* Omega */
 2129|    194|  case 0x473fb30fc20c3ce8ULL:
  ------------------
  |  Branch (2129:3): [True: 194, False: 516k]
  ------------------
 2130|    194|    if (len == 5) {
  ------------------
  |  Branch (2130:9): [True: 194, False: 0]
  ------------------
 2131|    194|      return 937;
 2132|    194|    }
 2133|      0|    break;
 2134|       |    /* Omicron */
 2135|    194|  case 0x29bb34120e7aee7cULL:
  ------------------
  |  Branch (2135:3): [True: 194, False: 516k]
  ------------------
 2136|    194|    if (len == 7) {
  ------------------
  |  Branch (2136:9): [True: 194, False: 0]
  ------------------
 2137|    194|      return 927;
 2138|    194|    }
 2139|      0|    break;
 2140|       |    /* Oopf */
 2141|    195|  case 0x3c24fbc072c4417dULL:
  ------------------
  |  Branch (2141:3): [True: 195, False: 516k]
  ------------------
 2142|    195|    if (len == 4) {
  ------------------
  |  Branch (2142:9): [True: 195, False: 0]
  ------------------
 2143|    195|      return 120134;
 2144|    195|    }
 2145|      0|    break;
 2146|       |    /* OpenCurlyDoubleQuote */
 2147|      0|  case 0xb8f3fa15f40b9819ULL:
  ------------------
  |  Branch (2147:3): [True: 0, False: 516k]
  ------------------
 2148|      0|    if (len == 20) {
  ------------------
  |  Branch (2148:9): [True: 0, False: 0]
  ------------------
 2149|      0|      return 8220;
 2150|      0|    }
 2151|      0|    break;
 2152|       |    /* OpenCurlyQuote */
 2153|      0|  case 0xa9cba54b4c7c2c7eULL:
  ------------------
  |  Branch (2153:3): [True: 0, False: 516k]
  ------------------
 2154|      0|    if (len == 14) {
  ------------------
  |  Branch (2154:9): [True: 0, False: 0]
  ------------------
 2155|      0|      return 8216;
 2156|      0|    }
 2157|      0|    break;
 2158|       |    /* Or */
 2159|    194|  case 0x091d5407b5b32e84ULL:
  ------------------
  |  Branch (2159:3): [True: 194, False: 516k]
  ------------------
 2160|    194|    if (len == 2) {
  ------------------
  |  Branch (2160:9): [True: 194, False: 0]
  ------------------
 2161|    194|      return 10836;
 2162|    194|    }
 2163|      0|    break;
 2164|       |    /* Oscr */
 2165|    194|  case 0x186569c05e35580aULL:
  ------------------
  |  Branch (2165:3): [True: 194, False: 516k]
  ------------------
 2166|    194|    if (len == 4) {
  ------------------
  |  Branch (2166:9): [True: 194, False: 0]
  ------------------
 2167|    194|      return 119978;
 2168|    194|    }
 2169|      0|    break;
 2170|       |    /* Oslash */
 2171|    194|  case 0xc20018fdaecaadf3ULL:
  ------------------
  |  Branch (2171:3): [True: 194, False: 516k]
  ------------------
 2172|    194|    if (len == 6) {
  ------------------
  |  Branch (2172:9): [True: 194, False: 0]
  ------------------
 2173|    194|      return 216;
 2174|    194|    }
 2175|      0|    break;
 2176|       |    /* Otilde */
 2177|    194|  case 0xe6ce7d3829111898ULL:
  ------------------
  |  Branch (2177:3): [True: 194, False: 516k]
  ------------------
 2178|    194|    if (len == 6) {
  ------------------
  |  Branch (2178:9): [True: 194, False: 0]
  ------------------
 2179|    194|      return 213;
 2180|    194|    }
 2181|      0|    break;
 2182|       |    /* Otimes */
 2183|    194|  case 0xdf025a3824e5890cULL:
  ------------------
  |  Branch (2183:3): [True: 194, False: 516k]
  ------------------
 2184|    194|    if (len == 6) {
  ------------------
  |  Branch (2184:9): [True: 194, False: 0]
  ------------------
 2185|    194|      return 10807;
 2186|    194|    }
 2187|      0|    break;
 2188|       |    /* Ouml */
 2189|    194|  case 0x066819c053d441c8ULL:
  ------------------
  |  Branch (2189:3): [True: 194, False: 516k]
  ------------------
 2190|    194|    if (len == 4) {
  ------------------
  |  Branch (2190:9): [True: 194, False: 0]
  ------------------
 2191|    194|      return 214;
 2192|    194|    }
 2193|      0|    break;
 2194|       |    /* OverBar */
 2195|    194|  case 0xc2cdafcd715751d0ULL:
  ------------------
  |  Branch (2195:3): [True: 194, False: 516k]
  ------------------
 2196|    194|    if (len == 7) {
  ------------------
  |  Branch (2196:9): [True: 194, False: 0]
  ------------------
 2197|    194|      return 8254;
 2198|    194|    }
 2199|      0|    break;
 2200|       |    /* OverBrace */
 2201|    194|  case 0x9527b18836110d1aULL:
  ------------------
  |  Branch (2201:3): [True: 194, False: 516k]
  ------------------
 2202|    194|    if (len == 9) {
  ------------------
  |  Branch (2202:9): [True: 194, False: 0]
  ------------------
 2203|    194|      return 9182;
 2204|    194|    }
 2205|      0|    break;
 2206|       |    /* OverBracket */
 2207|    194|  case 0xf1bdeee39c8ffc01ULL:
  ------------------
  |  Branch (2207:3): [True: 194, False: 516k]
  ------------------
 2208|    194|    if (len == 11) {
  ------------------
  |  Branch (2208:9): [True: 194, False: 0]
  ------------------
 2209|    194|      return 9140;
 2210|    194|    }
 2211|      0|    break;
 2212|       |    /* OverParenthesis */
 2213|      0|  case 0x7618c7f63e9d74d9ULL:
  ------------------
  |  Branch (2213:3): [True: 0, False: 516k]
  ------------------
 2214|      0|    if (len == 15) {
  ------------------
  |  Branch (2214:9): [True: 0, False: 0]
  ------------------
 2215|      0|      return 9180;
 2216|      0|    }
 2217|      0|    break;
 2218|       |    /* PartialD */
 2219|      0|  case 0x1f8f2cf03079987aULL:
  ------------------
  |  Branch (2219:3): [True: 0, False: 516k]
  ------------------
 2220|      0|    if (len == 8) {
  ------------------
  |  Branch (2220:9): [True: 0, False: 0]
  ------------------
 2221|      0|      return 8706;
 2222|      0|    }
 2223|      0|    break;
 2224|       |    /* Pcy */
 2225|    194|  case 0x8dcc8919f429aaa7ULL:
  ------------------
  |  Branch (2225:3): [True: 194, False: 516k]
  ------------------
 2226|    194|    if (len == 3) {
  ------------------
  |  Branch (2226:9): [True: 194, False: 0]
  ------------------
 2227|    194|      return 1055;
 2228|    194|    }
 2229|      0|    break;
 2230|       |    /* Pfr */
 2231|    194|  case 0x8dc28c19f4215b3bULL:
  ------------------
  |  Branch (2231:3): [True: 194, False: 516k]
  ------------------
 2232|    194|    if (len == 3) {
  ------------------
  |  Branch (2232:9): [True: 194, False: 0]
  ------------------
 2233|    194|      return 120083;
 2234|    194|    }
 2235|      0|    break;
 2236|       |    /* Phi */
 2237|    194|  case 0x8dbb7919f41b1c44ULL:
  ------------------
  |  Branch (2237:3): [True: 194, False: 516k]
  ------------------
 2238|    194|    if (len == 3) {
  ------------------
  |  Branch (2238:9): [True: 194, False: 0]
  ------------------
 2239|    194|      return 934;
 2240|    194|    }
 2241|      0|    break;
 2242|       |    /* Pi */
 2243|    194|  case 0x09423f07b5d22712ULL:
  ------------------
  |  Branch (2243:3): [True: 194, False: 516k]
  ------------------
 2244|    194|    if (len == 2) {
  ------------------
  |  Branch (2244:9): [True: 194, False: 0]
  ------------------
 2245|    194|      return 928;
 2246|    194|    }
 2247|      0|    break;
 2248|       |    /* PlusMinus */
 2249|      0|  case 0x78b6deb8a3f643dfULL:
  ------------------
  |  Branch (2249:3): [True: 0, False: 516k]
  ------------------
 2250|      0|    if (len == 9) {
  ------------------
  |  Branch (2250:9): [True: 0, False: 0]
  ------------------
 2251|      0|      return 177;
 2252|      0|    }
 2253|      0|    break;
 2254|       |    /* Poincareplane */
 2255|      0|  case 0x44c38a761dd36498ULL:
  ------------------
  |  Branch (2255:3): [True: 0, False: 516k]
  ------------------
 2256|      0|    if (len == 13) {
  ------------------
  |  Branch (2256:9): [True: 0, False: 0]
  ------------------
 2257|      0|      return 8460;
 2258|      0|    }
 2259|      0|    break;
 2260|       |    /* Popf */
 2261|    194|  case 0xb34dea19a71a83a2ULL:
  ------------------
  |  Branch (2261:3): [True: 194, False: 516k]
  ------------------
 2262|    194|    if (len == 4) {
  ------------------
  |  Branch (2262:9): [True: 194, False: 0]
  ------------------
 2263|    194|      return 8473;
 2264|    194|    }
 2265|      0|    break;
 2266|       |    /* Pr */
 2267|    194|  case 0x09425607b5d24e27ULL:
  ------------------
  |  Branch (2267:3): [True: 194, False: 516k]
  ------------------
 2268|    194|    if (len == 2) {
  ------------------
  |  Branch (2268:9): [True: 194, False: 0]
  ------------------
 2269|    194|      return 10939;
 2270|    194|    }
 2271|      0|    break;
 2272|       |    /* Precedes */
 2273|      0|  case 0xc04ee6af43076416ULL:
  ------------------
  |  Branch (2273:3): [True: 0, False: 516k]
  ------------------
 2274|      0|    if (len == 8) {
  ------------------
  |  Branch (2274:9): [True: 0, False: 0]
  ------------------
 2275|      0|      return 8826;
 2276|      0|    }
 2277|      0|    break;
 2278|       |    /* PrecedesEqual */
 2279|      0|  case 0x4307f60668f9c01aULL:
  ------------------
  |  Branch (2279:3): [True: 0, False: 516k]
  ------------------
 2280|      0|    if (len == 13) {
  ------------------
  |  Branch (2280:9): [True: 0, False: 0]
  ------------------
 2281|      0|      return 10927;
 2282|      0|    }
 2283|      0|    break;
 2284|       |    /* PrecedesSlantEqual */
 2285|      0|  case 0x40c9f699f436b596ULL:
  ------------------
  |  Branch (2285:3): [True: 0, False: 516k]
  ------------------
 2286|      0|    if (len == 18) {
  ------------------
  |  Branch (2286:9): [True: 0, False: 0]
  ------------------
 2287|      0|      return 8828;
 2288|      0|    }
 2289|      0|    break;
 2290|       |    /* PrecedesTilde */
 2291|      0|  case 0xe4aea7ee56e051c0ULL:
  ------------------
  |  Branch (2291:3): [True: 0, False: 516k]
  ------------------
 2292|      0|    if (len == 13) {
  ------------------
  |  Branch (2292:9): [True: 0, False: 0]
  ------------------
 2293|      0|      return 8830;
 2294|      0|    }
 2295|      0|    break;
 2296|       |    /* Prime */
 2297|    194|  case 0xeed15a8afe9ad2a0ULL:
  ------------------
  |  Branch (2297:3): [True: 194, False: 516k]
  ------------------
 2298|    194|    if (len == 5) {
  ------------------
  |  Branch (2298:9): [True: 194, False: 0]
  ------------------
 2299|    194|      return 8243;
 2300|    194|    }
 2301|      0|    break;
 2302|       |    /* Product */
 2303|      0|  case 0xde1f02481331134cULL:
  ------------------
  |  Branch (2303:3): [True: 0, False: 516k]
  ------------------
 2304|      0|    if (len == 7) {
  ------------------
  |  Branch (2304:9): [True: 0, False: 0]
  ------------------
 2305|      0|      return 8719;
 2306|      0|    }
 2307|      0|    break;
 2308|       |    /* Proportion */
 2309|      0|  case 0x34e42f621c04b4b7ULL:
  ------------------
  |  Branch (2309:3): [True: 0, False: 516k]
  ------------------
 2310|      0|    if (len == 10) {
  ------------------
  |  Branch (2310:9): [True: 0, False: 0]
  ------------------
 2311|      0|      return 8759;
 2312|      0|    }
 2313|      0|    break;
 2314|       |    /* Proportional */
 2315|      0|  case 0x2be33d9812c7030aULL:
  ------------------
  |  Branch (2315:3): [True: 0, False: 516k]
  ------------------
 2316|      0|    if (len == 12) {
  ------------------
  |  Branch (2316:9): [True: 0, False: 0]
  ------------------
 2317|      0|      return 8733;
 2318|      0|    }
 2319|      0|    break;
 2320|       |    /* Pscr */
 2321|    194|  case 0xa5ab5c1a30552005ULL:
  ------------------
  |  Branch (2321:3): [True: 194, False: 516k]
  ------------------
 2322|    194|    if (len == 4) {
  ------------------
  |  Branch (2322:9): [True: 194, False: 0]
  ------------------
 2323|    194|      return 119979;
 2324|    194|    }
 2325|      0|    break;
 2326|       |    /* Psi */
 2327|    195|  case 0x8e029919f4575547ULL:
  ------------------
  |  Branch (2327:3): [True: 195, False: 516k]
  ------------------
 2328|    195|    if (len == 3) {
  ------------------
  |  Branch (2328:9): [True: 195, False: 0]
  ------------------
 2329|    195|      return 936;
 2330|    195|    }
 2331|      0|    break;
 2332|       |    /* QUOT */
 2333|    194|  case 0x320d2e1315d01e08ULL:
  ------------------
  |  Branch (2333:3): [True: 194, False: 516k]
  ------------------
 2334|    194|    if (len == 4) {
  ------------------
  |  Branch (2334:9): [True: 194, False: 0]
  ------------------
 2335|    194|      return 34;
 2336|    194|    }
 2337|      0|    break;
 2338|       |    /* Qfr */
 2339|    194|  case 0x86d96919f0b610f4ULL:
  ------------------
  |  Branch (2339:3): [True: 194, False: 516k]
  ------------------
 2340|    194|    if (len == 3) {
  ------------------
  |  Branch (2340:9): [True: 194, False: 0]
  ------------------
 2341|    194|      return 120084;
 2342|    194|    }
 2343|      0|    break;
 2344|       |    /* Qopf */
 2345|    194|  case 0x9c091c13e2533447ULL:
  ------------------
  |  Branch (2345:3): [True: 194, False: 516k]
  ------------------
 2346|    194|    if (len == 4) {
  ------------------
  |  Branch (2346:9): [True: 194, False: 0]
  ------------------
 2347|    194|      return 8474;
 2348|    194|    }
 2349|      0|    break;
 2350|       |    /* Qscr */
 2351|    210|  case 0x7bbd6213d0b36d38ULL:
  ------------------
  |  Branch (2351:3): [True: 210, False: 516k]
  ------------------
 2352|    210|    if (len == 4) {
  ------------------
  |  Branch (2352:9): [True: 210, False: 0]
  ------------------
 2353|    210|      return 119980;
 2354|    210|    }
 2355|      0|    break;
 2356|       |    /* RBarr */
 2357|    194|  case 0x4024ec9c1ac324e8ULL:
  ------------------
  |  Branch (2357:3): [True: 194, False: 516k]
  ------------------
 2358|    194|    if (len == 5) {
  ------------------
  |  Branch (2358:9): [True: 194, False: 0]
  ------------------
 2359|    194|      return 10512;
 2360|    194|    }
 2361|      0|    break;
 2362|       |    /* REG */
 2363|    194|  case 0xa05ec119ff08bc15ULL:
  ------------------
  |  Branch (2363:3): [True: 194, False: 516k]
  ------------------
 2364|    194|    if (len == 3) {
  ------------------
  |  Branch (2364:9): [True: 194, False: 0]
  ------------------
 2365|    194|      return 174;
 2366|    194|    }
 2367|      0|    break;
 2368|       |    /* Racute */
 2369|    194|  case 0x08151a91b5dabc63ULL:
  ------------------
  |  Branch (2369:3): [True: 194, False: 516k]
  ------------------
 2370|    194|    if (len == 6) {
  ------------------
  |  Branch (2370:9): [True: 194, False: 0]
  ------------------
 2371|    194|      return 340;
 2372|    194|    }
 2373|      0|    break;
 2374|       |    /* Rang */
 2375|    194|  case 0x9841152bd35b97c3ULL:
  ------------------
  |  Branch (2375:3): [True: 194, False: 516k]
  ------------------
 2376|    194|    if (len == 4) {
  ------------------
  |  Branch (2376:9): [True: 194, False: 0]
  ------------------
 2377|    194|      return 10219;
 2378|    194|    }
 2379|      0|    break;
 2380|       |    /* Rarr */
 2381|    195|  case 0x9834102bd35104e8ULL:
  ------------------
  |  Branch (2381:3): [True: 195, False: 516k]
  ------------------
 2382|    195|    if (len == 4) {
  ------------------
  |  Branch (2382:9): [True: 195, False: 0]
  ------------------
 2383|    195|      return 8608;
 2384|    195|    }
 2385|      0|    break;
 2386|       |    /* Rarrtl */
 2387|    194|  case 0x00afa607b848bae8ULL:
  ------------------
  |  Branch (2387:3): [True: 194, False: 516k]
  ------------------
 2388|    194|    if (len == 6) {
  ------------------
  |  Branch (2388:9): [True: 194, False: 0]
  ------------------
 2389|    194|      return 10518;
 2390|    194|    }
 2391|      0|    break;
 2392|       |    /* Rcaron */
 2393|    194|  case 0x34eb38d6c4c4839cULL:
  ------------------
  |  Branch (2393:3): [True: 194, False: 516k]
  ------------------
 2394|    194|    if (len == 6) {
  ------------------
  |  Branch (2394:9): [True: 194, False: 0]
  ------------------
 2395|    194|      return 344;
 2396|    194|    }
 2397|      0|    break;
 2398|       |    /* Rcedil */
 2399|    194|  case 0x33324cf9866eeaa6ULL:
  ------------------
  |  Branch (2399:3): [True: 194, False: 516k]
  ------------------
 2400|    194|    if (len == 6) {
  ------------------
  |  Branch (2400:9): [True: 194, False: 0]
  ------------------
 2401|    194|      return 342;
 2402|    194|    }
 2403|      0|    break;
 2404|       |    /* Rcy */
 2405|    194|  case 0xa006d719febe6ba1ULL:
  ------------------
  |  Branch (2405:3): [True: 194, False: 516k]
  ------------------
 2406|    194|    if (len == 3) {
  ------------------
  |  Branch (2406:9): [True: 194, False: 0]
  ------------------
 2407|    194|      return 1056;
 2408|    194|    }
 2409|      0|    break;
 2410|       |    /* Re */
 2411|    194|  case 0x09494f07b5d860f0ULL:
  ------------------
  |  Branch (2411:3): [True: 194, False: 516k]
  ------------------
 2412|    194|    if (len == 2) {
  ------------------
  |  Branch (2412:9): [True: 194, False: 0]
  ------------------
 2413|    194|      return 8476;
 2414|    194|    }
 2415|      0|    break;
 2416|       |    /* ReverseElement */
 2417|      0|  case 0xcdb39da871c9c157ULL:
  ------------------
  |  Branch (2417:3): [True: 0, False: 516k]
  ------------------
 2418|      0|    if (len == 14) {
  ------------------
  |  Branch (2418:9): [True: 0, False: 0]
  ------------------
 2419|      0|      return 8715;
 2420|      0|    }
 2421|      0|    break;
 2422|       |    /* ReverseEquilibrium */
 2423|      0|  case 0xa63e1645e61f6017ULL:
  ------------------
  |  Branch (2423:3): [True: 0, False: 516k]
  ------------------
 2424|      0|    if (len == 18) {
  ------------------
  |  Branch (2424:9): [True: 0, False: 0]
  ------------------
 2425|      0|      return 8651;
 2426|      0|    }
 2427|      0|    break;
 2428|       |    /* ReverseUpEquilibrium */
 2429|      0|  case 0xe3fc919d62400f1cULL:
  ------------------
  |  Branch (2429:3): [True: 0, False: 516k]
  ------------------
 2430|      0|    if (len == 20) {
  ------------------
  |  Branch (2430:9): [True: 0, False: 0]
  ------------------
 2431|      0|      return 10607;
 2432|      0|    }
 2433|      0|    break;
 2434|       |    /* Rfr */
 2435|    194|  case 0x9ffcde19feb62301ULL:
  ------------------
  |  Branch (2435:3): [True: 194, False: 516k]
  ------------------
 2436|    194|    if (len == 3) {
  ------------------
  |  Branch (2436:9): [True: 194, False: 0]
  ------------------
 2437|    194|      return 8476;
 2438|    194|    }
 2439|      0|    break;
 2440|       |    /* Rho */
 2441|    194|  case 0xa01ec919fed2e5b8ULL:
  ------------------
  |  Branch (2441:3): [True: 194, False: 516k]
  ------------------
 2442|    194|    if (len == 3) {
  ------------------
  |  Branch (2442:9): [True: 194, False: 0]
  ------------------
 2443|    194|      return 929;
 2444|    194|    }
 2445|      0|    break;
 2446|       |    /* RightAngleBracket */
 2447|      0|  case 0x18a6b3e3b0857994ULL:
  ------------------
  |  Branch (2447:3): [True: 0, False: 516k]
  ------------------
 2448|      0|    if (len == 17) {
  ------------------
  |  Branch (2448:9): [True: 0, False: 0]
  ------------------
 2449|      0|      return 10217;
 2450|      0|    }
 2451|      0|    break;
 2452|       |    /* RightArrow */
 2453|      0|  case 0xb5425055fee5b0e6ULL:
  ------------------
  |  Branch (2453:3): [True: 0, False: 516k]
  ------------------
 2454|      0|    if (len == 10) {
  ------------------
  |  Branch (2454:9): [True: 0, False: 0]
  ------------------
 2455|      0|      return 8594;
 2456|      0|    }
 2457|      0|    break;
 2458|       |    /* RightArrowBar */
 2459|      0|  case 0xcd28545e1d0aa8dfULL:
  ------------------
  |  Branch (2459:3): [True: 0, False: 516k]
  ------------------
 2460|      0|    if (len == 13) {
  ------------------
  |  Branch (2460:9): [True: 0, False: 0]
  ------------------
 2461|      0|      return 8677;
 2462|      0|    }
 2463|      0|    break;
 2464|       |    /* RightArrowLeftArrow */
 2465|      0|  case 0x27472ba8417a65f8ULL:
  ------------------
  |  Branch (2465:3): [True: 0, False: 516k]
  ------------------
 2466|      0|    if (len == 19) {
  ------------------
  |  Branch (2466:9): [True: 0, False: 0]
  ------------------
 2467|      0|      return 8644;
 2468|      0|    }
 2469|      0|    break;
 2470|       |    /* RightCeiling */
 2471|      0|  case 0xa1d4122384f82fe0ULL:
  ------------------
  |  Branch (2471:3): [True: 0, False: 516k]
  ------------------
 2472|      0|    if (len == 12) {
  ------------------
  |  Branch (2472:9): [True: 0, False: 0]
  ------------------
 2473|      0|      return 8969;
 2474|      0|    }
 2475|      0|    break;
 2476|       |    /* RightDoubleBracket */
 2477|      0|  case 0x52ba4ef5a4b437e4ULL:
  ------------------
  |  Branch (2477:3): [True: 0, False: 516k]
  ------------------
 2478|      0|    if (len == 18) {
  ------------------
  |  Branch (2478:9): [True: 0, False: 0]
  ------------------
 2479|      0|      return 10215;
 2480|      0|    }
 2481|      0|    break;
 2482|       |    /* RightDownTeeVector */
 2483|      0|  case 0x88a6c3c17f791402ULL:
  ------------------
  |  Branch (2483:3): [True: 0, False: 516k]
  ------------------
 2484|      0|    if (len == 18) {
  ------------------
  |  Branch (2484:9): [True: 0, False: 0]
  ------------------
 2485|      0|      return 10589;
 2486|      0|    }
 2487|      0|    break;
 2488|       |    /* RightDownVector */
 2489|      0|  case 0xabee0bb46680af52ULL:
  ------------------
  |  Branch (2489:3): [True: 0, False: 516k]
  ------------------
 2490|      0|    if (len == 15) {
  ------------------
  |  Branch (2490:9): [True: 0, False: 0]
  ------------------
 2491|      0|      return 8642;
 2492|      0|    }
 2493|      0|    break;
 2494|       |    /* RightDownVectorBar */
 2495|      0|  case 0x4f1e540e5d766623ULL:
  ------------------
  |  Branch (2495:3): [True: 0, False: 516k]
  ------------------
 2496|      0|    if (len == 18) {
  ------------------
  |  Branch (2496:9): [True: 0, False: 0]
  ------------------
 2497|      0|      return 10581;
 2498|      0|    }
 2499|      0|    break;
 2500|       |    /* RightFloor */
 2501|      0|  case 0x05e5b6490d006d5dULL:
  ------------------
  |  Branch (2501:3): [True: 0, False: 516k]
  ------------------
 2502|      0|    if (len == 10) {
  ------------------
  |  Branch (2502:9): [True: 0, False: 0]
  ------------------
 2503|      0|      return 8971;
 2504|      0|    }
 2505|      0|    break;
 2506|       |    /* RightTee */
 2507|      0|  case 0x251f340fd52e2bb5ULL:
  ------------------
  |  Branch (2507:3): [True: 0, False: 516k]
  ------------------
 2508|      0|    if (len == 8) {
  ------------------
  |  Branch (2508:9): [True: 0, False: 0]
  ------------------
 2509|      0|      return 8866;
 2510|      0|    }
 2511|      0|    break;
 2512|       |    /* RightTeeArrow */
 2513|      0|  case 0xc49012cc4de17276ULL:
  ------------------
  |  Branch (2513:3): [True: 0, False: 516k]
  ------------------
 2514|      0|    if (len == 13) {
  ------------------
  |  Branch (2514:9): [True: 0, False: 0]
  ------------------
 2515|      0|      return 8614;
 2516|      0|    }
 2517|      0|    break;
 2518|       |    /* RightTeeVector */
 2519|      0|  case 0x38e881b1ca083492ULL:
  ------------------
  |  Branch (2519:3): [True: 0, False: 516k]
  ------------------
 2520|      0|    if (len == 14) {
  ------------------
  |  Branch (2520:9): [True: 0, False: 0]
  ------------------
 2521|      0|      return 10587;
 2522|      0|    }
 2523|      0|    break;
 2524|       |    /* RightTriangle */
 2525|      0|  case 0x8c610a365331b525ULL:
  ------------------
  |  Branch (2525:3): [True: 0, False: 516k]
  ------------------
 2526|      0|    if (len == 13) {
  ------------------
  |  Branch (2526:9): [True: 0, False: 0]
  ------------------
 2527|      0|      return 8883;
 2528|      0|    }
 2529|      0|    break;
 2530|       |    /* RightTriangleBar */
 2531|      0|  case 0xf9af9a853133257aULL:
  ------------------
  |  Branch (2531:3): [True: 0, False: 516k]
  ------------------
 2532|      0|    if (len == 16) {
  ------------------
  |  Branch (2532:9): [True: 0, False: 0]
  ------------------
 2533|      0|      return 10704;
 2534|      0|    }
 2535|      0|    break;
 2536|       |    /* RightTriangleEqual */
 2537|      0|  case 0xff8eb5b514d2c30fULL:
  ------------------
  |  Branch (2537:3): [True: 0, False: 516k]
  ------------------
 2538|      0|    if (len == 18) {
  ------------------
  |  Branch (2538:9): [True: 0, False: 0]
  ------------------
 2539|      0|      return 8885;
 2540|      0|    }
 2541|      0|    break;
 2542|       |    /* RightUpDownVector */
 2543|      0|  case 0x648ebeae3a7b977bULL:
  ------------------
  |  Branch (2543:3): [True: 0, False: 516k]
  ------------------
 2544|      0|    if (len == 17) {
  ------------------
  |  Branch (2544:9): [True: 0, False: 0]
  ------------------
 2545|      0|      return 10575;
 2546|      0|    }
 2547|      0|    break;
 2548|       |    /* RightUpTeeVector */
 2549|      0|  case 0xb7b38e76f29e7bf1ULL:
  ------------------
  |  Branch (2549:3): [True: 0, False: 516k]
  ------------------
 2550|      0|    if (len == 16) {
  ------------------
  |  Branch (2550:9): [True: 0, False: 0]
  ------------------
 2551|      0|      return 10588;
 2552|      0|    }
 2553|      0|    break;
 2554|       |    /* RightUpVector */
 2555|      0|  case 0x498d9e788bebc62fULL:
  ------------------
  |  Branch (2555:3): [True: 0, False: 516k]
  ------------------
 2556|      0|    if (len == 13) {
  ------------------
  |  Branch (2556:9): [True: 0, False: 0]
  ------------------
 2557|      0|      return 8638;
 2558|      0|    }
 2559|      0|    break;
 2560|       |    /* RightUpVectorBar */
 2561|      0|  case 0x347f4d33261280f0ULL:
  ------------------
  |  Branch (2561:3): [True: 0, False: 516k]
  ------------------
 2562|      0|    if (len == 16) {
  ------------------
  |  Branch (2562:9): [True: 0, False: 0]
  ------------------
 2563|      0|      return 10580;
 2564|      0|    }
 2565|      0|    break;
 2566|       |    /* RightVector */
 2567|      0|  case 0xd08c6d4f47c1cba2ULL:
  ------------------
  |  Branch (2567:3): [True: 0, False: 516k]
  ------------------
 2568|      0|    if (len == 11) {
  ------------------
  |  Branch (2568:9): [True: 0, False: 0]
  ------------------
 2569|      0|      return 8640;
 2570|      0|    }
 2571|      0|    break;
 2572|       |    /* RightVectorBar */
 2573|      0|  case 0x362ec835ae39f533ULL:
  ------------------
  |  Branch (2573:3): [True: 0, False: 516k]
  ------------------
 2574|      0|    if (len == 14) {
  ------------------
  |  Branch (2574:9): [True: 0, False: 0]
  ------------------
 2575|      0|      return 10579;
 2576|      0|    }
 2577|      0|    break;
 2578|       |    /* Rightarrow */
 2579|      0|  case 0xf58368ef8cd21186ULL:
  ------------------
  |  Branch (2579:3): [True: 0, False: 516k]
  ------------------
 2580|      0|    if (len == 10) {
  ------------------
  |  Branch (2580:9): [True: 0, False: 0]
  ------------------
 2581|      0|      return 8658;
 2582|      0|    }
 2583|      0|    break;
 2584|       |    /* Ropf */
 2585|    194|  case 0xcadf1a2befa4ac94ULL:
  ------------------
  |  Branch (2585:3): [True: 194, False: 516k]
  ------------------
 2586|    194|    if (len == 4) {
  ------------------
  |  Branch (2586:9): [True: 194, False: 0]
  ------------------
 2587|    194|      return 8477;
 2588|    194|    }
 2589|      0|    break;
 2590|       |    /* RoundImplies */
 2591|      0|  case 0xed8d96dd2b116e98ULL:
  ------------------
  |  Branch (2591:3): [True: 0, False: 516k]
  ------------------
 2592|      0|    if (len == 12) {
  ------------------
  |  Branch (2592:9): [True: 0, False: 0]
  ------------------
 2593|      0|      return 10608;
 2594|      0|    }
 2595|      0|    break;
 2596|       |    /* Rrightarrow */
 2597|      0|  case 0x01a97e4106c767d6ULL:
  ------------------
  |  Branch (2597:3): [True: 0, False: 516k]
  ------------------
 2598|      0|    if (len == 11) {
  ------------------
  |  Branch (2598:9): [True: 0, False: 0]
  ------------------
 2599|      0|      return 8667;
 2600|      0|    }
 2601|      0|    break;
 2602|       |    /* Rscr */
 2603|    194|  case 0x1d67c42b8d53c5e3ULL:
  ------------------
  |  Branch (2603:3): [True: 194, False: 516k]
  ------------------
 2604|    194|    if (len == 4) {
  ------------------
  |  Branch (2604:9): [True: 194, False: 0]
  ------------------
 2605|    194|      return 8475;
 2606|    194|    }
 2607|      0|    break;
 2608|       |    /* Rsh */
 2609|    194|  case 0x9fcfe619fe8f42aeULL:
  ------------------
  |  Branch (2609:3): [True: 194, False: 516k]
  ------------------
 2610|    194|    if (len == 3) {
  ------------------
  |  Branch (2610:9): [True: 194, False: 0]
  ------------------
 2611|    194|      return 8625;
 2612|    194|    }
 2613|      0|    break;
 2614|       |    /* RuleDelayed */
 2615|      0|  case 0x2f8aa750c9d2eab3ULL:
  ------------------
  |  Branch (2615:3): [True: 0, False: 516k]
  ------------------
 2616|      0|    if (len == 11) {
  ------------------
  |  Branch (2616:9): [True: 0, False: 0]
  ------------------
 2617|      0|      return 10740;
 2618|      0|    }
 2619|      0|    break;
 2620|       |    /* SHCHcy */
 2621|    194|  case 0xadde7216d592e7f9ULL:
  ------------------
  |  Branch (2621:3): [True: 194, False: 516k]
  ------------------
 2622|    194|    if (len == 6) {
  ------------------
  |  Branch (2622:9): [True: 194, False: 0]
  ------------------
 2623|    194|      return 1065;
 2624|    194|    }
 2625|      0|    break;
 2626|       |    /* SHcy */
 2627|    194|  case 0x5b8a4e244668aa1aULL:
  ------------------
  |  Branch (2627:3): [True: 194, False: 516k]
  ------------------
 2628|    194|    if (len == 4) {
  ------------------
  |  Branch (2628:9): [True: 194, False: 0]
  ------------------
 2629|    194|      return 1064;
 2630|    194|    }
 2631|      0|    break;
 2632|       |    /* SOFTcy */
 2633|      0|  case 0x1dc7ef41bdbd3a61ULL:
  ------------------
  |  Branch (2633:3): [True: 0, False: 516k]
  ------------------
 2634|      0|    if (len == 6) {
  ------------------
  |  Branch (2634:9): [True: 0, False: 0]
  ------------------
 2635|      0|      return 1068;
 2636|      0|    }
 2637|      0|    break;
 2638|       |    /* Sacute */
 2639|    194|  case 0x4119e342730ef3beULL:
  ------------------
  |  Branch (2639:3): [True: 194, False: 516k]
  ------------------
 2640|    194|    if (len == 6) {
  ------------------
  |  Branch (2640:9): [True: 194, False: 0]
  ------------------
 2641|    194|      return 346;
 2642|    194|    }
 2643|      0|    break;
 2644|       |    /* Sc */
 2645|    201|  case 0x09462d07b5d5f153ULL:
  ------------------
  |  Branch (2645:3): [True: 201, False: 516k]
  ------------------
 2646|    201|    if (len == 2) {
  ------------------
  |  Branch (2646:9): [True: 201, False: 0]
  ------------------
 2647|    201|      return 10940;
 2648|    201|    }
 2649|      0|    break;
 2650|       |    /* Scaron */
 2651|    194|  case 0xdd0c52c6a6e1e515ULL:
  ------------------
  |  Branch (2651:3): [True: 194, False: 516k]
  ------------------
 2652|    194|    if (len == 6) {
  ------------------
  |  Branch (2652:9): [True: 194, False: 0]
  ------------------
 2653|    194|      return 352;
 2654|    194|    }
 2655|      0|    break;
 2656|       |    /* Scedil */
 2657|    194|  case 0x47d74ee9a74f5037ULL:
  ------------------
  |  Branch (2657:3): [True: 194, False: 516k]
  ------------------
 2658|    194|    if (len == 6) {
  ------------------
  |  Branch (2658:9): [True: 194, False: 0]
  ------------------
 2659|    194|      return 350;
 2660|    194|    }
 2661|      0|    break;
 2662|       |    /* Scirc */
 2663|    194|  case 0x6f00fb624fd384d5ULL:
  ------------------
  |  Branch (2663:3): [True: 194, False: 516k]
  ------------------
 2664|    194|    if (len == 5) {
  ------------------
  |  Branch (2664:9): [True: 194, False: 0]
  ------------------
 2665|    194|      return 348;
 2666|    194|    }
 2667|      0|    break;
 2668|       |    /* Scy */
 2669|    195|  case 0x982fae19fa88ca5eULL:
  ------------------
  |  Branch (2669:3): [True: 195, False: 516k]
  ------------------
 2670|    195|    if (len == 3) {
  ------------------
  |  Branch (2670:9): [True: 195, False: 0]
  ------------------
 2671|    195|      return 1057;
 2672|    195|    }
 2673|      0|    break;
 2674|       |    /* Sfr */
 2675|    194|  case 0x9839bb19fa9134faULL:
  ------------------
  |  Branch (2675:3): [True: 194, False: 516k]
  ------------------
 2676|    194|    if (len == 3) {
  ------------------
  |  Branch (2676:9): [True: 194, False: 0]
  ------------------
 2677|    194|      return 120086;
 2678|    194|    }
 2679|      0|    break;
 2680|       |    /* ShortDownArrow */
 2681|      0|  case 0xfaa37870c3f79a66ULL:
  ------------------
  |  Branch (2681:3): [True: 0, False: 516k]
  ------------------
 2682|      0|    if (len == 14) {
  ------------------
  |  Branch (2682:9): [True: 0, False: 0]
  ------------------
 2683|      0|      return 8595;
 2684|      0|    }
 2685|      0|    break;
 2686|       |    /* ShortLeftArrow */
 2687|      0|  case 0xe5e01429a53c1a79ULL:
  ------------------
  |  Branch (2687:3): [True: 0, False: 516k]
  ------------------
 2688|      0|    if (len == 14) {
  ------------------
  |  Branch (2688:9): [True: 0, False: 0]
  ------------------
 2689|      0|      return 8592;
 2690|      0|    }
 2691|      0|    break;
 2692|       |    /* ShortRightArrow */
 2693|      0|  case 0xfc598140016b2fd6ULL:
  ------------------
  |  Branch (2693:3): [True: 0, False: 516k]
  ------------------
 2694|      0|    if (len == 15) {
  ------------------
  |  Branch (2694:9): [True: 0, False: 0]
  ------------------
 2695|      0|      return 8594;
 2696|      0|    }
 2697|      0|    break;
 2698|       |    /* ShortUpArrow */
 2699|      0|  case 0x9f1b5e93d07e5129ULL:
  ------------------
  |  Branch (2699:3): [True: 0, False: 516k]
  ------------------
 2700|      0|    if (len == 12) {
  ------------------
  |  Branch (2700:9): [True: 0, False: 0]
  ------------------
 2701|      0|      return 8593;
 2702|      0|    }
 2703|      0|    break;
 2704|       |    /* Sigma */
 2705|    194|  case 0x9bc213b5a2a7f9f4ULL:
  ------------------
  |  Branch (2705:3): [True: 194, False: 516k]
  ------------------
 2706|    194|    if (len == 5) {
  ------------------
  |  Branch (2706:9): [True: 194, False: 0]
  ------------------
 2707|    194|      return 931;
 2708|    194|    }
 2709|      0|    break;
 2710|       |    /* SmallCircle */
 2711|      0|  case 0x61b6a822d983fc20ULL:
  ------------------
  |  Branch (2711:3): [True: 0, False: 516k]
  ------------------
 2712|      0|    if (len == 11) {
  ------------------
  |  Branch (2712:9): [True: 0, False: 0]
  ------------------
 2713|      0|      return 8728;
 2714|      0|    }
 2715|      0|    break;
 2716|       |    /* Sopf */
 2717|    194|  case 0x8a82cc24f1f494d9ULL:
  ------------------
  |  Branch (2717:3): [True: 194, False: 516k]
  ------------------
 2718|    194|    if (len == 4) {
  ------------------
  |  Branch (2718:9): [True: 194, False: 0]
  ------------------
 2719|    194|      return 120138;
 2720|    194|    }
 2721|      0|    break;
 2722|       |    /* Sqrt */
 2723|    194|  case 0xbd3bd0250e546fafULL:
  ------------------
  |  Branch (2723:3): [True: 194, False: 516k]
  ------------------
 2724|    194|    if (len == 4) {
  ------------------
  |  Branch (2724:9): [True: 194, False: 0]
  ------------------
 2725|    194|      return 8730;
 2726|    194|    }
 2727|      0|    break;
 2728|       |    /* Square */
 2729|    195|  case 0x6641c258b0b51b26ULL:
  ------------------
  |  Branch (2729:3): [True: 195, False: 516k]
  ------------------
 2730|    195|    if (len == 6) {
  ------------------
  |  Branch (2730:9): [True: 195, False: 0]
  ------------------
 2731|    195|      return 9633;
 2732|    195|    }
 2733|      0|    break;
 2734|       |    /* SquareIntersection */
 2735|      0|  case 0xde49b67dc69f881bULL:
  ------------------
  |  Branch (2735:3): [True: 0, False: 516k]
  ------------------
 2736|      0|    if (len == 18) {
  ------------------
  |  Branch (2736:9): [True: 0, False: 0]
  ------------------
 2737|      0|      return 8851;
 2738|      0|    }
 2739|      0|    break;
 2740|       |    /* SquareSubset */
 2741|    194|  case 0x2ee213c52a70c2ccULL:
  ------------------
  |  Branch (2741:3): [True: 194, False: 516k]
  ------------------
 2742|    194|    if (len == 12) {
  ------------------
  |  Branch (2742:9): [True: 194, False: 0]
  ------------------
 2743|    194|      return 8847;
 2744|    194|    }
 2745|      0|    break;
 2746|       |    /* SquareSubsetEqual */
 2747|    194|  case 0xc712ce8965b77524ULL:
  ------------------
  |  Branch (2747:3): [True: 194, False: 516k]
  ------------------
 2748|    194|    if (len == 17) {
  ------------------
  |  Branch (2748:9): [True: 194, False: 0]
  ------------------
 2749|    194|      return 8849;
 2750|    194|    }
 2751|      0|    break;
 2752|       |    /* SquareSuperset */
 2753|    194|  case 0x04cc07079dd958dbULL:
  ------------------
  |  Branch (2753:3): [True: 194, False: 516k]
  ------------------
 2754|    194|    if (len == 14) {
  ------------------
  |  Branch (2754:9): [True: 194, False: 0]
  ------------------
 2755|    194|      return 8848;
 2756|    194|    }
 2757|      0|    break;
 2758|       |    /* SquareSupersetEqual */
 2759|    194|  case 0xc40aacf4858424a1ULL:
  ------------------
  |  Branch (2759:3): [True: 194, False: 516k]
  ------------------
 2760|    194|    if (len == 19) {
  ------------------
  |  Branch (2760:9): [True: 194, False: 0]
  ------------------
 2761|    194|      return 8850;
 2762|    194|    }
 2763|      0|    break;
 2764|       |    /* SquareUnion */
 2765|    194|  case 0x6cb56b6d3ca9d76dULL:
  ------------------
  |  Branch (2765:3): [True: 194, False: 516k]
  ------------------
 2766|    194|    if (len == 11) {
  ------------------
  |  Branch (2766:9): [True: 194, False: 0]
  ------------------
 2767|    194|      return 8852;
 2768|    194|    }
 2769|      0|    break;
 2770|       |    /* Sscr */
 2771|    194|  case 0xae2e7a25067304d6ULL:
  ------------------
  |  Branch (2771:3): [True: 194, False: 516k]
  ------------------
 2772|    194|    if (len == 4) {
  ------------------
  |  Branch (2772:9): [True: 194, False: 0]
  ------------------
 2773|    194|      return 119982;
 2774|    194|    }
 2775|      0|    break;
 2776|       |    /* Star */
 2777|    194|  case 0xd98b59251f065471ULL:
  ------------------
  |  Branch (2777:3): [True: 194, False: 516k]
  ------------------
 2778|    194|    if (len == 4) {
  ------------------
  |  Branch (2778:9): [True: 194, False: 0]
  ------------------
 2779|    194|      return 8902;
 2780|    194|    }
 2781|      0|    break;
 2782|       |    /* Sub */
 2783|    194|  case 0x987abd19fac8cf55ULL:
  ------------------
  |  Branch (2783:3): [True: 194, False: 516k]
  ------------------
 2784|    194|    if (len == 3) {
  ------------------
  |  Branch (2784:9): [True: 194, False: 0]
  ------------------
 2785|    194|      return 8912;
 2786|    194|    }
 2787|      0|    break;
 2788|       |    /* Subset */
 2789|    194|  case 0x18ed119d4617c5f3ULL:
  ------------------
  |  Branch (2789:3): [True: 194, False: 516k]
  ------------------
 2790|    194|    if (len == 6) {
  ------------------
  |  Branch (2790:9): [True: 194, False: 0]
  ------------------
 2791|    194|      return 8912;
 2792|    194|    }
 2793|      0|    break;
 2794|       |    /* SubsetEqual */
 2795|    194|  case 0xdf506417c0f18db9ULL:
  ------------------
  |  Branch (2795:3): [True: 194, False: 516k]
  ------------------
 2796|    194|    if (len == 11) {
  ------------------
  |  Branch (2796:9): [True: 194, False: 0]
  ------------------
 2797|    194|      return 8838;
 2798|    194|    }
 2799|      0|    break;
 2800|       |    /* Succeeds */
 2801|      0|  case 0x69c0d1f2cb4ace40ULL:
  ------------------
  |  Branch (2801:3): [True: 0, False: 516k]
  ------------------
 2802|      0|    if (len == 8) {
  ------------------
  |  Branch (2802:9): [True: 0, False: 0]
  ------------------
 2803|      0|      return 8827;
 2804|      0|    }
 2805|      0|    break;
 2806|       |    /* SucceedsEqual */
 2807|      0|  case 0x0a5f3ce3592986b8ULL:
  ------------------
  |  Branch (2807:3): [True: 0, False: 516k]
  ------------------
 2808|      0|    if (len == 13) {
  ------------------
  |  Branch (2808:9): [True: 0, False: 0]
  ------------------
 2809|      0|      return 10928;
 2810|      0|    }
 2811|      0|    break;
 2812|       |    /* SucceedsSlantEqual */
 2813|      0|  case 0xa9bfced333aad090ULL:
  ------------------
  |  Branch (2813:3): [True: 0, False: 516k]
  ------------------
 2814|      0|    if (len == 18) {
  ------------------
  |  Branch (2814:9): [True: 0, False: 0]
  ------------------
 2815|      0|      return 8829;
 2816|      0|    }
 2817|      0|    break;
 2818|       |    /* SucceedsTilde */
 2819|      0|  case 0x134cdeb4a59e5626ULL:
  ------------------
  |  Branch (2819:3): [True: 0, False: 516k]
  ------------------
 2820|      0|    if (len == 13) {
  ------------------
  |  Branch (2820:9): [True: 0, False: 0]
  ------------------
 2821|      0|      return 8831;
 2822|      0|    }
 2823|      0|    break;
 2824|       |    /* SuchThat */
 2825|      0|  case 0x8a2b64eac6476157ULL:
  ------------------
  |  Branch (2825:3): [True: 0, False: 516k]
  ------------------
 2826|      0|    if (len == 8) {
  ------------------
  |  Branch (2826:9): [True: 0, False: 0]
  ------------------
 2827|      0|      return 8715;
 2828|      0|    }
 2829|      0|    break;
 2830|       |    /* Sum */
 2831|    194|  case 0x987abe19fac8d108ULL:
  ------------------
  |  Branch (2831:3): [True: 194, False: 516k]
  ------------------
 2832|    194|    if (len == 3) {
  ------------------
  |  Branch (2832:9): [True: 194, False: 0]
  ------------------
 2833|    194|      return 8721;
 2834|    194|    }
 2835|      0|    break;
 2836|       |    /* Sup */
 2837|    195|  case 0x987aab19fac8b0bfULL:
  ------------------
  |  Branch (2837:3): [True: 195, False: 516k]
  ------------------
 2838|    195|    if (len == 3) {
  ------------------
  |  Branch (2838:9): [True: 195, False: 0]
  ------------------
 2839|    195|      return 8913;
 2840|    195|    }
 2841|      0|    break;
 2842|       |    /* Superset */
 2843|    194|  case 0x5688dd461524eb3cULL:
  ------------------
  |  Branch (2843:3): [True: 194, False: 516k]
  ------------------
 2844|    194|    if (len == 8) {
  ------------------
  |  Branch (2844:9): [True: 194, False: 0]
  ------------------
 2845|    194|      return 8835;
 2846|    194|    }
 2847|      0|    break;
 2848|       |    /* SupersetEqual */
 2849|    194|  case 0x897e6ca84a1c6334ULL:
  ------------------
  |  Branch (2849:3): [True: 194, False: 516k]
  ------------------
 2850|    194|    if (len == 13) {
  ------------------
  |  Branch (2850:9): [True: 194, False: 0]
  ------------------
 2851|    194|      return 8839;
 2852|    194|    }
 2853|      0|    break;
 2854|       |    /* Supset */
 2855|    194|  case 0xe010a5085bdf8465ULL:
  ------------------
  |  Branch (2855:3): [True: 194, False: 516k]
  ------------------
 2856|    194|    if (len == 6) {
  ------------------
  |  Branch (2856:9): [True: 194, False: 0]
  ------------------
 2857|    194|      return 8913;
 2858|    194|    }
 2859|      0|    break;
 2860|       |    /* THORN */
 2861|      0|  case 0xec4e33cd9cb871a2ULL:
  ------------------
  |  Branch (2861:3): [True: 0, False: 516k]
  ------------------
 2862|      0|    if (len == 5) {
  ------------------
  |  Branch (2862:9): [True: 0, False: 0]
  ------------------
 2863|      0|      return 222;
 2864|      0|    }
 2865|      0|    break;
 2866|       |    /* TRADE */
 2867|      0|  case 0x89899501d2e44439ULL:
  ------------------
  |  Branch (2867:3): [True: 0, False: 516k]
  ------------------
 2868|      0|    if (len == 5) {
  ------------------
  |  Branch (2868:9): [True: 0, False: 0]
  ------------------
 2869|      0|      return 8482;
 2870|      0|    }
 2871|      0|    break;
 2872|       |    /* TSHcy */
 2873|    194|  case 0xe2711ff7348ddd18ULL:
  ------------------
  |  Branch (2873:3): [True: 194, False: 516k]
  ------------------
 2874|    194|    if (len == 5) {
  ------------------
  |  Branch (2874:9): [True: 194, False: 0]
  ------------------
 2875|    194|      return 1035;
 2876|    194|    }
 2877|      0|    break;
 2878|       |    /* TScy */
 2879|    194|  case 0x654e60faae7cf810ULL:
  ------------------
  |  Branch (2879:3): [True: 194, False: 516k]
  ------------------
 2880|    194|    if (len == 4) {
  ------------------
  |  Branch (2880:9): [True: 194, False: 0]
  ------------------
 2881|    194|      return 1062;
 2882|    194|    }
 2883|      0|    break;
 2884|       |    /* Tab */
 2885|    194|  case 0x6ce0ce19e201b66cULL:
  ------------------
  |  Branch (2885:3): [True: 194, False: 516k]
  ------------------
 2886|    194|    if (len == 3) {
  ------------------
  |  Branch (2886:9): [True: 194, False: 0]
  ------------------
 2887|    194|      return 9;
 2888|    194|    }
 2889|      0|    break;
 2890|       |    /* Tau */
 2891|    194|  case 0x6ce0dd19e201cfe9ULL:
  ------------------
  |  Branch (2891:3): [True: 194, False: 516k]
  ------------------
 2892|    194|    if (len == 3) {
  ------------------
  |  Branch (2892:9): [True: 194, False: 0]
  ------------------
 2893|    194|      return 932;
 2894|    194|    }
 2895|      0|    break;
 2896|       |    /* Tcaron */
 2897|    194|  case 0xb475e59941520c0eULL:
  ------------------
  |  Branch (2897:3): [True: 194, False: 516k]
  ------------------
 2898|    194|    if (len == 6) {
  ------------------
  |  Branch (2898:9): [True: 194, False: 0]
  ------------------
 2899|    194|      return 356;
 2900|    194|    }
 2901|      0|    break;
 2902|       |    /* Tcedil */
 2903|    194|  case 0x025bf9bd52d269dcULL:
  ------------------
  |  Branch (2903:3): [True: 194, False: 516k]
  ------------------
 2904|    194|    if (len == 6) {
  ------------------
  |  Branch (2904:9): [True: 194, False: 0]
  ------------------
 2905|    194|      return 354;
 2906|    194|    }
 2907|      0|    break;
 2908|       |    /* Tcy */
 2909|    194|  case 0x6cd9dd19e1fbb13bULL:
  ------------------
  |  Branch (2909:3): [True: 194, False: 516k]
  ------------------
 2910|    194|    if (len == 3) {
  ------------------
  |  Branch (2910:9): [True: 194, False: 0]
  ------------------
 2911|    194|      return 1058;
 2912|    194|    }
 2913|      0|    break;
 2914|       |    /* Tfr */
 2915|    194|  case 0x6ceaf019e20a44b7ULL:
  ------------------
  |  Branch (2915:3): [True: 194, False: 516k]
  ------------------
 2916|    194|    if (len == 3) {
  ------------------
  |  Branch (2916:9): [True: 194, False: 0]
  ------------------
 2917|    194|      return 120087;
 2918|    194|    }
 2919|      0|    break;
 2920|       |    /* Therefore */
 2921|    194|  case 0x5dffcbfbc2221217ULL:
  ------------------
  |  Branch (2921:3): [True: 194, False: 516k]
  ------------------
 2922|    194|    if (len == 9) {
  ------------------
  |  Branch (2922:9): [True: 194, False: 0]
  ------------------
 2923|    194|      return 8756;
 2924|    194|    }
 2925|      0|    break;
 2926|       |    /* Theta */
 2927|    194|  case 0xaa999dd8cfb57a7bULL:
  ------------------
  |  Branch (2927:3): [True: 194, False: 516k]
  ------------------
 2928|    194|    if (len == 5) {
  ------------------
  |  Branch (2928:9): [True: 194, False: 0]
  ------------------
 2929|    194|      return 920;
 2930|    194|    }
 2931|      0|    break;
 2932|       |    /* ThinSpace */
 2933|      0|  case 0xdcde7f4e7c4cba5cULL:
  ------------------
  |  Branch (2933:3): [True: 0, False: 516k]
  ------------------
 2934|      0|    if (len == 9) {
  ------------------
  |  Branch (2934:9): [True: 0, False: 0]
  ------------------
 2935|      0|      return 8201;
 2936|      0|    }
 2937|      0|    break;
 2938|       |    /* Tilde */
 2939|    196|  case 0xde7e58d2a4ce8a29ULL:
  ------------------
  |  Branch (2939:3): [True: 196, False: 516k]
  ------------------
 2940|    196|    if (len == 5) {
  ------------------
  |  Branch (2940:9): [True: 196, False: 0]
  ------------------
 2941|    196|      return 8764;
 2942|    196|    }
 2943|      0|    break;
 2944|       |    /* TildeEqual */
 2945|    194|  case 0xdc2e936c5c4d3903ULL:
  ------------------
  |  Branch (2945:3): [True: 194, False: 516k]
  ------------------
 2946|    194|    if (len == 10) {
  ------------------
  |  Branch (2946:9): [True: 194, False: 0]
  ------------------
 2947|    194|      return 8771;
 2948|    194|    }
 2949|      0|    break;
 2950|       |    /* TildeFullEqual */
 2951|      0|  case 0xdbd76c3107638a88ULL:
  ------------------
  |  Branch (2951:3): [True: 0, False: 516k]
  ------------------
 2952|      0|    if (len == 14) {
  ------------------
  |  Branch (2952:9): [True: 0, False: 0]
  ------------------
 2953|      0|      return 8773;
 2954|      0|    }
 2955|      0|    break;
 2956|       |    /* TildeTilde */
 2957|    194|  case 0xf61bf8aa5e9d5985ULL:
  ------------------
  |  Branch (2957:3): [True: 194, False: 516k]
  ------------------
 2958|    194|    if (len == 10) {
  ------------------
  |  Branch (2958:9): [True: 194, False: 0]
  ------------------
 2959|    194|      return 8776;
 2960|    194|    }
 2961|      0|    break;
 2962|       |    /* Topf */
 2963|    194|  case 0x5a90f9fb3a2d84ceULL:
  ------------------
  |  Branch (2963:3): [True: 194, False: 516k]
  ------------------
 2964|    194|    if (len == 4) {
  ------------------
  |  Branch (2964:9): [True: 194, False: 0]
  ------------------
 2965|    194|      return 120139;
 2966|    194|    }
 2967|      0|    break;
 2968|       |    /* TripleDot */
 2969|    194|  case 0x2943db10714e24b0ULL:
  ------------------
  |  Branch (2969:3): [True: 194, False: 516k]
  ------------------
 2970|    194|    if (len == 9) {
  ------------------
  |  Branch (2970:9): [True: 194, False: 0]
  ------------------
 2971|    194|      return 8411;
 2972|    194|    }
 2973|      0|    break;
 2974|       |    /* Tscr */
 2975|    198|  case 0x7b578bfb4c361721ULL:
  ------------------
  |  Branch (2975:3): [True: 198, False: 516k]
  ------------------
 2976|    198|    if (len == 4) {
  ------------------
  |  Branch (2976:9): [True: 198, False: 0]
  ------------------
 2977|    198|      return 119983;
 2978|    198|    }
 2979|      0|    break;
 2980|       |    /* Tstrok */
 2981|    194|  case 0xed6140c24c952a4cULL:
  ------------------
  |  Branch (2981:3): [True: 194, False: 516k]
  ------------------
 2982|    194|    if (len == 6) {
  ------------------
  |  Branch (2982:9): [True: 194, False: 0]
  ------------------
 2983|    194|      return 358;
 2984|    194|    }
 2985|      0|    break;
 2986|       |    /* Uacute */
 2987|    194|  case 0x866ff29b7a03848cULL:
  ------------------
  |  Branch (2987:3): [True: 194, False: 516k]
  ------------------
 2988|    194|    if (len == 6) {
  ------------------
  |  Branch (2988:9): [True: 194, False: 0]
  ------------------
 2989|    194|      return 218;
 2990|    194|    }
 2991|      0|    break;
 2992|       |    /* Uarr */
 2993|    195|  case 0x1ed2b9f047406443ULL:
  ------------------
  |  Branch (2993:3): [True: 195, False: 516k]
  ------------------
 2994|    195|    if (len == 4) {
  ------------------
  |  Branch (2994:9): [True: 195, False: 0]
  ------------------
 2995|    195|      return 8607;
 2996|    195|    }
 2997|      0|    break;
 2998|       |    /* Uarrocir */
 2999|    194|  case 0x1556e5c69b94ecc2ULL:
  ------------------
  |  Branch (2999:3): [True: 194, False: 516k]
  ------------------
 3000|    194|    if (len == 8) {
  ------------------
  |  Branch (3000:9): [True: 194, False: 0]
  ------------------
 3001|    194|      return 10569;
 3002|    194|    }
 3003|      0|    break;
 3004|       |    /* Ubrcy */
 3005|    194|  case 0x00bd274f918076acULL:
  ------------------
  |  Branch (3005:3): [True: 194, False: 516k]
  ------------------
 3006|    194|    if (len == 5) {
  ------------------
  |  Branch (3006:9): [True: 194, False: 0]
  ------------------
 3007|    194|      return 1038;
 3008|    194|    }
 3009|      0|    break;
 3010|       |    /* Ubreve */
 3011|    194|  case 0x8f539334210f3b06ULL:
  ------------------
  |  Branch (3011:3): [True: 194, False: 516k]
  ------------------
 3012|    194|    if (len == 6) {
  ------------------
  |  Branch (3012:9): [True: 194, False: 0]
  ------------------
 3013|    194|      return 364;
 3014|    194|    }
 3015|      0|    break;
 3016|       |    /* Ucirc */
 3017|    194|  case 0x439d785a8808882fULL:
  ------------------
  |  Branch (3017:3): [True: 194, False: 516k]
  ------------------
 3018|    194|    if (len == 5) {
  ------------------
  |  Branch (3018:9): [True: 194, False: 0]
  ------------------
 3019|    194|      return 219;
 3020|    194|    }
 3021|      0|    break;
 3022|       |    /* Ucy */
 3023|    194|  case 0x6291b419dbb35270ULL:
  ------------------
  |  Branch (3023:3): [True: 194, False: 516k]
  ------------------
 3024|    194|    if (len == 3) {
  ------------------
  |  Branch (3024:9): [True: 194, False: 0]
  ------------------
 3025|    194|      return 1059;
 3026|    194|    }
 3027|      0|    break;
 3028|       |    /* Udblac */
 3029|    194|  case 0x1d3451455f7cd4aeULL:
  ------------------
  |  Branch (3029:3): [True: 194, False: 516k]
  ------------------
 3030|    194|    if (len == 6) {
  ------------------
  |  Branch (3030:9): [True: 194, False: 0]
  ------------------
 3031|    194|      return 368;
 3032|    194|    }
 3033|      0|    break;
 3034|       |    /* Ufr */
 3035|    194|  case 0x629bad19dbbb9b10ULL:
  ------------------
  |  Branch (3035:3): [True: 194, False: 516k]
  ------------------
 3036|    194|    if (len == 3) {
  ------------------
  |  Branch (3036:9): [True: 194, False: 0]
  ------------------
 3037|    194|      return 120088;
 3038|    194|    }
 3039|      0|    break;
 3040|       |    /* Ugrave */
 3041|    194|  case 0x34b5d328bb7f4051ULL:
  ------------------
  |  Branch (3041:3): [True: 194, False: 516k]
  ------------------
 3042|    194|    if (len == 6) {
  ------------------
  |  Branch (3042:9): [True: 194, False: 0]
  ------------------
 3043|    194|      return 217;
 3044|    194|    }
 3045|      0|    break;
 3046|       |    /* Umacr */
 3047|    194|  case 0xc79a05ae0c724e63ULL:
  ------------------
  |  Branch (3047:3): [True: 194, False: 516k]
  ------------------
 3048|    194|    if (len == 5) {
  ------------------
  |  Branch (3048:9): [True: 194, False: 0]
  ------------------
 3049|    194|      return 362;
 3050|    194|    }
 3051|      0|    break;
 3052|       |    /* UnderBar */
 3053|    766|  case 0x88da2ac69024fb52ULL:
  ------------------
  |  Branch (3053:3): [True: 766, False: 515k]
  ------------------
 3054|    766|    if (len == 8) {
  ------------------
  |  Branch (3054:9): [True: 766, False: 0]
  ------------------
 3055|    766|      return 95;
 3056|    766|    }
 3057|      0|    break;
 3058|       |    /* UnderBrace */
 3059|    194|  case 0x35998778099657f0ULL:
  ------------------
  |  Branch (3059:3): [True: 194, False: 516k]
  ------------------
 3060|    194|    if (len == 10) {
  ------------------
  |  Branch (3060:9): [True: 194, False: 0]
  ------------------
 3061|    194|      return 9183;
 3062|    194|    }
 3063|      0|    break;
 3064|       |    /* UnderBracket */
 3065|    194|  case 0x3041f9e6ce0818fbULL:
  ------------------
  |  Branch (3065:3): [True: 194, False: 516k]
  ------------------
 3066|    194|    if (len == 12) {
  ------------------
  |  Branch (3066:9): [True: 194, False: 0]
  ------------------
 3067|    194|      return 9141;
 3068|    194|    }
 3069|      0|    break;
 3070|       |    /* UnderParenthesis */
 3071|      0|  case 0x335a3dc0551cd6f3ULL:
  ------------------
  |  Branch (3071:3): [True: 0, False: 516k]
  ------------------
 3072|      0|    if (len == 16) {
  ------------------
  |  Branch (3072:9): [True: 0, False: 0]
  ------------------
 3073|      0|      return 9181;
 3074|      0|    }
 3075|      0|    break;
 3076|       |    /* Union */
 3077|    194|  case 0x0ae93fb50ca42f94ULL:
  ------------------
  |  Branch (3077:3): [True: 194, False: 516k]
  ------------------
 3078|    194|    if (len == 5) {
  ------------------
  |  Branch (3078:9): [True: 194, False: 0]
  ------------------
 3079|    194|      return 8899;
 3080|    194|    }
 3081|      0|    break;
 3082|       |    /* UnionPlus */
 3083|    194|  case 0x6a922600145f0894ULL:
  ------------------
  |  Branch (3083:3): [True: 194, False: 516k]
  ------------------
 3084|    194|    if (len == 9) {
  ------------------
  |  Branch (3084:9): [True: 194, False: 0]
  ------------------
 3085|    194|      return 8846;
 3086|    194|    }
 3087|      0|    break;
 3088|       |    /* Uogon */
 3089|    194|  case 0x22ff9bbfeb166d37ULL:
  ------------------
  |  Branch (3089:3): [True: 194, False: 516k]
  ------------------
 3090|    194|    if (len == 5) {
  ------------------
  |  Branch (3090:9): [True: 194, False: 0]
  ------------------
 3091|    194|      return 370;
 3092|    194|    }
 3093|      0|    break;
 3094|       |    /* Uopf */
 3095|    194|  case 0x99d0ebf08d671db3ULL:
  ------------------
  |  Branch (3095:3): [True: 194, False: 516k]
  ------------------
 3096|    194|    if (len == 4) {
  ------------------
  |  Branch (3096:9): [True: 194, False: 0]
  ------------------
 3097|    194|      return 120140;
 3098|    194|    }
 3099|      0|    break;
 3100|       |    /* UpArrow */
 3101|    194|  case 0xda23e4228bf4d3d9ULL:
  ------------------
  |  Branch (3101:3): [True: 194, False: 516k]
  ------------------
 3102|    194|    if (len == 7) {
  ------------------
  |  Branch (3102:9): [True: 194, False: 0]
  ------------------
 3103|    194|      return 8593;
 3104|    194|    }
 3105|      0|    break;
 3106|       |    /* UpArrowBar */
 3107|    194|  case 0xe1650c29c242d1b6ULL:
  ------------------
  |  Branch (3107:3): [True: 194, False: 516k]
  ------------------
 3108|    194|    if (len == 10) {
  ------------------
  |  Branch (3108:9): [True: 194, False: 0]
  ------------------
 3109|    194|      return 10514;
 3110|    194|    }
 3111|      0|    break;
 3112|       |    /* UpArrowDownArrow */
 3113|    194|  case 0x713760ad99e42112ULL:
  ------------------
  |  Branch (3113:3): [True: 194, False: 516k]
  ------------------
 3114|    194|    if (len == 16) {
  ------------------
  |  Branch (3114:9): [True: 194, False: 0]
  ------------------
 3115|    194|      return 8645;
 3116|    194|    }
 3117|      0|    break;
 3118|       |    /* UpDownArrow */
 3119|    194|  case 0x34fbc7deb364c18dULL:
  ------------------
  |  Branch (3119:3): [True: 194, False: 516k]
  ------------------
 3120|    194|    if (len == 11) {
  ------------------
  |  Branch (3120:9): [True: 194, False: 0]
  ------------------
 3121|    194|      return 8597;
 3122|    194|    }
 3123|      0|    break;
 3124|       |    /* UpEquilibrium */
 3125|      0|  case 0x7e89d9f79bfff97cULL:
  ------------------
  |  Branch (3125:3): [True: 0, False: 516k]
  ------------------
 3126|      0|    if (len == 13) {
  ------------------
  |  Branch (3126:9): [True: 0, False: 0]
  ------------------
 3127|      0|      return 10606;
 3128|      0|    }
 3129|      0|    break;
 3130|       |    /* UpTee */
 3131|    194|  case 0x1f6068bad917b3daULL:
  ------------------
  |  Branch (3131:3): [True: 194, False: 516k]
  ------------------
 3132|    194|    if (len == 5) {
  ------------------
  |  Branch (3132:9): [True: 194, False: 0]
  ------------------
 3133|    194|      return 8869;
 3134|    194|    }
 3135|      0|    break;
 3136|       |    /* UpTeeArrow */
 3137|    194|  case 0x5ce9d40c5717bc07ULL:
  ------------------
  |  Branch (3137:3): [True: 194, False: 516k]
  ------------------
 3138|    194|    if (len == 10) {
  ------------------
  |  Branch (3138:9): [True: 194, False: 0]
  ------------------
 3139|    194|      return 8613;
 3140|    194|    }
 3141|      0|    break;
 3142|       |    /* Uparrow */
 3143|    194|  case 0x1a63fcbc19df8179ULL:
  ------------------
  |  Branch (3143:3): [True: 194, False: 516k]
  ------------------
 3144|    194|    if (len == 7) {
  ------------------
  |  Branch (3144:9): [True: 194, False: 0]
  ------------------
 3145|    194|      return 8657;
 3146|    194|    }
 3147|      0|    break;
 3148|       |    /* Updownarrow */
 3149|    194|  case 0xf8eb0549c8dfe58dULL:
  ------------------
  |  Branch (3149:3): [True: 194, False: 516k]
  ------------------
 3150|    194|    if (len == 11) {
  ------------------
  |  Branch (3150:9): [True: 194, False: 0]
  ------------------
 3151|    194|      return 8661;
 3152|    194|    }
 3153|      0|    break;
 3154|       |    /* UpperLeftArrow */
 3155|      0|  case 0x298c71afab8df2f3ULL:
  ------------------
  |  Branch (3155:3): [True: 0, False: 516k]
  ------------------
 3156|      0|    if (len == 14) {
  ------------------
  |  Branch (3156:9): [True: 0, False: 0]
  ------------------
 3157|      0|      return 8598;
 3158|      0|    }
 3159|      0|    break;
 3160|       |    /* UpperRightArrow */
 3161|      0|  case 0xebfe1bd77ca04718ULL:
  ------------------
  |  Branch (3161:3): [True: 0, False: 516k]
  ------------------
 3162|      0|    if (len == 15) {
  ------------------
  |  Branch (3162:9): [True: 0, False: 0]
  ------------------
 3163|      0|      return 8599;
 3164|      0|    }
 3165|      0|    break;
 3166|       |    /* Upsi */
 3167|    194|  case 0x8ac8f5eff32df960ULL:
  ------------------
  |  Branch (3167:3): [True: 194, False: 516k]
  ------------------
 3168|    194|    if (len == 4) {
  ------------------
  |  Branch (3168:9): [True: 194, False: 0]
  ------------------
 3169|    194|      return 978;
 3170|    194|    }
 3171|      0|    break;
 3172|       |    /* Upsilon */
 3173|    194|  case 0xa1f7fceef5a297edULL:
  ------------------
  |  Branch (3173:3): [True: 194, False: 516k]
  ------------------
 3174|    194|    if (len == 7) {
  ------------------
  |  Branch (3174:9): [True: 194, False: 0]
  ------------------
 3175|    194|      return 933;
 3176|    194|    }
 3177|      0|    break;
 3178|       |    /* Uring */
 3179|    194|  case 0x15254fcbec774b0aULL:
  ------------------
  |  Branch (3179:3): [True: 194, False: 516k]
  ------------------
 3180|    194|    if (len == 5) {
  ------------------
  |  Branch (3180:9): [True: 194, False: 0]
  ------------------
 3181|    194|      return 366;
 3182|    194|    }
 3183|      0|    break;
 3184|       |    /* Uscr */
 3185|    194|  case 0xa48891f001b29054ULL:
  ------------------
  |  Branch (3185:3): [True: 194, False: 516k]
  ------------------
 3186|    194|    if (len == 4) {
  ------------------
  |  Branch (3186:9): [True: 194, False: 0]
  ------------------
 3187|    194|      return 119984;
 3188|    194|    }
 3189|      0|    break;
 3190|       |    /* Utilde */
 3191|    194|  case 0x97f1a869244c7456ULL:
  ------------------
  |  Branch (3191:3): [True: 194, False: 516k]
  ------------------
 3192|    194|    if (len == 6) {
  ------------------
  |  Branch (3192:9): [True: 194, False: 0]
  ------------------
 3193|    194|      return 360;
 3194|    194|    }
 3195|      0|    break;
 3196|       |    /* Uuml */
 3197|    194|  case 0xb684e9f00c12012eULL:
  ------------------
  |  Branch (3197:3): [True: 194, False: 516k]
  ------------------
 3198|    194|    if (len == 4) {
  ------------------
  |  Branch (3198:9): [True: 194, False: 0]
  ------------------
 3199|    194|      return 220;
 3200|    194|    }
 3201|      0|    break;
 3202|       |    /* VDash */
 3203|    197|  case 0xf9f9fbd541f42d31ULL:
  ------------------
  |  Branch (3203:3): [True: 197, False: 516k]
  ------------------
 3204|    197|    if (len == 5) {
  ------------------
  |  Branch (3204:9): [True: 197, False: 0]
  ------------------
 3205|    197|      return 8875;
 3206|    197|    }
 3207|      0|    break;
 3208|       |    /* Vbar */
 3209|    194|  case 0xddb3a3081556cc66ULL:
  ------------------
  |  Branch (3209:3): [True: 194, False: 516k]
  ------------------
 3210|    194|    if (len == 4) {
  ------------------
  |  Branch (3210:9): [True: 194, False: 0]
  ------------------
 3211|    194|      return 10987;
 3212|    194|    }
 3213|      0|    break;
 3214|       |    /* Vcy */
 3215|    194|  case 0x7bad3b19e9abb165ULL:
  ------------------
  |  Branch (3215:3): [True: 194, False: 516k]
  ------------------
 3216|    194|    if (len == 3) {
  ------------------
  |  Branch (3216:9): [True: 194, False: 0]
  ------------------
 3217|    194|      return 1042;
 3218|    194|    }
 3219|      0|    break;
 3220|       |    /* Vdash */
 3221|    194|  case 0x7c4dface2b674051ULL:
  ------------------
  |  Branch (3221:3): [True: 194, False: 516k]
  ------------------
 3222|    194|    if (len == 5) {
  ------------------
  |  Branch (3222:9): [True: 194, False: 0]
  ------------------
 3223|    194|      return 8873;
 3224|    194|    }
 3225|      0|    break;
 3226|       |    /* Vdashl */
 3227|    194|  case 0x9fc16953c07227a7ULL:
  ------------------
  |  Branch (3227:3): [True: 194, False: 516k]
  ------------------
 3228|    194|    if (len == 6) {
  ------------------
  |  Branch (3228:9): [True: 194, False: 0]
  ------------------
 3229|    194|      return 10982;
 3230|    194|    }
 3231|      0|    break;
 3232|       |    /* Vee */
 3233|    194|  case 0x7bb41b19e9b199b3ULL:
  ------------------
  |  Branch (3233:3): [True: 194, False: 516k]
  ------------------
 3234|    194|    if (len == 3) {
  ------------------
  |  Branch (3234:9): [True: 194, False: 0]
  ------------------
 3235|    194|      return 8897;
 3236|    194|    }
 3237|      0|    break;
 3238|       |    /* Verbar */
 3239|    194|  case 0x6436f182ff56fc93ULL:
  ------------------
  |  Branch (3239:3): [True: 194, False: 516k]
  ------------------
 3240|    194|    if (len == 6) {
  ------------------
  |  Branch (3240:9): [True: 194, False: 0]
  ------------------
 3241|    194|      return 8214;
 3242|    194|    }
 3243|      0|    break;
 3244|       |    /* Vert */
 3245|    194|  case 0xe4ead20819044c62ULL:
  ------------------
  |  Branch (3245:3): [True: 194, False: 516k]
  ------------------
 3246|    194|    if (len == 4) {
  ------------------
  |  Branch (3246:9): [True: 194, False: 0]
  ------------------
 3247|    194|      return 8214;
 3248|    194|    }
 3249|      0|    break;
 3250|       |    /* VerticalBar */
 3251|      0|  case 0xad21ba66552dc534ULL:
  ------------------
  |  Branch (3251:3): [True: 0, False: 516k]
  ------------------
 3252|      0|    if (len == 11) {
  ------------------
  |  Branch (3252:9): [True: 0, False: 0]
  ------------------
 3253|      0|      return 8739;
 3254|      0|    }
 3255|      0|    break;
 3256|       |    /* VerticalLine */
 3257|      0|  case 0x38f15cd0fd839411ULL:
  ------------------
  |  Branch (3257:3): [True: 0, False: 516k]
  ------------------
 3258|      0|    if (len == 12) {
  ------------------
  |  Branch (3258:9): [True: 0, False: 0]
  ------------------
 3259|      0|      return 124;
 3260|      0|    }
 3261|      0|    break;
 3262|       |    /* VerticalSeparator */
 3263|      0|  case 0x1e098493b4b3b046ULL:
  ------------------
  |  Branch (3263:3): [True: 0, False: 516k]
  ------------------
 3264|      0|    if (len == 17) {
  ------------------
  |  Branch (3264:9): [True: 0, False: 0]
  ------------------
 3265|      0|      return 10072;
 3266|      0|    }
 3267|      0|    break;
 3268|       |    /* VerticalTilde */
 3269|      0|  case 0xf060f1583b63cc1bULL:
  ------------------
  |  Branch (3269:3): [True: 0, False: 516k]
  ------------------
 3270|      0|    if (len == 13) {
  ------------------
  |  Branch (3270:9): [True: 0, False: 0]
  ------------------
 3271|      0|      return 8768;
 3272|      0|    }
 3273|      0|    break;
 3274|       |    /* VeryThinSpace */
 3275|      0|  case 0x6013db4250691908ULL:
  ------------------
  |  Branch (3275:3): [True: 0, False: 516k]
  ------------------
 3276|      0|    if (len == 13) {
  ------------------
  |  Branch (3276:9): [True: 0, False: 0]
  ------------------
 3277|      0|      return 8202;
 3278|      0|    }
 3279|      0|    break;
 3280|       |    /* Vfr */
 3281|    194|  case 0x7bbe4219e9ba307dULL:
  ------------------
  |  Branch (3281:3): [True: 194, False: 516k]
  ------------------
 3282|    194|    if (len == 3) {
  ------------------
  |  Branch (3282:9): [True: 194, False: 0]
  ------------------
 3283|    194|      return 120089;
 3284|    194|    }
 3285|      0|    break;
 3286|       |    /* Vopf */
 3287|    194|  case 0xb231ca07fca46ac0ULL:
  ------------------
  |  Branch (3287:3): [True: 194, False: 516k]
  ------------------
 3288|    194|    if (len == 4) {
  ------------------
  |  Branch (3288:9): [True: 194, False: 0]
  ------------------
 3289|    194|      return 120141;
 3290|    194|    }
 3291|      0|    break;
 3292|       |    /* Vscr */
 3293|    194|  case 0x5fa214085eef1e5fULL:
  ------------------
  |  Branch (3293:3): [True: 194, False: 516k]
  ------------------
 3294|    194|    if (len == 4) {
  ------------------
  |  Branch (3294:9): [True: 194, False: 0]
  ------------------
 3295|    194|      return 119985;
 3296|    194|    }
 3297|      0|    break;
 3298|       |    /* Vvdash */
 3299|    194|  case 0x1a85f221b12f94edULL:
  ------------------
  |  Branch (3299:3): [True: 194, False: 516k]
  ------------------
 3300|    194|    if (len == 6) {
  ------------------
  |  Branch (3300:9): [True: 194, False: 0]
  ------------------
 3301|    194|      return 8874;
 3302|    194|    }
 3303|      0|    break;
 3304|       |    /* Wcirc */
 3305|    194|  case 0x875d7ca143918579ULL:
  ------------------
  |  Branch (3305:3): [True: 194, False: 516k]
  ------------------
 3306|    194|    if (len == 5) {
  ------------------
  |  Branch (3306:9): [True: 194, False: 0]
  ------------------
 3307|    194|      return 372;
 3308|    194|    }
 3309|      0|    break;
 3310|       |    /* Wedge */
 3311|    194|  case 0x3744c794850c54afULL:
  ------------------
  |  Branch (3311:3): [True: 194, False: 516k]
  ------------------
 3312|    194|    if (len == 5) {
  ------------------
  |  Branch (3312:9): [True: 194, False: 0]
  ------------------
 3313|    194|      return 8896;
 3314|    194|    }
 3315|      0|    break;
 3316|       |    /* Wfr */
 3317|    194|  case 0x749eff19e6212066ULL:
  ------------------
  |  Branch (3317:3): [True: 194, False: 516k]
  ------------------
 3318|    194|    if (len == 3) {
  ------------------
  |  Branch (3318:9): [True: 194, False: 0]
  ------------------
 3319|    194|      return 120090;
 3320|    194|    }
 3321|      0|    break;
 3322|       |    /* Wopf */
 3323|    194|  case 0x9aed0c0237dd3695ULL:
  ------------------
  |  Branch (3323:3): [True: 194, False: 516k]
  ------------------
 3324|    194|    if (len == 4) {
  ------------------
  |  Branch (3324:9): [True: 194, False: 0]
  ------------------
 3325|    194|      return 120142;
 3326|    194|    }
 3327|      0|    break;
 3328|       |    /* Wscr */
 3329|    194|  case 0xeddbca01d5e32512ULL:
  ------------------
  |  Branch (3329:3): [True: 194, False: 516k]
  ------------------
 3330|    194|    if (len == 4) {
  ------------------
  |  Branch (3330:9): [True: 194, False: 0]
  ------------------
 3331|    194|      return 119986;
 3332|    194|    }
 3333|      0|    break;
 3334|       |    /* Xfr */
 3335|    194|  case 0xd234c41a1aa84ff3ULL:
  ------------------
  |  Branch (3335:3): [True: 194, False: 516k]
  ------------------
 3336|    194|    if (len == 3) {
  ------------------
  |  Branch (3336:9): [True: 194, False: 0]
  ------------------
 3337|    194|      return 120091;
 3338|    194|    }
 3339|      0|    break;
 3340|       |    /* Xi */
 3341|    194|  case 0x095d3f07b5e8eecaULL:
  ------------------
  |  Branch (3341:3): [True: 194, False: 516k]
  ------------------
 3342|    194|    if (len == 2) {
  ------------------
  |  Branch (3342:9): [True: 194, False: 0]
  ------------------
 3343|    194|      return 926;
 3344|    194|    }
 3345|      0|    break;
 3346|       |    /* Xopf */
 3347|    195|  case 0x157bfa5b6f16a1baULL:
  ------------------
  |  Branch (3347:3): [True: 195, False: 516k]
  ------------------
 3348|    195|    if (len == 4) {
  ------------------
  |  Branch (3348:9): [True: 195, False: 0]
  ------------------
 3349|    195|      return 120143;
 3350|    195|    }
 3351|      0|    break;
 3352|       |    /* Xscr */
 3353|    194|  case 0x7b21dc5ba803236dULL:
  ------------------
  |  Branch (3353:3): [True: 194, False: 516k]
  ------------------
 3354|    194|    if (len == 4) {
  ------------------
  |  Branch (3354:9): [True: 194, False: 0]
  ------------------
 3355|    194|      return 119987;
 3356|    194|    }
 3357|      0|    break;
 3358|       |    /* YAcy */
 3359|    194|  case 0xdde72f562893b827ULL:
  ------------------
  |  Branch (3359:3): [True: 194, False: 516k]
  ------------------
 3360|    194|    if (len == 4) {
  ------------------
  |  Branch (3360:9): [True: 194, False: 0]
  ------------------
 3361|    194|      return 1071;
 3362|    194|    }
 3363|      0|    break;
 3364|       |    /* YIcy */
 3365|    194|  case 0x225977564f1ac80fULL:
  ------------------
  |  Branch (3365:3): [True: 194, False: 516k]
  ------------------
 3366|    194|    if (len == 4) {
  ------------------
  |  Branch (3366:9): [True: 194, False: 0]
  ------------------
 3367|    194|      return 1031;
 3368|    194|    }
 3369|      0|    break;
 3370|       |    /* YUcy */
 3371|    194|  case 0x30a9f355c67475ebULL:
  ------------------
  |  Branch (3371:3): [True: 194, False: 516k]
  ------------------
 3372|    194|    if (len == 4) {
  ------------------
  |  Branch (3372:9): [True: 194, False: 0]
  ------------------
 3373|    194|      return 1070;
 3374|    194|    }
 3375|      0|    break;
 3376|       |    /* Yacute */
 3377|    194|  case 0xc3a6fd883f2a3250ULL:
  ------------------
  |  Branch (3377:3): [True: 194, False: 516k]
  ------------------
 3378|    194|    if (len == 6) {
  ------------------
  |  Branch (3378:9): [True: 194, False: 0]
  ------------------
 3379|    194|      return 221;
 3380|    194|    }
 3381|      0|    break;
 3382|       |    /* Ycirc */
 3383|    194|  case 0x396e506d089c9323ULL:
  ------------------
  |  Branch (3383:3): [True: 194, False: 516k]
  ------------------
 3384|    194|    if (len == 5) {
  ------------------
  |  Branch (3384:9): [True: 194, False: 0]
  ------------------
 3385|    194|      return 374;
 3386|    194|    }
 3387|      0|    break;
 3388|       |    /* Ycy */
 3389|    194|  case 0xcb5ca81a174b84c4ULL:
  ------------------
  |  Branch (3389:3): [True: 194, False: 516k]
  ------------------
 3390|    194|    if (len == 3) {
  ------------------
  |  Branch (3390:9): [True: 194, False: 0]
  ------------------
 3391|    194|      return 1067;
 3392|    194|    }
 3393|      0|    break;
 3394|       |    /* Yfr */
 3395|    194|  case 0xcb4ba11a173d05acULL:
  ------------------
  |  Branch (3395:3): [True: 194, False: 516k]
  ------------------
 3396|    194|    if (len == 3) {
  ------------------
  |  Branch (3396:9): [True: 194, False: 0]
  ------------------
 3397|    194|      return 120092;
 3398|    194|    }
 3399|      0|    break;
 3400|       |    /* Yopf */
 3401|    194|  case 0xfdcaec55a9f3c6bfULL:
  ------------------
  |  Branch (3401:3): [True: 194, False: 516k]
  ------------------
 3402|    194|    if (len == 4) {
  ------------------
  |  Branch (3402:9): [True: 194, False: 0]
  ------------------
 3403|    194|      return 120144;
 3404|    194|    }
 3405|      0|    break;
 3406|       |    /* Yscr */
 3407|    194|  case 0x5059c25547a79680ULL:
  ------------------
  |  Branch (3407:3): [True: 194, False: 516k]
  ------------------
 3408|    194|    if (len == 4) {
  ------------------
  |  Branch (3408:9): [True: 194, False: 0]
  ------------------
 3409|    194|      return 119988;
 3410|    194|    }
 3411|      0|    break;
 3412|       |    /* Yuml */
 3413|    194|  case 0x1acfea5528e30162ULL:
  ------------------
  |  Branch (3413:3): [True: 194, False: 516k]
  ------------------
 3414|    194|    if (len == 4) {
  ------------------
  |  Branch (3414:9): [True: 194, False: 0]
  ------------------
 3415|    194|      return 376;
 3416|    194|    }
 3417|      0|    break;
 3418|       |    /* ZHcy */
 3419|    194|  case 0x1a4b406c8a557d37ULL:
  ------------------
  |  Branch (3419:3): [True: 194, False: 516k]
  ------------------
 3420|    194|    if (len == 4) {
  ------------------
  |  Branch (3420:9): [True: 194, False: 0]
  ------------------
 3421|    194|      return 1046;
 3422|    194|    }
 3423|      0|    break;
 3424|       |    /* Zacute */
 3425|    194|  case 0xee096f757f340b4bULL:
  ------------------
  |  Branch (3425:3): [True: 194, False: 516k]
  ------------------
 3426|    194|    if (len == 6) {
  ------------------
  |  Branch (3426:9): [True: 194, False: 0]
  ------------------
 3427|    194|      return 377;
 3428|    194|    }
 3429|      0|    break;
 3430|       |    /* Zcaron */
 3431|    194|  case 0xc3507fcda64a5a84ULL:
  ------------------
  |  Branch (3431:3): [True: 194, False: 516k]
  ------------------
 3432|    194|    if (len == 6) {
  ------------------
  |  Branch (3432:9): [True: 194, False: 0]
  ------------------
 3433|    194|      return 381;
 3434|    194|    }
 3435|      0|    break;
 3436|       |    /* Zcy */
 3437|    194|  case 0xe4791f1a25457b89ULL:
  ------------------
  |  Branch (3437:3): [True: 194, False: 516k]
  ------------------
 3438|    194|    if (len == 3) {
  ------------------
  |  Branch (3438:9): [True: 194, False: 0]
  ------------------
 3439|    194|      return 1047;
 3440|    194|    }
 3441|      0|    break;
 3442|       |    /* Zdot */
 3443|    194|  case 0x53c6076d3c5b7568ULL:
  ------------------
  |  Branch (3443:3): [True: 194, False: 516k]
  ------------------
 3444|    194|    if (len == 4) {
  ------------------
  |  Branch (3444:9): [True: 194, False: 0]
  ------------------
 3445|    194|      return 379;
 3446|    194|    }
 3447|      0|    break;
 3448|       |    /* ZeroWidthSpace */
 3449|      0|  case 0x42d4a3cb0af63675ULL:
  ------------------
  |  Branch (3449:3): [True: 0, False: 516k]
  ------------------
 3450|      0|    if (len == 14) {
  ------------------
  |  Branch (3450:9): [True: 0, False: 0]
  ------------------
 3451|      0|      return 8203;
 3452|      0|    }
 3453|      0|    break;
 3454|       |    /* Zeta */
 3455|    194|  case 0x4957c36d35f2197fULL:
  ------------------
  |  Branch (3455:3): [True: 194, False: 516k]
  ------------------
 3456|    194|    if (len == 4) {
  ------------------
  |  Branch (3456:9): [True: 194, False: 0]
  ------------------
 3457|    194|      return 918;
 3458|    194|    }
 3459|      0|    break;
 3460|       |    /* Zfr */
 3461|    194|  case 0xe46f161a253d17b9ULL:
  ------------------
  |  Branch (3461:3): [True: 194, False: 516k]
  ------------------
 3462|    194|    if (len == 3) {
  ------------------
  |  Branch (3462:9): [True: 194, False: 0]
  ------------------
 3463|    194|      return 8488;
 3464|    194|    }
 3465|      0|    break;
 3466|       |    /* Zopf */
 3467|    194|  case 0x1697ca6d198c32acULL:
  ------------------
  |  Branch (3467:3): [True: 194, False: 516k]
  ------------------
 3468|    194|    if (len == 4) {
  ------------------
  |  Branch (3468:9): [True: 194, False: 0]
  ------------------
 3469|    194|      return 8484;
 3470|    194|    }
 3471|      0|    break;
 3472|       |    /* Zscr */
 3473|    194|  case 0x08e7646da2bad5abULL:
  ------------------
  |  Branch (3473:3): [True: 194, False: 516k]
  ------------------
 3474|    194|    if (len == 4) {
  ------------------
  |  Branch (3474:9): [True: 194, False: 0]
  ------------------
 3475|    194|      return 119989;
 3476|    194|    }
 3477|      0|    break;
 3478|       |    /* aacute */
 3479|    194|  case 0xedea01307a28bc78ULL:
  ------------------
  |  Branch (3479:3): [True: 194, False: 516k]
  ------------------
 3480|    194|    if (len == 6) {
  ------------------
  |  Branch (3480:9): [True: 194, False: 0]
  ------------------
 3481|    194|      return 225;
 3482|    194|    }
 3483|      0|    break;
 3484|       |    /* abreve */
 3485|    194|  case 0x3f5220bccf487022ULL:
  ------------------
  |  Branch (3485:3): [True: 194, False: 516k]
  ------------------
 3486|    194|    if (len == 6) {
  ------------------
  |  Branch (3486:9): [True: 194, False: 0]
  ------------------
 3487|    194|      return 259;
 3488|    194|    }
 3489|      0|    break;
 3490|       |    /* ac */
 3491|    195|  case 0x089c4507b5459a1dULL:
  ------------------
  |  Branch (3491:3): [True: 195, False: 516k]
  ------------------
 3492|    195|    if (len == 2) {
  ------------------
  |  Branch (3492:9): [True: 195, False: 0]
  ------------------
 3493|    195|      return 8766;
 3494|    195|    }
 3495|      0|    break;
 3496|       |    /* acd */
 3497|    194|  case 0xe723c51905457b9bULL:
  ------------------
  |  Branch (3497:3): [True: 194, False: 516k]
  ------------------
 3498|    194|    if (len == 3) {
  ------------------
  |  Branch (3498:9): [True: 194, False: 0]
  ------------------
 3499|    194|      return 8767;
 3500|    194|    }
 3501|      0|    break;
 3502|       |    /* acirc */
 3503|    194|  case 0x3e897139545561cbULL:
  ------------------
  |  Branch (3503:3): [True: 194, False: 516k]
  ------------------
 3504|    194|    if (len == 5) {
  ------------------
  |  Branch (3504:9): [True: 194, False: 0]
  ------------------
 3505|    194|      return 226;
 3506|    194|    }
 3507|      0|    break;
 3508|       |    /* acute */
 3509|    194|  case 0xd5c5773918c343f3ULL:
  ------------------
  |  Branch (3509:3): [True: 194, False: 516k]
  ------------------
 3510|    194|    if (len == 5) {
  ------------------
  |  Branch (3510:9): [True: 194, False: 0]
  ------------------
 3511|    194|      return 180;
 3512|    194|    }
 3513|      0|    break;
 3514|       |    /* acy */
 3515|    194|  case 0xe723b019054557ecULL:
  ------------------
  |  Branch (3515:3): [True: 194, False: 516k]
  ------------------
 3516|    194|    if (len == 3) {
  ------------------
  |  Branch (3516:9): [True: 194, False: 0]
  ------------------
 3517|    194|      return 1072;
 3518|    194|    }
 3519|      0|    break;
 3520|       |    /* aelig */
 3521|    194|  case 0x28976e03b7ae3319ULL:
  ------------------
  |  Branch (3521:3): [True: 194, False: 516k]
  ------------------
 3522|    194|    if (len == 5) {
  ------------------
  |  Branch (3522:9): [True: 194, False: 0]
  ------------------
 3523|    194|      return 230;
 3524|    194|    }
 3525|      0|    break;
 3526|       |    /* af */
 3527|    197|  case 0x089c4007b545919eULL:
  ------------------
  |  Branch (3527:3): [True: 197, False: 516k]
  ------------------
 3528|    197|    if (len == 2) {
  ------------------
  |  Branch (3528:9): [True: 197, False: 0]
  ------------------
 3529|    197|      return 8289;
 3530|    197|    }
 3531|      0|    break;
 3532|       |    /* afr */
 3533|    194|  case 0xe712b9190536f404ULL:
  ------------------
  |  Branch (3533:3): [True: 194, False: 516k]
  ------------------
 3534|    194|    if (len == 3) {
  ------------------
  |  Branch (3534:9): [True: 194, False: 0]
  ------------------
 3535|    194|      return 120094;
 3536|    194|    }
 3537|      0|    break;
 3538|       |    /* agrave */
 3539|    194|  case 0x3b9cd06820b07e8dULL:
  ------------------
  |  Branch (3539:3): [True: 194, False: 516k]
  ------------------
 3540|    194|    if (len == 6) {
  ------------------
  |  Branch (3540:9): [True: 194, False: 0]
  ------------------
 3541|    194|      return 224;
 3542|    194|    }
 3543|      0|    break;
 3544|       |    /* alefsym */
 3545|    195|  case 0x427dfe87cf9c5b9aULL:
  ------------------
  |  Branch (3545:3): [True: 195, False: 516k]
  ------------------
 3546|    195|    if (len == 7) {
  ------------------
  |  Branch (3546:9): [True: 195, False: 0]
  ------------------
 3547|    195|      return 8501;
 3548|    195|    }
 3549|      0|    break;
 3550|       |    /* aleph */
 3551|    210|  case 0x2cdf83bb5121d4efULL:
  ------------------
  |  Branch (3551:3): [True: 210, False: 516k]
  ------------------
 3552|    210|    if (len == 5) {
  ------------------
  |  Branch (3552:9): [True: 210, False: 0]
  ------------------
 3553|    210|      return 8501;
 3554|    210|    }
 3555|      0|    break;
 3556|       |    /* alpha */
 3557|    194|  case 0x8ac625bb85ed202bULL:
  ------------------
  |  Branch (3557:3): [True: 194, False: 516k]
  ------------------
 3558|    194|    if (len == 5) {
  ------------------
  |  Branch (3558:9): [True: 194, False: 0]
  ------------------
 3559|    194|      return 945;
 3560|    194|    }
 3561|      0|    break;
 3562|       |    /* amacr */
 3563|    194|  case 0x6d029dc24ea1cf07ULL:
  ------------------
  |  Branch (3563:3): [True: 194, False: 516k]
  ------------------
 3564|    194|    if (len == 5) {
  ------------------
  |  Branch (3564:9): [True: 194, False: 0]
  ------------------
 3565|    194|      return 257;
 3566|    194|    }
 3567|      0|    break;
 3568|       |    /* amalg */
 3569|    194|  case 0x6d1388c24eb01e8bULL:
  ------------------
  |  Branch (3569:3): [True: 194, False: 516k]
  ------------------
 3570|    194|    if (len == 5) {
  ------------------
  |  Branch (3570:9): [True: 194, False: 0]
  ------------------
 3571|    194|      return 10815;
 3572|    194|    }
 3573|      0|    break;
 3574|       |    /* amp */
 3575|    195|  case 0xe6f3a519051c2179ULL:
  ------------------
  |  Branch (3575:3): [True: 195, False: 516k]
  ------------------
 3576|    195|    if (len == 3) {
  ------------------
  |  Branch (3576:9): [True: 195, False: 0]
  ------------------
 3577|    195|      return 38;
 3578|    195|    }
 3579|      0|    break;
 3580|       |    /* and */
 3581|    195|  case 0xe6f79719051ff286ULL:
  ------------------
  |  Branch (3581:3): [True: 195, False: 516k]
  ------------------
 3582|    195|    if (len == 3) {
  ------------------
  |  Branch (3582:9): [True: 195, False: 0]
  ------------------
 3583|    195|      return 8743;
 3584|    195|    }
 3585|      0|    break;
 3586|       |    /* andand */
 3587|    194|  case 0x9883656beaefc50fULL:
  ------------------
  |  Branch (3587:3): [True: 194, False: 516k]
  ------------------
 3588|    194|    if (len == 6) {
  ------------------
  |  Branch (3588:9): [True: 194, False: 0]
  ------------------
 3589|    194|      return 10837;
 3590|    194|    }
 3591|      0|    break;
 3592|       |    /* andd */
 3593|    194|  case 0x96a8a183b549b606ULL:
  ------------------
  |  Branch (3593:3): [True: 194, False: 516k]
  ------------------
 3594|    194|    if (len == 4) {
  ------------------
  |  Branch (3594:9): [True: 194, False: 0]
  ------------------
 3595|    194|      return 10844;
 3596|    194|    }
 3597|      0|    break;
 3598|       |    /* andslope */
 3599|    194|  case 0x9f0c6f0b18b522e9ULL:
  ------------------
  |  Branch (3599:3): [True: 194, False: 516k]
  ------------------
 3600|    194|    if (len == 8) {
  ------------------
  |  Branch (3600:9): [True: 194, False: 0]
  ------------------
 3601|    194|      return 10840;
 3602|    194|    }
 3603|      0|    break;
 3604|       |    /* andv */
 3605|    194|  case 0x96a8af83b549cdd0ULL:
  ------------------
  |  Branch (3605:3): [True: 194, False: 516k]
  ------------------
 3606|    194|    if (len == 4) {
  ------------------
  |  Branch (3606:9): [True: 194, False: 0]
  ------------------
 3607|    194|      return 10842;
 3608|    194|    }
 3609|      0|    break;
 3610|       |    /* ang */
 3611|    195|  case 0xe6f79619051ff0d3ULL:
  ------------------
  |  Branch (3611:3): [True: 195, False: 516k]
  ------------------
 3612|    195|    if (len == 3) {
  ------------------
  |  Branch (3612:9): [True: 195, False: 0]
  ------------------
 3613|    195|      return 8736;
 3614|    195|    }
 3615|      0|    break;
 3616|       |    /* ange */
 3617|    194|  case 0x96a4c283b5460542ULL:
  ------------------
  |  Branch (3617:3): [True: 194, False: 516k]
  ------------------
 3618|    194|    if (len == 4) {
  ------------------
  |  Branch (3618:9): [True: 194, False: 0]
  ------------------
 3619|    194|      return 10660;
 3620|    194|    }
 3621|      0|    break;
 3622|       |    /* angle */
 3623|    196|  case 0x401ab8cd06158638ULL:
  ------------------
  |  Branch (3623:3): [True: 196, False: 516k]
  ------------------
 3624|    196|    if (len == 5) {
  ------------------
  |  Branch (3624:9): [True: 196, False: 0]
  ------------------
 3625|    196|      return 8736;
 3626|    196|    }
 3627|      0|    break;
 3628|       |    /* angmsd */
 3629|    194|  case 0xf8691d615017153dULL:
  ------------------
  |  Branch (3629:3): [True: 194, False: 516k]
  ------------------
 3630|    194|    if (len == 6) {
  ------------------
  |  Branch (3630:9): [True: 194, False: 0]
  ------------------
 3631|    194|      return 8737;
 3632|    194|    }
 3633|      0|    break;
 3634|       |    /* angmsdaa */
 3635|    194|  case 0xab3c27c8765acb0fULL:
  ------------------
  |  Branch (3635:3): [True: 194, False: 516k]
  ------------------
 3636|    194|    if (len == 8) {
  ------------------
  |  Branch (3636:9): [True: 194, False: 0]
  ------------------
 3637|    194|      return 10664;
 3638|    194|    }
 3639|      0|    break;
 3640|       |    /* angmsdab */
 3641|    194|  case 0xab3c28c8765accc2ULL:
  ------------------
  |  Branch (3641:3): [True: 194, False: 516k]
  ------------------
 3642|    194|    if (len == 8) {
  ------------------
  |  Branch (3642:9): [True: 194, False: 0]
  ------------------
 3643|    194|      return 10665;
 3644|    194|    }
 3645|      0|    break;
 3646|       |    /* angmsdac */
 3647|    194|  case 0xab3c29c8765ace75ULL:
  ------------------
  |  Branch (3647:3): [True: 194, False: 516k]
  ------------------
 3648|    194|    if (len == 8) {
  ------------------
  |  Branch (3648:9): [True: 194, False: 0]
  ------------------
 3649|    194|      return 10666;
 3650|    194|    }
 3651|      0|    break;
 3652|       |    /* angmsdad */
 3653|    194|  case 0xab3c22c8765ac290ULL:
  ------------------
  |  Branch (3653:3): [True: 194, False: 516k]
  ------------------
 3654|    194|    if (len == 8) {
  ------------------
  |  Branch (3654:9): [True: 194, False: 0]
  ------------------
 3655|    194|      return 10667;
 3656|    194|    }
 3657|      0|    break;
 3658|       |    /* angmsdae */
 3659|    194|  case 0xab3c23c8765ac443ULL:
  ------------------
  |  Branch (3659:3): [True: 194, False: 516k]
  ------------------
 3660|    194|    if (len == 8) {
  ------------------
  |  Branch (3660:9): [True: 194, False: 0]
  ------------------
 3661|    194|      return 10668;
 3662|    194|    }
 3663|      0|    break;
 3664|       |    /* angmsdaf */
 3665|    194|  case 0xab3c24c8765ac5f6ULL:
  ------------------
  |  Branch (3665:3): [True: 194, False: 516k]
  ------------------
 3666|    194|    if (len == 8) {
  ------------------
  |  Branch (3666:9): [True: 194, False: 0]
  ------------------
 3667|    194|      return 10669;
 3668|    194|    }
 3669|      0|    break;
 3670|       |    /* angmsdag */
 3671|    194|  case 0xab3c25c8765ac7a9ULL:
  ------------------
  |  Branch (3671:3): [True: 194, False: 516k]
  ------------------
 3672|    194|    if (len == 8) {
  ------------------
  |  Branch (3672:9): [True: 194, False: 0]
  ------------------
 3673|    194|      return 10670;
 3674|    194|    }
 3675|      0|    break;
 3676|       |    /* angmsdah */
 3677|    194|  case 0xab3c2ec8765ad6f4ULL:
  ------------------
  |  Branch (3677:3): [True: 194, False: 516k]
  ------------------
 3678|    194|    if (len == 8) {
  ------------------
  |  Branch (3678:9): [True: 194, False: 0]
  ------------------
 3679|    194|      return 10671;
 3680|    194|    }
 3681|      0|    break;
 3682|       |    /* angrt */
 3683|    194|  case 0x3fb4bdcd05bedb85ULL:
  ------------------
  |  Branch (3683:3): [True: 194, False: 516k]
  ------------------
 3684|    194|    if (len == 5) {
  ------------------
  |  Branch (3684:9): [True: 194, False: 0]
  ------------------
 3685|    194|      return 8735;
 3686|    194|    }
 3687|      0|    break;
 3688|       |    /* angrtvb */
 3689|    194|  case 0x9354b16be07f1331ULL:
  ------------------
  |  Branch (3689:3): [True: 194, False: 516k]
  ------------------
 3690|    194|    if (len == 7) {
  ------------------
  |  Branch (3690:9): [True: 194, False: 0]
  ------------------
 3691|    194|      return 8894;
 3692|    194|    }
 3693|      0|    break;
 3694|       |    /* angrtvbd */
 3695|    194|  case 0xd7fccf4e77edd96fULL:
  ------------------
  |  Branch (3695:3): [True: 194, False: 516k]
  ------------------
 3696|    194|    if (len == 8) {
  ------------------
  |  Branch (3696:9): [True: 194, False: 0]
  ------------------
 3697|    194|      return 10653;
 3698|    194|    }
 3699|      0|    break;
 3700|       |    /* angsph */
 3701|    194|  case 0xf4235d60bc8dc208ULL:
  ------------------
  |  Branch (3701:3): [True: 194, False: 516k]
  ------------------
 3702|    194|    if (len == 6) {
  ------------------
  |  Branch (3702:9): [True: 194, False: 0]
  ------------------
 3703|    194|      return 8738;
 3704|    194|    }
 3705|      0|    break;
 3706|       |    /* angst */
 3707|    194|  case 0x3fb0b7cd05bae87cULL:
  ------------------
  |  Branch (3707:3): [True: 194, False: 516k]
  ------------------
 3708|    194|    if (len == 5) {
  ------------------
  |  Branch (3708:9): [True: 194, False: 0]
  ------------------
 3709|    194|      return 197;
 3710|    194|    }
 3711|      0|    break;
 3712|       |    /* angzarr */
 3713|    194|  case 0xc6cdeaad8d1103a2ULL:
  ------------------
  |  Branch (3713:3): [True: 194, False: 516k]
  ------------------
 3714|    194|    if (len == 7) {
  ------------------
  |  Branch (3714:9): [True: 194, False: 0]
  ------------------
 3715|    194|      return 9084;
 3716|    194|    }
 3717|      0|    break;
 3718|       |    /* aogon */
 3719|    194|  case 0x0cf463d453e1e9b3ULL:
  ------------------
  |  Branch (3719:3): [True: 194, False: 516k]
  ------------------
 3720|    194|    if (len == 5) {
  ------------------
  |  Branch (3720:9): [True: 194, False: 0]
  ------------------
 3721|    194|      return 261;
 3722|    194|    }
 3723|      0|    break;
 3724|       |    /* aopf */
 3725|    194|  case 0x9e4fda83b9564eb7ULL:
  ------------------
  |  Branch (3725:3): [True: 194, False: 516k]
  ------------------
 3726|    194|    if (len == 4) {
  ------------------
  |  Branch (3726:9): [True: 194, False: 0]
  ------------------
 3727|    194|      return 120146;
 3728|    194|    }
 3729|      0|    break;
 3730|       |    /* ap */
 3731|    197|  case 0x089c5207b545b034ULL:
  ------------------
  |  Branch (3731:3): [True: 197, False: 516k]
  ------------------
 3732|    197|    if (len == 2) {
  ------------------
  |  Branch (3732:9): [True: 197, False: 0]
  ------------------
 3733|    197|      return 8776;
 3734|    197|    }
 3735|      0|    break;
 3736|       |    /* apE */
 3737|    194|  case 0xe74fd419056ad003ULL:
  ------------------
  |  Branch (3737:3): [True: 194, False: 516k]
  ------------------
 3738|    194|    if (len == 3) {
  ------------------
  |  Branch (3738:9): [True: 194, False: 0]
  ------------------
 3739|    194|      return 10864;
 3740|    194|    }
 3741|      0|    break;
 3742|       |    /* apacir */
 3743|    210|  case 0x5f3cc1cd02de219fULL:
  ------------------
  |  Branch (3743:3): [True: 210, False: 516k]
  ------------------
 3744|    210|    if (len == 6) {
  ------------------
  |  Branch (3744:9): [True: 210, False: 0]
  ------------------
 3745|    210|      return 10863;
 3746|    210|    }
 3747|      0|    break;
 3748|       |    /* ape */
 3749|    194|  case 0xe74fb419056a99a3ULL:
  ------------------
  |  Branch (3749:3): [True: 194, False: 516k]
  ------------------
 3750|    194|    if (len == 3) {
  ------------------
  |  Branch (3750:9): [True: 194, False: 0]
  ------------------
 3751|    194|      return 8778;
 3752|    194|    }
 3753|      0|    break;
 3754|       |    /* apid */
 3755|    194|  case 0x7731cd8434465239ULL:
  ------------------
  |  Branch (3755:3): [True: 194, False: 516k]
  ------------------
 3756|    194|    if (len == 4) {
  ------------------
  |  Branch (3756:9): [True: 194, False: 0]
  ------------------
 3757|    194|      return 8779;
 3758|    194|    }
 3759|      0|    break;
 3760|       |    /* apos */
 3761|    198|  case 0x772ad684344042d6ULL:
  ------------------
  |  Branch (3761:3): [True: 198, False: 516k]
  ------------------
 3762|    198|    if (len == 4) {
  ------------------
  |  Branch (3762:9): [True: 198, False: 0]
  ------------------
 3763|    198|      return 39;
 3764|    198|    }
 3765|      0|    break;
 3766|       |    /* approx */
 3767|    195|  case 0xf6f732436054c575ULL:
  ------------------
  |  Branch (3767:3): [True: 195, False: 516k]
  ------------------
 3768|    195|    if (len == 6) {
  ------------------
  |  Branch (3768:9): [True: 195, False: 0]
  ------------------
 3769|    195|      return 8776;
 3770|    195|    }
 3771|      0|    break;
 3772|       |    /* approxeq */
 3773|    194|  case 0x3963fcdf2270dc73ULL:
  ------------------
  |  Branch (3773:3): [True: 194, False: 516k]
  ------------------
 3774|    194|    if (len == 8) {
  ------------------
  |  Branch (3774:9): [True: 194, False: 0]
  ------------------
 3775|    194|      return 8778;
 3776|    194|    }
 3777|      0|    break;
 3778|       |    /* aring */
 3779|    194|  case 0xad28c1b66943af66ULL:
  ------------------
  |  Branch (3779:3): [True: 194, False: 516k]
  ------------------
 3780|    194|    if (len == 5) {
  ------------------
  |  Branch (3780:9): [True: 194, False: 0]
  ------------------
 3781|    194|      return 229;
 3782|    194|    }
 3783|      0|    break;
 3784|       |    /* ascr */
 3785|    194|  case 0x90396084422e1c88ULL:
  ------------------
  |  Branch (3785:3): [True: 194, False: 516k]
  ------------------
 3786|    194|    if (len == 4) {
  ------------------
  |  Branch (3786:9): [True: 194, False: 0]
  ------------------
 3787|    194|      return 119990;
 3788|    194|    }
 3789|      0|    break;
 3790|       |    /* ast */
 3791|    195|  case 0xe759b5190572efdbULL:
  ------------------
  |  Branch (3791:3): [True: 195, False: 516k]
  ------------------
 3792|    195|    if (len == 3) {
  ------------------
  |  Branch (3792:9): [True: 195, False: 0]
  ------------------
 3793|    195|      return 42;
 3794|    195|    }
 3795|      0|    break;
 3796|       |    /* asymp */
 3797|    194|  case 0x7265e4bc90c95ea9ULL:
  ------------------
  |  Branch (3797:3): [True: 194, False: 516k]
  ------------------
 3798|    194|    if (len == 5) {
  ------------------
  |  Branch (3798:9): [True: 194, False: 0]
  ------------------
 3799|    194|      return 8776;
 3800|    194|    }
 3801|      0|    break;
 3802|       |    /* asympeq */
 3803|    194|  case 0xcdc771287ce765efULL:
  ------------------
  |  Branch (3803:3): [True: 194, False: 516k]
  ------------------
 3804|    194|    if (len == 7) {
  ------------------
  |  Branch (3804:9): [True: 194, False: 0]
  ------------------
 3805|    194|      return 8781;
 3806|    194|    }
 3807|      0|    break;
 3808|       |    /* atilde */
 3809|    194|  case 0x05d4ecb7fe854daaULL:
  ------------------
  |  Branch (3809:3): [True: 194, False: 516k]
  ------------------
 3810|    194|    if (len == 6) {
  ------------------
  |  Branch (3810:9): [True: 194, False: 0]
  ------------------
 3811|    194|      return 227;
 3812|    194|    }
 3813|      0|    break;
 3814|       |    /* auml */
 3815|    194|  case 0x5ddf5884261ecf6aULL:
  ------------------
  |  Branch (3815:3): [True: 194, False: 516k]
  ------------------
 3816|    194|    if (len == 4) {
  ------------------
  |  Branch (3816:9): [True: 194, False: 0]
  ------------------
 3817|    194|      return 228;
 3818|    194|    }
 3819|      0|    break;
 3820|       |    /* awconint */
 3821|    194|  case 0x27feddaa36b56c30ULL:
  ------------------
  |  Branch (3821:3): [True: 194, False: 516k]
  ------------------
 3822|    194|    if (len == 8) {
  ------------------
  |  Branch (3822:9): [True: 194, False: 0]
  ------------------
 3823|    194|      return 8755;
 3824|    194|    }
 3825|      0|    break;
 3826|       |    /* awint */
 3827|    410|  case 0x48310e9dacc4fc22ULL:
  ------------------
  |  Branch (3827:3): [True: 410, False: 515k]
  ------------------
 3828|    410|    if (len == 5) {
  ------------------
  |  Branch (3828:9): [True: 410, False: 0]
  ------------------
 3829|    410|      return 10769;
 3830|    410|    }
 3831|      0|    break;
 3832|       |    /* bNot */
 3833|    194|  case 0xea87339c68299b2aULL:
  ------------------
  |  Branch (3833:3): [True: 194, False: 516k]
  ------------------
 3834|    194|    if (len == 4) {
  ------------------
  |  Branch (3834:9): [True: 194, False: 0]
  ------------------
 3835|    194|      return 10989;
 3836|    194|    }
 3837|      0|    break;
 3838|       |    /* backcong */
 3839|    194|  case 0xf7a31fb4a5b9a90bULL:
  ------------------
  |  Branch (3839:3): [True: 194, False: 516k]
  ------------------
 3840|    194|    if (len == 8) {
  ------------------
  |  Branch (3840:9): [True: 194, False: 0]
  ------------------
 3841|    194|      return 8780;
 3842|    194|    }
 3843|      0|    break;
 3844|       |    /* backepsilon */
 3845|    194|  case 0x1f86996fd8144d1cULL:
  ------------------
  |  Branch (3845:3): [True: 194, False: 516k]
  ------------------
 3846|    194|    if (len == 11) {
  ------------------
  |  Branch (3846:9): [True: 194, False: 0]
  ------------------
 3847|    194|      return 1014;
 3848|    194|    }
 3849|      0|    break;
 3850|       |    /* backprime */
 3851|    194|  case 0x89ef4bffd15d8309ULL:
  ------------------
  |  Branch (3851:3): [True: 194, False: 516k]
  ------------------
 3852|    194|    if (len == 9) {
  ------------------
  |  Branch (3852:9): [True: 194, False: 0]
  ------------------
 3853|    194|      return 8245;
 3854|    194|    }
 3855|      0|    break;
 3856|       |    /* backsim */
 3857|    194|  case 0xab5800f4f5168169ULL:
  ------------------
  |  Branch (3857:3): [True: 194, False: 516k]
  ------------------
 3858|    194|    if (len == 7) {
  ------------------
  |  Branch (3858:9): [True: 194, False: 0]
  ------------------
 3859|    194|      return 8765;
 3860|    194|    }
 3861|      0|    break;
 3862|       |    /* backsimeq */
 3863|    194|  case 0xf669bfbb371fc8afULL:
  ------------------
  |  Branch (3863:3): [True: 194, False: 516k]
  ------------------
 3864|    194|    if (len == 9) {
  ------------------
  |  Branch (3864:9): [True: 194, False: 0]
  ------------------
 3865|    194|      return 8909;
 3866|    194|    }
 3867|      0|    break;
 3868|       |    /* barvee */
 3869|    194|  case 0xb231c09ae7a186c2ULL:
  ------------------
  |  Branch (3869:3): [True: 194, False: 516k]
  ------------------
 3870|    194|    if (len == 6) {
  ------------------
  |  Branch (3870:9): [True: 194, False: 0]
  ------------------
 3871|    194|      return 8893;
 3872|    194|    }
 3873|      0|    break;
 3874|       |    /* barwed */
 3875|    194|  case 0xb9fae89aebcae8f6ULL:
  ------------------
  |  Branch (3875:3): [True: 194, False: 516k]
  ------------------
 3876|    194|    if (len == 6) {
  ------------------
  |  Branch (3876:9): [True: 194, False: 0]
  ------------------
 3877|    194|      return 8965;
 3878|    194|    }
 3879|      0|    break;
 3880|       |    /* barwedge */
 3881|    194|  case 0xa902e07a80d93432ULL:
  ------------------
  |  Branch (3881:3): [True: 194, False: 516k]
  ------------------
 3882|    194|    if (len == 8) {
  ------------------
  |  Branch (3882:9): [True: 194, False: 0]
  ------------------
 3883|    194|      return 8965;
 3884|    194|    }
 3885|      0|    break;
 3886|       |    /* bbrk */
 3887|    194|  case 0xb39c7a9bb85128daULL:
  ------------------
  |  Branch (3887:3): [True: 194, False: 516k]
  ------------------
 3888|    194|    if (len == 4) {
  ------------------
  |  Branch (3888:9): [True: 194, False: 0]
  ------------------
 3889|    194|      return 9141;
 3890|    194|    }
 3891|      0|    break;
 3892|       |    /* bbrktbrk */
 3893|    194|  case 0x70de54777288938fULL:
  ------------------
  |  Branch (3893:3): [True: 194, False: 516k]
  ------------------
 3894|    194|    if (len == 8) {
  ------------------
  |  Branch (3894:9): [True: 194, False: 0]
  ------------------
 3895|    194|      return 9142;
 3896|    194|    }
 3897|      0|    break;
 3898|       |    /* bcong */
 3899|    194|  case 0x529afe8f454763a4ULL:
  ------------------
  |  Branch (3899:3): [True: 194, False: 516k]
  ------------------
 3900|    194|    if (len == 5) {
  ------------------
  |  Branch (3900:9): [True: 194, False: 0]
  ------------------
 3901|    194|      return 8780;
 3902|    194|    }
 3903|      0|    break;
 3904|       |    /* bcy */
 3905|    194|  case 0x003f2719133d9bb1ULL:
  ------------------
  |  Branch (3905:3): [True: 194, False: 516k]
  ------------------
 3906|    194|    if (len == 3) {
  ------------------
  |  Branch (3906:9): [True: 194, False: 0]
  ------------------
 3907|    194|      return 1073;
 3908|    194|    }
 3909|      0|    break;
 3910|       |    /* bdquo */
 3911|    194|  case 0x3f77cc650c415f12ULL:
  ------------------
  |  Branch (3911:3): [True: 194, False: 516k]
  ------------------
 3912|    194|    if (len == 5) {
  ------------------
  |  Branch (3912:9): [True: 194, False: 0]
  ------------------
 3913|    194|      return 8222;
 3914|    194|    }
 3915|      0|    break;
 3916|       |    /* becaus */
 3917|    194|  case 0x128df4455afcabbcULL:
  ------------------
  |  Branch (3917:3): [True: 194, False: 516k]
  ------------------
 3918|    194|    if (len == 6) {
  ------------------
  |  Branch (3918:9): [True: 194, False: 0]
  ------------------
 3919|    194|      return 8757;
 3920|    194|    }
 3921|      0|    break;
 3922|       |    /* because */
 3923|    194|  case 0x83e1ead99b5801bbULL:
  ------------------
  |  Branch (3923:3): [True: 194, False: 516k]
  ------------------
 3924|    194|    if (len == 7) {
  ------------------
  |  Branch (3924:9): [True: 194, False: 0]
  ------------------
 3925|    194|      return 8757;
 3926|    194|    }
 3927|      0|    break;
 3928|       |    /* bemptyv */
 3929|    194|  case 0x2921ac040bcfdf88ULL:
  ------------------
  |  Branch (3929:3): [True: 194, False: 516k]
  ------------------
 3930|    194|    if (len == 7) {
  ------------------
  |  Branch (3930:9): [True: 194, False: 0]
  ------------------
 3931|    194|      return 10672;
 3932|    194|    }
 3933|      0|    break;
 3934|       |    /* bepsi */
 3935|    194|  case 0xe9e9195e93d2d070ULL:
  ------------------
  |  Branch (3935:3): [True: 194, False: 516k]
  ------------------
 3936|    194|    if (len == 5) {
  ------------------
  |  Branch (3936:9): [True: 194, False: 0]
  ------------------
 3937|    194|      return 1014;
 3938|    194|    }
 3939|      0|    break;
 3940|       |    /* bernou */
 3941|    194|  case 0x8bef73c2769abe90ULL:
  ------------------
  |  Branch (3941:3): [True: 194, False: 516k]
  ------------------
 3942|    194|    if (len == 6) {
  ------------------
  |  Branch (3942:9): [True: 194, False: 0]
  ------------------
 3943|    194|      return 8492;
 3944|    194|    }
 3945|      0|    break;
 3946|       |    /* beta */
 3947|    194|  case 0x7627619b954620a7ULL:
  ------------------
  |  Branch (3947:3): [True: 194, False: 516k]
  ------------------
 3948|    194|    if (len == 4) {
  ------------------
  |  Branch (3948:9): [True: 194, False: 0]
  ------------------
 3949|    194|      return 946;
 3950|    194|    }
 3951|      0|    break;
 3952|       |    /* beth */
 3953|    194|  case 0x7627589b9546115cULL:
  ------------------
  |  Branch (3953:3): [True: 194, False: 516k]
  ------------------
 3954|    194|    if (len == 4) {
  ------------------
  |  Branch (3954:9): [True: 194, False: 0]
  ------------------
 3955|    194|      return 8502;
 3956|    194|    }
 3957|      0|    break;
 3958|       |    /* between */
 3959|      0|  case 0x13f5793e33ebda4fULL:
  ------------------
  |  Branch (3959:3): [True: 0, False: 516k]
  ------------------
 3960|      0|    if (len == 7) {
  ------------------
  |  Branch (3960:9): [True: 0, False: 0]
  ------------------
 3961|      0|      return 8812;
 3962|      0|    }
 3963|      0|    break;
 3964|       |    /* bfr */
 3965|    194|  case 0x00352e1913355311ULL:
  ------------------
  |  Branch (3965:3): [True: 194, False: 516k]
  ------------------
 3966|    194|    if (len == 3) {
  ------------------
  |  Branch (3966:9): [True: 194, False: 0]
  ------------------
 3967|    194|      return 120095;
 3968|    194|    }
 3969|      0|    break;
 3970|       |    /* bigcap */
 3971|    194|  case 0x66a1cd38b4559337ULL:
  ------------------
  |  Branch (3971:3): [True: 194, False: 516k]
  ------------------
 3972|    194|    if (len == 6) {
  ------------------
  |  Branch (3972:9): [True: 194, False: 0]
  ------------------
 3973|    194|      return 8898;
 3974|    194|    }
 3975|      0|    break;
 3976|       |    /* bigcirc */
 3977|    194|  case 0x75aac35a468b94a2ULL:
  ------------------
  |  Branch (3977:3): [True: 194, False: 516k]
  ------------------
 3978|    194|    if (len == 7) {
  ------------------
  |  Branch (3978:9): [True: 194, False: 0]
  ------------------
 3979|    194|      return 9711;
 3980|    194|    }
 3981|      0|    break;
 3982|       |    /* bigcup */
 3983|    194|  case 0x66cab538b4786f83ULL:
  ------------------
  |  Branch (3983:3): [True: 194, False: 516k]
  ------------------
 3984|    194|    if (len == 6) {
  ------------------
  |  Branch (3984:9): [True: 194, False: 0]
  ------------------
 3985|    194|      return 8899;
 3986|    194|    }
 3987|      0|    break;
 3988|       |    /* bigodot */
 3989|    194|  case 0x00329d36af984149ULL:
  ------------------
  |  Branch (3989:3): [True: 194, False: 516k]
  ------------------
 3990|    194|    if (len == 7) {
  ------------------
  |  Branch (3990:9): [True: 194, False: 0]
  ------------------
 3991|    194|      return 10752;
 3992|    194|    }
 3993|      0|    break;
 3994|       |    /* bigoplus */
 3995|    196|  case 0xb3fa774c9b5999d6ULL:
  ------------------
  |  Branch (3995:3): [True: 196, False: 516k]
  ------------------
 3996|    196|    if (len == 8) {
  ------------------
  |  Branch (3996:9): [True: 196, False: 0]
  ------------------
 3997|    196|      return 10753;
 3998|    196|    }
 3999|      0|    break;
 4000|       |    /* bigotimes */
 4001|    194|  case 0x964677165af01df0ULL:
  ------------------
  |  Branch (4001:3): [True: 194, False: 516k]
  ------------------
 4002|    194|    if (len == 9) {
  ------------------
  |  Branch (4002:9): [True: 194, False: 0]
  ------------------
 4003|    194|      return 10754;
 4004|    194|    }
 4005|      0|    break;
 4006|       |    /* bigsqcup */
 4007|    217|  case 0xcba3da4d7567bb77ULL:
  ------------------
  |  Branch (4007:3): [True: 217, False: 516k]
  ------------------
 4008|    217|    if (len == 8) {
  ------------------
  |  Branch (4008:9): [True: 217, False: 0]
  ------------------
 4009|    217|      return 10758;
 4010|    217|    }
 4011|      0|    break;
 4012|       |    /* bigstar */
 4013|    194|  case 0xaebaced22dc666cdULL:
  ------------------
  |  Branch (4013:3): [True: 194, False: 516k]
  ------------------
 4014|    194|    if (len == 7) {
  ------------------
  |  Branch (4014:9): [True: 194, False: 0]
  ------------------
 4015|    194|      return 9733;
 4016|    194|    }
 4017|      0|    break;
 4018|       |    /* bigtriangledown */
 4019|    194|  case 0x1fc10217e49907c1ULL:
  ------------------
  |  Branch (4019:3): [True: 194, False: 516k]
  ------------------
 4020|    194|    if (len == 15) {
  ------------------
  |  Branch (4020:9): [True: 194, False: 0]
  ------------------
 4021|    194|      return 9661;
 4022|    194|    }
 4023|      0|    break;
 4024|       |    /* bigtriangleup */
 4025|    194|  case 0x22c381a2b4a5cb54ULL:
  ------------------
  |  Branch (4025:3): [True: 194, False: 516k]
  ------------------
 4026|    194|    if (len == 13) {
  ------------------
  |  Branch (4026:9): [True: 194, False: 0]
  ------------------
 4027|    194|      return 9651;
 4028|    194|    }
 4029|      0|    break;
 4030|       |    /* biguplus */
 4031|    194|  case 0xd574b3a4a232e004ULL:
  ------------------
  |  Branch (4031:3): [True: 194, False: 516k]
  ------------------
 4032|    194|    if (len == 8) {
  ------------------
  |  Branch (4032:9): [True: 194, False: 0]
  ------------------
 4033|    194|      return 10756;
 4034|    194|    }
 4035|      0|    break;
 4036|       |    /* bigvee */
 4037|    194|  case 0x0591f5387cda7157ULL:
  ------------------
  |  Branch (4037:3): [True: 194, False: 516k]
  ------------------
 4038|    194|    if (len == 6) {
  ------------------
  |  Branch (4038:9): [True: 194, False: 0]
  ------------------
 4039|    194|      return 8897;
 4040|    194|    }
 4041|      0|    break;
 4042|       |    /* bigwedge */
 4043|    194|  case 0x7cb187b4d69a7c43ULL:
  ------------------
  |  Branch (4043:3): [True: 194, False: 516k]
  ------------------
 4044|    194|    if (len == 8) {
  ------------------
  |  Branch (4044:9): [True: 194, False: 0]
  ------------------
 4045|    194|      return 8896;
 4046|    194|    }
 4047|      0|    break;
 4048|       |    /* bkarow */
 4049|    194|  case 0x3a1703b39d00232fULL:
  ------------------
  |  Branch (4049:3): [True: 194, False: 516k]
  ------------------
 4050|    194|    if (len == 6) {
  ------------------
  |  Branch (4050:9): [True: 194, False: 0]
  ------------------
 4051|    194|      return 10509;
 4052|    194|    }
 4053|      0|    break;
 4054|       |    /* blacklozenge */
 4055|    195|  case 0xe140184056c4c19eULL:
  ------------------
  |  Branch (4055:3): [True: 195, False: 516k]
  ------------------
 4056|    195|    if (len == 12) {
  ------------------
  |  Branch (4056:9): [True: 195, False: 0]
  ------------------
 4057|    195|      return 10731;
 4058|    195|    }
 4059|      0|    break;
 4060|       |    /* blacksquare */
 4061|    194|  case 0x326bda4e4b76ad43ULL:
  ------------------
  |  Branch (4061:3): [True: 194, False: 516k]
  ------------------
 4062|    194|    if (len == 11) {
  ------------------
  |  Branch (4062:9): [True: 194, False: 0]
  ------------------
 4063|    194|      return 9642;
 4064|    194|    }
 4065|      0|    break;
 4066|       |    /* blacktriangle */
 4067|    194|  case 0x51a4d3c0f2e80080ULL:
  ------------------
  |  Branch (4067:3): [True: 194, False: 516k]
  ------------------
 4068|    194|    if (len == 13) {
  ------------------
  |  Branch (4068:9): [True: 194, False: 0]
  ------------------
 4069|    194|      return 9652;
 4070|    194|    }
 4071|      0|    break;
 4072|       |    /* blacktriangledown */
 4073|    194|  case 0x5888191ebb113c4cULL:
  ------------------
  |  Branch (4073:3): [True: 194, False: 516k]
  ------------------
 4074|    194|    if (len == 17) {
  ------------------
  |  Branch (4074:9): [True: 194, False: 0]
  ------------------
 4075|    194|      return 9662;
 4076|    194|    }
 4077|      0|    break;
 4078|       |    /* blacktriangleleft */
 4079|    194|  case 0x09ec9b6536e37281ULL:
  ------------------
  |  Branch (4079:3): [True: 194, False: 516k]
  ------------------
 4080|    194|    if (len == 17) {
  ------------------
  |  Branch (4080:9): [True: 194, False: 0]
  ------------------
 4081|    194|      return 9666;
 4082|    194|    }
 4083|      0|    break;
 4084|       |    /* blacktriangleright */
 4085|      0|  case 0x352e04485c817ee2ULL:
  ------------------
  |  Branch (4085:3): [True: 0, False: 516k]
  ------------------
 4086|      0|    if (len == 18) {
  ------------------
  |  Branch (4086:9): [True: 0, False: 0]
  ------------------
 4087|      0|      return 9656;
 4088|      0|    }
 4089|      0|    break;
 4090|       |    /* blank */
 4091|    194|  case 0x4b31e8abbc4aafc1ULL:
  ------------------
  |  Branch (4091:3): [True: 194, False: 516k]
  ------------------
 4092|    194|    if (len == 5) {
  ------------------
  |  Branch (4092:9): [True: 194, False: 0]
  ------------------
 4093|    194|      return 9251;
 4094|    194|    }
 4095|      0|    break;
 4096|       |    /* blk12 */
 4097|    194|  case 0xf34977ab8a22afa3ULL:
  ------------------
  |  Branch (4097:3): [True: 194, False: 516k]
  ------------------
 4098|    194|    if (len == 5) {
  ------------------
  |  Branch (4098:9): [True: 194, False: 0]
  ------------------
 4099|    194|      return 9618;
 4100|    194|    }
 4101|      0|    break;
 4102|       |    /* blk14 */
 4103|    194|  case 0xf3497dab8a22b9d5ULL:
  ------------------
  |  Branch (4103:3): [True: 194, False: 516k]
  ------------------
 4104|    194|    if (len == 5) {
  ------------------
  |  Branch (4104:9): [True: 194, False: 0]
  ------------------
 4105|    194|      return 9617;
 4106|    194|    }
 4107|      0|    break;
 4108|       |    /* blk34 */
 4109|    194|  case 0xf35089ab8a28ece7ULL:
  ------------------
  |  Branch (4109:3): [True: 194, False: 516k]
  ------------------
 4110|    194|    if (len == 5) {
  ------------------
  |  Branch (4110:9): [True: 194, False: 0]
  ------------------
 4111|    194|      return 9619;
 4112|    194|    }
 4113|      0|    break;
 4114|       |    /* block */
 4115|    194|  case 0x14e5faab9ce0e362ULL:
  ------------------
  |  Branch (4115:3): [True: 194, False: 516k]
  ------------------
 4116|    194|    if (len == 5) {
  ------------------
  |  Branch (4116:9): [True: 194, False: 0]
  ------------------
 4117|    194|      return 9608;
 4118|    194|    }
 4119|      0|    break;
 4120|       |    /* bnot */
 4121|    194|  case 0xd47e139bca708ecaULL:
  ------------------
  |  Branch (4121:3): [True: 194, False: 516k]
  ------------------
 4122|    194|    if (len == 4) {
  ------------------
  |  Branch (4122:9): [True: 194, False: 0]
  ------------------
 4123|    194|      return 8976;
 4124|    194|    }
 4125|      0|    break;
 4126|       |    /* bopf */
 4127|    194|  case 0xcd25d89bc6a7c704ULL:
  ------------------
  |  Branch (4127:3): [True: 194, False: 516k]
  ------------------
 4128|    194|    if (len == 4) {
  ------------------
  |  Branch (4128:9): [True: 194, False: 0]
  ------------------
 4129|    194|      return 120147;
 4130|    194|    }
 4131|      0|    break;
 4132|       |    /* bot */
 4133|    199|  case 0x004d32191349ebbeULL:
  ------------------
  |  Branch (4133:3): [True: 199, False: 516k]
  ------------------
 4134|    199|    if (len == 3) {
  ------------------
  |  Branch (4134:9): [True: 199, False: 0]
  ------------------
 4135|    199|      return 8869;
 4136|    199|    }
 4137|      0|    break;
 4138|       |    /* bottom */
 4139|    194|  case 0xe117b24625d0110aULL:
  ------------------
  |  Branch (4139:3): [True: 194, False: 516k]
  ------------------
 4140|    194|    if (len == 6) {
  ------------------
  |  Branch (4140:9): [True: 194, False: 0]
  ------------------
 4141|    194|      return 8869;
 4142|    194|    }
 4143|      0|    break;
 4144|       |    /* bowtie */
 4145|    194|  case 0xc52b083fcd2c748bULL:
  ------------------
  |  Branch (4145:3): [True: 194, False: 516k]
  ------------------
 4146|    194|    if (len == 6) {
  ------------------
  |  Branch (4146:9): [True: 194, False: 0]
  ------------------
 4147|    194|      return 8904;
 4148|    194|    }
 4149|      0|    break;
 4150|       |    /* boxDL */
 4151|    194|  case 0xf7b114b2660eaacaULL:
  ------------------
  |  Branch (4151:3): [True: 194, False: 516k]
  ------------------
 4152|    194|    if (len == 5) {
  ------------------
  |  Branch (4152:9): [True: 194, False: 0]
  ------------------
 4153|    194|      return 9559;
 4154|    194|    }
 4155|      0|    break;
 4156|       |    /* boxDR */
 4157|    194|  case 0xf7b116b2660eae30ULL:
  ------------------
  |  Branch (4157:3): [True: 194, False: 516k]
  ------------------
 4158|    194|    if (len == 5) {
  ------------------
  |  Branch (4158:9): [True: 194, False: 0]
  ------------------
 4159|    194|      return 9556;
 4160|    194|    }
 4161|      0|    break;
 4162|       |    /* boxDl */
 4163|    194|  case 0xf7b134b2660ee12aULL:
  ------------------
  |  Branch (4163:3): [True: 194, False: 516k]
  ------------------
 4164|    194|    if (len == 5) {
  ------------------
  |  Branch (4164:9): [True: 194, False: 0]
  ------------------
 4165|    194|      return 9558;
 4166|    194|    }
 4167|      0|    break;
 4168|       |    /* boxDr */
 4169|    194|  case 0xf7b136b2660ee490ULL:
  ------------------
  |  Branch (4169:3): [True: 194, False: 516k]
  ------------------
 4170|    194|    if (len == 5) {
  ------------------
  |  Branch (4170:9): [True: 194, False: 0]
  ------------------
 4171|    194|      return 9555;
 4172|    194|    }
 4173|      0|    break;
 4174|       |    /* boxH */
 4175|    194|  case 0xcd0a0e9bc68fa80eULL:
  ------------------
  |  Branch (4175:3): [True: 194, False: 516k]
  ------------------
 4176|    194|    if (len == 4) {
  ------------------
  |  Branch (4176:9): [True: 194, False: 0]
  ------------------
 4177|    194|      return 9552;
 4178|    194|    }
 4179|      0|    break;
 4180|       |    /* boxHD */
 4181|    194|  case 0xf7bf1cb2661af5beULL:
  ------------------
  |  Branch (4181:3): [True: 194, False: 516k]
  ------------------
 4182|    194|    if (len == 5) {
  ------------------
  |  Branch (4182:9): [True: 194, False: 0]
  ------------------
 4183|    194|      return 9574;
 4184|    194|    }
 4185|      0|    break;
 4186|       |    /* boxHU */
 4187|    194|  case 0xf7bf2db2661b12a1ULL:
  ------------------
  |  Branch (4187:3): [True: 194, False: 516k]
  ------------------
 4188|    194|    if (len == 5) {
  ------------------
  |  Branch (4188:9): [True: 194, False: 0]
  ------------------
 4189|    194|      return 9577;
 4190|    194|    }
 4191|      0|    break;
 4192|       |    /* boxHd */
 4193|    194|  case 0xf7bf3cb2661b2c1eULL:
  ------------------
  |  Branch (4193:3): [True: 194, False: 516k]
  ------------------
 4194|    194|    if (len == 5) {
  ------------------
  |  Branch (4194:9): [True: 194, False: 0]
  ------------------
 4195|    194|      return 9572;
 4196|    194|    }
 4197|      0|    break;
 4198|       |    /* boxHu */
 4199|    194|  case 0xf7bf4db2661b4901ULL:
  ------------------
  |  Branch (4199:3): [True: 194, False: 516k]
  ------------------
 4200|    194|    if (len == 5) {
  ------------------
  |  Branch (4200:9): [True: 194, False: 0]
  ------------------
 4201|    194|      return 9575;
 4202|    194|    }
 4203|      0|    break;
 4204|       |    /* boxUL */
 4205|    194|  case 0xf77e12b265e34dcbULL:
  ------------------
  |  Branch (4205:3): [True: 194, False: 516k]
  ------------------
 4206|    194|    if (len == 5) {
  ------------------
  |  Branch (4206:9): [True: 194, False: 0]
  ------------------
 4207|    194|      return 9565;
 4208|    194|    }
 4209|      0|    break;
 4210|       |    /* boxUR */
 4211|    194|  case 0xf77e20b265e36595ULL:
  ------------------
  |  Branch (4211:3): [True: 194, False: 516k]
  ------------------
 4212|    194|    if (len == 5) {
  ------------------
  |  Branch (4212:9): [True: 194, False: 0]
  ------------------
 4213|    194|      return 9562;
 4214|    194|    }
 4215|      0|    break;
 4216|       |    /* boxUl */
 4217|    194|  case 0xf77e32b265e3842bULL:
  ------------------
  |  Branch (4217:3): [True: 194, False: 516k]
  ------------------
 4218|    194|    if (len == 5) {
  ------------------
  |  Branch (4218:9): [True: 194, False: 0]
  ------------------
 4219|    194|      return 9564;
 4220|    194|    }
 4221|      0|    break;
 4222|       |    /* boxUr */
 4223|    194|  case 0xf77e40b265e39bf5ULL:
  ------------------
  |  Branch (4223:3): [True: 194, False: 516k]
  ------------------
 4224|    194|    if (len == 5) {
  ------------------
  |  Branch (4224:9): [True: 194, False: 0]
  ------------------
 4225|    194|      return 9561;
 4226|    194|    }
 4227|      0|    break;
 4228|       |    /* boxV */
 4229|    199|  case 0xcd09f89bc68f82acULL:
  ------------------
  |  Branch (4229:3): [True: 199, False: 516k]
  ------------------
 4230|    199|    if (len == 4) {
  ------------------
  |  Branch (4230:9): [True: 199, False: 0]
  ------------------
 4231|    199|      return 9553;
 4232|    199|    }
 4233|      0|    break;
 4234|       |    /* boxVH */
 4235|    194|  case 0xf77454b265db696cULL:
  ------------------
  |  Branch (4235:3): [True: 194, False: 516k]
  ------------------
 4236|    194|    if (len == 5) {
  ------------------
  |  Branch (4236:9): [True: 194, False: 0]
  ------------------
 4237|    194|      return 9580;
 4238|    194|    }
 4239|      0|    break;
 4240|       |    /* boxVL */
 4241|    194|  case 0xf77450b265db62a0ULL:
  ------------------
  |  Branch (4241:3): [True: 194, False: 516k]
  ------------------
 4242|    194|    if (len == 5) {
  ------------------
  |  Branch (4242:9): [True: 194, False: 0]
  ------------------
 4243|    194|      return 9571;
 4244|    194|    }
 4245|      0|    break;
 4246|       |    /* boxVR */
 4247|    194|  case 0xf7746eb265db959aULL:
  ------------------
  |  Branch (4247:3): [True: 194, False: 516k]
  ------------------
 4248|    194|    if (len == 5) {
  ------------------
  |  Branch (4248:9): [True: 194, False: 0]
  ------------------
 4249|    194|      return 9568;
 4250|    194|    }
 4251|      0|    break;
 4252|       |    /* boxVh */
 4253|    195|  case 0xf77434b265db330cULL:
  ------------------
  |  Branch (4253:3): [True: 195, False: 516k]
  ------------------
 4254|    195|    if (len == 5) {
  ------------------
  |  Branch (4254:9): [True: 195, False: 0]
  ------------------
 4255|    195|      return 9579;
 4256|    195|    }
 4257|      0|    break;
 4258|       |    /* boxVl */
 4259|    194|  case 0xf77430b265db2c40ULL:
  ------------------
  |  Branch (4259:3): [True: 194, False: 516k]
  ------------------
 4260|    194|    if (len == 5) {
  ------------------
  |  Branch (4260:9): [True: 194, False: 0]
  ------------------
 4261|    194|      return 9570;
 4262|    194|    }
 4263|      0|    break;
 4264|       |    /* boxVr */
 4265|    194|  case 0xf7744eb265db5f3aULL:
  ------------------
  |  Branch (4265:3): [True: 194, False: 516k]
  ------------------
 4266|    194|    if (len == 5) {
  ------------------
  |  Branch (4266:9): [True: 194, False: 0]
  ------------------
 4267|    194|      return 9567;
 4268|    194|    }
 4269|      0|    break;
 4270|       |    /* boxbox */
 4271|    194|  case 0xa8b8cd22b199ab2fULL:
  ------------------
  |  Branch (4271:3): [True: 194, False: 516k]
  ------------------
 4272|    194|    if (len == 6) {
  ------------------
  |  Branch (4272:9): [True: 194, False: 0]
  ------------------
 4273|    194|      return 10697;
 4274|    194|    }
 4275|      0|    break;
 4276|       |    /* boxdL */
 4277|    194|  case 0xf74454b265b245aaULL:
  ------------------
  |  Branch (4277:3): [True: 194, False: 516k]
  ------------------
 4278|    194|    if (len == 5) {
  ------------------
  |  Branch (4278:9): [True: 194, False: 0]
  ------------------
 4279|    194|      return 9557;
 4280|    194|    }
 4281|      0|    break;
 4282|       |    /* boxdR */
 4283|    194|  case 0xf74456b265b24910ULL:
  ------------------
  |  Branch (4283:3): [True: 194, False: 516k]
  ------------------
 4284|    194|    if (len == 5) {
  ------------------
  |  Branch (4284:9): [True: 194, False: 0]
  ------------------
 4285|    194|      return 9554;
 4286|    194|    }
 4287|      0|    break;
 4288|       |    /* boxdl */
 4289|    194|  case 0xf74434b265b20f4aULL:
  ------------------
  |  Branch (4289:3): [True: 194, False: 516k]
  ------------------
 4290|    194|    if (len == 5) {
  ------------------
  |  Branch (4290:9): [True: 194, False: 0]
  ------------------
 4291|    194|      return 9488;
 4292|    194|    }
 4293|      0|    break;
 4294|       |    /* boxdr */
 4295|    194|  case 0xf74436b265b212b0ULL:
  ------------------
  |  Branch (4295:3): [True: 194, False: 516k]
  ------------------
 4296|    194|    if (len == 5) {
  ------------------
  |  Branch (4296:9): [True: 194, False: 0]
  ------------------
 4297|    194|      return 9484;
 4298|    194|    }
 4299|      0|    break;
 4300|       |    /* boxh */
 4301|    196|  case 0xcd09ee9bc68f71aeULL:
  ------------------
  |  Branch (4301:3): [True: 196, False: 516k]
  ------------------
 4302|    196|    if (len == 4) {
  ------------------
  |  Branch (4302:9): [True: 196, False: 0]
  ------------------
 4303|    196|      return 9472;
 4304|    196|    }
 4305|      0|    break;
 4306|       |    /* boxhD */
 4307|    195|  case 0xf7525cb265be909eULL:
  ------------------
  |  Branch (4307:3): [True: 195, False: 516k]
  ------------------
 4308|    195|    if (len == 5) {
  ------------------
  |  Branch (4308:9): [True: 195, False: 0]
  ------------------
 4309|    195|      return 9573;
 4310|    195|    }
 4311|      0|    break;
 4312|       |    /* boxhU */
 4313|    194|  case 0xf7526db265bead81ULL:
  ------------------
  |  Branch (4313:3): [True: 194, False: 516k]
  ------------------
 4314|    194|    if (len == 5) {
  ------------------
  |  Branch (4314:9): [True: 194, False: 0]
  ------------------
 4315|    194|      return 9576;
 4316|    194|    }
 4317|      0|    break;
 4318|       |    /* boxhd */
 4319|    194|  case 0xf7523cb265be5a3eULL:
  ------------------
  |  Branch (4319:3): [True: 194, False: 516k]
  ------------------
 4320|    194|    if (len == 5) {
  ------------------
  |  Branch (4320:9): [True: 194, False: 0]
  ------------------
 4321|    194|      return 9516;
 4322|    194|    }
 4323|      0|    break;
 4324|       |    /* boxhu */
 4325|    194|  case 0xf7524db265be7721ULL:
  ------------------
  |  Branch (4325:3): [True: 194, False: 516k]
  ------------------
 4326|    194|    if (len == 5) {
  ------------------
  |  Branch (4326:9): [True: 194, False: 0]
  ------------------
 4327|    194|      return 9524;
 4328|    194|    }
 4329|      0|    break;
 4330|       |    /* boxminus */
 4331|    194|  case 0x5ce8a2f5a44bf02eULL:
  ------------------
  |  Branch (4331:3): [True: 194, False: 516k]
  ------------------
 4332|    194|    if (len == 8) {
  ------------------
  |  Branch (4332:9): [True: 194, False: 0]
  ------------------
 4333|    194|      return 8863;
 4334|    194|    }
 4335|      0|    break;
 4336|       |    /* boxplus */
 4337|    194|  case 0xd798de7c66e871a6ULL:
  ------------------
  |  Branch (4337:3): [True: 194, False: 516k]
  ------------------
 4338|    194|    if (len == 7) {
  ------------------
  |  Branch (4338:9): [True: 194, False: 0]
  ------------------
 4339|    194|      return 8862;
 4340|    194|    }
 4341|      0|    break;
 4342|       |    /* boxtimes */
 4343|    194|  case 0xe9ecdf64a372ce00ULL:
  ------------------
  |  Branch (4343:3): [True: 194, False: 516k]
  ------------------
 4344|    194|    if (len == 8) {
  ------------------
  |  Branch (4344:9): [True: 194, False: 0]
  ------------------
 4345|    194|      return 8864;
 4346|    194|    }
 4347|      0|    break;
 4348|       |    /* boxuL */
 4349|    194|  case 0xf71152b26586e8abULL:
  ------------------
  |  Branch (4349:3): [True: 194, False: 516k]
  ------------------
 4350|    194|    if (len == 5) {
  ------------------
  |  Branch (4350:9): [True: 194, False: 0]
  ------------------
 4351|    194|      return 9563;
 4352|    194|    }
 4353|      0|    break;
 4354|       |    /* boxuR */
 4355|    194|  case 0xf71160b265870075ULL:
  ------------------
  |  Branch (4355:3): [True: 194, False: 516k]
  ------------------
 4356|    194|    if (len == 5) {
  ------------------
  |  Branch (4356:9): [True: 194, False: 0]
  ------------------
 4357|    194|      return 9560;
 4358|    194|    }
 4359|      0|    break;
 4360|       |    /* boxul */
 4361|    194|  case 0xf71132b26586b24bULL:
  ------------------
  |  Branch (4361:3): [True: 194, False: 516k]
  ------------------
 4362|    194|    if (len == 5) {
  ------------------
  |  Branch (4362:9): [True: 194, False: 0]
  ------------------
 4363|    194|      return 9496;
 4364|    194|    }
 4365|      0|    break;
 4366|       |    /* boxur */
 4367|    194|  case 0xf71140b26586ca15ULL:
  ------------------
  |  Branch (4367:3): [True: 194, False: 516k]
  ------------------
 4368|    194|    if (len == 5) {
  ------------------
  |  Branch (4368:9): [True: 194, False: 0]
  ------------------
 4369|    194|      return 9492;
 4370|    194|    }
 4371|      0|    break;
 4372|       |    /* boxv */
 4373|    194|  case 0xcd09d89bc68f4c4cULL:
  ------------------
  |  Branch (4373:3): [True: 194, False: 516k]
  ------------------
 4374|    194|    if (len == 4) {
  ------------------
  |  Branch (4374:9): [True: 194, False: 0]
  ------------------
 4375|    194|      return 9474;
 4376|    194|    }
 4377|      0|    break;
 4378|       |    /* boxvH */
 4379|    194|  case 0xf70714b2657e2accULL:
  ------------------
  |  Branch (4379:3): [True: 194, False: 516k]
  ------------------
 4380|    194|    if (len == 5) {
  ------------------
  |  Branch (4380:9): [True: 194, False: 0]
  ------------------
 4381|    194|      return 9578;
 4382|    194|    }
 4383|      0|    break;
 4384|       |    /* boxvL */
 4385|    194|  case 0xf70710b2657e2400ULL:
  ------------------
  |  Branch (4385:3): [True: 194, False: 516k]
  ------------------
 4386|    194|    if (len == 5) {
  ------------------
  |  Branch (4386:9): [True: 194, False: 0]
  ------------------
 4387|    194|      return 9569;
 4388|    194|    }
 4389|      0|    break;
 4390|       |    /* boxvR */
 4391|    194|  case 0xf7072eb2657e56faULL:
  ------------------
  |  Branch (4391:3): [True: 194, False: 516k]
  ------------------
 4392|    194|    if (len == 5) {
  ------------------
  |  Branch (4392:9): [True: 194, False: 0]
  ------------------
 4393|    194|      return 9566;
 4394|    194|    }
 4395|      0|    break;
 4396|       |    /* boxvh */
 4397|    194|  case 0xf70734b2657e612cULL:
  ------------------
  |  Branch (4397:3): [True: 194, False: 516k]
  ------------------
 4398|    194|    if (len == 5) {
  ------------------
  |  Branch (4398:9): [True: 194, False: 0]
  ------------------
 4399|    194|      return 9532;
 4400|    194|    }
 4401|      0|    break;
 4402|       |    /* boxvl */
 4403|    194|  case 0xf70730b2657e5a60ULL:
  ------------------
  |  Branch (4403:3): [True: 194, False: 516k]
  ------------------
 4404|    194|    if (len == 5) {
  ------------------
  |  Branch (4404:9): [True: 194, False: 0]
  ------------------
 4405|    194|      return 9508;
 4406|    194|    }
 4407|      0|    break;
 4408|       |    /* boxvr */
 4409|    194|  case 0xf7074eb2657e8d5aULL:
  ------------------
  |  Branch (4409:3): [True: 194, False: 516k]
  ------------------
 4410|    194|    if (len == 5) {
  ------------------
  |  Branch (4410:9): [True: 194, False: 0]
  ------------------
 4411|    194|      return 9500;
 4412|    194|    }
 4413|      0|    break;
 4414|       |    /* bprime */
 4415|    194|  case 0x6e336f092b135bc0ULL:
  ------------------
  |  Branch (4415:3): [True: 194, False: 516k]
  ------------------
 4416|    194|    if (len == 6) {
  ------------------
  |  Branch (4416:9): [True: 194, False: 0]
  ------------------
 4417|    194|      return 8245;
 4418|    194|    }
 4419|      0|    break;
 4420|       |    /* breve */
 4421|    195|  case 0x9391771deba731f5ULL:
  ------------------
  |  Branch (4421:3): [True: 195, False: 516k]
  ------------------
 4422|    195|    if (len == 5) {
  ------------------
  |  Branch (4422:9): [True: 195, False: 0]
  ------------------
 4423|    195|      return 728;
 4424|    195|    }
 4425|      0|    break;
 4426|       |    /* brvbar */
 4427|    194|  case 0x2f8cb2679876e436ULL:
  ------------------
  |  Branch (4427:3): [True: 194, False: 516k]
  ------------------
 4428|    194|    if (len == 6) {
  ------------------
  |  Branch (4428:9): [True: 194, False: 0]
  ------------------
 4429|    194|      return 166;
 4430|    194|    }
 4431|      0|    break;
 4432|       |    /* bscr */
 4433|    194|  case 0x3549c29c01b19e33ULL:
  ------------------
  |  Branch (4433:3): [True: 194, False: 516k]
  ------------------
 4434|    194|    if (len == 4) {
  ------------------
  |  Branch (4434:9): [True: 194, False: 0]
  ------------------
 4435|    194|      return 119991;
 4436|    194|    }
 4437|      0|    break;
 4438|       |    /* bsemi */
 4439|    194|  case 0x73e6fb16ffedbd43ULL:
  ------------------
  |  Branch (4439:3): [True: 194, False: 516k]
  ------------------
 4440|    194|    if (len == 5) {
  ------------------
  |  Branch (4440:9): [True: 194, False: 0]
  ------------------
 4441|    194|      return 8271;
 4442|    194|    }
 4443|      0|    break;
 4444|       |    /* bsim */
 4445|    194|  case 0x356bdb9c01ceaf14ULL:
  ------------------
  |  Branch (4445:3): [True: 194, False: 516k]
  ------------------
 4446|    194|    if (len == 4) {
  ------------------
  |  Branch (4446:9): [True: 194, False: 0]
  ------------------
 4447|    194|      return 8765;
 4448|    194|    }
 4449|      0|    break;
 4450|       |    /* bsime */
 4451|    297|  case 0x94f59b1712341d03ULL:
  ------------------
  |  Branch (4451:3): [True: 297, False: 516k]
  ------------------
 4452|    297|    if (len == 5) {
  ------------------
  |  Branch (4452:9): [True: 297, False: 0]
  ------------------
 4453|    297|      return 8909;
 4454|    297|    }
 4455|      0|    break;
 4456|       |    /* bsol */
 4457|    196|  case 0x3572e09c01d4d641ULL:
  ------------------
  |  Branch (4457:3): [True: 196, False: 516k]
  ------------------
 4458|    196|    if (len == 4) {
  ------------------
  |  Branch (4458:9): [True: 196, False: 0]
  ------------------
 4459|    196|      return 92;
 4460|    196|    }
 4461|      0|    break;
 4462|       |    /* bsolb */
 4463|    194|  case 0xa709cc171ca7dd79ULL:
  ------------------
  |  Branch (4463:3): [True: 194, False: 516k]
  ------------------
 4464|    194|    if (len == 5) {
  ------------------
  |  Branch (4464:9): [True: 194, False: 0]
  ------------------
 4465|    194|      return 10693;
 4466|    194|    }
 4467|      0|    break;
 4468|       |    /* bsolhsub */
 4469|    194|  case 0xbcd9c3005169587fULL:
  ------------------
  |  Branch (4469:3): [True: 194, False: 516k]
  ------------------
 4470|    194|    if (len == 8) {
  ------------------
  |  Branch (4470:9): [True: 194, False: 0]
  ------------------
 4471|    194|      return 10184;
 4472|    194|    }
 4473|      0|    break;
 4474|       |    /* bull */
 4475|    194|  case 0xffcae49be2f70668ULL:
  ------------------
  |  Branch (4475:3): [True: 194, False: 516k]
  ------------------
 4476|    194|    if (len == 4) {
  ------------------
  |  Branch (4476:9): [True: 194, False: 0]
  ------------------
 4477|    194|      return 8226;
 4478|    194|    }
 4479|      0|    break;
 4480|       |    /* bullet */
 4481|    194|  case 0x27fd172670080039ULL:
  ------------------
  |  Branch (4481:3): [True: 194, False: 516k]
  ------------------
 4482|    194|    if (len == 6) {
  ------------------
  |  Branch (4482:9): [True: 194, False: 0]
  ------------------
 4483|    194|      return 8226;
 4484|    194|    }
 4485|      0|    break;
 4486|       |    /* bump */
 4487|    196|  case 0xffcdd69be2f92475ULL:
  ------------------
  |  Branch (4487:3): [True: 196, False: 516k]
  ------------------
 4488|    196|    if (len == 4) {
  ------------------
  |  Branch (4488:9): [True: 196, False: 0]
  ------------------
 4489|    196|      return 8782;
 4490|    196|    }
 4491|      0|    break;
 4492|       |    /* bumpE */
 4493|    194|  case 0xa3e7dae2ad587d90ULL:
  ------------------
  |  Branch (4493:3): [True: 194, False: 516k]
  ------------------
 4494|    194|    if (len == 5) {
  ------------------
  |  Branch (4494:9): [True: 194, False: 0]
  ------------------
 4495|    194|      return 10926;
 4496|    194|    }
 4497|      0|    break;
 4498|       |    /* bumpe */
 4499|    194|  case 0xa3e7bae2ad584730ULL:
  ------------------
  |  Branch (4499:3): [True: 194, False: 516k]
  ------------------
 4500|    194|    if (len == 5) {
  ------------------
  |  Branch (4500:9): [True: 194, False: 0]
  ------------------
 4501|    194|      return 8783;
 4502|    194|    }
 4503|      0|    break;
 4504|       |    /* bumpeq */
 4505|    194|  case 0xdb09d02c8d011373ULL:
  ------------------
  |  Branch (4505:3): [True: 194, False: 516k]
  ------------------
 4506|    194|    if (len == 6) {
  ------------------
  |  Branch (4506:9): [True: 194, False: 0]
  ------------------
 4507|    194|      return 8783;
 4508|    194|    }
 4509|      0|    break;
 4510|       |    /* cacute */
 4511|    194|  case 0x7a6117c2eb89164eULL:
  ------------------
  |  Branch (4511:3): [True: 194, False: 516k]
  ------------------
 4512|    194|    if (len == 6) {
  ------------------
  |  Branch (4512:9): [True: 194, False: 0]
  ------------------
 4513|    194|      return 263;
 4514|    194|    }
 4515|      0|    break;
 4516|       |    /* cap */
 4517|    195|  case 0xf5e303190ce49c5bULL:
  ------------------
  |  Branch (4517:3): [True: 195, False: 516k]
  ------------------
 4518|    195|    if (len == 3) {
  ------------------
  |  Branch (4518:9): [True: 195, False: 0]
  ------------------
 4519|    195|      return 8745;
 4520|    195|    }
 4521|      0|    break;
 4522|       |    /* capand */
 4523|    194|  case 0x75f4cf4050f8e70cULL:
  ------------------
  |  Branch (4523:3): [True: 194, False: 516k]
  ------------------
 4524|    194|    if (len == 6) {
  ------------------
  |  Branch (4524:9): [True: 194, False: 0]
  ------------------
 4525|    194|      return 10820;
 4526|    194|    }
 4527|      0|    break;
 4528|       |    /* capbrcup */
 4529|    194|  case 0xb08a1c9466fb22e5ULL:
  ------------------
  |  Branch (4529:3): [True: 194, False: 516k]
  ------------------
 4530|    194|    if (len == 8) {
  ------------------
  |  Branch (4530:9): [True: 194, False: 0]
  ------------------
 4531|    194|      return 10825;
 4532|    194|    }
 4533|      0|    break;
 4534|       |    /* capcap */
 4535|    194|  case 0x63fb9f40469bf001ULL:
  ------------------
  |  Branch (4535:3): [True: 194, False: 516k]
  ------------------
 4536|    194|    if (len == 6) {
  ------------------
  |  Branch (4536:9): [True: 194, False: 0]
  ------------------
 4537|    194|      return 10827;
 4538|    194|    }
 4539|      0|    break;
 4540|       |    /* capcup */
 4541|    194|  case 0x643f974046d5af35ULL:
  ------------------
  |  Branch (4541:3): [True: 194, False: 516k]
  ------------------
 4542|    194|    if (len == 6) {
  ------------------
  |  Branch (4542:9): [True: 194, False: 0]
  ------------------
 4543|    194|      return 10823;
 4544|    194|    }
 4545|      0|    break;
 4546|       |    /* capdot */
 4547|    194|  case 0xa14eb040698a0436ULL:
  ------------------
  |  Branch (4547:3): [True: 194, False: 516k]
  ------------------
 4548|    194|    if (len == 6) {
  ------------------
  |  Branch (4548:9): [True: 194, False: 0]
  ------------------
 4549|    194|      return 10816;
 4550|    194|    }
 4551|      0|    break;
 4552|       |    /* caret */
 4553|    194|  case 0xaf9aa53b09744808ULL:
  ------------------
  |  Branch (4553:3): [True: 194, False: 516k]
  ------------------
 4554|    194|    if (len == 5) {
  ------------------
  |  Branch (4554:9): [True: 194, False: 0]
  ------------------
 4555|    194|      return 8257;
 4556|    194|    }
 4557|      0|    break;
 4558|       |    /* caron */
 4559|    194|  case 0xafbc8f3b0991090cULL:
  ------------------
  |  Branch (4559:3): [True: 194, False: 516k]
  ------------------
 4560|    194|    if (len == 5) {
  ------------------
  |  Branch (4560:9): [True: 194, False: 0]
  ------------------
 4561|    194|      return 711;
 4562|    194|    }
 4563|      0|    break;
 4564|       |    /* ccaps */
 4565|    194|  case 0xa0049d28c53d27e3ULL:
  ------------------
  |  Branch (4565:3): [True: 194, False: 516k]
  ------------------
 4566|    194|    if (len == 5) {
  ------------------
  |  Branch (4566:9): [True: 194, False: 0]
  ------------------
 4567|    194|      return 10829;
 4568|    194|    }
 4569|      0|    break;
 4570|       |    /* ccaron */
 4571|    194|  case 0x135a47471cd543c5ULL:
  ------------------
  |  Branch (4571:3): [True: 194, False: 516k]
  ------------------
 4572|    194|    if (len == 6) {
  ------------------
  |  Branch (4572:9): [True: 194, False: 0]
  ------------------
 4573|    194|      return 269;
 4574|    194|    }
 4575|      0|    break;
 4576|       |    /* ccedil */
 4577|    194|  case 0x9353a36aba40d147ULL:
  ------------------
  |  Branch (4577:3): [True: 194, False: 516k]
  ------------------
 4578|    194|    if (len == 6) {
  ------------------
  |  Branch (4578:9): [True: 194, False: 0]
  ------------------
 4579|    194|      return 231;
 4580|    194|    }
 4581|      0|    break;
 4582|       |    /* ccirc */
 4583|    194|  case 0xe4dcdd28ec1add65ULL:
  ------------------
  |  Branch (4583:3): [True: 194, False: 516k]
  ------------------
 4584|    194|    if (len == 5) {
  ------------------
  |  Branch (4584:9): [True: 194, False: 0]
  ------------------
 4585|    194|      return 265;
 4586|    194|    }
 4587|      0|    break;
 4588|       |    /* ccups */
 4589|    194|  case 0x4d42d929275e1d1fULL:
  ------------------
  |  Branch (4589:3): [True: 194, False: 516k]
  ------------------
 4590|    194|    if (len == 5) {
  ------------------
  |  Branch (4590:9): [True: 194, False: 0]
  ------------------
 4591|    194|      return 10828;
 4592|    194|    }
 4593|      0|    break;
 4594|       |    /* ccupssm */
 4595|    194|  case 0x3094013bfd0225ebULL:
  ------------------
  |  Branch (4595:3): [True: 194, False: 516k]
  ------------------
 4596|    194|    if (len == 7) {
  ------------------
  |  Branch (4596:9): [True: 194, False: 0]
  ------------------
 4597|    194|      return 10832;
 4598|    194|    }
 4599|      0|    break;
 4600|       |    /* cdot */
 4601|    195|  case 0xce6cdd90f666f1b9ULL:
  ------------------
  |  Branch (4601:3): [True: 195, False: 516k]
  ------------------
 4602|    195|    if (len == 4) {
  ------------------
  |  Branch (4602:9): [True: 195, False: 0]
  ------------------
 4603|    195|      return 267;
 4604|    195|    }
 4605|      0|    break;
 4606|       |    /* cedil */
 4607|    195|  case 0xc773035e6bd81236ULL:
  ------------------
  |  Branch (4607:3): [True: 195, False: 516k]
  ------------------
 4608|    195|    if (len == 5) {
  ------------------
  |  Branch (4608:9): [True: 195, False: 0]
  ------------------
 4609|    195|      return 184;
 4610|    195|    }
 4611|      0|    break;
 4612|       |    /* cemptyv */
 4613|    194|  case 0xfdb3fba1f6c681d3ULL:
  ------------------
  |  Branch (4613:3): [True: 194, False: 516k]
  ------------------
 4614|    194|    if (len == 7) {
  ------------------
  |  Branch (4614:9): [True: 194, False: 0]
  ------------------
 4615|    194|      return 10674;
 4616|    194|    }
 4617|      0|    break;
 4618|       |    /* cent */
 4619|    194|  case 0xd9920290fd6b234fULL:
  ------------------
  |  Branch (4619:3): [True: 194, False: 516k]
  ------------------
 4620|    194|    if (len == 4) {
  ------------------
  |  Branch (4620:9): [True: 194, False: 0]
  ------------------
 4621|    194|      return 162;
 4622|    194|    }
 4623|      0|    break;
 4624|       |    /* centerdot */
 4625|    194|  case 0x2971ee7e30eab3cbULL:
  ------------------
  |  Branch (4625:3): [True: 194, False: 516k]
  ------------------
 4626|    194|    if (len == 9) {
  ------------------
  |  Branch (4626:9): [True: 194, False: 0]
  ------------------
 4627|    194|      return 183;
 4628|    194|    }
 4629|      0|    break;
 4630|       |    /* cfr */
 4631|    194|  case 0xf5e60b190ce6dfcaULL:
  ------------------
  |  Branch (4631:3): [True: 194, False: 516k]
  ------------------
 4632|    194|    if (len == 3) {
  ------------------
  |  Branch (4632:9): [True: 194, False: 0]
  ------------------
 4633|    194|      return 120096;
 4634|    194|    }
 4635|      0|    break;
 4636|       |    /* chcy */
 4637|    194|  case 0xf29c8c910b55142aULL:
  ------------------
  |  Branch (4637:3): [True: 194, False: 516k]
  ------------------
 4638|    194|    if (len == 4) {
  ------------------
  |  Branch (4638:9): [True: 194, False: 0]
  ------------------
 4639|    194|      return 1095;
 4640|    194|    }
 4641|      0|    break;
 4642|       |    /* check */
 4643|    194|  case 0x830cf17637260a67ULL:
  ------------------
  |  Branch (4643:3): [True: 194, False: 516k]
  ------------------
 4644|    194|    if (len == 5) {
  ------------------
  |  Branch (4644:9): [True: 194, False: 0]
  ------------------
 4645|    194|      return 10003;
 4646|    194|    }
 4647|      0|    break;
 4648|       |    /* checkmark */
 4649|    194|  case 0x851faf02ca753532ULL:
  ------------------
  |  Branch (4649:3): [True: 194, False: 516k]
  ------------------
 4650|    194|    if (len == 9) {
  ------------------
  |  Branch (4650:9): [True: 194, False: 0]
  ------------------
 4651|    194|      return 10003;
 4652|    194|    }
 4653|      0|    break;
 4654|       |    /* chi */
 4655|    194|  case 0xf5faf6190cf91825ULL:
  ------------------
  |  Branch (4655:3): [True: 194, False: 516k]
  ------------------
 4656|    194|    if (len == 3) {
  ------------------
  |  Branch (4656:9): [True: 194, False: 0]
  ------------------
 4657|    194|      return 967;
 4658|    194|    }
 4659|      0|    break;
 4660|       |    /* cir */
 4661|    199|  case 0xf5fdf5190cfb4c49ULL:
  ------------------
  |  Branch (4661:3): [True: 199, False: 516k]
  ------------------
 4662|    199|    if (len == 3) {
  ------------------
  |  Branch (4662:9): [True: 199, False: 0]
  ------------------
 4663|    199|      return 9675;
 4664|    199|    }
 4665|      0|    break;
 4666|       |    /* cirE */
 4667|    194|  case 0xf9d385910f023864ULL:
  ------------------
  |  Branch (4667:3): [True: 194, False: 516k]
  ------------------
 4668|    194|    if (len == 4) {
  ------------------
  |  Branch (4668:9): [True: 194, False: 0]
  ------------------
 4669|    194|      return 10691;
 4670|    194|    }
 4671|      0|    break;
 4672|       |    /* circ */
 4673|    199|  case 0xf9d3a3910f026b5eULL:
  ------------------
  |  Branch (4673:3): [True: 199, False: 516k]
  ------------------
 4674|    199|    if (len == 4) {
  ------------------
  |  Branch (4674:9): [True: 199, False: 0]
  ------------------
 4675|    199|      return 710;
 4676|    199|    }
 4677|      0|    break;
 4678|       |    /* circeq */
 4679|    194|  case 0x2c7b618f62ee6090ULL:
  ------------------
  |  Branch (4679:3): [True: 194, False: 516k]
  ------------------
 4680|    194|    if (len == 6) {
  ------------------
  |  Branch (4680:9): [True: 194, False: 0]
  ------------------
 4681|    194|      return 8791;
 4682|    194|    }
 4683|      0|    break;
 4684|       |    /* circlearrowleft */
 4685|      0|  case 0x31ffd7e3c08715ffULL:
  ------------------
  |  Branch (4685:3): [True: 0, False: 516k]
  ------------------
 4686|      0|    if (len == 15) {
  ------------------
  |  Branch (4686:9): [True: 0, False: 0]
  ------------------
 4687|      0|      return 8634;
 4688|      0|    }
 4689|      0|    break;
 4690|       |    /* circlearrowright */
 4691|      0|  case 0x41c1836512521eb0ULL:
  ------------------
  |  Branch (4691:3): [True: 0, False: 516k]
  ------------------
 4692|      0|    if (len == 16) {
  ------------------
  |  Branch (4692:9): [True: 0, False: 0]
  ------------------
 4693|      0|      return 8635;
 4694|      0|    }
 4695|      0|    break;
 4696|       |    /* circledR */
 4697|    194|  case 0x0013fe405e688f5fULL:
  ------------------
  |  Branch (4697:3): [True: 194, False: 516k]
  ------------------
 4698|    194|    if (len == 8) {
  ------------------
  |  Branch (4698:9): [True: 194, False: 0]
  ------------------
 4699|    194|      return 174;
 4700|    194|    }
 4701|      0|    break;
 4702|       |    /* circledS */
 4703|    194|  case 0x0013fd405e688dacULL:
  ------------------
  |  Branch (4703:3): [True: 194, False: 516k]
  ------------------
 4704|    194|    if (len == 8) {
  ------------------
  |  Branch (4704:9): [True: 194, False: 0]
  ------------------
 4705|    194|      return 9416;
 4706|    194|    }
 4707|      0|    break;
 4708|       |    /* circledast */
 4709|    194|  case 0x8e629bd6aa1be615ULL:
  ------------------
  |  Branch (4709:3): [True: 194, False: 516k]
  ------------------
 4710|    194|    if (len == 10) {
  ------------------
  |  Branch (4710:9): [True: 194, False: 0]
  ------------------
 4711|    194|      return 8859;
 4712|    194|    }
 4713|      0|    break;
 4714|       |    /* circledcirc */
 4715|    194|  case 0x108df1b1f66d796cULL:
  ------------------
  |  Branch (4715:3): [True: 194, False: 516k]
  ------------------
 4716|    194|    if (len == 11) {
  ------------------
  |  Branch (4716:9): [True: 194, False: 0]
  ------------------
 4717|    194|      return 8858;
 4718|    194|    }
 4719|      0|    break;
 4720|       |    /* circleddash */
 4721|    194|  case 0xccdbf0aaf5e77bbbULL:
  ------------------
  |  Branch (4721:3): [True: 194, False: 516k]
  ------------------
 4722|    194|    if (len == 11) {
  ------------------
  |  Branch (4722:9): [True: 194, False: 0]
  ------------------
 4723|    194|      return 8861;
 4724|    194|    }
 4725|      0|    break;
 4726|       |    /* cire */
 4727|    194|  case 0xf9d3a5910f026ec4ULL:
  ------------------
  |  Branch (4727:3): [True: 194, False: 516k]
  ------------------
 4728|    194|    if (len == 4) {
  ------------------
  |  Branch (4728:9): [True: 194, False: 0]
  ------------------
 4729|    194|      return 8791;
 4730|    194|    }
 4731|      0|    break;
 4732|       |    /* cirfnint */
 4733|    194|  case 0xa05ae627d40e3d3aULL:
  ------------------
  |  Branch (4733:3): [True: 194, False: 516k]
  ------------------
 4734|    194|    if (len == 8) {
  ------------------
  |  Branch (4734:9): [True: 194, False: 0]
  ------------------
 4735|    194|      return 10768;
 4736|    194|    }
 4737|      0|    break;
 4738|       |    /* cirmid */
 4739|    194|  case 0xf94e948f462bf2a1ULL:
  ------------------
  |  Branch (4739:3): [True: 194, False: 516k]
  ------------------
 4740|    194|    if (len == 6) {
  ------------------
  |  Branch (4740:9): [True: 194, False: 0]
  ------------------
 4741|    194|      return 10991;
 4742|    194|    }
 4743|      0|    break;
 4744|       |    /* cirscir */
 4745|    194|  case 0xea80eb2cfcdaf958ULL:
  ------------------
  |  Branch (4745:3): [True: 194, False: 516k]
  ------------------
 4746|    194|    if (len == 7) {
  ------------------
  |  Branch (4746:9): [True: 194, False: 0]
  ------------------
 4747|    194|      return 10690;
 4748|    194|    }
 4749|      0|    break;
 4750|       |    /* clubs */
 4751|    194|  case 0x68f17994f4c0393aULL:
  ------------------
  |  Branch (4751:3): [True: 194, False: 516k]
  ------------------
 4752|    194|    if (len == 5) {
  ------------------
  |  Branch (4752:9): [True: 194, False: 0]
  ------------------
 4753|    194|      return 9827;
 4754|    194|    }
 4755|      0|    break;
 4756|       |    /* clubsuit */
 4757|    194|  case 0x622806af27ce26d8ULL:
  ------------------
  |  Branch (4757:3): [True: 194, False: 516k]
  ------------------
 4758|    194|    if (len == 8) {
  ------------------
  |  Branch (4758:9): [True: 194, False: 0]
  ------------------
 4759|    194|      return 9827;
 4760|    194|    }
 4761|      0|    break;
 4762|       |    /* colon */
 4763|    194|  case 0x77f5cd8e246c7a9cULL:
  ------------------
  |  Branch (4763:3): [True: 194, False: 516k]
  ------------------
 4764|    194|    if (len == 5) {
  ------------------
  |  Branch (4764:9): [True: 194, False: 0]
  ------------------
 4765|    194|      return 58;
 4766|    194|    }
 4767|      0|    break;
 4768|       |    /* colone */
 4769|    194|  case 0x43274187e454f51bULL:
  ------------------
  |  Branch (4769:3): [True: 194, False: 516k]
  ------------------
 4770|    194|    if (len == 6) {
  ------------------
  |  Branch (4770:9): [True: 194, False: 0]
  ------------------
 4771|    194|      return 8788;
 4772|    194|    }
 4773|      0|    break;
 4774|       |    /* coloneq */
 4775|    194|  case 0x70a9c3e8fc5d031eULL:
  ------------------
  |  Branch (4775:3): [True: 194, False: 516k]
  ------------------
 4776|    194|    if (len == 7) {
  ------------------
  |  Branch (4776:9): [True: 194, False: 0]
  ------------------
 4777|    194|      return 8788;
 4778|    194|    }
 4779|      0|    break;
 4780|       |    /* comma */
 4781|  5.65k|  case 0x6d47878e1dcd3758ULL:
  ------------------
  |  Branch (4781:3): [True: 5.65k, False: 510k]
  ------------------
 4782|  5.65k|    if (len == 5) {
  ------------------
  |  Branch (4782:9): [True: 5.65k, False: 0]
  ------------------
 4783|  5.65k|      return 44;
 4784|  5.65k|    }
 4785|      0|    break;
 4786|       |    /* commat */
 4787|    194|  case 0x7dc2827ca3b4bfc4ULL:
  ------------------
  |  Branch (4787:3): [True: 194, False: 516k]
  ------------------
 4788|    194|    if (len == 6) {
  ------------------
  |  Branch (4788:9): [True: 194, False: 0]
  ------------------
 4789|    194|      return 64;
 4790|    194|    }
 4791|      0|    break;
 4792|       |    /* comp */
 4793|    194|  case 0x0bcd0e91195fc6aaULL:
  ------------------
  |  Branch (4793:3): [True: 194, False: 516k]
  ------------------
 4794|    194|    if (len == 4) {
  ------------------
  |  Branch (4794:9): [True: 194, False: 0]
  ------------------
 4795|    194|      return 8705;
 4796|    194|    }
 4797|      0|    break;
 4798|       |    /* compfn */
 4799|    194|  case 0x527d9f7c8b35fb3eULL:
  ------------------
  |  Branch (4799:3): [True: 194, False: 516k]
  ------------------
 4800|    194|    if (len == 6) {
  ------------------
  |  Branch (4800:9): [True: 194, False: 0]
  ------------------
 4801|    194|      return 8728;
 4802|    194|    }
 4803|      0|    break;
 4804|       |    /* complement */
 4805|      0|  case 0x8c359ee736a77e9dULL:
  ------------------
  |  Branch (4805:3): [True: 0, False: 516k]
  ------------------
 4806|      0|    if (len == 10) {
  ------------------
  |  Branch (4806:9): [True: 0, False: 0]
  ------------------
 4807|      0|      return 8705;
 4808|      0|    }
 4809|      0|    break;
 4810|       |    /* complexes */
 4811|      0|  case 0x668e2fc28864ffdfULL:
  ------------------
  |  Branch (4811:3): [True: 0, False: 516k]
  ------------------
 4812|      0|    if (len == 9) {
  ------------------
  |  Branch (4812:9): [True: 0, False: 0]
  ------------------
 4813|      0|      return 8450;
 4814|      0|    }
 4815|      0|    break;
 4816|       |    /* cong */
 4817|    194|  case 0x0bc9f991195d6d24ULL:
  ------------------
  |  Branch (4817:3): [True: 194, False: 516k]
  ------------------
 4818|    194|    if (len == 4) {
  ------------------
  |  Branch (4818:9): [True: 194, False: 0]
  ------------------
 4819|    194|      return 8773;
 4820|    194|    }
 4821|      0|    break;
 4822|       |    /* congdot */
 4823|    194|  case 0xbe5eca19385c0babULL:
  ------------------
  |  Branch (4823:3): [True: 194, False: 516k]
  ------------------
 4824|    194|    if (len == 7) {
  ------------------
  |  Branch (4824:9): [True: 194, False: 0]
  ------------------
 4825|    194|      return 10861;
 4826|    194|    }
 4827|      0|    break;
 4828|       |    /* conint */
 4829|    194|  case 0x1983be75915754c4ULL:
  ------------------
  |  Branch (4829:3): [True: 194, False: 516k]
  ------------------
 4830|    194|    if (len == 6) {
  ------------------
  |  Branch (4830:9): [True: 194, False: 0]
  ------------------
 4831|    194|      return 8750;
 4832|    194|    }
 4833|      0|    break;
 4834|       |    /* copf */
 4835|    194|  case 0x0bf90a911984fac9ULL:
  ------------------
  |  Branch (4835:3): [True: 194, False: 516k]
  ------------------
 4836|    194|    if (len == 4) {
  ------------------
  |  Branch (4836:9): [True: 194, False: 0]
  ------------------
 4837|    194|      return 120148;
 4838|    194|    }
 4839|      0|    break;
 4840|       |    /* coprod */
 4841|    194|  case 0x578339e7ba570baeULL:
  ------------------
  |  Branch (4841:3): [True: 194, False: 516k]
  ------------------
 4842|    194|    if (len == 6) {
  ------------------
  |  Branch (4842:9): [True: 194, False: 0]
  ------------------
 4843|    194|      return 8720;
 4844|    194|    }
 4845|      0|    break;
 4846|       |    /* copy */
 4847|    194|  case 0x0bf903911984eee4ULL:
  ------------------
  |  Branch (4847:3): [True: 194, False: 516k]
  ------------------
 4848|    194|    if (len == 4) {
  ------------------
  |  Branch (4848:9): [True: 194, False: 0]
  ------------------
 4849|    194|      return 169;
 4850|    194|    }
 4851|      0|    break;
 4852|       |    /* copysr */
 4853|    194|  case 0x8302eae7d308a685ULL:
  ------------------
  |  Branch (4853:3): [True: 194, False: 516k]
  ------------------
 4854|    194|    if (len == 6) {
  ------------------
  |  Branch (4854:9): [True: 194, False: 0]
  ------------------
 4855|    194|      return 8471;
 4856|    194|    }
 4857|      0|    break;
 4858|       |    /* crarr */
 4859|    194|  case 0x9134f99ec3d24cd3ULL:
  ------------------
  |  Branch (4859:3): [True: 194, False: 516k]
  ------------------
 4860|    194|    if (len == 5) {
  ------------------
  |  Branch (4860:9): [True: 194, False: 0]
  ------------------
 4861|    194|      return 8629;
 4862|    194|    }
 4863|      0|    break;
 4864|       |    /* cross */
 4865|    194|  case 0x0c36469f09fb69fbULL:
  ------------------
  |  Branch (4865:3): [True: 194, False: 516k]
  ------------------
 4866|    194|    if (len == 5) {
  ------------------
  |  Branch (4866:9): [True: 194, False: 0]
  ------------------
 4867|    194|      return 10007;
 4868|    194|    }
 4869|      0|    break;
 4870|       |    /* cscr */
 4871|    194|  case 0x1a08789090a6f9e6ULL:
  ------------------
  |  Branch (4871:3): [True: 194, False: 516k]
  ------------------
 4872|    194|    if (len == 4) {
  ------------------
  |  Branch (4872:9): [True: 194, False: 0]
  ------------------
 4873|    194|      return 119992;
 4874|    194|    }
 4875|      0|    break;
 4876|       |    /* csub */
 4877|    194|  case 0x19e68890908a2eb0ULL:
  ------------------
  |  Branch (4877:3): [True: 194, False: 516k]
  ------------------
 4878|    194|    if (len == 4) {
  ------------------
  |  Branch (4878:9): [True: 194, False: 0]
  ------------------
 4879|    194|      return 10959;
 4880|    194|    }
 4881|      0|    break;
 4882|       |    /* csube */
 4883|    194|  case 0x8ce8e2a59acd93efULL:
  ------------------
  |  Branch (4883:3): [True: 194, False: 516k]
  ------------------
 4884|    194|    if (len == 5) {
  ------------------
  |  Branch (4884:9): [True: 194, False: 0]
  ------------------
 4885|    194|      return 10961;
 4886|    194|    }
 4887|      0|    break;
 4888|       |    /* csup */
 4889|    194|  case 0x19e67a90908a16e6ULL:
  ------------------
  |  Branch (4889:3): [True: 194, False: 516k]
  ------------------
 4890|    194|    if (len == 4) {
  ------------------
  |  Branch (4890:9): [True: 194, False: 0]
  ------------------
 4891|    194|      return 10960;
 4892|    194|    }
 4893|      0|    break;
 4894|       |    /* csupe */
 4895|    194|  case 0x8cb8c6a59aa44099ULL:
  ------------------
  |  Branch (4895:3): [True: 194, False: 516k]
  ------------------
 4896|    194|    if (len == 5) {
  ------------------
  |  Branch (4896:9): [True: 194, False: 0]
  ------------------
 4897|    194|      return 10962;
 4898|    194|    }
 4899|      0|    break;
 4900|       |    /* ctdot */
 4901|    194|  case 0x41ee3ecf9ed8b279ULL:
  ------------------
  |  Branch (4901:3): [True: 194, False: 516k]
  ------------------
 4902|    194|    if (len == 5) {
  ------------------
  |  Branch (4902:9): [True: 194, False: 0]
  ------------------
 4903|    194|      return 8943;
 4904|    194|    }
 4905|      0|    break;
 4906|       |    /* cudarrl */
 4907|    194|  case 0x6eeb40085784d622ULL:
  ------------------
  |  Branch (4907:3): [True: 194, False: 516k]
  ------------------
 4908|    194|    if (len == 7) {
  ------------------
  |  Branch (4908:9): [True: 194, False: 0]
  ------------------
 4909|    194|      return 10552;
 4910|    194|    }
 4911|      0|    break;
 4912|       |    /* cudarrr */
 4913|    194|  case 0x6eeb32085784be58ULL:
  ------------------
  |  Branch (4913:3): [True: 194, False: 516k]
  ------------------
 4914|    194|    if (len == 7) {
  ------------------
  |  Branch (4914:9): [True: 194, False: 0]
  ------------------
 4915|    194|      return 10549;
 4916|    194|    }
 4917|      0|    break;
 4918|       |    /* cuepr */
 4919|    194|  case 0x40209bd555ae69c6ULL:
  ------------------
  |  Branch (4919:3): [True: 194, False: 516k]
  ------------------
 4920|    194|    if (len == 5) {
  ------------------
  |  Branch (4920:9): [True: 194, False: 0]
  ------------------
 4921|    194|      return 8926;
 4922|    194|    }
 4923|      0|    break;
 4924|       |    /* cuesc */
 4925|    194|  case 0x402a9cd555b6bffeULL:
  ------------------
  |  Branch (4925:3): [True: 194, False: 516k]
  ------------------
 4926|    194|    if (len == 5) {
  ------------------
  |  Branch (4926:9): [True: 194, False: 0]
  ------------------
 4927|    194|      return 8927;
 4928|    194|    }
 4929|      0|    break;
 4930|       |    /* cularr */
 4931|    194|  case 0x5d964cc8d7ce7942ULL:
  ------------------
  |  Branch (4931:3): [True: 194, False: 516k]
  ------------------
 4932|    194|    if (len == 6) {
  ------------------
  |  Branch (4932:9): [True: 194, False: 0]
  ------------------
 4933|    194|      return 8630;
 4934|    194|    }
 4935|      0|    break;
 4936|       |    /* cularrp */
 4937|    194|  case 0xd4ddab46b3d7eff6ULL:
  ------------------
  |  Branch (4937:3): [True: 194, False: 516k]
  ------------------
 4938|    194|    if (len == 7) {
  ------------------
  |  Branch (4938:9): [True: 194, False: 0]
  ------------------
 4939|    194|      return 10557;
 4940|    194|    }
 4941|      0|    break;
 4942|       |    /* cup */
 4943|    197|  case 0xf5b9fb190cc189afULL:
  ------------------
  |  Branch (4943:3): [True: 197, False: 516k]
  ------------------
 4944|    197|    if (len == 3) {
  ------------------
  |  Branch (4944:9): [True: 197, False: 0]
  ------------------
 4945|    197|      return 8746;
 4946|    197|    }
 4947|      0|    break;
 4948|       |    /* cupbrcap */
 4949|    194|  case 0x4bbd37fb2de18bedULL:
  ------------------
  |  Branch (4949:3): [True: 194, False: 516k]
  ------------------
 4950|    194|    if (len == 8) {
  ------------------
  |  Branch (4950:9): [True: 194, False: 0]
  ------------------
 4951|    194|      return 10824;
 4952|    194|    }
 4953|      0|    break;
 4954|       |    /* cupcap */
 4955|    194|  case 0xf77c572e1372d6bdULL:
  ------------------
  |  Branch (4955:3): [True: 194, False: 516k]
  ------------------
 4956|    194|    if (len == 6) {
  ------------------
  |  Branch (4956:9): [True: 194, False: 0]
  ------------------
 4957|    194|      return 10822;
 4958|    194|    }
 4959|      0|    break;
 4960|       |    /* cupcup */
 4961|    194|  case 0xf7a53f2e1395b309ULL:
  ------------------
  |  Branch (4961:3): [True: 194, False: 516k]
  ------------------
 4962|    194|    if (len == 6) {
  ------------------
  |  Branch (4962:9): [True: 194, False: 0]
  ------------------
 4963|    194|      return 10826;
 4964|    194|    }
 4965|      0|    break;
 4966|       |    /* cupdot */
 4967|    194|  case 0xed48282e0d3b16caULL:
  ------------------
  |  Branch (4967:3): [True: 194, False: 516k]
  ------------------
 4968|    194|    if (len == 6) {
  ------------------
  |  Branch (4968:9): [True: 194, False: 0]
  ------------------
 4969|    194|      return 8845;
 4970|    194|    }
 4971|      0|    break;
 4972|       |    /* cupor */
 4973|    194|  case 0xf4c4f8d5bba437f6ULL:
  ------------------
  |  Branch (4973:3): [True: 194, False: 516k]
  ------------------
 4974|    194|    if (len == 5) {
  ------------------
  |  Branch (4974:9): [True: 194, False: 0]
  ------------------
 4975|    194|      return 10821;
 4976|    194|    }
 4977|      0|    break;
 4978|       |    /* curarr */
 4979|    194|  case 0x73c98940043acc48ULL:
  ------------------
  |  Branch (4979:3): [True: 194, False: 516k]
  ------------------
 4980|    194|    if (len == 6) {
  ------------------
  |  Branch (4980:9): [True: 194, False: 0]
  ------------------
 4981|    194|      return 8631;
 4982|    194|    }
 4983|      0|    break;
 4984|       |    /* curarrm */
 4985|    194|  case 0xfa405cc72fe8e2dfULL:
  ------------------
  |  Branch (4985:3): [True: 194, False: 516k]
  ------------------
 4986|    194|    if (len == 7) {
  ------------------
  |  Branch (4986:9): [True: 194, False: 0]
  ------------------
 4987|    194|      return 10556;
 4988|    194|    }
 4989|      0|    break;
 4990|       |    /* curlyeqprec */
 4991|    194|  case 0xd4946b2d9929ace6ULL:
  ------------------
  |  Branch (4991:3): [True: 194, False: 516k]
  ------------------
 4992|    194|    if (len == 11) {
  ------------------
  |  Branch (4992:9): [True: 194, False: 0]
  ------------------
 4993|    194|      return 8926;
 4994|    194|    }
 4995|      0|    break;
 4996|       |    /* curlyeqsucc */
 4997|    194|  case 0x3c5e8e4a4ec3347aULL:
  ------------------
  |  Branch (4997:3): [True: 194, False: 516k]
  ------------------
 4998|    194|    if (len == 11) {
  ------------------
  |  Branch (4998:9): [True: 194, False: 0]
  ------------------
 4999|    194|      return 8927;
 5000|    194|    }
 5001|      0|    break;
 5002|       |    /* curlyvee */
 5003|    194|  case 0xe0776ff2c16e341eULL:
  ------------------
  |  Branch (5003:3): [True: 194, False: 516k]
  ------------------
 5004|    194|    if (len == 8) {
  ------------------
  |  Branch (5004:9): [True: 194, False: 0]
  ------------------
 5005|    194|      return 8910;
 5006|    194|    }
 5007|      0|    break;
 5008|       |    /* curlywedge */
 5009|    198|  case 0x034d5584beafd08eULL:
  ------------------
  |  Branch (5009:3): [True: 198, False: 516k]
  ------------------
 5010|    198|    if (len == 10) {
  ------------------
  |  Branch (5010:9): [True: 198, False: 0]
  ------------------
 5011|    198|      return 8911;
 5012|    198|    }
 5013|      0|    break;
 5014|       |    /* curren */
 5015|    194|  case 0x034d603fc48db38aULL:
  ------------------
  |  Branch (5015:3): [True: 194, False: 516k]
  ------------------
 5016|    194|    if (len == 6) {
  ------------------
  |  Branch (5016:9): [True: 194, False: 0]
  ------------------
 5017|    194|      return 164;
 5018|    194|    }
 5019|      0|    break;
 5020|       |    /* curvearrowleft */
 5021|      0|  case 0xe096fcdd7ac90920ULL:
  ------------------
  |  Branch (5021:3): [True: 0, False: 516k]
  ------------------
 5022|      0|    if (len == 14) {
  ------------------
  |  Branch (5022:9): [True: 0, False: 0]
  ------------------
 5023|      0|      return 8630;
 5024|      0|    }
 5025|      0|    break;
 5026|       |    /* curvearrowright */
 5027|      0|  case 0xeb644e7c1e4767b5ULL:
  ------------------
  |  Branch (5027:3): [True: 0, False: 516k]
  ------------------
 5028|      0|    if (len == 15) {
  ------------------
  |  Branch (5028:9): [True: 0, False: 0]
  ------------------
 5029|      0|      return 8631;
 5030|      0|    }
 5031|      0|    break;
 5032|       |    /* cuvee */
 5033|    194|  case 0xe2d599d5b14f4593ULL:
  ------------------
  |  Branch (5033:3): [True: 194, False: 516k]
  ------------------
 5034|    194|    if (len == 5) {
  ------------------
  |  Branch (5034:9): [True: 194, False: 0]
  ------------------
 5035|    194|      return 8910;
 5036|    194|    }
 5037|      0|    break;
 5038|       |    /* cuwed */
 5039|    194|  case 0xdbca81d5adc72797ULL:
  ------------------
  |  Branch (5039:3): [True: 194, False: 516k]
  ------------------
 5040|    194|    if (len == 5) {
  ------------------
  |  Branch (5040:9): [True: 194, False: 0]
  ------------------
 5041|    194|      return 8911;
 5042|    194|    }
 5043|      0|    break;
 5044|       |    /* cwconint */
 5045|    195|  case 0x1fa4b574d71d1d26ULL:
  ------------------
  |  Branch (5045:3): [True: 195, False: 516k]
  ------------------
 5046|    195|    if (len == 8) {
  ------------------
  |  Branch (5046:9): [True: 195, False: 0]
  ------------------
 5047|    195|      return 8754;
 5048|    195|    }
 5049|      0|    break;
 5050|       |    /* cwint */
 5051|    194|  case 0xdae44dc4936703b0ULL:
  ------------------
  |  Branch (5051:3): [True: 194, False: 516k]
  ------------------
 5052|    194|    if (len == 5) {
  ------------------
  |  Branch (5052:9): [True: 194, False: 0]
  ------------------
 5053|    194|      return 8753;
 5054|    194|    }
 5055|      0|    break;
 5056|       |    /* cylcty */
 5057|    194|  case 0xd07432e303656d43ULL:
  ------------------
  |  Branch (5057:3): [True: 194, False: 516k]
  ------------------
 5058|    194|    if (len == 6) {
  ------------------
  |  Branch (5058:9): [True: 194, False: 0]
  ------------------
 5059|    194|      return 9005;
 5060|    194|    }
 5061|      0|    break;
 5062|       |    /* dArr */
 5063|    194|  case 0x98049267cb7dca5aULL:
  ------------------
  |  Branch (5063:3): [True: 194, False: 516k]
  ------------------
 5064|    194|    if (len == 4) {
  ------------------
  |  Branch (5064:9): [True: 194, False: 0]
  ------------------
 5065|    194|      return 8659;
 5066|    194|    }
 5067|      0|    break;
 5068|       |    /* dHar */
 5069|    194|  case 0xe70ceb67f88f3196ULL:
  ------------------
  |  Branch (5069:3): [True: 194, False: 516k]
  ------------------
 5070|    194|    if (len == 4) {
  ------------------
  |  Branch (5070:9): [True: 194, False: 0]
  ------------------
 5071|    194|      return 10597;
 5072|    194|    }
 5073|      0|    break;
 5074|       |    /* dagger */
 5075|    195|  case 0x4f161d6b34db5edbULL:
  ------------------
  |  Branch (5075:3): [True: 195, False: 516k]
  ------------------
 5076|    195|    if (len == 6) {
  ------------------
  |  Branch (5076:9): [True: 195, False: 0]
  ------------------
 5077|    195|      return 8224;
 5078|    195|    }
 5079|      0|    break;
 5080|       |    /* daleth */
 5081|    194|  case 0x79f111b3b730c635ULL:
  ------------------
  |  Branch (5081:3): [True: 194, False: 516k]
  ------------------
 5082|    194|    if (len == 6) {
  ------------------
  |  Branch (5082:9): [True: 194, False: 0]
  ------------------
 5083|    194|      return 8504;
 5084|    194|    }
 5085|      0|    break;
 5086|       |    /* darr */
 5087|    197|  case 0x8561726730a7e6faULL:
  ------------------
  |  Branch (5087:3): [True: 197, False: 516k]
  ------------------
 5088|    197|    if (len == 4) {
  ------------------
  |  Branch (5088:9): [True: 197, False: 0]
  ------------------
 5089|    197|      return 8595;
 5090|    197|    }
 5091|      0|    break;
 5092|       |    /* dash */
 5093|    195|  case 0x85657e6730abe435ULL:
  ------------------
  |  Branch (5093:3): [True: 195, False: 516k]
  ------------------
 5094|    195|    if (len == 4) {
  ------------------
  |  Branch (5094:9): [True: 195, False: 0]
  ------------------
 5095|    195|      return 8208;
 5096|    195|    }
 5097|      0|    break;
 5098|       |    /* dashv */
 5099|    194|  case 0x575a0c57b414ddd9ULL:
  ------------------
  |  Branch (5099:3): [True: 194, False: 516k]
  ------------------
 5100|    194|    if (len == 5) {
  ------------------
  |  Branch (5100:9): [True: 194, False: 0]
  ------------------
 5101|    194|      return 8867;
 5102|    194|    }
 5103|      0|    break;
 5104|       |    /* dbkarow */
 5105|    194|  case 0x59140fc62fcc5041ULL:
  ------------------
  |  Branch (5105:3): [True: 194, False: 516k]
  ------------------
 5106|    194|    if (len == 7) {
  ------------------
  |  Branch (5106:9): [True: 194, False: 0]
  ------------------
 5107|    194|      return 10511;
 5108|    194|    }
 5109|      0|    break;
 5110|       |    /* dblac */
 5111|    194|  case 0x3101ae4c3c126235ULL:
  ------------------
  |  Branch (5111:3): [True: 194, False: 516k]
  ------------------
 5112|    194|    if (len == 5) {
  ------------------
  |  Branch (5112:9): [True: 194, False: 0]
  ------------------
 5113|    194|      return 733;
 5114|    194|    }
 5115|      0|    break;
 5116|       |    /* dcaron */
 5117|    194|  case 0x3f05dc31b96caebeULL:
  ------------------
  |  Branch (5117:3): [True: 194, False: 516k]
  ------------------
 5118|    194|    if (len == 6) {
  ------------------
  |  Branch (5118:9): [True: 194, False: 0]
  ------------------
 5119|    194|      return 271;
 5120|    194|    }
 5121|      0|    break;
 5122|       |    /* dcy */
 5123|    194|  case 0xca862d18f4515c0bULL:
  ------------------
  |  Branch (5123:3): [True: 194, False: 516k]
  ------------------
 5124|    194|    if (len == 3) {
  ------------------
  |  Branch (5124:9): [True: 194, False: 0]
  ------------------
 5125|    194|      return 1076;
 5126|    194|    }
 5127|      0|    break;
 5128|       |    /* dd */
 5129|    199|  case 0x08915407b53bac15ULL:
  ------------------
  |  Branch (5129:3): [True: 199, False: 516k]
  ------------------
 5130|    199|    if (len == 2) {
  ------------------
  |  Branch (5130:9): [True: 199, False: 0]
  ------------------
 5131|    199|      return 8518;
 5132|    199|    }
 5133|      0|    break;
 5134|       |    /* ddagger */
 5135|    194|  case 0x43f215c694717be5ULL:
  ------------------
  |  Branch (5135:3): [True: 194, False: 516k]
  ------------------
 5136|    194|    if (len == 7) {
  ------------------
  |  Branch (5136:9): [True: 194, False: 0]
  ------------------
 5137|    194|      return 8225;
 5138|    194|    }
 5139|      0|    break;
 5140|       |    /* ddarr */
 5141|    194|  case 0x01c25481b18f8148ULL:
  ------------------
  |  Branch (5141:3): [True: 194, False: 516k]
  ------------------
 5142|    194|    if (len == 5) {
  ------------------
  |  Branch (5142:9): [True: 194, False: 0]
  ------------------
 5143|    194|      return 8650;
 5144|    194|    }
 5145|      0|    break;
 5146|       |    /* ddotseq */
 5147|    194|  case 0x08139206fa64c295ULL:
  ------------------
  |  Branch (5147:3): [True: 194, False: 516k]
  ------------------
 5148|    194|    if (len == 7) {
  ------------------
  |  Branch (5148:9): [True: 194, False: 0]
  ------------------
 5149|    194|      return 10871;
 5150|    194|    }
 5151|      0|    break;
 5152|       |    /* deg */
 5153|    194|  case 0xca9a1b18f461e67fULL:
  ------------------
  |  Branch (5153:3): [True: 194, False: 516k]
  ------------------
 5154|    194|    if (len == 3) {
  ------------------
  |  Branch (5154:9): [True: 194, False: 0]
  ------------------
 5155|    194|      return 176;
 5156|    194|    }
 5157|      0|    break;
 5158|       |    /* delta */
 5159|    194|  case 0x52076675ec13a0c1ULL:
  ------------------
  |  Branch (5159:3): [True: 194, False: 516k]
  ------------------
 5160|    194|    if (len == 5) {
  ------------------
  |  Branch (5160:9): [True: 194, False: 0]
  ------------------
 5161|    194|      return 948;
 5162|    194|    }
 5163|      0|    break;
 5164|       |    /* demptyv */
 5165|    194|  case 0x61f7904a558f3a42ULL:
  ------------------
  |  Branch (5165:3): [True: 194, False: 516k]
  ------------------
 5166|    194|    if (len == 7) {
  ------------------
  |  Branch (5166:9): [True: 194, False: 0]
  ------------------
 5167|    194|      return 10673;
 5168|    194|    }
 5169|      0|    break;
 5170|       |    /* dfisht */
 5171|    194|  case 0xdd5ed6afc1c66d6fULL:
  ------------------
  |  Branch (5171:3): [True: 194, False: 516k]
  ------------------
 5172|    194|    if (len == 6) {
  ------------------
  |  Branch (5172:9): [True: 194, False: 0]
  ------------------
 5173|    194|      return 10623;
 5174|    194|    }
 5175|      0|    break;
 5176|       |    /* dfr */
 5177|    196|  case 0xca974018f45fef87ULL:
  ------------------
  |  Branch (5177:3): [True: 196, False: 516k]
  ------------------
 5178|    196|    if (len == 3) {
  ------------------
  |  Branch (5178:9): [True: 196, False: 0]
  ------------------
 5179|    196|      return 120097;
 5180|    196|    }
 5181|      0|    break;
 5182|       |    /* dharl */
 5183|    194|  case 0x02fdfa9f5cc4a0eeULL:
  ------------------
  |  Branch (5183:3): [True: 194, False: 516k]
  ------------------
 5184|    194|    if (len == 5) {
  ------------------
  |  Branch (5184:9): [True: 194, False: 0]
  ------------------
 5185|    194|      return 8643;
 5186|    194|    }
 5187|      0|    break;
 5188|       |    /* dharr */
 5189|    194|  case 0x02fde49f5cc47b8cULL:
  ------------------
  |  Branch (5189:3): [True: 194, False: 516k]
  ------------------
 5190|    194|    if (len == 5) {
  ------------------
  |  Branch (5190:9): [True: 194, False: 0]
  ------------------
 5191|    194|      return 8642;
 5192|    194|    }
 5193|      0|    break;
 5194|       |    /* diam */
 5195|    194|  case 0xca14bd67576692f0ULL:
  ------------------
  |  Branch (5195:3): [True: 194, False: 516k]
  ------------------
 5196|    194|    if (len == 4) {
  ------------------
  |  Branch (5196:9): [True: 194, False: 0]
  ------------------
 5197|    194|      return 8900;
 5198|    194|    }
 5199|      0|    break;
 5200|       |    /* diamond */
 5201|    194|  case 0x21189197f0b60827ULL:
  ------------------
  |  Branch (5201:3): [True: 194, False: 516k]
  ------------------
 5202|    194|    if (len == 7) {
  ------------------
  |  Branch (5202:9): [True: 194, False: 0]
  ------------------
 5203|    194|      return 8900;
 5204|    194|    }
 5205|      0|    break;
 5206|       |    /* diamondsuit */
 5207|    194|  case 0x8c3c0ff1376040b6ULL:
  ------------------
  |  Branch (5207:3): [True: 194, False: 516k]
  ------------------
 5208|    194|    if (len == 11) {
  ------------------
  |  Branch (5208:9): [True: 194, False: 0]
  ------------------
 5209|    194|      return 9830;
 5210|    194|    }
 5211|      0|    break;
 5212|       |    /* diams */
 5213|    194|  case 0xc7d05999834af499ULL:
  ------------------
  |  Branch (5213:3): [True: 194, False: 516k]
  ------------------
 5214|    194|    if (len == 5) {
  ------------------
  |  Branch (5214:9): [True: 194, False: 0]
  ------------------
 5215|    194|      return 9830;
 5216|    194|    }
 5217|      0|    break;
 5218|       |    /* die */
 5219|    198|  case 0xcaa82d18f46e4271ULL:
  ------------------
  |  Branch (5219:3): [True: 198, False: 516k]
  ------------------
 5220|    198|    if (len == 3) {
  ------------------
  |  Branch (5220:9): [True: 198, False: 0]
  ------------------
 5221|    198|      return 168;
 5222|    198|    }
 5223|      0|    break;
 5224|       |    /* digamma */
 5225|    194|  case 0xefae0e15c5d97df7ULL:
  ------------------
  |  Branch (5225:3): [True: 194, False: 516k]
  ------------------
 5226|    194|    if (len == 7) {
  ------------------
  |  Branch (5226:9): [True: 194, False: 0]
  ------------------
 5227|    194|      return 989;
 5228|    194|    }
 5229|      0|    break;
 5230|       |    /* disin */
 5231|    194|  case 0x42329299c8ed774cULL:
  ------------------
  |  Branch (5231:3): [True: 194, False: 516k]
  ------------------
 5232|    194|    if (len == 5) {
  ------------------
  |  Branch (5232:9): [True: 194, False: 0]
  ------------------
 5233|    194|      return 8946;
 5234|    194|    }
 5235|      0|    break;
 5236|       |    /* div */
 5237|    194|  case 0xcaa83a18f46e5888ULL:
  ------------------
  |  Branch (5237:3): [True: 194, False: 516k]
  ------------------
 5238|    194|    if (len == 3) {
  ------------------
  |  Branch (5238:9): [True: 194, False: 0]
  ------------------
 5239|    194|      return 247;
 5240|    194|    }
 5241|      0|    break;
 5242|       |    /* divide */
 5243|    194|  case 0xd1376826789a1830ULL:
  ------------------
  |  Branch (5243:3): [True: 194, False: 516k]
  ------------------
 5244|    194|    if (len == 6) {
  ------------------
  |  Branch (5244:9): [True: 194, False: 0]
  ------------------
 5245|    194|      return 247;
 5246|    194|    }
 5247|      0|    break;
 5248|       |    /* divideontimes */
 5249|      0|  case 0x94eb5ee6011de7b9ULL:
  ------------------
  |  Branch (5249:3): [True: 0, False: 516k]
  ------------------
 5250|      0|    if (len == 13) {
  ------------------
  |  Branch (5250:9): [True: 0, False: 0]
  ------------------
 5251|      0|      return 8903;
 5252|      0|    }
 5253|      0|    break;
 5254|       |    /* divonx */
 5255|    194|  case 0x06ea53269781d2abULL:
  ------------------
  |  Branch (5255:3): [True: 194, False: 516k]
  ------------------
 5256|    194|    if (len == 6) {
  ------------------
  |  Branch (5256:9): [True: 194, False: 0]
  ------------------
 5257|    194|      return 8903;
 5258|    194|    }
 5259|      0|    break;
 5260|       |    /* djcy */
 5261|    194|  case 0xbfaa806751012bc3ULL:
  ------------------
  |  Branch (5261:3): [True: 194, False: 516k]
  ------------------
 5262|    194|    if (len == 4) {
  ------------------
  |  Branch (5262:9): [True: 194, False: 0]
  ------------------
 5263|    194|      return 1106;
 5264|    194|    }
 5265|      0|    break;
 5266|       |    /* dlcorn */
 5267|    194|  case 0x838d84afee467cbbULL:
  ------------------
  |  Branch (5267:3): [True: 194, False: 516k]
  ------------------
 5268|    194|    if (len == 6) {
  ------------------
  |  Branch (5268:9): [True: 194, False: 0]
  ------------------
 5269|    194|      return 8990;
 5270|    194|    }
 5271|      0|    break;
 5272|       |    /* dlcrop */
 5273|    194|  case 0x25ce79b0498458afULL:
  ------------------
  |  Branch (5273:3): [True: 194, False: 516k]
  ------------------
 5274|    194|    if (len == 6) {
  ------------------
  |  Branch (5274:9): [True: 194, False: 0]
  ------------------
 5275|    194|      return 8973;
 5276|    194|    }
 5277|      0|    break;
 5278|       |    /* dollar */
 5279|    194|  case 0xc4361a5b5c15e1ffULL:
  ------------------
  |  Branch (5279:3): [True: 194, False: 516k]
  ------------------
 5280|    194|    if (len == 6) {
  ------------------
  |  Branch (5280:9): [True: 194, False: 0]
  ------------------
 5281|    194|      return 36;
 5282|    194|    }
 5283|      0|    break;
 5284|       |    /* dopf */
 5285|    194|  case 0xdc06f86761bd7dfeULL:
  ------------------
  |  Branch (5285:3): [True: 194, False: 516k]
  ------------------
 5286|    194|    if (len == 4) {
  ------------------
  |  Branch (5286:9): [True: 194, False: 0]
  ------------------
 5287|    194|      return 120149;
 5288|    194|    }
 5289|      0|    break;
 5290|       |    /* dot */
 5291|    199|  case 0xcaaf2818f47458a0ULL:
  ------------------
  |  Branch (5291:3): [True: 199, False: 516k]
  ------------------
 5292|    199|    if (len == 3) {
  ------------------
  |  Branch (5292:9): [True: 199, False: 0]
  ------------------
 5293|    199|      return 729;
 5294|    199|    }
 5295|      0|    break;
 5296|       |    /* doteq */
 5297|    194|  case 0x7c7b02ab02e3000aULL:
  ------------------
  |  Branch (5297:3): [True: 194, False: 516k]
  ------------------
 5298|    194|    if (len == 5) {
  ------------------
  |  Branch (5298:9): [True: 194, False: 0]
  ------------------
 5299|    194|      return 8784;
 5300|    194|    }
 5301|      0|    break;
 5302|       |    /* doteqdot */
 5303|    194|  case 0x0fa6c3ef422c0931ULL:
  ------------------
  |  Branch (5303:3): [True: 194, False: 516k]
  ------------------
 5304|    194|    if (len == 8) {
  ------------------
  |  Branch (5304:9): [True: 194, False: 0]
  ------------------
 5305|    194|      return 8785;
 5306|    194|    }
 5307|      0|    break;
 5308|       |    /* dotminus */
 5309|    194|  case 0xcb413af30fc40d08ULL:
  ------------------
  |  Branch (5309:3): [True: 194, False: 516k]
  ------------------
 5310|    194|    if (len == 8) {
  ------------------
  |  Branch (5310:9): [True: 194, False: 0]
  ------------------
 5311|    194|      return 8760;
 5312|    194|    }
 5313|      0|    break;
 5314|       |    /* dotplus */
 5315|    194|  case 0x01c961128eed7a60ULL:
  ------------------
  |  Branch (5315:3): [True: 194, False: 516k]
  ------------------
 5316|    194|    if (len == 7) {
  ------------------
  |  Branch (5316:9): [True: 194, False: 0]
  ------------------
 5317|    194|      return 8724;
 5318|    194|    }
 5319|      0|    break;
 5320|       |    /* dotsquare */
 5321|    194|  case 0x89734e93d2e87cbfULL:
  ------------------
  |  Branch (5321:3): [True: 194, False: 516k]
  ------------------
 5322|    194|    if (len == 9) {
  ------------------
  |  Branch (5322:9): [True: 194, False: 0]
  ------------------
 5323|    194|      return 8865;
 5324|    194|    }
 5325|      0|    break;
 5326|       |    /* doublebarwedge */
 5327|      0|  case 0xc725363dc0b2c267ULL:
  ------------------
  |  Branch (5327:3): [True: 0, False: 516k]
  ------------------
 5328|      0|    if (len == 14) {
  ------------------
  |  Branch (5328:9): [True: 0, False: 0]
  ------------------
 5329|      0|      return 8966;
 5330|      0|    }
 5331|      0|    break;
 5332|       |    /* downarrow */
 5333|    194|  case 0x6aa141120ec25e36ULL:
  ------------------
  |  Branch (5333:3): [True: 194, False: 516k]
  ------------------
 5334|    194|    if (len == 9) {
  ------------------
  |  Branch (5334:9): [True: 194, False: 0]
  ------------------
 5335|    194|      return 8595;
 5336|    194|    }
 5337|      0|    break;
 5338|       |    /* downdownarrows */
 5339|    194|  case 0xb273ede722bd9f8fULL:
  ------------------
  |  Branch (5339:3): [True: 194, False: 516k]
  ------------------
 5340|    194|    if (len == 14) {
  ------------------
  |  Branch (5340:9): [True: 194, False: 0]
  ------------------
 5341|    194|      return 8650;
 5342|    194|    }
 5343|      0|    break;
 5344|       |    /* downharpoonleft */
 5345|      0|  case 0x5c092b157f929fe9ULL:
  ------------------
  |  Branch (5345:3): [True: 0, False: 516k]
  ------------------
 5346|      0|    if (len == 15) {
  ------------------
  |  Branch (5346:9): [True: 0, False: 0]
  ------------------
 5347|      0|      return 8643;
 5348|      0|    }
 5349|      0|    break;
 5350|       |    /* downharpoonright */
 5351|      0|  case 0x9f2be3bc337657caULL:
  ------------------
  |  Branch (5351:3): [True: 0, False: 516k]
  ------------------
 5352|      0|    if (len == 16) {
  ------------------
  |  Branch (5352:9): [True: 0, False: 0]
  ------------------
 5353|      0|      return 8642;
 5354|      0|    }
 5355|      0|    break;
 5356|       |    /* drbkarow */
 5357|    194|  case 0xcc41d6af83396381ULL:
  ------------------
  |  Branch (5357:3): [True: 194, False: 516k]
  ------------------
 5358|    194|    if (len == 8) {
  ------------------
  |  Branch (5358:9): [True: 194, False: 0]
  ------------------
 5359|    194|      return 10512;
 5360|    194|    }
 5361|      0|    break;
 5362|       |    /* drcorn */
 5363|    194|  case 0xb4e5dd9099f03199ULL:
  ------------------
  |  Branch (5363:3): [True: 194, False: 516k]
  ------------------
 5364|    194|    if (len == 6) {
  ------------------
  |  Branch (5364:9): [True: 194, False: 0]
  ------------------
 5365|    194|      return 8991;
 5366|    194|    }
 5367|      0|    break;
 5368|       |    /* drcrop */
 5369|    194|  case 0xb7cd4e900a0c0d41ULL:
  ------------------
  |  Branch (5369:3): [True: 194, False: 516k]
  ------------------
 5370|    194|    if (len == 6) {
  ------------------
  |  Branch (5370:9): [True: 194, False: 0]
  ------------------
 5371|    194|      return 8972;
 5372|    194|    }
 5373|      0|    break;
 5374|       |    /* dscr */
 5375|    196|  case 0xe9be8a66d8954471ULL:
  ------------------
  |  Branch (5375:3): [True: 196, False: 516k]
  ------------------
 5376|    196|    if (len == 4) {
  ------------------
  |  Branch (5376:9): [True: 196, False: 0]
  ------------------
 5377|    196|      return 119993;
 5378|    196|    }
 5379|      0|    break;
 5380|       |    /* dscy */
 5381|    194|  case 0xe9be7f66d89531c0ULL:
  ------------------
  |  Branch (5381:3): [True: 194, False: 516k]
  ------------------
 5382|    194|    if (len == 4) {
  ------------------
  |  Branch (5382:9): [True: 194, False: 0]
  ------------------
 5383|    194|      return 1109;
 5384|    194|    }
 5385|      0|    break;
 5386|       |    /* dsol */
 5387|    194|  case 0xe9e79466d8b85a83ULL:
  ------------------
  |  Branch (5387:3): [True: 194, False: 516k]
  ------------------
 5388|    194|    if (len == 4) {
  ------------------
  |  Branch (5388:9): [True: 194, False: 0]
  ------------------
 5389|    194|      return 10742;
 5390|    194|    }
 5391|      0|    break;
 5392|       |    /* dstrok */
 5393|    194|  case 0x884f973e86e7047cULL:
  ------------------
  |  Branch (5393:3): [True: 194, False: 516k]
  ------------------
 5394|    194|    if (len == 6) {
  ------------------
  |  Branch (5394:9): [True: 194, False: 0]
  ------------------
 5395|    194|      return 273;
 5396|    194|    }
 5397|      0|    break;
 5398|       |    /* dtdot */
 5399|    194|  case 0x6873aaf891068d60ULL:
  ------------------
  |  Branch (5399:3): [True: 194, False: 516k]
  ------------------
 5400|    194|    if (len == 5) {
  ------------------
  |  Branch (5400:9): [True: 194, False: 0]
  ------------------
 5401|    194|      return 8945;
 5402|    194|    }
 5403|      0|    break;
 5404|       |    /* dtri */
 5405|    195|  case 0x2407b666f8eebc34ULL:
  ------------------
  |  Branch (5405:3): [True: 195, False: 516k]
  ------------------
 5406|    195|    if (len == 4) {
  ------------------
  |  Branch (5406:9): [True: 195, False: 0]
  ------------------
 5407|    195|      return 9663;
 5408|    195|    }
 5409|      0|    break;
 5410|       |    /* dtrif */
 5411|    194|  case 0x27d742f8fda9ff56ULL:
  ------------------
  |  Branch (5411:3): [True: 194, False: 516k]
  ------------------
 5412|    194|    if (len == 5) {
  ------------------
  |  Branch (5412:9): [True: 194, False: 0]
  ------------------
 5413|    194|      return 9662;
 5414|    194|    }
 5415|      0|    break;
 5416|       |    /* duarr */
 5417|    194|  case 0x497ea1f2c82c0069ULL:
  ------------------
  |  Branch (5417:3): [True: 194, False: 516k]
  ------------------
 5418|    194|    if (len == 5) {
  ------------------
  |  Branch (5418:9): [True: 194, False: 0]
  ------------------
 5419|    194|      return 8693;
 5420|    194|    }
 5421|      0|    break;
 5422|       |    /* duhar */
 5423|    195|  case 0x8359d8f2e82705fdULL:
  ------------------
  |  Branch (5423:3): [True: 195, False: 516k]
  ------------------
 5424|    195|    if (len == 5) {
  ------------------
  |  Branch (5424:9): [True: 195, False: 0]
  ------------------
 5425|    195|      return 10607;
 5426|    195|    }
 5427|      0|    break;
 5428|       |    /* dwangle */
 5429|    194|  case 0xea9155e9d88d0897ULL:
  ------------------
  |  Branch (5429:3): [True: 194, False: 516k]
  ------------------
 5430|    194|    if (len == 7) {
  ------------------
  |  Branch (5430:9): [True: 194, False: 0]
  ------------------
 5431|    194|      return 10662;
 5432|    194|    }
 5433|      0|    break;
 5434|       |    /* dzcy */
 5435|    194|  case 0x35ebf06703396833ULL:
  ------------------
  |  Branch (5435:3): [True: 194, False: 516k]
  ------------------
 5436|    194|    if (len == 4) {
  ------------------
  |  Branch (5436:9): [True: 194, False: 0]
  ------------------
 5437|    194|      return 1119;
 5438|    194|    }
 5439|      0|    break;
 5440|       |    /* dzigrarr */
 5441|    194|  case 0xcdb5ca26e18c475aULL:
  ------------------
  |  Branch (5441:3): [True: 194, False: 516k]
  ------------------
 5442|    194|    if (len == 8) {
  ------------------
  |  Branch (5442:9): [True: 194, False: 0]
  ------------------
 5443|    194|      return 10239;
 5444|    194|    }
 5445|      0|    break;
 5446|       |    /* eDDot */
 5447|    194|  case 0x70ac2d5edb66aaf3ULL:
  ------------------
  |  Branch (5447:3): [True: 194, False: 516k]
  ------------------
 5448|    194|    if (len == 5) {
  ------------------
  |  Branch (5448:9): [True: 194, False: 0]
  ------------------
 5449|    194|      return 10871;
 5450|    194|    }
 5451|      0|    break;
 5452|       |    /* eDot */
 5453|    194|  case 0x2451055f8ea22e17ULL:
  ------------------
  |  Branch (5453:3): [True: 194, False: 516k]
  ------------------
 5454|    194|    if (len == 4) {
  ------------------
  |  Branch (5454:9): [True: 194, False: 0]
  ------------------
 5455|    194|      return 8785;
 5456|    194|    }
 5457|      0|    break;
 5458|       |    /* eacute */
 5459|    194|  case 0x3b7c8d3a9377b51cULL:
  ------------------
  |  Branch (5459:3): [True: 194, False: 516k]
  ------------------
 5460|    194|    if (len == 6) {
  ------------------
  |  Branch (5460:9): [True: 194, False: 0]
  ------------------
 5461|    194|      return 233;
 5462|    194|    }
 5463|      0|    break;
 5464|       |    /* easter */
 5465|    194|  case 0x73c962b7031cbd0bULL:
  ------------------
  |  Branch (5465:3): [True: 194, False: 516k]
  ------------------
 5466|    194|    if (len == 6) {
  ------------------
  |  Branch (5466:9): [True: 194, False: 0]
  ------------------
 5467|    194|      return 10862;
 5468|    194|    }
 5469|      0|    break;
 5470|       |    /* ecaron */
 5471|    194|  case 0x95cbe56022016ca7ULL:
  ------------------
  |  Branch (5471:3): [True: 194, False: 516k]
  ------------------
 5472|    194|    if (len == 6) {
  ------------------
  |  Branch (5472:9): [True: 194, False: 0]
  ------------------
 5473|    194|      return 283;
 5474|    194|    }
 5475|      0|    break;
 5476|       |    /* ecir */
 5477|    194|  case 0x2ffde860260210a6ULL:
  ------------------
  |  Branch (5477:3): [True: 194, False: 516k]
  ------------------
 5478|    194|    if (len == 4) {
  ------------------
  |  Branch (5478:9): [True: 194, False: 0]
  ------------------
 5479|    194|      return 8790;
 5480|    194|    }
 5481|      0|    break;
 5482|       |    /* ecirc */
 5483|    194|  case 0x8e82a06095827ebfULL:
  ------------------
  |  Branch (5483:3): [True: 194, False: 516k]
  ------------------
 5484|    194|    if (len == 5) {
  ------------------
  |  Branch (5484:9): [True: 194, False: 0]
  ------------------
 5485|    194|      return 234;
 5486|    194|    }
 5487|      0|    break;
 5488|       |    /* ecolon */
 5489|    194|  case 0xf5e7034e1ccbacc3ULL:
  ------------------
  |  Branch (5489:3): [True: 194, False: 516k]
  ------------------
 5490|    194|    if (len == 6) {
  ------------------
  |  Branch (5490:9): [True: 194, False: 0]
  ------------------
 5491|    194|      return 8789;
 5492|    194|    }
 5493|      0|    break;
 5494|       |    /* ecy */
 5495|    194|  case 0xc2ca0418f0328280ULL:
  ------------------
  |  Branch (5495:3): [True: 194, False: 516k]
  ------------------
 5496|    194|    if (len == 3) {
  ------------------
  |  Branch (5496:9): [True: 194, False: 0]
  ------------------
 5497|    194|      return 1101;
 5498|    194|    }
 5499|      0|    break;
 5500|       |    /* edot */
 5501|    208|  case 0x3a5a25602c5b3a77ULL:
  ------------------
  |  Branch (5501:3): [True: 208, False: 516k]
  ------------------
 5502|    208|    if (len == 4) {
  ------------------
  |  Branch (5502:9): [True: 208, False: 0]
  ------------------
 5503|    208|      return 279;
 5504|    208|    }
 5505|      0|    break;
 5506|       |    /* ee */
 5507|    205|  case 0x088e2f07b539375fULL:
  ------------------
  |  Branch (5507:3): [True: 205, False: 516k]
  ------------------
 5508|    205|    if (len == 2) {
  ------------------
  |  Branch (5508:9): [True: 205, False: 0]
  ------------------
 5509|    205|      return 8519;
 5510|    205|    }
 5511|      0|    break;
 5512|       |    /* efDot */
 5513|    194|  case 0x494f667ce9326ff9ULL:
  ------------------
  |  Branch (5513:3): [True: 194, False: 516k]
  ------------------
 5514|    194|    if (len == 5) {
  ------------------
  |  Branch (5514:9): [True: 194, False: 0]
  ------------------
 5515|    194|      return 8786;
 5516|    194|    }
 5517|      0|    break;
 5518|       |    /* efr */
 5519|    194|  case 0xc2d4fd18f03c7e20ULL:
  ------------------
  |  Branch (5519:3): [True: 194, False: 516k]
  ------------------
 5520|    194|    if (len == 3) {
  ------------------
  |  Branch (5520:9): [True: 194, False: 0]
  ------------------
 5521|    194|      return 120098;
 5522|    194|    }
 5523|      0|    break;
 5524|       |    /* eg */
 5525|    195|  case 0x088e3107b5393ac5ULL:
  ------------------
  |  Branch (5525:3): [True: 195, False: 516k]
  ------------------
 5526|    195|    if (len == 2) {
  ------------------
  |  Branch (5526:9): [True: 195, False: 0]
  ------------------
 5527|    195|      return 10906;
 5528|    195|    }
 5529|      0|    break;
 5530|       |    /* egrave */
 5531|    194|  case 0xd53c8cbc713a5661ULL:
  ------------------
  |  Branch (5531:3): [True: 194, False: 516k]
  ------------------
 5532|    194|    if (len == 6) {
  ------------------
  |  Branch (5532:9): [True: 194, False: 0]
  ------------------
 5533|    194|      return 232;
 5534|    194|    }
 5535|      0|    break;
 5536|       |    /* egs */
 5537|    194|  case 0xc2d80618f03ec342ULL:
  ------------------
  |  Branch (5537:3): [True: 194, False: 516k]
  ------------------
 5538|    194|    if (len == 3) {
  ------------------
  |  Branch (5538:9): [True: 194, False: 0]
  ------------------
 5539|    194|      return 10902;
 5540|    194|    }
 5541|      0|    break;
 5542|       |    /* egsdot */
 5543|    194|  case 0x8ddf24b5700a71c9ULL:
  ------------------
  |  Branch (5543:3): [True: 194, False: 516k]
  ------------------
 5544|    194|    if (len == 6) {
  ------------------
  |  Branch (5544:9): [True: 194, False: 0]
  ------------------
 5545|    194|      return 10904;
 5546|    194|    }
 5547|      0|    break;
 5548|       |    /* el */
 5549|    196|  case 0x088e3607b5394344ULL:
  ------------------
  |  Branch (5549:3): [True: 196, False: 516k]
  ------------------
 5550|    196|    if (len == 2) {
  ------------------
  |  Branch (5550:9): [True: 196, False: 0]
  ------------------
 5551|    196|      return 10905;
 5552|    196|    }
 5553|      0|    break;
 5554|       |    /* elinters */
 5555|    194|  case 0x2041a5a4388dfc67ULL:
  ------------------
  |  Branch (5555:3): [True: 194, False: 516k]
  ------------------
 5556|    194|    if (len == 8) {
  ------------------
  |  Branch (5556:9): [True: 194, False: 0]
  ------------------
 5557|    194|      return 9191;
 5558|    194|    }
 5559|      0|    break;
 5560|       |    /* ell */
 5561|    194|  case 0xc2e8f718f04d1cf8ULL:
  ------------------
  |  Branch (5561:3): [True: 194, False: 516k]
  ------------------
 5562|    194|    if (len == 3) {
  ------------------
  |  Branch (5562:9): [True: 194, False: 0]
  ------------------
 5563|    194|      return 8467;
 5564|    194|    }
 5565|      0|    break;
 5566|       |    /* els */
 5567|    194|  case 0xc2e90618f04d3675ULL:
  ------------------
  |  Branch (5567:3): [True: 194, False: 516k]
  ------------------
 5568|    194|    if (len == 3) {
  ------------------
  |  Branch (5568:9): [True: 194, False: 0]
  ------------------
 5569|    194|      return 10901;
 5570|    194|    }
 5571|      0|    break;
 5572|       |    /* elsdot */
 5573|    194|  case 0x9b0108992b9339b0ULL:
  ------------------
  |  Branch (5573:3): [True: 194, False: 516k]
  ------------------
 5574|    194|    if (len == 6) {
  ------------------
  |  Branch (5574:9): [True: 194, False: 0]
  ------------------
 5575|    194|      return 10903;
 5576|    194|    }
 5577|      0|    break;
 5578|       |    /* emacr */
 5579|    194|  case 0x12124db4198fa973ULL:
  ------------------
  |  Branch (5579:3): [True: 194, False: 516k]
  ------------------
 5580|    194|    if (len == 5) {
  ------------------
  |  Branch (5580:9): [True: 194, False: 0]
  ------------------
 5581|    194|      return 275;
 5582|    194|    }
 5583|      0|    break;
 5584|       |    /* empty */
 5585|    194|  case 0x904fefb3d01cb2aeULL:
  ------------------
  |  Branch (5585:3): [True: 194, False: 516k]
  ------------------
 5586|    194|    if (len == 5) {
  ------------------
  |  Branch (5586:9): [True: 194, False: 0]
  ------------------
 5587|    194|      return 8709;
 5588|    194|    }
 5589|      0|    break;
 5590|       |    /* emptyset */
 5591|    194|  case 0x96c59f49571536b6ULL:
  ------------------
  |  Branch (5591:3): [True: 194, False: 516k]
  ------------------
 5592|    194|    if (len == 8) {
  ------------------
  |  Branch (5592:9): [True: 194, False: 0]
  ------------------
 5593|    194|      return 8709;
 5594|    194|    }
 5595|      0|    break;
 5596|       |    /* emptyv */
 5597|    194|  case 0x5487268aa0c3e508ULL:
  ------------------
  |  Branch (5597:3): [True: 194, False: 516k]
  ------------------
 5598|    194|    if (len == 6) {
  ------------------
  |  Branch (5598:9): [True: 194, False: 0]
  ------------------
 5599|    194|      return 8709;
 5600|    194|    }
 5601|      0|    break;
 5602|       |    /* emsp13 */
 5603|    194|  case 0xc1f3cd72ec0cc8e4ULL:
  ------------------
  |  Branch (5603:3): [True: 194, False: 516k]
  ------------------
 5604|    194|    if (len == 6) {
  ------------------
  |  Branch (5604:9): [True: 194, False: 0]
  ------------------
 5605|    194|      return 8196;
 5606|    194|    }
 5607|      0|    break;
 5608|       |    /* emsp14 */
 5609|    194|  case 0xc1f3cc72ec0cc731ULL:
  ------------------
  |  Branch (5609:3): [True: 194, False: 516k]
  ------------------
 5610|    194|    if (len == 6) {
  ------------------
  |  Branch (5610:9): [True: 194, False: 0]
  ------------------
 5611|    194|      return 8197;
 5612|    194|    }
 5613|      0|    break;
 5614|       |    /* emsp */
 5615|    194|  case 0x867a986056f4e9f4ULL:
  ------------------
  |  Branch (5615:3): [True: 194, False: 516k]
  ------------------
 5616|    194|    if (len == 4) {
  ------------------
  |  Branch (5616:9): [True: 194, False: 0]
  ------------------
 5617|    194|      return 8195;
 5618|    194|    }
 5619|      0|    break;
 5620|       |    /* eng */
 5621|    194|  case 0xc2f00218f0534e57ULL:
  ------------------
  |  Branch (5621:3): [True: 194, False: 516k]
  ------------------
 5622|    194|    if (len == 3) {
  ------------------
  |  Branch (5622:9): [True: 194, False: 0]
  ------------------
 5623|    194|      return 331;
 5624|    194|    }
 5625|      0|    break;
 5626|       |    /* ensp */
 5627|    194|  case 0x914abf605db0def1ULL:
  ------------------
  |  Branch (5627:3): [True: 194, False: 516k]
  ------------------
 5628|    194|    if (len == 4) {
  ------------------
  |  Branch (5628:9): [True: 194, False: 0]
  ------------------
 5629|    194|      return 8194;
 5630|    194|    }
 5631|      0|    break;
 5632|       |    /* eogon */
 5633|    194|  case 0x6d7703c5f8324ba7ULL:
  ------------------
  |  Branch (5633:3): [True: 194, False: 516k]
  ------------------
 5634|    194|    if (len == 5) {
  ------------------
  |  Branch (5634:9): [True: 194, False: 0]
  ------------------
 5635|    194|      return 281;
 5636|    194|    }
 5637|      0|    break;
 5638|       |    /* eopf */
 5639|    194|  case 0x98b0ea606185c8e3ULL:
  ------------------
  |  Branch (5639:3): [True: 194, False: 516k]
  ------------------
 5640|    194|    if (len == 4) {
  ------------------
  |  Branch (5640:9): [True: 194, False: 0]
  ------------------
 5641|    194|      return 120150;
 5642|    194|    }
 5643|      0|    break;
 5644|       |    /* epar */
 5645|    194|  case 0xa347ff606811da03ULL:
  ------------------
  |  Branch (5645:3): [True: 194, False: 516k]
  ------------------
 5646|    194|    if (len == 4) {
  ------------------
  |  Branch (5646:9): [True: 194, False: 0]
  ------------------
 5647|    194|      return 8917;
 5648|    194|    }
 5649|      0|    break;
 5650|       |    /* eparsl */
 5651|    194|  case 0xa913bedc346d29f4ULL:
  ------------------
  |  Branch (5651:3): [True: 194, False: 516k]
  ------------------
 5652|    194|    if (len == 6) {
  ------------------
  |  Branch (5652:9): [True: 194, False: 0]
  ------------------
 5653|    194|      return 10723;
 5654|    194|    }
 5655|      0|    break;
 5656|       |    /* eplus */
 5657|    194|  case 0xe32f23d10b348e80ULL:
  ------------------
  |  Branch (5657:3): [True: 194, False: 516k]
  ------------------
 5658|    194|    if (len == 5) {
  ------------------
  |  Branch (5658:9): [True: 194, False: 0]
  ------------------
 5659|    194|      return 10865;
 5660|    194|    }
 5661|      0|    break;
 5662|       |    /* epsi */
 5663|    195|  case 0xa318146067e8d9f0ULL:
  ------------------
  |  Branch (5663:3): [True: 195, False: 516k]
  ------------------
 5664|    195|    if (len == 4) {
  ------------------
  |  Branch (5664:9): [True: 195, False: 0]
  ------------------
 5665|    195|      return 949;
 5666|    195|    }
 5667|      0|    break;
 5668|       |    /* epsilon */
 5669|    194|  case 0x23d316013d60439dULL:
  ------------------
  |  Branch (5669:3): [True: 194, False: 516k]
  ------------------
 5670|    194|    if (len == 7) {
  ------------------
  |  Branch (5670:9): [True: 194, False: 0]
  ------------------
 5671|    194|      return 949;
 5672|    194|    }
 5673|      0|    break;
 5674|       |    /* epsiv */
 5675|    194|  case 0x0ac425d090a99eb2ULL:
  ------------------
  |  Branch (5675:3): [True: 194, False: 516k]
  ------------------
 5676|    194|    if (len == 5) {
  ------------------
  |  Branch (5676:9): [True: 194, False: 0]
  ------------------
 5677|    194|      return 1013;
 5678|    194|    }
 5679|      0|    break;
 5680|       |    /* eqcirc */
 5681|    194|  case 0x8c669db676119528ULL:
  ------------------
  |  Branch (5681:3): [True: 194, False: 516k]
  ------------------
 5682|    194|    if (len == 6) {
  ------------------
  |  Branch (5682:9): [True: 194, False: 0]
  ------------------
 5683|    194|      return 8790;
 5684|    194|    }
 5685|      0|    break;
 5686|       |    /* eqcolon */
 5687|    194|  case 0x578cdd3aeafc98feULL:
  ------------------
  |  Branch (5687:3): [True: 194, False: 516k]
  ------------------
 5688|    194|    if (len == 7) {
  ------------------
  |  Branch (5688:9): [True: 194, False: 0]
  ------------------
 5689|    194|      return 8789;
 5690|    194|    }
 5691|      0|    break;
 5692|       |    /* eqsim */
 5693|    194|  case 0x384f40d6f35df502ULL:
  ------------------
  |  Branch (5693:3): [True: 194, False: 516k]
  ------------------
 5694|    194|    if (len == 5) {
  ------------------
  |  Branch (5694:9): [True: 194, False: 0]
  ------------------
 5695|    194|      return 8770;
 5696|    194|    }
 5697|      0|    break;
 5698|       |    /* eqslantgtr */
 5699|      0|  case 0xc9ccdf5419f4b7acULL:
  ------------------
  |  Branch (5699:3): [True: 0, False: 516k]
  ------------------
 5700|      0|    if (len == 10) {
  ------------------
  |  Branch (5700:9): [True: 0, False: 0]
  ------------------
 5701|      0|      return 10902;
 5702|      0|    }
 5703|      0|    break;
 5704|       |    /* eqslantless */
 5705|      0|  case 0x17b17c2383c9b298ULL:
  ------------------
  |  Branch (5705:3): [True: 0, False: 516k]
  ------------------
 5706|      0|    if (len == 11) {
  ------------------
  |  Branch (5706:9): [True: 0, False: 0]
  ------------------
 5707|      0|      return 10901;
 5708|      0|    }
 5709|      0|    break;
 5710|       |    /* equals */
 5711|    194|  case 0x2fedf26ef08343d4ULL:
  ------------------
  |  Branch (5711:3): [True: 194, False: 516k]
  ------------------
 5712|    194|    if (len == 6) {
  ------------------
  |  Branch (5712:9): [True: 194, False: 0]
  ------------------
 5713|    194|      return 61;
 5714|    194|    }
 5715|      0|    break;
 5716|       |    /* equest */
 5717|    194|  case 0x53b4836f05184a42ULL:
  ------------------
  |  Branch (5717:3): [True: 194, False: 516k]
  ------------------
 5718|    194|    if (len == 6) {
  ------------------
  |  Branch (5718:9): [True: 194, False: 0]
  ------------------
 5719|    194|      return 8799;
 5720|    194|    }
 5721|      0|    break;
 5722|       |    /* equiv */
 5723|    194|  case 0x6a951dd70f5c5005ULL:
  ------------------
  |  Branch (5723:3): [True: 194, False: 516k]
  ------------------
 5724|    194|    if (len == 5) {
  ------------------
  |  Branch (5724:9): [True: 194, False: 0]
  ------------------
 5725|    194|      return 8801;
 5726|    194|    }
 5727|      0|    break;
 5728|       |    /* equivDD */
 5729|    194|  case 0x3fc242c8f1741775ULL:
  ------------------
  |  Branch (5729:3): [True: 194, False: 516k]
  ------------------
 5730|    194|    if (len == 7) {
  ------------------
  |  Branch (5730:9): [True: 194, False: 0]
  ------------------
 5731|    194|      return 10872;
 5732|    194|    }
 5733|      0|    break;
 5734|       |    /* eqvparsl */
 5735|    194|  case 0xc0e0dfc5f1a4f0ddULL:
  ------------------
  |  Branch (5735:3): [True: 194, False: 516k]
  ------------------
 5736|    194|    if (len == 8) {
  ------------------
  |  Branch (5736:9): [True: 194, False: 0]
  ------------------
 5737|    194|      return 10725;
 5738|    194|    }
 5739|      0|    break;
 5740|       |    /* erDot */
 5741|    194|  case 0x2d37b6de56eeeefdULL:
  ------------------
  |  Branch (5741:3): [True: 194, False: 516k]
  ------------------
 5742|    194|    if (len == 5) {
  ------------------
  |  Branch (5742:9): [True: 194, False: 0]
  ------------------
 5743|    194|      return 8787;
 5744|    194|    }
 5745|      0|    break;
 5746|       |    /* erarr */
 5747|    194|  case 0x45ab55ddd471d535ULL:
  ------------------
  |  Branch (5747:3): [True: 194, False: 516k]
  ------------------
 5748|    194|    if (len == 5) {
  ------------------
  |  Branch (5748:9): [True: 194, False: 0]
  ------------------
 5749|    194|      return 10609;
 5750|    194|    }
 5751|      0|    break;
 5752|       |    /* escr */
 5753|    194|  case 0xbc6a9060761068a4ULL:
  ------------------
  |  Branch (5753:3): [True: 194, False: 516k]
  ------------------
 5754|    194|    if (len == 4) {
  ------------------
  |  Branch (5754:9): [True: 194, False: 0]
  ------------------
 5755|    194|      return 8495;
 5756|    194|    }
 5757|      0|    break;
 5758|       |    /* esdot */
 5759|    194|  case 0x52dfaee8ac1834d4ULL:
  ------------------
  |  Branch (5759:3): [True: 194, False: 516k]
  ------------------
 5760|    194|    if (len == 5) {
  ------------------
  |  Branch (5760:9): [True: 194, False: 0]
  ------------------
 5761|    194|      return 8784;
 5762|    194|    }
 5763|      0|    break;
 5764|       |    /* esim */
 5765|    194|  case 0xbc48736075f350f7ULL:
  ------------------
  |  Branch (5765:3): [True: 194, False: 516k]
  ------------------
 5766|    194|    if (len == 4) {
  ------------------
  |  Branch (5766:9): [True: 194, False: 0]
  ------------------
 5767|    194|      return 8770;
 5768|    194|    }
 5769|      0|    break;
 5770|       |    /* eta */
 5771|    194|  case 0xc3042418f0643127ULL:
  ------------------
  |  Branch (5771:3): [True: 194, False: 516k]
  ------------------
 5772|    194|    if (len == 3) {
  ------------------
  |  Branch (5772:9): [True: 194, False: 0]
  ------------------
 5773|    194|      return 951;
 5774|    194|    }
 5775|      0|    break;
 5776|       |    /* eth */
 5777|    194|  case 0xc3041b18f06421dcULL:
  ------------------
  |  Branch (5777:3): [True: 194, False: 516k]
  ------------------
 5778|    194|    if (len == 3) {
  ------------------
  |  Branch (5778:9): [True: 194, False: 0]
  ------------------
 5779|    194|      return 240;
 5780|    194|    }
 5781|      0|    break;
 5782|       |    /* euml */
 5783|    194|  case 0xce67c8608071561eULL:
  ------------------
  |  Branch (5783:3): [True: 194, False: 516k]
  ------------------
 5784|    194|    if (len == 4) {
  ------------------
  |  Branch (5784:9): [True: 194, False: 0]
  ------------------
 5785|    194|      return 235;
 5786|    194|    }
 5787|      0|    break;
 5788|       |    /* euro */
 5789|    196|  case 0xcec2c76080be0018ULL:
  ------------------
  |  Branch (5789:3): [True: 196, False: 516k]
  ------------------
 5790|    196|    if (len == 4) {
  ------------------
  |  Branch (5790:9): [True: 196, False: 0]
  ------------------
 5791|    196|      return 8364;
 5792|    196|    }
 5793|      0|    break;
 5794|       |    /* excl */
 5795|    194|  case 0xe7c061608e9d81c7ULL:
  ------------------
  |  Branch (5795:3): [True: 194, False: 516k]
  ------------------
 5796|    194|    if (len == 4) {
  ------------------
  |  Branch (5796:9): [True: 194, False: 0]
  ------------------
 5797|    194|      return 33;
 5798|    194|    }
 5799|      0|    break;
 5800|       |    /* exist */
 5801|    194|  case 0x125f8a12243ad59cULL:
  ------------------
  |  Branch (5801:3): [True: 194, False: 516k]
  ------------------
 5802|    194|    if (len == 5) {
  ------------------
  |  Branch (5802:9): [True: 194, False: 0]
  ------------------
 5803|    194|      return 8707;
 5804|    194|    }
 5805|      0|    break;
 5806|       |    /* expectation */
 5807|      0|  case 0x493c54823adf3ea5ULL:
  ------------------
  |  Branch (5807:3): [True: 0, False: 516k]
  ------------------
 5808|      0|    if (len == 11) {
  ------------------
  |  Branch (5808:9): [True: 0, False: 0]
  ------------------
 5809|      0|      return 8496;
 5810|      0|    }
 5811|      0|    break;
 5812|       |    /* exponentiale */
 5813|      0|  case 0x68babbe189ad8717ULL:
  ------------------
  |  Branch (5813:3): [True: 0, False: 516k]
  ------------------
 5814|      0|    if (len == 12) {
  ------------------
  |  Branch (5814:9): [True: 0, False: 0]
  ------------------
 5815|      0|      return 8519;
 5816|      0|    }
 5817|      0|    break;
 5818|       |    /* fallingdotseq */
 5819|      0|  case 0x8338af685a0a35e6ULL:
  ------------------
  |  Branch (5819:3): [True: 0, False: 516k]
  ------------------
 5820|      0|    if (len == 13) {
  ------------------
  |  Branch (5820:9): [True: 0, False: 0]
  ------------------
 5821|      0|      return 8786;
 5822|      0|    }
 5823|      0|    break;
 5824|       |    /* fcy */
 5825|    194|  case 0xdcc08b18fee63835ULL:
  ------------------
  |  Branch (5825:3): [True: 194, False: 516k]
  ------------------
 5826|    194|    if (len == 3) {
  ------------------
  |  Branch (5826:9): [True: 194, False: 0]
  ------------------
 5827|    194|      return 1092;
 5828|    194|    }
 5829|      0|    break;
 5830|       |    /* female */
 5831|    194|  case 0x1ba65229592c08d9ULL:
  ------------------
  |  Branch (5831:3): [True: 194, False: 516k]
  ------------------
 5832|    194|    if (len == 6) {
  ------------------
  |  Branch (5832:9): [True: 194, False: 0]
  ------------------
 5833|    194|      return 9792;
 5834|    194|    }
 5835|      0|    break;
 5836|       |    /* ffilig */
 5837|    194|  case 0x1fd6b2748d740d64ULL:
  ------------------
  |  Branch (5837:3): [True: 194, False: 516k]
  ------------------
 5838|    194|    if (len == 6) {
  ------------------
  |  Branch (5838:9): [True: 194, False: 0]
  ------------------
 5839|    194|      return 64259;
 5840|    194|    }
 5841|      0|    break;
 5842|       |    /* fflig */
 5843|    194|  case 0xf90d36fcaedd35ebULL:
  ------------------
  |  Branch (5843:3): [True: 194, False: 516k]
  ------------------
 5844|    194|    if (len == 5) {
  ------------------
  |  Branch (5844:9): [True: 194, False: 0]
  ------------------
 5845|    194|      return 64256;
 5846|    194|    }
 5847|      0|    break;
 5848|       |    /* ffllig */
 5849|    194|  case 0x39ebc85d3a5e6631ULL:
  ------------------
  |  Branch (5849:3): [True: 194, False: 516k]
  ------------------
 5850|    194|    if (len == 6) {
  ------------------
  |  Branch (5850:9): [True: 194, False: 0]
  ------------------
 5851|    194|      return 64260;
 5852|    194|    }
 5853|      0|    break;
 5854|       |    /* ffr */
 5855|    194|  case 0xdcd19218fef4b74dULL:
  ------------------
  |  Branch (5855:3): [True: 194, False: 516k]
  ------------------
 5856|    194|    if (len == 3) {
  ------------------
  |  Branch (5856:9): [True: 194, False: 0]
  ------------------
 5857|    194|      return 120099;
 5858|    194|    }
 5859|      0|    break;
 5860|       |    /* filig */
 5861|    194|  case 0x6a20f480183596a0ULL:
  ------------------
  |  Branch (5861:3): [True: 194, False: 516k]
  ------------------
 5862|    194|    if (len == 5) {
  ------------------
  |  Branch (5862:9): [True: 194, False: 0]
  ------------------
 5863|    194|      return 64257;
 5864|    194|    }
 5865|      0|    break;
 5866|       |    /* flat */
 5867|    194|  case 0xd5f2e179088c27faULL:
  ------------------
  |  Branch (5867:3): [True: 194, False: 516k]
  ------------------
 5868|    194|    if (len == 4) {
  ------------------
  |  Branch (5868:9): [True: 194, False: 0]
  ------------------
 5869|    194|      return 9837;
 5870|    194|    }
 5871|      0|    break;
 5872|       |    /* fllig */
 5873|    194|  case 0xb9e4eaa9514d3e15ULL:
  ------------------
  |  Branch (5873:3): [True: 194, False: 516k]
  ------------------
 5874|    194|    if (len == 5) {
  ------------------
  |  Branch (5874:9): [True: 194, False: 0]
  ------------------
 5875|    194|      return 64258;
 5876|    194|    }
 5877|      0|    break;
 5878|       |    /* fltns */
 5879|    194|  case 0x8af0c6a9c80971eaULL:
  ------------------
  |  Branch (5879:3): [True: 194, False: 516k]
  ------------------
 5880|    194|    if (len == 5) {
  ------------------
  |  Branch (5880:9): [True: 194, False: 0]
  ------------------
 5881|    194|      return 9649;
 5882|    194|    }
 5883|      0|    break;
 5884|       |    /* fnof */
 5885|    194|  case 0xe4ce21791043c6d8ULL:
  ------------------
  |  Branch (5885:3): [True: 194, False: 516k]
  ------------------
 5886|    194|    if (len == 4) {
  ------------------
  |  Branch (5886:9): [True: 194, False: 0]
  ------------------
 5887|    194|      return 402;
 5888|    194|    }
 5889|      0|    break;
 5890|       |    /* fopf */
 5891|    194|  case 0xdd2308790c337bb0ULL:
  ------------------
  |  Branch (5891:3): [True: 194, False: 516k]
  ------------------
 5892|    194|    if (len == 4) {
  ------------------
  |  Branch (5892:9): [True: 194, False: 0]
  ------------------
 5893|    194|      return 120151;
 5894|    194|    }
 5895|      0|    break;
 5896|       |    /* forall */
 5897|    194|  case 0xffa28a8eb76fc103ULL:
  ------------------
  |  Branch (5897:3): [True: 194, False: 516k]
  ------------------
 5898|    194|    if (len == 6) {
  ------------------
  |  Branch (5898:9): [True: 194, False: 0]
  ------------------
 5899|    194|      return 8704;
 5900|    194|    }
 5901|      0|    break;
 5902|       |    /* fork */
 5903|    195|  case 0xdd1d0d790c2f1881ULL:
  ------------------
  |  Branch (5903:3): [True: 195, False: 516k]
  ------------------
 5904|    195|    if (len == 4) {
  ------------------
  |  Branch (5904:9): [True: 195, False: 0]
  ------------------
 5905|    195|      return 8916;
 5906|    195|    }
 5907|      0|    break;
 5908|       |    /* forkv */
 5909|    194|  case 0xe776dbafb4076bb5ULL:
  ------------------
  |  Branch (5909:3): [True: 194, False: 516k]
  ------------------
 5910|    194|    if (len == 5) {
  ------------------
  |  Branch (5910:9): [True: 194, False: 0]
  ------------------
 5911|    194|      return 10969;
 5912|    194|    }
 5913|      0|    break;
 5914|       |    /* fpartint */
 5915|    194|  case 0x3e9cfc3ce84ad821ULL:
  ------------------
  |  Branch (5915:3): [True: 194, False: 516k]
  ------------------
 5916|    194|    if (len == 8) {
  ------------------
  |  Branch (5916:9): [True: 194, False: 0]
  ------------------
 5917|    194|      return 10765;
 5918|    194|    }
 5919|      0|    break;
 5920|       |    /* frac12 */
 5921|    204|  case 0xccb13d66f725edceULL:
  ------------------
  |  Branch (5921:3): [True: 204, False: 516k]
  ------------------
 5922|    204|    if (len == 6) {
  ------------------
  |  Branch (5922:9): [True: 204, False: 0]
  ------------------
 5923|    204|      return 189;
 5924|    204|    }
 5925|      0|    break;
 5926|       |    /* frac13 */
 5927|    197|  case 0xccb13e66f725ef81ULL:
  ------------------
  |  Branch (5927:3): [True: 197, False: 516k]
  ------------------
 5928|    197|    if (len == 6) {
  ------------------
  |  Branch (5928:9): [True: 197, False: 0]
  ------------------
 5929|    197|      return 8531;
 5930|    197|    }
 5931|      0|    break;
 5932|       |    /* frac14 */
 5933|    194|  case 0xccb13f66f725f134ULL:
  ------------------
  |  Branch (5933:3): [True: 194, False: 516k]
  ------------------
 5934|    194|    if (len == 6) {
  ------------------
  |  Branch (5934:9): [True: 194, False: 0]
  ------------------
 5935|    194|      return 188;
 5936|    194|    }
 5937|      0|    break;
 5938|       |    /* frac15 */
 5939|    196|  case 0xccb14066f725f2e7ULL:
  ------------------
  |  Branch (5939:3): [True: 196, False: 516k]
  ------------------
 5940|    196|    if (len == 6) {
  ------------------
  |  Branch (5940:9): [True: 196, False: 0]
  ------------------
 5941|    196|      return 8533;
 5942|    196|    }
 5943|      0|    break;
 5944|       |    /* frac16 */
 5945|    375|  case 0xccb14166f725f49aULL:
  ------------------
  |  Branch (5945:3): [True: 375, False: 516k]
  ------------------
 5946|    375|    if (len == 6) {
  ------------------
  |  Branch (5946:9): [True: 375, False: 0]
  ------------------
 5947|    375|      return 8537;
 5948|    375|    }
 5949|      0|    break;
 5950|       |    /* frac18 */
 5951|    194|  case 0xccb13366f725dcd0ULL:
  ------------------
  |  Branch (5951:3): [True: 194, False: 516k]
  ------------------
 5952|    194|    if (len == 6) {
  ------------------
  |  Branch (5952:9): [True: 194, False: 0]
  ------------------
 5953|    194|      return 8539;
 5954|    194|    }
 5955|      0|    break;
 5956|       |    /* frac23 */
 5957|    194|  case 0xccbb2e66f72e28d6ULL:
  ------------------
  |  Branch (5957:3): [True: 194, False: 516k]
  ------------------
 5958|    194|    if (len == 6) {
  ------------------
  |  Branch (5958:9): [True: 194, False: 0]
  ------------------
 5959|    194|      return 8532;
 5960|    194|    }
 5961|      0|    break;
 5962|       |    /* frac25 */
 5963|    194|  case 0xccbb3066f72e2c3cULL:
  ------------------
  |  Branch (5963:3): [True: 194, False: 516k]
  ------------------
 5964|    194|    if (len == 6) {
  ------------------
  |  Branch (5964:9): [True: 194, False: 0]
  ------------------
 5965|    194|      return 8534;
 5966|    194|    }
 5967|      0|    break;
 5968|       |    /* frac34 */
 5969|    194|  case 0xccb7c366f72b3d2eULL:
  ------------------
  |  Branch (5969:3): [True: 194, False: 516k]
  ------------------
 5970|    194|    if (len == 6) {
  ------------------
  |  Branch (5970:9): [True: 194, False: 0]
  ------------------
 5971|    194|      return 190;
 5972|    194|    }
 5973|      0|    break;
 5974|       |    /* frac35 */
 5975|    194|  case 0xccb7c466f72b3ee1ULL:
  ------------------
  |  Branch (5975:3): [True: 194, False: 516k]
  ------------------
 5976|    194|    if (len == 6) {
  ------------------
  |  Branch (5976:9): [True: 194, False: 0]
  ------------------
 5977|    194|      return 8535;
 5978|    194|    }
 5979|      0|    break;
 5980|       |    /* frac38 */
 5981|    194|  case 0xccb7bf66f72b3662ULL:
  ------------------
  |  Branch (5981:3): [True: 194, False: 516k]
  ------------------
 5982|    194|    if (len == 6) {
  ------------------
  |  Branch (5982:9): [True: 194, False: 0]
  ------------------
 5983|    194|      return 8540;
 5984|    194|    }
 5985|      0|    break;
 5986|       |    /* frac45 */
 5987|    194|  case 0xccc23466f73451b6ULL:
  ------------------
  |  Branch (5987:3): [True: 194, False: 516k]
  ------------------
 5988|    194|    if (len == 6) {
  ------------------
  |  Branch (5988:9): [True: 194, False: 0]
  ------------------
 5989|    194|      return 8536;
 5990|    194|    }
 5991|      0|    break;
 5992|       |    /* frac56 */
 5993|    194|  case 0xccbeb166f7313d46ULL:
  ------------------
  |  Branch (5993:3): [True: 194, False: 516k]
  ------------------
 5994|    194|    if (len == 6) {
  ------------------
  |  Branch (5994:9): [True: 194, False: 0]
  ------------------
 5995|    194|      return 8538;
 5996|    194|    }
 5997|      0|    break;
 5998|       |    /* frac58 */
 5999|    194|  case 0xccbebb66f7314e44ULL:
  ------------------
  |  Branch (5999:3): [True: 194, False: 516k]
  ------------------
 6000|    194|    if (len == 6) {
  ------------------
  |  Branch (6000:9): [True: 194, False: 0]
  ------------------
 6001|    194|      return 8541;
 6002|    194|    }
 6003|      0|    break;
 6004|       |    /* frac78 */
 6005|    194|  case 0xccc53766f7368ca6ULL:
  ------------------
  |  Branch (6005:3): [True: 194, False: 516k]
  ------------------
 6006|    194|    if (len == 6) {
  ------------------
  |  Branch (6006:9): [True: 194, False: 0]
  ------------------
 6007|    194|      return 8542;
 6008|    194|    }
 6009|      0|    break;
 6010|       |    /* frasl */
 6011|    194|  case 0xd87b58562867682fULL:
  ------------------
  |  Branch (6011:3): [True: 194, False: 516k]
  ------------------
 6012|    194|    if (len == 5) {
  ------------------
  |  Branch (6012:9): [True: 194, False: 0]
  ------------------
 6013|    194|      return 8260;
 6014|    194|    }
 6015|      0|    break;
 6016|       |    /* frown */
 6017|    194|  case 0x537398566e89cdbbULL:
  ------------------
  |  Branch (6017:3): [True: 194, False: 516k]
  ------------------
 6018|    194|    if (len == 5) {
  ------------------
  |  Branch (6018:9): [True: 194, False: 0]
  ------------------
 6019|    194|      return 8994;
 6020|    194|    }
 6021|      0|    break;
 6022|       |    /* fscr */
 6023|    194|  case 0x74f81278d123716fULL:
  ------------------
  |  Branch (6023:3): [True: 194, False: 516k]
  ------------------
 6024|    194|    if (len == 4) {
  ------------------
  |  Branch (6024:9): [True: 194, False: 0]
  ------------------
 6025|    194|      return 119995;
 6026|    194|    }
 6027|      0|    break;
 6028|       |    /* gE */
 6029|    195|  case 0x08955307b53f9339ULL:
  ------------------
  |  Branch (6029:3): [True: 195, False: 516k]
  ------------------
 6030|    195|    if (len == 2) {
  ------------------
  |  Branch (6030:9): [True: 195, False: 0]
  ------------------
 6031|    195|      return 8807;
 6032|    195|    }
 6033|      0|    break;
 6034|       |    /* gEl */
 6035|    194|  case 0xd54f6b18fb07596fULL:
  ------------------
  |  Branch (6035:3): [True: 194, False: 516k]
  ------------------
 6036|    194|    if (len == 3) {
  ------------------
  |  Branch (6036:9): [True: 194, False: 0]
  ------------------
 6037|    194|      return 10892;
 6038|    194|    }
 6039|      0|    break;
 6040|       |    /* gacute */
 6041|    194|  case 0x76d58e4a54405232ULL:
  ------------------
  |  Branch (6041:3): [True: 194, False: 516k]
  ------------------
 6042|    194|    if (len == 6) {
  ------------------
  |  Branch (6042:9): [True: 194, False: 0]
  ------------------
 6043|    194|      return 501;
 6044|    194|    }
 6045|      0|    break;
 6046|       |    /* gamma */
 6047|    194|  case 0x229176bd1f6ba96aULL:
  ------------------
  |  Branch (6047:3): [True: 194, False: 516k]
  ------------------
 6048|    194|    if (len == 5) {
  ------------------
  |  Branch (6048:9): [True: 194, False: 0]
  ------------------
 6049|    194|      return 947;
 6050|    194|    }
 6051|      0|    break;
 6052|       |    /* gammad */
 6053|    194|  case 0x28d5d15c63f042caULL:
  ------------------
  |  Branch (6053:3): [True: 194, False: 516k]
  ------------------
 6054|    194|    if (len == 6) {
  ------------------
  |  Branch (6054:9): [True: 194, False: 0]
  ------------------
 6055|    194|      return 989;
 6056|    194|    }
 6057|      0|    break;
 6058|       |    /* gap */
 6059|    194|  case 0xd4f05718fab6a2efULL:
  ------------------
  |  Branch (6059:3): [True: 194, False: 516k]
  ------------------
 6060|    194|    if (len == 3) {
  ------------------
  |  Branch (6060:9): [True: 194, False: 0]
  ------------------
 6061|    194|      return 10886;
 6062|    194|    }
 6063|      0|    break;
 6064|       |    /* gbreve */
 6065|    194|  case 0xf9adcf722090a52cULL:
  ------------------
  |  Branch (6065:3): [True: 194, False: 516k]
  ------------------
 6066|    194|    if (len == 6) {
  ------------------
  |  Branch (6066:9): [True: 194, False: 0]
  ------------------
 6067|    194|      return 287;
 6068|    194|    }
 6069|      0|    break;
 6070|       |    /* gcirc */
 6071|    194|  case 0x7bbce4ac3908e0c9ULL:
  ------------------
  |  Branch (6071:3): [True: 194, False: 516k]
  ------------------
 6072|    194|    if (len == 5) {
  ------------------
  |  Branch (6072:9): [True: 194, False: 0]
  ------------------
 6073|    194|      return 285;
 6074|    194|    }
 6075|      0|    break;
 6076|       |    /* gcy */
 6077|    196|  case 0xd4e96218fab096f2ULL:
  ------------------
  |  Branch (6077:3): [True: 196, False: 516k]
  ------------------
 6078|    196|    if (len == 3) {
  ------------------
  |  Branch (6078:9): [True: 196, False: 0]
  ------------------
 6079|    196|      return 1075;
 6080|    196|    }
 6081|      0|    break;
 6082|       |    /* gdot */
 6083|    194|  case 0x5f8bcd71ebaa1ecdULL:
  ------------------
  |  Branch (6083:3): [True: 194, False: 516k]
  ------------------
 6084|    194|    if (len == 4) {
  ------------------
  |  Branch (6084:9): [True: 194, False: 0]
  ------------------
 6085|    194|      return 289;
 6086|    194|    }
 6087|      0|    break;
 6088|       |    /* ge */
 6089|    200|  case 0x08953307b53f5cd9ULL:
  ------------------
  |  Branch (6089:3): [True: 200, False: 516k]
  ------------------
 6090|    200|    if (len == 2) {
  ------------------
  |  Branch (6090:9): [True: 200, False: 0]
  ------------------
 6091|    200|      return 8805;
 6092|    200|    }
 6093|      0|    break;
 6094|       |    /* gel */
 6095|    194|  case 0xd4e26b18faaa878fULL:
  ------------------
  |  Branch (6095:3): [True: 194, False: 516k]
  ------------------
 6096|    194|    if (len == 3) {
  ------------------
  |  Branch (6096:9): [True: 194, False: 0]
  ------------------
 6097|    194|      return 8923;
 6098|    194|    }
 6099|      0|    break;
 6100|       |    /* geq */
 6101|    194|  case 0xd4e25e18faaa7178ULL:
  ------------------
  |  Branch (6101:3): [True: 194, False: 516k]
  ------------------
 6102|    194|    if (len == 3) {
  ------------------
  |  Branch (6102:9): [True: 194, False: 0]
  ------------------
 6103|    194|      return 8805;
 6104|    194|    }
 6105|      0|    break;
 6106|       |    /* geqq */
 6107|    194|  case 0x6716ed71ef9e124bULL:
  ------------------
  |  Branch (6107:3): [True: 194, False: 516k]
  ------------------
 6108|    194|    if (len == 4) {
  ------------------
  |  Branch (6108:9): [True: 194, False: 0]
  ------------------
 6109|    194|      return 8807;
 6110|    194|    }
 6111|      0|    break;
 6112|       |    /* geqslant */
 6113|      0|  case 0x9bf79a7d6730e500ULL:
  ------------------
  |  Branch (6113:3): [True: 0, False: 516k]
  ------------------
 6114|      0|    if (len == 8) {
  ------------------
  |  Branch (6114:9): [True: 0, False: 0]
  ------------------
 6115|      0|      return 10878;
 6116|      0|    }
 6117|      0|    break;
 6118|       |    /* ges */
 6119|    197|  case 0xd4e26018faaa74deULL:
  ------------------
  |  Branch (6119:3): [True: 197, False: 516k]
  ------------------
 6120|    197|    if (len == 3) {
  ------------------
  |  Branch (6120:9): [True: 197, False: 0]
  ------------------
 6121|    197|      return 10878;
 6122|    197|    }
 6123|      0|    break;
 6124|       |    /* gescc */
 6125|    194|  case 0xdc63ea9a344a7a8cULL:
  ------------------
  |  Branch (6125:3): [True: 194, False: 516k]
  ------------------
 6126|    194|    if (len == 5) {
  ------------------
  |  Branch (6126:9): [True: 194, False: 0]
  ------------------
 6127|    194|      return 10921;
 6128|    194|    }
 6129|      0|    break;
 6130|       |    /* gesdot */
 6131|    194|  case 0xaefd1706cc71dfc5ULL:
  ------------------
  |  Branch (6131:3): [True: 194, False: 516k]
  ------------------
 6132|    194|    if (len == 6) {
  ------------------
  |  Branch (6132:9): [True: 194, False: 0]
  ------------------
 6133|    194|      return 10880;
 6134|    194|    }
 6135|      0|    break;
 6136|       |    /* gesdoto */
 6137|    194|  case 0xc9edca8d657f0ddeULL:
  ------------------
  |  Branch (6137:3): [True: 194, False: 516k]
  ------------------
 6138|    194|    if (len == 7) {
  ------------------
  |  Branch (6138:9): [True: 194, False: 0]
  ------------------
 6139|    194|      return 10882;
 6140|    194|    }
 6141|      0|    break;
 6142|       |    /* gesdotol */
 6143|    194|  case 0x9e1ce04376e44576ULL:
  ------------------
  |  Branch (6143:3): [True: 194, False: 516k]
  ------------------
 6144|    194|    if (len == 8) {
  ------------------
  |  Branch (6144:9): [True: 194, False: 0]
  ------------------
 6145|    194|      return 10884;
 6146|    194|    }
 6147|      0|    break;
 6148|       |    /* gesles */
 6149|    194|  case 0x6746d806a3249c8eULL:
  ------------------
  |  Branch (6149:3): [True: 194, False: 516k]
  ------------------
 6150|    194|    if (len == 6) {
  ------------------
  |  Branch (6150:9): [True: 194, False: 0]
  ------------------
 6151|    194|      return 10900;
 6152|    194|    }
 6153|      0|    break;
 6154|       |    /* gfr */
 6155|    194|  case 0xd4d84f18faa20376ULL:
  ------------------
  |  Branch (6155:3): [True: 194, False: 516k]
  ------------------
 6156|    194|    if (len == 3) {
  ------------------
  |  Branch (6156:9): [True: 194, False: 0]
  ------------------
 6157|    194|      return 120100;
 6158|    194|    }
 6159|      0|    break;
 6160|       |    /* gg */
 6161|    194|  case 0x08953107b53f5973ULL:
  ------------------
  |  Branch (6161:3): [True: 194, False: 516k]
  ------------------
 6162|    194|    if (len == 2) {
  ------------------
  |  Branch (6162:9): [True: 194, False: 0]
  ------------------
 6163|    194|      return 8811;
 6164|    194|    }
 6165|      0|    break;
 6166|       |    /* ggg */
 6167|    194|  case 0xd4db6418faa45cfcULL:
  ------------------
  |  Branch (6167:3): [True: 194, False: 516k]
  ------------------
 6168|    194|    if (len == 3) {
  ------------------
  |  Branch (6168:9): [True: 194, False: 0]
  ------------------
 6169|    194|      return 8921;
 6170|    194|    }
 6171|      0|    break;
 6172|       |    /* gimel */
 6173|    194|  case 0x97108bff81f772d9ULL:
  ------------------
  |  Branch (6173:3): [True: 194, False: 516k]
  ------------------
 6174|    194|    if (len == 5) {
  ------------------
  |  Branch (6174:9): [True: 194, False: 0]
  ------------------
 6175|    194|      return 8503;
 6176|    194|    }
 6177|      0|    break;
 6178|       |    /* gjcy */
 6179|    194|  case 0xb62a5e721cb9a9d4ULL:
  ------------------
  |  Branch (6179:3): [True: 194, False: 516k]
  ------------------
 6180|    194|    if (len == 4) {
  ------------------
  |  Branch (6180:9): [True: 194, False: 0]
  ------------------
 6181|    194|      return 1107;
 6182|    194|    }
 6183|      0|    break;
 6184|       |    /* gl */
 6185|    194|  case 0x08953a07b53f68beULL:
  ------------------
  |  Branch (6185:3): [True: 194, False: 516k]
  ------------------
 6186|    194|    if (len == 2) {
  ------------------
  |  Branch (6186:9): [True: 194, False: 0]
  ------------------
 6187|    194|      return 8823;
 6188|    194|    }
 6189|      0|    break;
 6190|       |    /* glE */
 6191|    194|  case 0xd4fa9618fabf6281ULL:
  ------------------
  |  Branch (6191:3): [True: 194, False: 516k]
  ------------------
 6192|    194|    if (len == 3) {
  ------------------
  |  Branch (6192:9): [True: 194, False: 0]
  ------------------
 6193|    194|      return 10898;
 6194|    194|    }
 6195|      0|    break;
 6196|       |    /* gla */
 6197|    194|  case 0xd4fa7a18fabf32edULL:
  ------------------
  |  Branch (6197:3): [True: 194, False: 516k]
  ------------------
 6198|    194|    if (len == 3) {
  ------------------
  |  Branch (6198:9): [True: 194, False: 0]
  ------------------
 6199|    194|      return 10917;
 6200|    194|    }
 6201|      0|    break;
 6202|       |    /* glj */
 6203|    194|  case 0xd4fa6f18fabf203cULL:
  ------------------
  |  Branch (6203:3): [True: 194, False: 516k]
  ------------------
 6204|    194|    if (len == 3) {
  ------------------
  |  Branch (6204:9): [True: 194, False: 0]
  ------------------
 6205|    194|      return 10916;
 6206|    194|    }
 6207|      0|    break;
 6208|       |    /* gnE */
 6209|    194|  case 0xd4f35218fab8d047ULL:
  ------------------
  |  Branch (6209:3): [True: 194, False: 516k]
  ------------------
 6210|    194|    if (len == 3) {
  ------------------
  |  Branch (6210:9): [True: 194, False: 0]
  ------------------
 6211|    194|      return 8809;
 6212|    194|    }
 6213|      0|    break;
 6214|       |    /* gnap */
 6215|    194|  case 0x92a3bf72085a6f91ULL:
  ------------------
  |  Branch (6215:3): [True: 194, False: 516k]
  ------------------
 6216|    194|    if (len == 4) {
  ------------------
  |  Branch (6216:9): [True: 194, False: 0]
  ------------------
 6217|    194|      return 10890;
 6218|    194|    }
 6219|      0|    break;
 6220|       |    /* gnapprox */
 6221|    194|  case 0x97c4dd0ef0d731a4ULL:
  ------------------
  |  Branch (6221:3): [True: 194, False: 516k]
  ------------------
 6222|    194|    if (len == 8) {
  ------------------
  |  Branch (6222:9): [True: 194, False: 0]
  ------------------
 6223|    194|      return 10890;
 6224|    194|    }
 6225|      0|    break;
 6226|       |    /* gne */
 6227|    195|  case 0xd4f37218fab906a7ULL:
  ------------------
  |  Branch (6227:3): [True: 195, False: 516k]
  ------------------
 6228|    195|    if (len == 3) {
  ------------------
  |  Branch (6228:9): [True: 195, False: 0]
  ------------------
 6229|    195|      return 10888;
 6230|    195|    }
 6231|      0|    break;
 6232|       |    /* gneq */
 6233|    194|  case 0x92b1b67208669da2ULL:
  ------------------
  |  Branch (6233:3): [True: 194, False: 516k]
  ------------------
 6234|    194|    if (len == 4) {
  ------------------
  |  Branch (6234:9): [True: 194, False: 0]
  ------------------
 6235|    194|      return 10888;
 6236|    194|    }
 6237|      0|    break;
 6238|       |    /* gneqq */
 6239|    194|  case 0xaa96d6c4465e2d89ULL:
  ------------------
  |  Branch (6239:3): [True: 194, False: 516k]
  ------------------
 6240|    194|    if (len == 5) {
  ------------------
  |  Branch (6240:9): [True: 194, False: 0]
  ------------------
 6241|    194|      return 8809;
 6242|    194|    }
 6243|      0|    break;
 6244|       |    /* gnsim */
 6245|    194|  case 0x0f69ecc3eeaefaffULL:
  ------------------
  |  Branch (6245:3): [True: 194, False: 516k]
  ------------------
 6246|    194|    if (len == 5) {
  ------------------
  |  Branch (6246:9): [True: 194, False: 0]
  ------------------
 6247|    194|      return 8935;
 6248|    194|    }
 6249|      0|    break;
 6250|       |    /* gopf */
 6251|    194|  case 0x9d33ca720ee05105ULL:
  ------------------
  |  Branch (6251:3): [True: 194, False: 516k]
  ------------------
 6252|    194|    if (len == 4) {
  ------------------
  |  Branch (6252:9): [True: 194, False: 0]
  ------------------
 6253|    194|      return 120152;
 6254|    194|    }
 6255|      0|    break;
 6256|       |    /* grave */
 6257|    196|  case 0x32d86f2977ed63d2ULL:
  ------------------
  |  Branch (6257:3): [True: 196, False: 516k]
  ------------------
 6258|    196|    if (len == 5) {
  ------------------
  |  Branch (6258:9): [True: 196, False: 0]
  ------------------
 6259|    196|      return 96;
 6260|    196|    }
 6261|      0|    break;
 6262|       |    /* gscr */
 6263|    194|  case 0x0257c872475dd462ULL:
  ------------------
  |  Branch (6263:3): [True: 194, False: 516k]
  ------------------
 6264|    194|    if (len == 4) {
  ------------------
  |  Branch (6264:9): [True: 194, False: 0]
  ------------------
 6265|    194|      return 8458;
 6266|    194|    }
 6267|      0|    break;
 6268|       |    /* gsim */
 6269|    194|  case 0x0243df72474d526dULL:
  ------------------
  |  Branch (6269:3): [True: 194, False: 516k]
  ------------------
 6270|    194|    if (len == 4) {
  ------------------
  |  Branch (6270:9): [True: 194, False: 0]
  ------------------
 6271|    194|      return 8819;
 6272|    194|    }
 6273|      0|    break;
 6274|       |    /* gsime */
 6275|    194|  case 0x26a6b72f28626398ULL:
  ------------------
  |  Branch (6275:3): [True: 194, False: 516k]
  ------------------
 6276|    194|    if (len == 5) {
  ------------------
  |  Branch (6276:9): [True: 194, False: 0]
  ------------------
 6277|    194|      return 10894;
 6278|    194|    }
 6279|      0|    break;
 6280|       |    /* gsiml */
 6281|    194|  case 0x26a6b02f286257b3ULL:
  ------------------
  |  Branch (6281:3): [True: 194, False: 516k]
  ------------------
 6282|    194|    if (len == 5) {
  ------------------
  |  Branch (6282:9): [True: 194, False: 0]
  ------------------
 6283|    194|      return 10896;
 6284|    194|    }
 6285|      0|    break;
 6286|       |    /* gt */
 6287|    199|  case 0x08954207b53f7656ULL:
  ------------------
  |  Branch (6287:3): [True: 199, False: 516k]
  ------------------
 6288|    199|    if (len == 2) {
  ------------------
  |  Branch (6288:9): [True: 199, False: 0]
  ------------------
 6289|    199|      return 62;
 6290|    199|    }
 6291|      0|    break;
 6292|       |    /* gtcc */
 6293|    194|  case 0xe93c4e7239658b84ULL:
  ------------------
  |  Branch (6293:3): [True: 194, False: 516k]
  ------------------
 6294|    194|    if (len == 4) {
  ------------------
  |  Branch (6294:9): [True: 194, False: 0]
  ------------------
 6295|    194|      return 10919;
 6296|    194|    }
 6297|      0|    break;
 6298|       |    /* gtcir */
 6299|    194|  case 0xb6f03a17877a6960ULL:
  ------------------
  |  Branch (6299:3): [True: 194, False: 516k]
  ------------------
 6300|    194|    if (len == 5) {
  ------------------
  |  Branch (6300:9): [True: 194, False: 0]
  ------------------
 6301|    194|      return 10874;
 6302|    194|    }
 6303|      0|    break;
 6304|       |    /* gtdot */
 6305|    194|  case 0x9a8fd71776ba51fdULL:
  ------------------
  |  Branch (6305:3): [True: 194, False: 516k]
  ------------------
 6306|    194|    if (len == 5) {
  ------------------
  |  Branch (6306:9): [True: 194, False: 0]
  ------------------
 6307|    194|      return 8919;
 6308|    194|    }
 6309|      0|    break;
 6310|       |    /* gtlPar */
 6311|    194|  case 0x38f95924c2a5c189ULL:
  ------------------
  |  Branch (6311:3): [True: 194, False: 516k]
  ------------------
 6312|    194|    if (len == 6) {
  ------------------
  |  Branch (6312:9): [True: 194, False: 0]
  ------------------
 6313|    194|      return 10645;
 6314|    194|    }
 6315|      0|    break;
 6316|       |    /* gtquest */
 6317|    194|  case 0xb2ad0106bc673780ULL:
  ------------------
  |  Branch (6317:3): [True: 194, False: 516k]
  ------------------
 6318|    194|    if (len == 7) {
  ------------------
  |  Branch (6318:9): [True: 194, False: 0]
  ------------------
 6319|    194|      return 10876;
 6320|    194|    }
 6321|      0|    break;
 6322|       |    /* gtrapprox */
 6323|    194|  case 0x288c1c73c4680620ULL:
  ------------------
  |  Branch (6323:3): [True: 194, False: 516k]
  ------------------
 6324|    194|    if (len == 9) {
  ------------------
  |  Branch (6324:9): [True: 194, False: 0]
  ------------------
 6325|    194|      return 10886;
 6326|    194|    }
 6327|      0|    break;
 6328|       |    /* gtrarr */
 6329|    194|  case 0xe136856c727f7b77ULL:
  ------------------
  |  Branch (6329:3): [True: 194, False: 516k]
  ------------------
 6330|    194|    if (len == 6) {
  ------------------
  |  Branch (6330:9): [True: 194, False: 0]
  ------------------
 6331|    194|      return 10616;
 6332|    194|    }
 6333|      0|    break;
 6334|       |    /* gtrdot */
 6335|    194|  case 0xb620a26c5a2827b3ULL:
  ------------------
  |  Branch (6335:3): [True: 194, False: 516k]
  ------------------
 6336|    194|    if (len == 6) {
  ------------------
  |  Branch (6336:9): [True: 194, False: 0]
  ------------------
 6337|    194|      return 8919;
 6338|    194|    }
 6339|      0|    break;
 6340|       |    /* gtreqless */
 6341|    194|  case 0x2f310e1fab7cb517ULL:
  ------------------
  |  Branch (6341:3): [True: 194, False: 516k]
  ------------------
 6342|    194|    if (len == 9) {
  ------------------
  |  Branch (6342:9): [True: 194, False: 0]
  ------------------
 6343|    194|      return 8923;
 6344|    194|    }
 6345|      0|    break;
 6346|       |    /* gtreqqless */
 6347|    194|  case 0x41f55d823d460c90ULL:
  ------------------
  |  Branch (6347:3): [True: 194, False: 516k]
  ------------------
 6348|    194|    if (len == 10) {
  ------------------
  |  Branch (6348:9): [True: 194, False: 0]
  ------------------
 6349|    194|      return 10892;
 6350|    194|    }
 6351|      0|    break;
 6352|       |    /* gtrless */
 6353|    194|  case 0xd69c0bda9eb91ff5ULL:
  ------------------
  |  Branch (6353:3): [True: 194, False: 516k]
  ------------------
 6354|    194|    if (len == 7) {
  ------------------
  |  Branch (6354:9): [True: 194, False: 0]
  ------------------
 6355|    194|      return 8823;
 6356|    194|    }
 6357|      0|    break;
 6358|       |    /* gtrsim */
 6359|    194|  case 0x7c66486cca30a193ULL:
  ------------------
  |  Branch (6359:3): [True: 194, False: 516k]
  ------------------
 6360|    194|    if (len == 6) {
  ------------------
  |  Branch (6360:9): [True: 194, False: 0]
  ------------------
 6361|    194|      return 8819;
 6362|    194|    }
 6363|      0|    break;
 6364|       |    /* hArr */
 6365|    195|  case 0x183182cbd65f3ca6ULL:
  ------------------
  |  Branch (6365:3): [True: 195, False: 516k]
  ------------------
 6366|    195|    if (len == 4) {
  ------------------
  |  Branch (6366:9): [True: 195, False: 0]
  ------------------
 6367|    195|      return 8660;
 6368|    195|    }
 6369|      0|    break;
 6370|       |    /* hairsp */
 6371|    194|  case 0x13d723b703d4860aULL:
  ------------------
  |  Branch (6371:3): [True: 194, False: 516k]
  ------------------
 6372|    194|    if (len == 6) {
  ------------------
  |  Branch (6372:9): [True: 194, False: 0]
  ------------------
 6373|    194|      return 8202;
 6374|    194|    }
 6375|      0|    break;
 6376|       |    /* half */
 6377|    194|  case 0x2e33a6cc74123124ULL:
  ------------------
  |  Branch (6377:3): [True: 194, False: 516k]
  ------------------
 6378|    194|    if (len == 4) {
  ------------------
  |  Branch (6378:9): [True: 194, False: 0]
  ------------------
 6379|    194|      return 189;
 6380|    194|    }
 6381|      0|    break;
 6382|       |    /* hamilt */
 6383|    194|  case 0x6984b0d600846eecULL:
  ------------------
  |  Branch (6383:3): [True: 194, False: 516k]
  ------------------
 6384|    194|    if (len == 6) {
  ------------------
  |  Branch (6384:9): [True: 194, False: 0]
  ------------------
 6385|    194|      return 8459;
 6386|    194|    }
 6387|      0|    break;
 6388|       |    /* hardcy */
 6389|    194|  case 0xd0bda8e10c1d9a5cULL:
  ------------------
  |  Branch (6389:3): [True: 194, False: 516k]
  ------------------
 6390|    194|    if (len == 6) {
  ------------------
  |  Branch (6390:9): [True: 194, False: 0]
  ------------------
 6391|    194|      return 1098;
 6392|    194|    }
 6393|      0|    break;
 6394|       |    /* harr */
 6395|    195|  case 0x2e3aa2cc74184906ULL:
  ------------------
  |  Branch (6395:3): [True: 195, False: 516k]
  ------------------
 6396|    195|    if (len == 4) {
  ------------------
  |  Branch (6396:9): [True: 195, False: 0]
  ------------------
 6397|    195|      return 8596;
 6398|    195|    }
 6399|      0|    break;
 6400|       |    /* harrcir */
 6401|    194|  case 0x6f175bd1742a2a50ULL:
  ------------------
  |  Branch (6401:3): [True: 194, False: 516k]
  ------------------
 6402|    194|    if (len == 7) {
  ------------------
  |  Branch (6402:9): [True: 194, False: 0]
  ------------------
 6403|    194|      return 10568;
 6404|    194|    }
 6405|      0|    break;
 6406|       |    /* harrw */
 6407|    194|  case 0xa5ec12694544cb03ULL:
  ------------------
  |  Branch (6407:3): [True: 194, False: 516k]
  ------------------
 6408|    194|    if (len == 5) {
  ------------------
  |  Branch (6408:9): [True: 194, False: 0]
  ------------------
 6409|    194|      return 8621;
 6410|    194|    }
 6411|      0|    break;
 6412|       |    /* hbar */
 6413|    194|  case 0x271089cc707578c8ULL:
  ------------------
  |  Branch (6413:3): [True: 194, False: 516k]
  ------------------
 6414|    194|    if (len == 4) {
  ------------------
  |  Branch (6414:9): [True: 194, False: 0]
  ------------------
 6415|    194|      return 8463;
 6416|    194|    }
 6417|      0|    break;
 6418|       |    /* hcirc */
 6419|    194|  case 0xb06dfd583220e84cULL:
  ------------------
  |  Branch (6419:3): [True: 194, False: 516k]
  ------------------
 6420|    194|    if (len == 5) {
  ------------------
  |  Branch (6420:9): [True: 194, False: 0]
  ------------------
 6421|    194|      return 293;
 6422|    194|    }
 6423|      0|    break;
 6424|       |    /* hearts */
 6425|    194|  case 0xe3d0d3b4d0813150ULL:
  ------------------
  |  Branch (6425:3): [True: 194, False: 516k]
  ------------------
 6426|    194|    if (len == 6) {
  ------------------
  |  Branch (6426:9): [True: 194, False: 0]
  ------------------
 6427|    194|      return 9829;
 6428|    194|    }
 6429|      0|    break;
 6430|       |    /* heartsuit */
 6431|    194|  case 0xe5735eff60fb13c2ULL:
  ------------------
  |  Branch (6431:3): [True: 194, False: 516k]
  ------------------
 6432|    194|    if (len == 9) {
  ------------------
  |  Branch (6432:9): [True: 194, False: 0]
  ------------------
 6433|    194|      return 9829;
 6434|    194|    }
 6435|      0|    break;
 6436|       |    /* hellip */
 6437|    194|  case 0xa9d0fecca230a7d7ULL:
  ------------------
  |  Branch (6437:3): [True: 194, False: 516k]
  ------------------
 6438|    194|    if (len == 6) {
  ------------------
  |  Branch (6438:9): [True: 194, False: 0]
  ------------------
 6439|    194|      return 8230;
 6440|    194|    }
 6441|      0|    break;
 6442|       |    /* hercon */
 6443|    194|  case 0x40b7c51448377048ULL:
  ------------------
  |  Branch (6443:3): [True: 194, False: 516k]
  ------------------
 6444|    194|    if (len == 6) {
  ------------------
  |  Branch (6444:9): [True: 194, False: 0]
  ------------------
 6445|    194|      return 8889;
 6446|    194|    }
 6447|      0|    break;
 6448|       |    /* hfr */
 6449|    194|  case 0x334714192fe123c3ULL:
  ------------------
  |  Branch (6449:3): [True: 194, False: 516k]
  ------------------
 6450|    194|    if (len == 3) {
  ------------------
  |  Branch (6450:9): [True: 194, False: 0]
  ------------------
 6451|    194|      return 120101;
 6452|    194|    }
 6453|      0|    break;
 6454|       |    /* hksearow */
 6455|    194|  case 0xb181ceba321c2d59ULL:
  ------------------
  |  Branch (6455:3): [True: 194, False: 516k]
  ------------------
 6456|    194|    if (len == 8) {
  ------------------
  |  Branch (6456:9): [True: 194, False: 0]
  ------------------
 6457|    194|      return 10533;
 6458|    194|    }
 6459|      0|    break;
 6460|       |    /* hkswarow */
 6461|    194|  case 0xe1eb57b84e8cf00bULL:
  ------------------
  |  Branch (6461:3): [True: 194, False: 516k]
  ------------------
 6462|    194|    if (len == 8) {
  ------------------
  |  Branch (6462:9): [True: 194, False: 0]
  ------------------
 6463|    194|      return 10534;
 6464|    194|    }
 6465|      0|    break;
 6466|       |    /* hoarr */
 6467|    194|  case 0xa003f67aec38a76bULL:
  ------------------
  |  Branch (6467:3): [True: 194, False: 516k]
  ------------------
 6468|    194|    if (len == 5) {
  ------------------
  |  Branch (6468:9): [True: 194, False: 0]
  ------------------
 6469|    194|      return 8703;
 6470|    194|    }
 6471|      0|    break;
 6472|       |    /* homtht */
 6473|    194|  case 0x4c62e7bc28be06fdULL:
  ------------------
  |  Branch (6473:3): [True: 194, False: 516k]
  ------------------
 6474|    194|    if (len == 6) {
  ------------------
  |  Branch (6474:9): [True: 194, False: 0]
  ------------------
 6475|    194|      return 8763;
 6476|    194|    }
 6477|      0|    break;
 6478|       |    /* hookleftarrow */
 6479|      0|  case 0x1ca4d2b41ededf24ULL:
  ------------------
  |  Branch (6479:3): [True: 0, False: 516k]
  ------------------
 6480|      0|    if (len == 13) {
  ------------------
  |  Branch (6480:9): [True: 0, False: 0]
  ------------------
 6481|      0|      return 8617;
 6482|      0|    }
 6483|      0|    break;
 6484|       |    /* hookrightarrow */
 6485|      0|  case 0xbd40e943a0033a71ULL:
  ------------------
  |  Branch (6485:3): [True: 0, False: 516k]
  ------------------
 6486|      0|    if (len == 14) {
  ------------------
  |  Branch (6486:9): [True: 0, False: 0]
  ------------------
 6487|      0|      return 8618;
 6488|      0|    }
 6489|      0|    break;
 6490|       |    /* hopf */
 6491|    194|  case 0x406df8cc7ea6f8eaULL:
  ------------------
  |  Branch (6491:3): [True: 194, False: 516k]
  ------------------
 6492|    194|    if (len == 4) {
  ------------------
  |  Branch (6492:9): [True: 194, False: 0]
  ------------------
 6493|    194|      return 120153;
 6494|    194|    }
 6495|      0|    break;
 6496|       |    /* horbar */
 6497|    194|  case 0xb3085a691f62d117ULL:
  ------------------
  |  Branch (6497:3): [True: 194, False: 516k]
  ------------------
 6498|    194|    if (len == 6) {
  ------------------
  |  Branch (6498:9): [True: 194, False: 0]
  ------------------
 6499|    194|      return 8213;
 6500|    194|    }
 6501|      0|    break;
 6502|       |    /* hscr */
 6503|    194|  case 0x9303dacc1c60fbbdULL:
  ------------------
  |  Branch (6503:3): [True: 194, False: 516k]
  ------------------
 6504|    194|    if (len == 4) {
  ------------------
  |  Branch (6504:9): [True: 194, False: 0]
  ------------------
 6505|    194|      return 119997;
 6506|    194|    }
 6507|      0|    break;
 6508|       |    /* hslash */
 6509|    194|  case 0x3ca2c51e858bb458ULL:
  ------------------
  |  Branch (6509:3): [True: 194, False: 516k]
  ------------------
 6510|    194|    if (len == 6) {
  ------------------
  |  Branch (6510:9): [True: 194, False: 0]
  ------------------
 6511|    194|      return 8463;
 6512|    194|    }
 6513|      0|    break;
 6514|       |    /* hstrok */
 6515|    194|  case 0x228331e9609cc6e8ULL:
  ------------------
  |  Branch (6515:3): [True: 194, False: 516k]
  ------------------
 6516|    194|    if (len == 6) {
  ------------------
  |  Branch (6516:9): [True: 194, False: 0]
  ------------------
 6517|    194|      return 295;
 6518|    194|    }
 6519|      0|    break;
 6520|       |    /* hybull */
 6521|    194|  case 0x9111c71a8bf68117ULL:
  ------------------
  |  Branch (6521:3): [True: 194, False: 516k]
  ------------------
 6522|    194|    if (len == 6) {
  ------------------
  |  Branch (6522:9): [True: 194, False: 0]
  ------------------
 6523|    194|      return 8259;
 6524|    194|    }
 6525|      0|    break;
 6526|       |    /* hyphen */
 6527|    194|  case 0xc20630af71eaeec1ULL:
  ------------------
  |  Branch (6527:3): [True: 194, False: 516k]
  ------------------
 6528|    194|    if (len == 6) {
  ------------------
  |  Branch (6528:9): [True: 194, False: 0]
  ------------------
 6529|    194|      return 8208;
 6530|    194|    }
 6531|      0|    break;
 6532|       |    /* iacute */
 6533|    197|  case 0x7c1958275b811f20ULL:
  ------------------
  |  Branch (6533:3): [True: 197, False: 516k]
  ------------------
 6534|    197|    if (len == 6) {
  ------------------
  |  Branch (6534:9): [True: 197, False: 0]
  ------------------
 6535|    197|      return 237;
 6536|    197|    }
 6537|      0|    break;
 6538|       |    /* ic */
 6539|    195|  case 0x08b73507b55c46a5ULL:
  ------------------
  |  Branch (6539:3): [True: 195, False: 516k]
  ------------------
 6540|    195|    if (len == 2) {
  ------------------
  |  Branch (6540:9): [True: 195, False: 0]
  ------------------
 6541|    195|      return 8291;
 6542|    195|    }
 6543|      0|    break;
 6544|       |    /* icirc */
 6545|    194|  case 0x05223876c58644f3ULL:
  ------------------
  |  Branch (6545:3): [True: 194, False: 516k]
  ------------------
 6546|    194|    if (len == 5) {
  ------------------
  |  Branch (6546:9): [True: 194, False: 0]
  ------------------
 6547|    194|      return 238;
 6548|    194|    }
 6549|      0|    break;
 6550|       |    /* icy */
 6551|    194|  case 0x2b95f8192bcc67d4ULL:
  ------------------
  |  Branch (6551:3): [True: 194, False: 516k]
  ------------------
 6552|    194|    if (len == 3) {
  ------------------
  |  Branch (6552:9): [True: 194, False: 0]
  ------------------
 6553|    194|      return 1080;
 6554|    194|    }
 6555|      0|    break;
 6556|       |    /* iecy */
 6557|    194|  case 0xa63841c54d27f90bULL:
  ------------------
  |  Branch (6557:3): [True: 194, False: 516k]
  ------------------
 6558|    194|    if (len == 4) {
  ------------------
  |  Branch (6558:9): [True: 194, False: 0]
  ------------------
 6559|    194|      return 1077;
 6560|    194|    }
 6561|      0|    break;
 6562|       |    /* iexcl */
 6563|    194|  case 0x6e5c7a42027b1e0eULL:
  ------------------
  |  Branch (6563:3): [True: 194, False: 516k]
  ------------------
 6564|    194|    if (len == 5) {
  ------------------
  |  Branch (6564:9): [True: 194, False: 0]
  ------------------
 6565|    194|      return 161;
 6566|    194|    }
 6567|      0|    break;
 6568|       |    /* iff */
 6569|    194|  case 0x2b84dd192bbdc6c0ULL:
  ------------------
  |  Branch (6569:3): [True: 194, False: 516k]
  ------------------
 6570|    194|    if (len == 3) {
  ------------------
  |  Branch (6570:9): [True: 194, False: 0]
  ------------------
 6571|    194|      return 8660;
 6572|    194|    }
 6573|      0|    break;
 6574|       |    /* ifr */
 6575|    198|  case 0x2b84f1192bbde8bcULL:
  ------------------
  |  Branch (6575:3): [True: 198, False: 516k]
  ------------------
 6576|    198|    if (len == 3) {
  ------------------
  |  Branch (6576:9): [True: 198, False: 0]
  ------------------
 6577|    198|      return 120102;
 6578|    198|    }
 6579|      0|    break;
 6580|       |    /* igrave */
 6581|    194|  case 0x73472763ea078c35ULL:
  ------------------
  |  Branch (6581:3): [True: 194, False: 516k]
  ------------------
 6582|    194|    if (len == 6) {
  ------------------
  |  Branch (6582:9): [True: 194, False: 0]
  ------------------
 6583|    194|      return 236;
 6584|    194|    }
 6585|      0|    break;
 6586|       |    /* ii */
 6587|    194|  case 0x08b73b07b55c50d7ULL:
  ------------------
  |  Branch (6587:3): [True: 194, False: 516k]
  ------------------
 6588|    194|    if (len == 2) {
  ------------------
  |  Branch (6588:9): [True: 194, False: 0]
  ------------------
 6589|    194|      return 8520;
 6590|    194|    }
 6591|      0|    break;
 6592|       |    /* iiiint */
 6593|    194|  case 0x89ea38b950ea6123ULL:
  ------------------
  |  Branch (6593:3): [True: 194, False: 516k]
  ------------------
 6594|    194|    if (len == 6) {
  ------------------
  |  Branch (6594:9): [True: 194, False: 0]
  ------------------
 6595|    194|      return 10764;
 6596|    194|    }
 6597|      0|    break;
 6598|       |    /* iiint */
 6599|    194|  case 0x99781da78fca6278ULL:
  ------------------
  |  Branch (6599:3): [True: 194, False: 516k]
  ------------------
 6600|    194|    if (len == 5) {
  ------------------
  |  Branch (6600:9): [True: 194, False: 0]
  ------------------
 6601|    194|      return 8749;
 6602|    194|    }
 6603|      0|    break;
 6604|       |    /* iinfin */
 6605|    194|  case 0xb818f38fce1ff0ecULL:
  ------------------
  |  Branch (6605:3): [True: 194, False: 516k]
  ------------------
 6606|    194|    if (len == 6) {
  ------------------
  |  Branch (6606:9): [True: 194, False: 0]
  ------------------
 6607|    194|      return 10716;
 6608|    194|    }
 6609|      0|    break;
 6610|       |    /* iiota */
 6611|    194|  case 0x66b12ca7735e6a8fULL:
  ------------------
  |  Branch (6611:3): [True: 194, False: 516k]
  ------------------
 6612|    194|    if (len == 5) {
  ------------------
  |  Branch (6612:9): [True: 194, False: 0]
  ------------------
 6613|    194|      return 8489;
 6614|    194|    }
 6615|      0|    break;
 6616|       |    /* ijlig */
 6617|    194|  case 0x2f1b13b22432fd12ULL:
  ------------------
  |  Branch (6617:3): [True: 194, False: 516k]
  ------------------
 6618|    194|    if (len == 5) {
  ------------------
  |  Branch (6618:9): [True: 194, False: 0]
  ------------------
 6619|    194|      return 307;
 6620|    194|    }
 6621|      0|    break;
 6622|       |    /* imacr */
 6623|    194|  case 0x2ac2f5888532a1afULL:
  ------------------
  |  Branch (6623:3): [True: 194, False: 516k]
  ------------------
 6624|    194|    if (len == 5) {
  ------------------
  |  Branch (6624:9): [True: 194, False: 0]
  ------------------
 6625|    194|      return 299;
 6626|    194|    }
 6627|      0|    break;
 6628|       |    /* image */
 6629|    194|  case 0x2ab612888528489aULL:
  ------------------
  |  Branch (6629:3): [True: 194, False: 516k]
  ------------------
 6630|    194|    if (len == 5) {
  ------------------
  |  Branch (6630:9): [True: 194, False: 0]
  ------------------
 6631|    194|      return 8465;
 6632|    194|    }
 6633|      0|    break;
 6634|       |    /* imagline */
 6635|    194|  case 0x1371a591387c7ad1ULL:
  ------------------
  |  Branch (6635:3): [True: 194, False: 516k]
  ------------------
 6636|    194|    if (len == 8) {
  ------------------
  |  Branch (6636:9): [True: 194, False: 0]
  ------------------
 6637|    194|      return 8464;
 6638|    194|    }
 6639|      0|    break;
 6640|       |    /* imagpart */
 6641|    194|  case 0x2576142bcdeff2b6ULL:
  ------------------
  |  Branch (6641:3): [True: 194, False: 516k]
  ------------------
 6642|    194|    if (len == 8) {
  ------------------
  |  Branch (6642:9): [True: 194, False: 0]
  ------------------
 6643|    194|      return 8465;
 6644|    194|    }
 6645|      0|    break;
 6646|       |    /* imath */
 6647|    194|  case 0x2a830d8884fce682ULL:
  ------------------
  |  Branch (6647:3): [True: 194, False: 516k]
  ------------------
 6648|    194|    if (len == 5) {
  ------------------
  |  Branch (6648:9): [True: 194, False: 0]
  ------------------
 6649|    194|      return 305;
 6650|    194|    }
 6651|      0|    break;
 6652|       |    /* imof */
 6653|    194|  case 0xee0286c57685ef7eULL:
  ------------------
  |  Branch (6653:3): [True: 194, False: 516k]
  ------------------
 6654|    194|    if (len == 4) {
  ------------------
  |  Branch (6654:9): [True: 194, False: 0]
  ------------------
 6655|    194|      return 8887;
 6656|    194|    }
 6657|      0|    break;
 6658|       |    /* imped */
 6659|    194|  case 0xbe11a688d8a5f918ULL:
  ------------------
  |  Branch (6659:3): [True: 194, False: 516k]
  ------------------
 6660|    194|    if (len == 5) {
  ------------------
  |  Branch (6660:9): [True: 194, False: 0]
  ------------------
 6661|    194|      return 437;
 6662|    194|    }
 6663|      0|    break;
 6664|       |    /* in */
 6665|    198|  case 0x08b73807b55c4bbeULL:
  ------------------
  |  Branch (6665:3): [True: 198, False: 516k]
  ------------------
 6666|    198|    if (len == 2) {
  ------------------
  |  Branch (6666:9): [True: 198, False: 0]
  ------------------
 6667|    198|      return 8712;
 6668|    198|    }
 6669|      0|    break;
 6670|       |    /* incare */
 6671|    194|  case 0xea592c0f4544ccffULL:
  ------------------
  |  Branch (6671:3): [True: 194, False: 516k]
  ------------------
 6672|    194|    if (len == 6) {
  ------------------
  |  Branch (6672:9): [True: 194, False: 0]
  ------------------
 6673|    194|      return 8453;
 6674|    194|    }
 6675|      0|    break;
 6676|       |    /* infin */
 6677|    194|  case 0x74fb528f88cfcd27ULL:
  ------------------
  |  Branch (6677:3): [True: 194, False: 516k]
  ------------------
 6678|    194|    if (len == 5) {
  ------------------
  |  Branch (6678:9): [True: 194, False: 0]
  ------------------
 6679|    194|      return 8734;
 6680|    194|    }
 6681|      0|    break;
 6682|       |    /* infintie */
 6683|    194|  case 0x3a0bf2562366f23fULL:
  ------------------
  |  Branch (6683:3): [True: 194, False: 516k]
  ------------------
 6684|    194|    if (len == 8) {
  ------------------
  |  Branch (6684:9): [True: 194, False: 0]
  ------------------
 6685|    194|      return 10717;
 6686|    194|    }
 6687|      0|    break;
 6688|       |    /* inodot */
 6689|    194|  case 0x6cb1d3aa1a4426beULL:
  ------------------
  |  Branch (6689:3): [True: 194, False: 516k]
  ------------------
 6690|    194|    if (len == 6) {
  ------------------
  |  Branch (6690:9): [True: 194, False: 0]
  ------------------
 6691|    194|      return 305;
 6692|    194|    }
 6693|      0|    break;
 6694|       |    /* int */
 6695|    198|  case 0x2b9fff192bd4c83eULL:
  ------------------
  |  Branch (6695:3): [True: 198, False: 516k]
  ------------------
 6696|    198|    if (len == 3) {
  ------------------
  |  Branch (6696:9): [True: 198, False: 0]
  ------------------
 6697|    198|      return 8747;
 6698|    198|    }
 6699|      0|    break;
 6700|       |    /* intcal */
 6701|    194|  case 0xe24cb46fa6eb465aULL:
  ------------------
  |  Branch (6701:3): [True: 194, False: 516k]
  ------------------
 6702|    194|    if (len == 6) {
  ------------------
  |  Branch (6702:9): [True: 194, False: 0]
  ------------------
 6703|    194|      return 8890;
 6704|    194|    }
 6705|      0|    break;
 6706|       |    /* integers */
 6707|    194|  case 0x7e2a5081098e6682ULL:
  ------------------
  |  Branch (6707:3): [True: 194, False: 516k]
  ------------------
 6708|    194|    if (len == 8) {
  ------------------
  |  Branch (6708:9): [True: 194, False: 0]
  ------------------
 6709|    194|      return 8484;
 6710|    194|    }
 6711|      0|    break;
 6712|       |    /* intercal */
 6713|    194|  case 0xfa8dbdf104d24413ULL:
  ------------------
  |  Branch (6713:3): [True: 194, False: 516k]
  ------------------
 6714|    194|    if (len == 8) {
  ------------------
  |  Branch (6714:9): [True: 194, False: 0]
  ------------------
 6715|    194|      return 8890;
 6716|    194|    }
 6717|      0|    break;
 6718|       |    /* intlarhk */
 6719|    194|  case 0xe698b8cb5c5abe34ULL:
  ------------------
  |  Branch (6719:3): [True: 194, False: 516k]
  ------------------
 6720|    194|    if (len == 8) {
  ------------------
  |  Branch (6720:9): [True: 194, False: 0]
  ------------------
 6721|    194|      return 10775;
 6722|    194|    }
 6723|      0|    break;
 6724|       |    /* intprod */
 6725|    194|  case 0x94d5023bdd5b6d33ULL:
  ------------------
  |  Branch (6725:3): [True: 194, False: 516k]
  ------------------
 6726|    194|    if (len == 7) {
  ------------------
  |  Branch (6726:9): [True: 194, False: 0]
  ------------------
 6727|    194|      return 10812;
 6728|    194|    }
 6729|      0|    break;
 6730|       |    /* iocy */
 6731|    194|  case 0xfce4e7c57e43e51dULL:
  ------------------
  |  Branch (6731:3): [True: 194, False: 516k]
  ------------------
 6732|    194|    if (len == 4) {
  ------------------
  |  Branch (6732:9): [True: 194, False: 0]
  ------------------
 6733|    194|      return 1105;
 6734|    194|    }
 6735|      0|    break;
 6736|       |    /* iogon */
 6737|    194|  case 0x1d31eb959f088b9bULL:
  ------------------
  |  Branch (6737:3): [True: 194, False: 516k]
  ------------------
 6738|    194|    if (len == 5) {
  ------------------
  |  Branch (6738:9): [True: 194, False: 0]
  ------------------
 6739|    194|      return 303;
 6740|    194|    }
 6741|      0|    break;
 6742|       |    /* iopf */
 6743|    194|  case 0xfcaaeac57e1271efULL:
  ------------------
  |  Branch (6743:3): [True: 194, False: 516k]
  ------------------
 6744|    194|    if (len == 4) {
  ------------------
  |  Branch (6744:9): [True: 194, False: 0]
  ------------------
 6745|    194|      return 120154;
 6746|    194|    }
 6747|      0|    break;
 6748|       |    /* iota */
 6749|    194|  case 0xfcb7ffc57e1d1ffaULL:
  ------------------
  |  Branch (6749:3): [True: 194, False: 516k]
  ------------------
 6750|    194|    if (len == 4) {
  ------------------
  |  Branch (6750:9): [True: 194, False: 0]
  ------------------
 6751|    194|      return 953;
 6752|    194|    }
 6753|      0|    break;
 6754|       |    /* iprod */
 6755|    195|  case 0x6f8170e2bfafbd81ULL:
  ------------------
  |  Branch (6755:3): [True: 195, False: 516k]
  ------------------
 6756|    195|    if (len == 5) {
  ------------------
  |  Branch (6756:9): [True: 195, False: 0]
  ------------------
 6757|    195|      return 10812;
 6758|    195|    }
 6759|      0|    break;
 6760|       |    /* iquest */
 6761|    194|  case 0xbbc5fe1a52d53096ULL:
  ------------------
  |  Branch (6761:3): [True: 194, False: 516k]
  ------------------
 6762|    194|    if (len == 6) {
  ------------------
  |  Branch (6762:9): [True: 194, False: 0]
  ------------------
 6763|    194|      return 191;
 6764|    194|    }
 6765|      0|    break;
 6766|       |    /* iscr */
 6767|    194|  case 0x65afc0c5b9dbe990ULL:
  ------------------
  |  Branch (6767:3): [True: 194, False: 516k]
  ------------------
 6768|    194|    if (len == 4) {
  ------------------
  |  Branch (6768:9): [True: 194, False: 0]
  ------------------
 6769|    194|      return 119998;
 6770|    194|    }
 6771|      0|    break;
 6772|       |    /* isin */
 6773|    194|  case 0x65c3dcc5b9ecc22eULL:
  ------------------
  |  Branch (6773:3): [True: 194, False: 516k]
  ------------------
 6774|    194|    if (len == 4) {
  ------------------
  |  Branch (6774:9): [True: 194, False: 0]
  ------------------
 6775|    194|      return 8712;
 6776|    194|    }
 6777|      0|    break;
 6778|       |    /* isinE */
 6779|    194|  case 0xd8928efaed4e5bd1ULL:
  ------------------
  |  Branch (6779:3): [True: 194, False: 516k]
  ------------------
 6780|    194|    if (len == 5) {
  ------------------
  |  Branch (6780:9): [True: 194, False: 0]
  ------------------
 6781|    194|      return 8953;
 6782|    194|    }
 6783|      0|    break;
 6784|       |    /* isindot */
 6785|    195|  case 0xf0a7723892e867d5ULL:
  ------------------
  |  Branch (6785:3): [True: 195, False: 516k]
  ------------------
 6786|    195|    if (len == 7) {
  ------------------
  |  Branch (6786:9): [True: 195, False: 0]
  ------------------
 6787|    195|      return 8949;
 6788|    195|    }
 6789|      0|    break;
 6790|       |    /* isins */
 6791|    194|  case 0xd89280faed4e4407ULL:
  ------------------
  |  Branch (6791:3): [True: 194, False: 516k]
  ------------------
 6792|    194|    if (len == 5) {
  ------------------
  |  Branch (6792:9): [True: 194, False: 0]
  ------------------
 6793|    194|      return 8948;
 6794|    194|    }
 6795|      0|    break;
 6796|       |    /* isinsv */
 6797|    194|  case 0x4f359b613bfe4c03ULL:
  ------------------
  |  Branch (6797:3): [True: 194, False: 516k]
  ------------------
 6798|    194|    if (len == 6) {
  ------------------
  |  Branch (6798:9): [True: 194, False: 0]
  ------------------
 6799|    194|      return 8947;
 6800|    194|    }
 6801|      0|    break;
 6802|       |    /* isinv */
 6803|    194|  case 0xd8927bfaed4e3b88ULL:
  ------------------
  |  Branch (6803:3): [True: 194, False: 516k]
  ------------------
 6804|    194|    if (len == 5) {
  ------------------
  |  Branch (6804:9): [True: 194, False: 0]
  ------------------
 6805|    194|      return 8712;
 6806|    194|    }
 6807|      0|    break;
 6808|       |    /* it */
 6809|    198|  case 0x08b73e07b55c55f0ULL:
  ------------------
  |  Branch (6809:3): [True: 198, False: 516k]
  ------------------
 6810|    198|    if (len == 2) {
  ------------------
  |  Branch (6810:9): [True: 198, False: 0]
  ------------------
 6811|    198|      return 8290;
 6812|    198|    }
 6813|      0|    break;
 6814|       |    /* itilde */
 6815|    194|  case 0xe1b1d432bd40a7d2ULL:
  ------------------
  |  Branch (6815:3): [True: 194, False: 516k]
  ------------------
 6816|    194|    if (len == 6) {
  ------------------
  |  Branch (6816:9): [True: 194, False: 0]
  ------------------
 6817|    194|      return 297;
 6818|    194|    }
 6819|      0|    break;
 6820|       |    /* iukcy */
 6821|    194|  case 0x328d58ca18eb47a8ULL:
  ------------------
  |  Branch (6821:3): [True: 194, False: 516k]
  ------------------
 6822|    194|    if (len == 5) {
  ------------------
  |  Branch (6822:9): [True: 194, False: 0]
  ------------------
 6823|    194|      return 1110;
 6824|    194|    }
 6825|      0|    break;
 6826|       |    /* iuml */
 6827|    194|  case 0x32b2c8c59d425652ULL:
  ------------------
  |  Branch (6827:3): [True: 194, False: 516k]
  ------------------
 6828|    194|    if (len == 4) {
  ------------------
  |  Branch (6828:9): [True: 194, False: 0]
  ------------------
 6829|    194|      return 239;
 6830|    194|    }
 6831|      0|    break;
 6832|       |    /* jcirc */
 6833|    194|  case 0x72ce91e54d125806ULL:
  ------------------
  |  Branch (6833:3): [True: 194, False: 516k]
  ------------------
 6834|    194|    if (len == 5) {
  ------------------
  |  Branch (6834:9): [True: 194, False: 0]
  ------------------
 6835|    194|      return 309;
 6836|    194|    }
 6837|      0|    break;
 6838|       |    /* jcy */
 6839|    197|  case 0x458b6f193a7e4f59ULL:
  ------------------
  |  Branch (6839:3): [True: 197, False: 516k]
  ------------------
 6840|    197|    if (len == 3) {
  ------------------
  |  Branch (6840:9): [True: 197, False: 0]
  ------------------
 6841|    197|      return 1081;
 6842|    197|    }
 6843|      0|    break;
 6844|       |    /* jfr */
 6845|    194|  case 0x458166193a75eb89ULL:
  ------------------
  |  Branch (6845:3): [True: 194, False: 516k]
  ------------------
 6846|    194|    if (len == 3) {
  ------------------
  |  Branch (6846:9): [True: 194, False: 0]
  ------------------
 6847|    194|      return 120103;
 6848|    194|    }
 6849|      0|    break;
 6850|       |    /* jmath */
 6851|    194|  case 0xa121d46e473e1b67ULL:
  ------------------
  |  Branch (6851:3): [True: 194, False: 516k]
  ------------------
 6852|    194|    if (len == 5) {
  ------------------
  |  Branch (6852:9): [True: 194, False: 0]
  ------------------
 6853|    194|      return 567;
 6854|    194|    }
 6855|      0|    break;
 6856|       |    /* jopf */
 6857|    198|  case 0x418a08de291cf69cULL:
  ------------------
  |  Branch (6857:3): [True: 198, False: 516k]
  ------------------
 6858|    198|    if (len == 4) {
  ------------------
  |  Branch (6858:9): [True: 198, False: 0]
  ------------------
 6859|    198|      return 120155;
 6860|    198|    }
 6861|      0|    break;
 6862|       |    /* jscr */
 6863|    194|  case 0x20c962de1718adfbULL:
  ------------------
  |  Branch (6863:3): [True: 194, False: 516k]
  ------------------
 6864|    194|    if (len == 4) {
  ------------------
  |  Branch (6864:9): [True: 194, False: 0]
  ------------------
 6865|    194|      return 119999;
 6866|    194|    }
 6867|      0|    break;
 6868|       |    /* jsercy */
 6869|    194|  case 0xc5a7b7731c298db9ULL:
  ------------------
  |  Branch (6869:3): [True: 194, False: 516k]
  ------------------
 6870|    194|    if (len == 6) {
  ------------------
  |  Branch (6870:9): [True: 194, False: 0]
  ------------------
 6871|    194|      return 1112;
 6872|    194|    }
 6873|      0|    break;
 6874|       |    /* jukcy */
 6875|    194|  case 0x9924612cb35a00a5ULL:
  ------------------
  |  Branch (6875:3): [True: 194, False: 516k]
  ------------------
 6876|    194|    if (len == 5) {
  ------------------
  |  Branch (6876:9): [True: 194, False: 0]
  ------------------
 6877|    194|      return 1108;
 6878|    194|    }
 6879|      0|    break;
 6880|       |    /* kappa */
 6881|    194|  case 0xec02cfcef6a7d788ULL:
  ------------------
  |  Branch (6881:3): [True: 194, False: 516k]
  ------------------
 6882|    194|    if (len == 5) {
  ------------------
  |  Branch (6882:9): [True: 194, False: 0]
  ------------------
 6883|    194|      return 954;
 6884|    194|    }
 6885|      0|    break;
 6886|       |    /* kappav */
 6887|    194|  case 0xb09f1aad1f34049aULL:
  ------------------
  |  Branch (6887:3): [True: 194, False: 516k]
  ------------------
 6888|    194|    if (len == 6) {
  ------------------
  |  Branch (6888:9): [True: 194, False: 0]
  ------------------
 6889|    194|      return 1008;
 6890|    194|    }
 6891|      0|    break;
 6892|       |    /* kcedil */
 6893|    194|  case 0xd09c34deeb31418fULL:
  ------------------
  |  Branch (6893:3): [True: 194, False: 516k]
  ------------------
 6894|    194|    if (len == 6) {
  ------------------
  |  Branch (6894:9): [True: 194, False: 0]
  ------------------
 6895|    194|      return 311;
 6896|    194|    }
 6897|      0|    break;
 6898|       |    /* kcy */
 6899|    194|  case 0x3db446193648ae16ULL:
  ------------------
  |  Branch (6899:3): [True: 194, False: 516k]
  ------------------
 6900|    194|    if (len == 3) {
  ------------------
  |  Branch (6900:9): [True: 194, False: 0]
  ------------------
 6901|    194|      return 1082;
 6902|    194|    }
 6903|      0|    break;
 6904|       |    /* kfr */
 6905|    194|  case 0x3dbf43193652b082ULL:
  ------------------
  |  Branch (6905:3): [True: 194, False: 516k]
  ------------------
 6906|    194|    if (len == 3) {
  ------------------
  |  Branch (6906:9): [True: 194, False: 0]
  ------------------
 6907|    194|      return 120104;
 6908|    194|    }
 6909|      0|    break;
 6910|       |    /* kgreen */
 6911|    194|  case 0xbbe20005f556f5edULL:
  ------------------
  |  Branch (6911:3): [True: 194, False: 516k]
  ------------------
 6912|    194|    if (len == 6) {
  ------------------
  |  Branch (6912:9): [True: 194, False: 0]
  ------------------
 6913|    194|      return 312;
 6914|    194|    }
 6915|      0|    break;
 6916|       |    /* khcy */
 6917|    194|  case 0xe7d06cd71d3b96d2ULL:
  ------------------
  |  Branch (6917:3): [True: 194, False: 516k]
  ------------------
 6918|    194|    if (len == 4) {
  ------------------
  |  Branch (6918:9): [True: 194, False: 0]
  ------------------
 6919|    194|      return 1093;
 6920|    194|    }
 6921|      0|    break;
 6922|       |    /* kjcy */
 6923|    194|  case 0xd5b10ed712bd8260ULL:
  ------------------
  |  Branch (6923:3): [True: 194, False: 516k]
  ------------------
 6924|    194|    if (len == 4) {
  ------------------
  |  Branch (6924:9): [True: 194, False: 0]
  ------------------
 6925|    194|      return 1116;
 6926|    194|    }
 6927|      0|    break;
 6928|       |    /* kopf */
 6929|    194|  case 0x0199fad72bc86a81ULL:
  ------------------
  |  Branch (6929:3): [True: 194, False: 516k]
  ------------------
 6930|    194|    if (len == 4) {
  ------------------
  |  Branch (6930:9): [True: 194, False: 0]
  ------------------
 6931|    194|      return 120156;
 6932|    194|    }
 6933|      0|    break;
 6934|       |    /* kscr */
 6935|    194|  case 0xaf0318d78e0cb4aeULL:
  ------------------
  |  Branch (6935:3): [True: 194, False: 516k]
  ------------------
 6936|    194|    if (len == 4) {
  ------------------
  |  Branch (6936:9): [True: 194, False: 0]
  ------------------
 6937|    194|      return 120000;
 6938|    194|    }
 6939|      0|    break;
 6940|       |    /* lAarr */
 6941|    194|  case 0x28d490e09c97396dULL:
  ------------------
  |  Branch (6941:3): [True: 194, False: 516k]
  ------------------
 6942|    194|    if (len == 5) {
  ------------------
  |  Branch (6942:9): [True: 194, False: 0]
  ------------------
 6943|    194|      return 8666;
 6944|    194|    }
 6945|      0|    break;
 6946|       |    /* lArr */
 6947|    195|  case 0xee4ab2acf29d05a2ULL:
  ------------------
  |  Branch (6947:3): [True: 195, False: 516k]
  ------------------
 6948|    195|    if (len == 4) {
  ------------------
  |  Branch (6948:9): [True: 195, False: 0]
  ------------------
 6949|    195|      return 8656;
 6950|    195|    }
 6951|      0|    break;
 6952|       |    /* lAtail */
 6953|    194|  case 0x9848e4fd2165b3e0ULL:
  ------------------
  |  Branch (6953:3): [True: 194, False: 516k]
  ------------------
 6954|    194|    if (len == 6) {
  ------------------
  |  Branch (6954:9): [True: 194, False: 0]
  ------------------
 6955|    194|      return 10523;
 6956|    194|    }
 6957|      0|    break;
 6958|       |    /* lBarr */
 6959|    194|  case 0xa3f816d978540402ULL:
  ------------------
  |  Branch (6959:3): [True: 194, False: 516k]
  ------------------
 6960|    194|    if (len == 5) {
  ------------------
  |  Branch (6960:9): [True: 194, False: 0]
  ------------------
 6961|    194|      return 10510;
 6962|    194|    }
 6963|      0|    break;
 6964|       |    /* lE */
 6965|    197|  case 0x08ad2307b553d38aULL:
  ------------------
  |  Branch (6965:3): [True: 197, False: 516k]
  ------------------
 6966|    197|    if (len == 2) {
  ------------------
  |  Branch (6966:9): [True: 197, False: 0]
  ------------------
 6967|    197|      return 8806;
 6968|    197|    }
 6969|      0|    break;
 6970|       |    /* lEg */
 6971|    194|  case 0x120673191d711bb7ULL:
  ------------------
  |  Branch (6971:3): [True: 194, False: 516k]
  ------------------
 6972|    194|    if (len == 3) {
  ------------------
  |  Branch (6972:9): [True: 194, False: 0]
  ------------------
 6973|    194|      return 10891;
 6974|    194|    }
 6975|      0|    break;
 6976|       |    /* lHar */
 6977|    194|  case 0xb1089baccfbd5a6eULL:
  ------------------
  |  Branch (6977:3): [True: 194, False: 516k]
  ------------------
 6978|    194|    if (len == 4) {
  ------------------
  |  Branch (6978:9): [True: 194, False: 0]
  ------------------
 6979|    194|      return 10594;
 6980|    194|    }
 6981|      0|    break;
 6982|       |    /* lacute */
 6983|    194|  case 0x10b405fe7ddb4539ULL:
  ------------------
  |  Branch (6983:3): [True: 194, False: 516k]
  ------------------
 6984|    194|    if (len == 6) {
  ------------------
  |  Branch (6984:9): [True: 194, False: 0]
  ------------------
 6985|    194|      return 314;
 6986|    194|    }
 6987|      0|    break;
 6988|       |    /* laemptyv */
 6989|    194|  case 0x3d7d16b60cddbb7fULL:
  ------------------
  |  Branch (6989:3): [True: 194, False: 516k]
  ------------------
 6990|    194|    if (len == 8) {
  ------------------
  |  Branch (6990:9): [True: 194, False: 0]
  ------------------
 6991|    194|      return 10676;
 6992|    194|    }
 6993|      0|    break;
 6994|       |    /* lagran */
 6995|    194|  case 0x1265ede042c69e30ULL:
  ------------------
  |  Branch (6995:3): [True: 194, False: 516k]
  ------------------
 6996|    194|    if (len == 6) {
  ------------------
  |  Branch (6996:9): [True: 194, False: 0]
  ------------------
 6997|    194|      return 8466;
 6998|    194|    }
 6999|      0|    break;
 7000|       |    /* lambda */
 7001|    194|  case 0x826b4caaf325324aULL:
  ------------------
  |  Branch (7001:3): [True: 194, False: 516k]
  ------------------
 7002|    194|    if (len == 6) {
  ------------------
  |  Branch (7002:9): [True: 194, False: 0]
  ------------------
 7003|    194|      return 955;
 7004|    194|    }
 7005|      0|    break;
 7006|       |    /* lang */
 7007|    194|  case 0x0460dfad9060b275ULL:
  ------------------
  |  Branch (7007:3): [True: 194, False: 516k]
  ------------------
 7008|    194|    if (len == 4) {
  ------------------
  |  Branch (7008:9): [True: 194, False: 0]
  ------------------
 7009|    194|      return 10216;
 7010|    194|    }
 7011|      0|    break;
 7012|       |    /* langd */
 7013|    194|  case 0xd14e24ec544e92e3ULL:
  ------------------
  |  Branch (7013:3): [True: 194, False: 516k]
  ------------------
 7014|    194|    if (len == 5) {
  ------------------
  |  Branch (7014:9): [True: 194, False: 0]
  ------------------
 7015|    194|      return 10641;
 7016|    194|    }
 7017|      0|    break;
 7018|       |    /* langle */
 7019|    194|  case 0xf6767393419a12faULL:
  ------------------
  |  Branch (7019:3): [True: 194, False: 516k]
  ------------------
 7020|    194|    if (len == 6) {
  ------------------
  |  Branch (7020:9): [True: 194, False: 0]
  ------------------
 7021|    194|      return 10216;
 7022|    194|    }
 7023|      0|    break;
 7024|       |    /* lap */
 7025|    195|  case 0x126588191dc1d3eaULL:
  ------------------
  |  Branch (7025:3): [True: 195, False: 516k]
  ------------------
 7026|    195|    if (len == 3) {
  ------------------
  |  Branch (7026:9): [True: 195, False: 0]
  ------------------
 7027|    195|      return 10885;
 7028|    195|    }
 7029|      0|    break;
 7030|       |    /* laquo */
 7031|    194|  case 0xc9f904ec50882ed5ULL:
  ------------------
  |  Branch (7031:3): [True: 194, False: 516k]
  ------------------
 7032|    194|    if (len == 5) {
  ------------------
  |  Branch (7032:9): [True: 194, False: 0]
  ------------------
 7033|    194|      return 171;
 7034|    194|    }
 7035|      0|    break;
 7036|       |    /* larr */
 7037|    196|  case 0x0453d2ad90561202ULL:
  ------------------
  |  Branch (7037:3): [True: 196, False: 516k]
  ------------------
 7038|    196|    if (len == 4) {
  ------------------
  |  Branch (7038:9): [True: 196, False: 0]
  ------------------
 7039|    196|      return 8592;
 7040|    196|    }
 7041|      0|    break;
 7042|       |    /* larrb */
 7043|    194|  case 0xb0815cec42413920ULL:
  ------------------
  |  Branch (7043:3): [True: 194, False: 516k]
  ------------------
 7044|    194|    if (len == 5) {
  ------------------
  |  Branch (7044:9): [True: 194, False: 0]
  ------------------
 7045|    194|      return 8676;
 7046|    194|    }
 7047|      0|    break;
 7048|       |    /* larrbfs */
 7049|    194|  case 0x5c995818e4c67e33ULL:
  ------------------
  |  Branch (7049:3): [True: 194, False: 516k]
  ------------------
 7050|    194|    if (len == 7) {
  ------------------
  |  Branch (7050:9): [True: 194, False: 0]
  ------------------
 7051|    194|      return 10527;
 7052|    194|    }
 7053|      0|    break;
 7054|       |    /* larrfs */
 7055|    194|  case 0x2d17507494df1b2dULL:
  ------------------
  |  Branch (7055:3): [True: 194, False: 516k]
  ------------------
 7056|    194|    if (len == 6) {
  ------------------
  |  Branch (7056:9): [True: 194, False: 0]
  ------------------
 7057|    194|      return 10525;
 7058|    194|    }
 7059|      0|    break;
 7060|       |    /* larrhk */
 7061|    194|  case 0x2d2c587494f184cfULL:
  ------------------
  |  Branch (7061:3): [True: 194, False: 516k]
  ------------------
 7062|    194|    if (len == 6) {
  ------------------
  |  Branch (7062:9): [True: 194, False: 0]
  ------------------
 7063|    194|      return 8617;
 7064|    194|    }
 7065|      0|    break;
 7066|       |    /* larrlp */
 7067|    194|  case 0x2d39497494fbf5aeULL:
  ------------------
  |  Branch (7067:3): [True: 194, False: 516k]
  ------------------
 7068|    194|    if (len == 6) {
  ------------------
  |  Branch (7068:9): [True: 194, False: 0]
  ------------------
 7069|    194|      return 8619;
 7070|    194|    }
 7071|      0|    break;
 7072|       |    /* larrpl */
 7073|    194|  case 0x2d4755749508476eULL:
  ------------------
  |  Branch (7073:3): [True: 194, False: 516k]
  ------------------
 7074|    194|    if (len == 6) {
  ------------------
  |  Branch (7074:9): [True: 194, False: 0]
  ------------------
 7075|    194|      return 10553;
 7076|    194|    }
 7077|      0|    break;
 7078|       |    /* larrsim */
 7079|    194|  case 0xf0b82f1938eb6569ULL:
  ------------------
  |  Branch (7079:3): [True: 194, False: 516k]
  ------------------
 7080|    194|    if (len == 7) {
  ------------------
  |  Branch (7080:9): [True: 194, False: 0]
  ------------------
 7081|    194|      return 10611;
 7082|    194|    }
 7083|      0|    break;
 7084|       |    /* larrtl */
 7085|    194|  case 0x2d55357495144e6aULL:
  ------------------
  |  Branch (7085:3): [True: 194, False: 516k]
  ------------------
 7086|    194|    if (len == 6) {
  ------------------
  |  Branch (7086:9): [True: 194, False: 0]
  ------------------
 7087|    194|      return 8610;
 7088|    194|    }
 7089|      0|    break;
 7090|       |    /* lat */
 7091|    194|  case 0x126584191dc1cd1eULL:
  ------------------
  |  Branch (7091:3): [True: 194, False: 516k]
  ------------------
 7092|    194|    if (len == 3) {
  ------------------
  |  Branch (7092:9): [True: 194, False: 0]
  ------------------
 7093|    194|      return 10923;
 7094|    194|    }
 7095|      0|    break;
 7096|       |    /* latail */
 7097|    195|  case 0x5808cc63937b0640ULL:
  ------------------
  |  Branch (7097:3): [True: 195, False: 516k]
  ------------------
 7098|    195|    if (len == 6) {
  ------------------
  |  Branch (7098:9): [True: 195, False: 0]
  ------------------
 7099|    195|      return 10521;
 7100|    195|    }
 7101|      0|    break;
 7102|       |    /* late */
 7103|    194|  case 0x044cf1ad90502801ULL:
  ------------------
  |  Branch (7103:3): [True: 194, False: 516k]
  ------------------
 7104|    194|    if (len == 4) {
  ------------------
  |  Branch (7104:9): [True: 194, False: 0]
  ------------------
 7105|    194|      return 10925;
 7106|    194|    }
 7107|      0|    break;
 7108|       |    /* lbarr */
 7109|    194|  case 0x21a417e08ee0f0e2ULL:
  ------------------
  |  Branch (7109:3): [True: 194, False: 516k]
  ------------------
 7110|    194|    if (len == 5) {
  ------------------
  |  Branch (7110:9): [True: 194, False: 0]
  ------------------
 7111|    194|      return 10508;
 7112|    194|    }
 7113|      0|    break;
 7114|       |    /* lbbrk */
 7115|    194|  case 0x1a40ffe08b0e5d10ULL:
  ------------------
  |  Branch (7115:3): [True: 194, False: 516k]
  ------------------
 7116|    194|    if (len == 5) {
  ------------------
  |  Branch (7116:9): [True: 194, False: 0]
  ------------------
 7117|    194|      return 10098;
 7118|    194|    }
 7119|      0|    break;
 7120|       |    /* lbrace */
 7121|    194|  case 0xff28fd102a01bf76ULL:
  ------------------
  |  Branch (7121:3): [True: 194, False: 516k]
  ------------------
 7122|    194|    if (len == 6) {
  ------------------
  |  Branch (7122:9): [True: 194, False: 0]
  ------------------
 7123|    194|      return 123;
 7124|    194|    }
 7125|      0|    break;
 7126|       |    /* lbrack */
 7127|    194|  case 0xff2907102a01d074ULL:
  ------------------
  |  Branch (7127:3): [True: 194, False: 516k]
  ------------------
 7128|    194|    if (len == 6) {
  ------------------
  |  Branch (7128:9): [True: 194, False: 0]
  ------------------
 7129|    194|      return 91;
 7130|    194|    }
 7131|      0|    break;
 7132|       |    /* lbrke */
 7133|    194|  case 0xa3aa89e0d88dd66fULL:
  ------------------
  |  Branch (7133:3): [True: 194, False: 516k]
  ------------------
 7134|    194|    if (len == 5) {
  ------------------
  |  Branch (7134:9): [True: 194, False: 0]
  ------------------
 7135|    194|      return 10635;
 7136|    194|    }
 7137|      0|    break;
 7138|       |    /* lbrksld */
 7139|    194|  case 0xecacbe23c8028751ULL:
  ------------------
  |  Branch (7139:3): [True: 194, False: 516k]
  ------------------
 7140|    194|    if (len == 7) {
  ------------------
  |  Branch (7140:9): [True: 194, False: 0]
  ------------------
 7141|    194|      return 10639;
 7142|    194|    }
 7143|      0|    break;
 7144|       |    /* lbrkslu */
 7145|    194|  case 0xecaccd23c802a0ceULL:
  ------------------
  |  Branch (7145:3): [True: 194, False: 516k]
  ------------------
 7146|    194|    if (len == 7) {
  ------------------
  |  Branch (7146:9): [True: 194, False: 0]
  ------------------
 7147|    194|      return 10637;
 7148|    194|    }
 7149|      0|    break;
 7150|       |    /* lcaron */
 7151|    194|  case 0x92568da688147866ULL:
  ------------------
  |  Branch (7151:3): [True: 194, False: 516k]
  ------------------
 7152|    194|    if (len == 6) {
  ------------------
  |  Branch (7152:9): [True: 194, False: 0]
  ------------------
 7153|    194|      return 318;
 7154|    194|    }
 7155|      0|    break;
 7156|       |    /* lcedil */
 7157|    194|  case 0xb50481c95edc9794ULL:
  ------------------
  |  Branch (7157:3): [True: 194, False: 516k]
  ------------------
 7158|    194|    if (len == 6) {
  ------------------
  |  Branch (7158:9): [True: 194, False: 0]
  ------------------
 7159|    194|      return 316;
 7160|    194|    }
 7161|      0|    break;
 7162|       |    /* lceil */
 7163|    194|  case 0x0d412ddacc8cea32ULL:
  ------------------
  |  Branch (7163:3): [True: 194, False: 516k]
  ------------------
 7164|    194|    if (len == 5) {
  ------------------
  |  Branch (7164:9): [True: 194, False: 0]
  ------------------
 7165|    194|      return 8968;
 7166|    194|    }
 7167|      0|    break;
 7168|       |    /* lcub */
 7169|    194|  case 0xf23e92ad85e0850fULL:
  ------------------
  |  Branch (7169:3): [True: 194, False: 516k]
  ------------------
 7170|    194|    if (len == 4) {
  ------------------
  |  Branch (7170:9): [True: 194, False: 0]
  ------------------
 7171|    194|      return 123;
 7172|    194|    }
 7173|      0|    break;
 7174|       |    /* lcy */
 7175|    194|  case 0x125e75191dbb94f3ULL:
  ------------------
  |  Branch (7175:3): [True: 194, False: 516k]
  ------------------
 7176|    194|    if (len == 3) {
  ------------------
  |  Branch (7176:9): [True: 194, False: 0]
  ------------------
 7177|    194|      return 1083;
 7178|    194|    }
 7179|      0|    break;
 7180|       |    /* ldca */
 7181|    194|  case 0x2fe3baada914ca81ULL:
  ------------------
  |  Branch (7181:3): [True: 194, False: 516k]
  ------------------
 7182|    194|    if (len == 4) {
  ------------------
  |  Branch (7182:9): [True: 194, False: 0]
  ------------------
 7183|    194|      return 10550;
 7184|    194|    }
 7185|      0|    break;
 7186|       |    /* ldquo */
 7187|    194|  case 0xd8ff4115f6278984ULL:
  ------------------
  |  Branch (7187:3): [True: 194, False: 516k]
  ------------------
 7188|    194|    if (len == 5) {
  ------------------
  |  Branch (7188:9): [True: 194, False: 0]
  ------------------
 7189|    194|      return 8220;
 7190|    194|    }
 7191|      0|    break;
 7192|       |    /* ldquor */
 7193|    194|  case 0xe1458e51452f6d02ULL:
  ------------------
  |  Branch (7193:3): [True: 194, False: 516k]
  ------------------
 7194|    194|    if (len == 6) {
  ------------------
  |  Branch (7194:9): [True: 194, False: 0]
  ------------------
 7195|    194|      return 8222;
 7196|    194|    }
 7197|      0|    break;
 7198|       |    /* ldrdhar */
 7199|    194|  case 0xe8f72809f82a5b1eULL:
  ------------------
  |  Branch (7199:3): [True: 194, False: 516k]
  ------------------
 7200|    194|    if (len == 7) {
  ------------------
  |  Branch (7200:9): [True: 194, False: 0]
  ------------------
 7201|    194|      return 10599;
 7202|    194|    }
 7203|      0|    break;
 7204|       |    /* ldrushar */
 7205|    194|  case 0x5bbbe1df4b5a5cd4ULL:
  ------------------
  |  Branch (7205:3): [True: 194, False: 516k]
  ------------------
 7206|    194|    if (len == 8) {
  ------------------
  |  Branch (7206:9): [True: 194, False: 0]
  ------------------
 7207|    194|      return 10571;
 7208|    194|    }
 7209|      0|    break;
 7210|       |    /* ldsh */
 7211|    194|  case 0x2fac91ada8e54266ULL:
  ------------------
  |  Branch (7211:3): [True: 194, False: 516k]
  ------------------
 7212|    194|    if (len == 4) {
  ------------------
  |  Branch (7212:9): [True: 194, False: 0]
  ------------------
 7213|    194|      return 8626;
 7214|    194|    }
 7215|      0|    break;
 7216|       |    /* le */
 7217|    197|  case 0x08ad4307b55409eaULL:
  ------------------
  |  Branch (7217:3): [True: 197, False: 516k]
  ------------------
 7218|    197|    if (len == 2) {
  ------------------
  |  Branch (7218:9): [True: 197, False: 0]
  ------------------
 7219|    197|      return 8804;
 7220|    197|    }
 7221|      0|    break;
 7222|       |    /* leftarrow */
 7223|    194|  case 0xb6e70f5cacd30509ULL:
  ------------------
  |  Branch (7223:3): [True: 194, False: 516k]
  ------------------
 7224|    194|    if (len == 9) {
  ------------------
  |  Branch (7224:9): [True: 194, False: 0]
  ------------------
 7225|    194|      return 8592;
 7226|    194|    }
 7227|      0|    break;
 7228|       |    /* leftarrowtail */
 7229|    194|  case 0x7e147cd720fe1557ULL:
  ------------------
  |  Branch (7229:3): [True: 194, False: 516k]
  ------------------
 7230|    194|    if (len == 13) {
  ------------------
  |  Branch (7230:9): [True: 194, False: 0]
  ------------------
 7231|    194|      return 8610;
 7232|    194|    }
 7233|      0|    break;
 7234|       |    /* leftharpoondown */
 7235|      0|  case 0x71d077df36ff1fcfULL:
  ------------------
  |  Branch (7235:3): [True: 0, False: 516k]
  ------------------
 7236|      0|    if (len == 15) {
  ------------------
  |  Branch (7236:9): [True: 0, False: 0]
  ------------------
 7237|      0|      return 8637;
 7238|      0|    }
 7239|      0|    break;
 7240|       |    /* leftharpoonup */
 7241|      0|  case 0x0a689d5f0c27ce66ULL:
  ------------------
  |  Branch (7241:3): [True: 0, False: 516k]
  ------------------
 7242|      0|    if (len == 13) {
  ------------------
  |  Branch (7242:9): [True: 0, False: 0]
  ------------------
 7243|      0|      return 8636;
 7244|      0|    }
 7245|      0|    break;
 7246|       |    /* leftleftarrows */
 7247|    194|  case 0xb1a647630f9dd08bULL:
  ------------------
  |  Branch (7247:3): [True: 194, False: 516k]
  ------------------
 7248|    194|    if (len == 14) {
  ------------------
  |  Branch (7248:9): [True: 194, False: 0]
  ------------------
 7249|    194|      return 8647;
 7250|    194|    }
 7251|      0|    break;
 7252|       |    /* leftrightarrow */
 7253|      0|  case 0x5f6cd2e0e89ae3ffULL:
  ------------------
  |  Branch (7253:3): [True: 0, False: 516k]
  ------------------
 7254|      0|    if (len == 14) {
  ------------------
  |  Branch (7254:9): [True: 0, False: 0]
  ------------------
 7255|      0|      return 8596;
 7256|      0|    }
 7257|      0|    break;
 7258|       |    /* leftrightarrows */
 7259|      0|  case 0xc0cde02b3f30a6e4ULL:
  ------------------
  |  Branch (7259:3): [True: 0, False: 516k]
  ------------------
 7260|      0|    if (len == 15) {
  ------------------
  |  Branch (7260:9): [True: 0, False: 0]
  ------------------
 7261|      0|      return 8646;
 7262|      0|    }
 7263|      0|    break;
 7264|       |    /* leftrightharpoons */
 7265|      0|  case 0x36b4f8bd5549b0e6ULL:
  ------------------
  |  Branch (7265:3): [True: 0, False: 516k]
  ------------------
 7266|      0|    if (len == 17) {
  ------------------
  |  Branch (7266:9): [True: 0, False: 0]
  ------------------
 7267|      0|      return 8651;
 7268|      0|    }
 7269|      0|    break;
 7270|       |    /* leftrightsquigarrow */
 7271|      0|  case 0x0a007d553d694ac6ULL:
  ------------------
  |  Branch (7271:3): [True: 0, False: 516k]
  ------------------
 7272|      0|    if (len == 19) {
  ------------------
  |  Branch (7272:9): [True: 0, False: 0]
  ------------------
 7273|      0|      return 8621;
 7274|      0|    }
 7275|      0|    break;
 7276|       |    /* leftthreetimes */
 7277|      0|  case 0xf672d1e3ba5f7166ULL:
  ------------------
  |  Branch (7277:3): [True: 0, False: 516k]
  ------------------
 7278|      0|    if (len == 14) {
  ------------------
  |  Branch (7278:9): [True: 0, False: 0]
  ------------------
 7279|      0|      return 8907;
 7280|      0|    }
 7281|      0|    break;
 7282|       |    /* leg */
 7283|    194|  case 0x127273191dcc3a97ULL:
  ------------------
  |  Branch (7283:3): [True: 194, False: 516k]
  ------------------
 7284|    194|    if (len == 3) {
  ------------------
  |  Branch (7284:9): [True: 194, False: 0]
  ------------------
 7285|    194|      return 8922;
 7286|    194|    }
 7287|      0|    break;
 7288|       |    /* leq */
 7289|    206|  case 0x127281191dcc5261ULL:
  ------------------
  |  Branch (7289:3): [True: 206, False: 516k]
  ------------------
 7290|    206|    if (len == 3) {
  ------------------
  |  Branch (7290:9): [True: 206, False: 0]
  ------------------
 7291|    206|      return 8804;
 7292|    206|    }
 7293|      0|    break;
 7294|       |    /* leqq */
 7295|    194|  case 0x24e36dada22f7130ULL:
  ------------------
  |  Branch (7295:3): [True: 194, False: 516k]
  ------------------
 7296|    194|    if (len == 4) {
  ------------------
  |  Branch (7296:9): [True: 194, False: 0]
  ------------------
 7297|    194|      return 8806;
 7298|    194|    }
 7299|      0|    break;
 7300|       |    /* leqslant */
 7301|      0|  case 0xc7677c6251fa1687ULL:
  ------------------
  |  Branch (7301:3): [True: 0, False: 516k]
  ------------------
 7302|      0|    if (len == 8) {
  ------------------
  |  Branch (7302:9): [True: 0, False: 0]
  ------------------
 7303|      0|      return 10877;
 7304|      0|    }
 7305|      0|    break;
 7306|       |    /* les */
 7307|    197|  case 0x12727f191dcc4efbULL:
  ------------------
  |  Branch (7307:3): [True: 197, False: 516k]
  ------------------
 7308|    197|    if (len == 3) {
  ------------------
  |  Branch (7308:9): [True: 197, False: 0]
  ------------------
 7309|    197|      return 10877;
 7310|    197|    }
 7311|      0|    break;
 7312|       |    /* lescc */
 7313|    194|  case 0xcc544f0a8c992d11ULL:
  ------------------
  |  Branch (7313:3): [True: 194, False: 516k]
  ------------------
 7314|    194|    if (len == 5) {
  ------------------
  |  Branch (7314:9): [True: 194, False: 0]
  ------------------
 7315|    194|      return 10920;
 7316|    194|    }
 7317|      0|    break;
 7318|       |    /* lesdot */
 7319|    194|  case 0x09bbd4ed0b303356ULL:
  ------------------
  |  Branch (7319:3): [True: 194, False: 516k]
  ------------------
 7320|    194|    if (len == 6) {
  ------------------
  |  Branch (7320:9): [True: 194, False: 0]
  ------------------
 7321|    194|      return 10879;
 7322|    194|    }
 7323|      0|    break;
 7324|       |    /* lesdoto */
 7325|    194|  case 0xba5e07ca02e709dbULL:
  ------------------
  |  Branch (7325:3): [True: 194, False: 516k]
  ------------------
 7326|    194|    if (len == 7) {
  ------------------
  |  Branch (7326:9): [True: 194, False: 0]
  ------------------
 7327|    194|      return 10881;
 7328|    194|    }
 7329|      0|    break;
 7330|       |    /* lesdotor */
 7331|    194|  case 0x94d0e542ee956a2bULL:
  ------------------
  |  Branch (7331:3): [True: 194, False: 516k]
  ------------------
 7332|    194|    if (len == 8) {
  ------------------
  |  Branch (7332:9): [True: 194, False: 0]
  ------------------
 7333|    194|      return 10883;
 7334|    194|    }
 7335|      0|    break;
 7336|       |    /* lesges */
 7337|    194|  case 0xf0b454ecfd488950ULL:
  ------------------
  |  Branch (7337:3): [True: 194, False: 516k]
  ------------------
 7338|    194|    if (len == 6) {
  ------------------
  |  Branch (7338:9): [True: 194, False: 0]
  ------------------
 7339|    194|      return 10899;
 7340|    194|    }
 7341|      0|    break;
 7342|       |    /* lessapprox */
 7343|    194|  case 0xa1bbd1807e113c64ULL:
  ------------------
  |  Branch (7343:3): [True: 194, False: 516k]
  ------------------
 7344|    194|    if (len == 10) {
  ------------------
  |  Branch (7344:9): [True: 194, False: 0]
  ------------------
 7345|    194|      return 10885;
 7346|    194|    }
 7347|      0|    break;
 7348|       |    /* lessdot */
 7349|    194|  case 0x0714db0bc79cc96fULL:
  ------------------
  |  Branch (7349:3): [True: 194, False: 516k]
  ------------------
 7350|    194|    if (len == 7) {
  ------------------
  |  Branch (7350:9): [True: 194, False: 0]
  ------------------
 7351|    194|      return 8918;
 7352|    194|    }
 7353|      0|    break;
 7354|       |    /* lesseqgtr */
 7355|    194|  case 0x50debe5bdd00a759ULL:
  ------------------
  |  Branch (7355:3): [True: 194, False: 516k]
  ------------------
 7356|    194|    if (len == 9) {
  ------------------
  |  Branch (7356:9): [True: 194, False: 0]
  ------------------
 7357|    194|      return 8922;
 7358|    194|    }
 7359|      0|    break;
 7360|       |    /* lesseqqgtr */
 7361|    194|  case 0x2e39948ef41678d8ULL:
  ------------------
  |  Branch (7361:3): [True: 194, False: 516k]
  ------------------
 7362|    194|    if (len == 10) {
  ------------------
  |  Branch (7362:9): [True: 194, False: 0]
  ------------------
 7363|    194|      return 10891;
 7364|    194|    }
 7365|      0|    break;
 7366|       |    /* lessgtr */
 7367|    194|  case 0x2048640bd5a9bdabULL:
  ------------------
  |  Branch (7367:3): [True: 194, False: 516k]
  ------------------
 7368|    194|    if (len == 7) {
  ------------------
  |  Branch (7368:9): [True: 194, False: 0]
  ------------------
 7369|    194|      return 8822;
 7370|    194|    }
 7371|      0|    break;
 7372|       |    /* lesssim */
 7373|    194|  case 0x72fa190b737beebfULL:
  ------------------
  |  Branch (7373:3): [True: 194, False: 516k]
  ------------------
 7374|    194|    if (len == 7) {
  ------------------
  |  Branch (7374:9): [True: 194, False: 0]
  ------------------
 7375|    194|      return 8818;
 7376|    194|    }
 7377|      0|    break;
 7378|       |    /* lfisht */
 7379|    194|  case 0x9a4798ad04c9e957ULL:
  ------------------
  |  Branch (7379:3): [True: 194, False: 516k]
  ------------------
 7380|    194|    if (len == 6) {
  ------------------
  |  Branch (7380:9): [True: 194, False: 0]
  ------------------
 7381|    194|      return 10620;
 7382|    194|    }
 7383|      0|    break;
 7384|       |    /* lfloor */
 7385|    194|  case 0xbe3e6a94956197b7ULL:
  ------------------
  |  Branch (7385:3): [True: 194, False: 516k]
  ------------------
 7386|    194|    if (len == 6) {
  ------------------
  |  Branch (7386:9): [True: 194, False: 0]
  ------------------
 7387|    194|      return 8970;
 7388|    194|    }
 7389|      0|    break;
 7390|       |    /* lfr */
 7391|    194|  case 0x126f78191dca0d3fULL:
  ------------------
  |  Branch (7391:3): [True: 194, False: 516k]
  ------------------
 7392|    194|    if (len == 3) {
  ------------------
  |  Branch (7392:9): [True: 194, False: 0]
  ------------------
 7393|    194|      return 120105;
 7394|    194|    }
 7395|      0|    break;
 7396|       |    /* lg */
 7397|    195|  case 0x08ad4107b5540684ULL:
  ------------------
  |  Branch (7397:3): [True: 195, False: 516k]
  ------------------
 7398|    195|    if (len == 2) {
  ------------------
  |  Branch (7398:9): [True: 195, False: 0]
  ------------------
 7399|    195|      return 8822;
 7400|    195|    }
 7401|      0|    break;
 7402|       |    /* lgE */
 7403|    194|  case 0x126c41191dc779f3ULL:
  ------------------
  |  Branch (7403:3): [True: 194, False: 516k]
  ------------------
 7404|    194|    if (len == 3) {
  ------------------
  |  Branch (7404:9): [True: 194, False: 0]
  ------------------
 7405|    194|      return 10897;
 7406|    194|    }
 7407|      0|    break;
 7408|       |    /* lhard */
 7409|    196|  case 0xb98891b1003072deULL:
  ------------------
  |  Branch (7409:3): [True: 196, False: 516k]
  ------------------
 7410|    196|    if (len == 5) {
  ------------------
  |  Branch (7410:9): [True: 196, False: 0]
  ------------------
 7411|    196|      return 8637;
 7412|    196|    }
 7413|      0|    break;
 7414|       |    /* lharu */
 7415|    194|  case 0xb988a2b100308fc1ULL:
  ------------------
  |  Branch (7415:3): [True: 194, False: 516k]
  ------------------
 7416|    194|    if (len == 5) {
  ------------------
  |  Branch (7416:9): [True: 194, False: 0]
  ------------------
 7417|    194|      return 8636;
 7418|    194|    }
 7419|      0|    break;
 7420|       |    /* lharul */
 7421|    194|  case 0x73bc1fc3528422f7ULL:
  ------------------
  |  Branch (7421:3): [True: 194, False: 516k]
  ------------------
 7422|    194|    if (len == 6) {
  ------------------
  |  Branch (7422:9): [True: 194, False: 0]
  ------------------
 7423|    194|      return 10602;
 7424|    194|    }
 7425|      0|    break;
 7426|       |    /* lhblk */
 7427|    194|  case 0xd29727b10e1e60f4ULL:
  ------------------
  |  Branch (7427:3): [True: 194, False: 516k]
  ------------------
 7428|    194|    if (len == 5) {
  ------------------
  |  Branch (7428:9): [True: 194, False: 0]
  ------------------
 7429|    194|      return 9604;
 7430|    194|    }
 7431|      0|    break;
 7432|       |    /* ljcy */
 7433|    194|  case 0xb4de60ad62e7ae6bULL:
  ------------------
  |  Branch (7433:3): [True: 194, False: 516k]
  ------------------
 7434|    194|    if (len == 4) {
  ------------------
  |  Branch (7434:9): [True: 194, False: 0]
  ------------------
 7435|    194|      return 1113;
 7436|    194|    }
 7437|      0|    break;
 7438|       |    /* ll */
 7439|    201|  case 0x08ad3c07b553fe05ULL:
  ------------------
  |  Branch (7439:3): [True: 201, False: 516k]
  ------------------
 7440|    201|    if (len == 2) {
  ------------------
  |  Branch (7440:9): [True: 201, False: 0]
  ------------------
 7441|    201|      return 8810;
 7442|    201|    }
 7443|      0|    break;
 7444|       |    /* llarr */
 7445|    194|  case 0x614533d390dc2c98ULL:
  ------------------
  |  Branch (7445:3): [True: 194, False: 516k]
  ------------------
 7446|    194|    if (len == 5) {
  ------------------
  |  Branch (7446:9): [True: 194, False: 0]
  ------------------
 7447|    194|      return 8647;
 7448|    194|    }
 7449|      0|    break;
 7450|       |    /* llcorner */
 7451|    194|  case 0x7f02df7a5d569ff0ULL:
  ------------------
  |  Branch (7451:3): [True: 194, False: 516k]
  ------------------
 7452|    194|    if (len == 8) {
  ------------------
  |  Branch (7452:9): [True: 194, False: 0]
  ------------------
 7453|    194|      return 8990;
 7454|    194|    }
 7455|      0|    break;
 7456|       |    /* llhard */
 7457|    194|  case 0x76dc77cc4698337cULL:
  ------------------
  |  Branch (7457:3): [True: 194, False: 516k]
  ------------------
 7458|    194|    if (len == 6) {
  ------------------
  |  Branch (7458:9): [True: 194, False: 0]
  ------------------
 7459|    194|      return 10603;
 7460|    194|    }
 7461|      0|    break;
 7462|       |    /* lltri */
 7463|    194|  case 0xd46033d3d2c45e1eULL:
  ------------------
  |  Branch (7463:3): [True: 194, False: 516k]
  ------------------
 7464|    194|    if (len == 5) {
  ------------------
  |  Branch (7464:9): [True: 194, False: 0]
  ------------------
 7465|    194|      return 9722;
 7466|    194|    }
 7467|      0|    break;
 7468|       |    /* lmidot */
 7469|    194|  case 0x0c87857de21d30ecULL:
  ------------------
  |  Branch (7469:3): [True: 194, False: 516k]
  ------------------
 7470|    194|    if (len == 6) {
  ------------------
  |  Branch (7470:9): [True: 194, False: 0]
  ------------------
 7471|    194|      return 320;
 7472|    194|    }
 7473|      0|    break;
 7474|       |    /* lmoust */
 7475|    196|  case 0xb376a68fead99e11ULL:
  ------------------
  |  Branch (7475:3): [True: 196, False: 516k]
  ------------------
 7476|    196|    if (len == 6) {
  ------------------
  |  Branch (7476:9): [True: 196, False: 0]
  ------------------
 7477|    196|      return 9136;
 7478|    196|    }
 7479|      0|    break;
 7480|       |    /* lmoustache */
 7481|    194|  case 0x78f539c2b4c9d1e2ULL:
  ------------------
  |  Branch (7481:3): [True: 194, False: 516k]
  ------------------
 7482|    194|    if (len == 10) {
  ------------------
  |  Branch (7482:9): [True: 194, False: 0]
  ------------------
 7483|    194|      return 9136;
 7484|    194|    }
 7485|      0|    break;
 7486|       |    /* lnE */
 7487|    194|  case 0x125475191db3406eULL:
  ------------------
  |  Branch (7487:3): [True: 194, False: 516k]
  ------------------
 7488|    194|    if (len == 3) {
  ------------------
  |  Branch (7488:9): [True: 194, False: 0]
  ------------------
 7489|    194|      return 8808;
 7490|    194|    }
 7491|      0|    break;
 7492|       |    /* lnap */
 7493|    194|  case 0xd93e0fad77fef49eULL:
  ------------------
  |  Branch (7493:3): [True: 194, False: 516k]
  ------------------
 7494|    194|    if (len == 4) {
  ------------------
  |  Branch (7494:9): [True: 194, False: 0]
  ------------------
 7495|    194|      return 10889;
 7496|    194|    }
 7497|      0|    break;
 7498|       |    /* lnapprox */
 7499|    194|  case 0x6d1dbedf49de9a27ULL:
  ------------------
  |  Branch (7499:3): [True: 194, False: 516k]
  ------------------
 7500|    194|    if (len == 8) {
  ------------------
  |  Branch (7500:9): [True: 194, False: 0]
  ------------------
 7501|    194|      return 10889;
 7502|    194|    }
 7503|      0|    break;
 7504|       |    /* lne */
 7505|    200|  case 0x125495191db376ceULL:
  ------------------
  |  Branch (7505:3): [True: 200, False: 516k]
  ------------------
 7506|    200|    if (len == 3) {
  ------------------
  |  Branch (7506:9): [True: 200, False: 0]
  ------------------
 7507|    200|      return 10887;
 7508|    200|    }
 7509|      0|    break;
 7510|       |    /* lneq */
 7511|    194|  case 0xd93018ad77f2c68dULL:
  ------------------
  |  Branch (7511:3): [True: 194, False: 516k]
  ------------------
 7512|    194|    if (len == 4) {
  ------------------
  |  Branch (7512:9): [True: 194, False: 0]
  ------------------
 7513|    194|      return 10887;
 7514|    194|    }
 7515|      0|    break;
 7516|       |    /* lneqq */
 7517|    204|  case 0xff80eac2d1881e34ULL:
  ------------------
  |  Branch (7517:3): [True: 204, False: 516k]
  ------------------
 7518|    204|    if (len == 5) {
  ------------------
  |  Branch (7518:9): [True: 204, False: 0]
  ------------------
 7519|    204|      return 8808;
 7520|    204|    }
 7521|      0|    break;
 7522|       |    /* lnsim */
 7523|    194|  case 0x87d3b4c28e322aeeULL:
  ------------------
  |  Branch (7523:3): [True: 194, False: 516k]
  ------------------
 7524|    194|    if (len == 5) {
  ------------------
  |  Branch (7524:9): [True: 194, False: 0]
  ------------------
 7525|    194|      return 8934;
 7526|    194|    }
 7527|      0|    break;
 7528|       |    /* loang */
 7529|    194|  case 0x15e2d8b6ec0986b4ULL:
  ------------------
  |  Branch (7529:3): [True: 194, False: 516k]
  ------------------
 7530|    194|    if (len == 5) {
  ------------------
  |  Branch (7530:9): [True: 194, False: 0]
  ------------------
 7531|    194|      return 10220;
 7532|    194|    }
 7533|      0|    break;
 7534|       |    /* loarr */
 7535|    194|  case 0x159ecdb6ebcfa737ULL:
  ------------------
  |  Branch (7535:3): [True: 194, False: 516k]
  ------------------
 7536|    194|    if (len == 5) {
  ------------------
  |  Branch (7536:9): [True: 194, False: 0]
  ------------------
 7537|    194|      return 8701;
 7538|    194|    }
 7539|      0|    break;
 7540|       |    /* lobrk */
 7541|    194|  case 0x1d01d5b6efa21fd9ULL:
  ------------------
  |  Branch (7541:3): [True: 194, False: 516k]
  ------------------
 7542|    194|    if (len == 5) {
  ------------------
  |  Branch (7542:9): [True: 194, False: 0]
  ------------------
 7543|    194|      return 10214;
 7544|    194|    }
 7545|      0|    break;
 7546|       |    /* longleftarrow */
 7547|    194|  case 0x345bae98c0330f37ULL:
  ------------------
  |  Branch (7547:3): [True: 194, False: 516k]
  ------------------
 7548|    194|    if (len == 13) {
  ------------------
  |  Branch (7548:9): [True: 194, False: 0]
  ------------------
 7549|    194|      return 10229;
 7550|    194|    }
 7551|      0|    break;
 7552|       |    /* longleftrightarrow */
 7553|      0|  case 0x0728907578214051ULL:
  ------------------
  |  Branch (7553:3): [True: 0, False: 516k]
  ------------------
 7554|      0|    if (len == 18) {
  ------------------
  |  Branch (7554:9): [True: 0, False: 0]
  ------------------
 7555|      0|      return 10231;
 7556|      0|    }
 7557|      0|    break;
 7558|       |    /* longmapsto */
 7559|    194|  case 0xa6cbff1b96f072f9ULL:
  ------------------
  |  Branch (7559:3): [True: 194, False: 516k]
  ------------------
 7560|    194|    if (len == 10) {
  ------------------
  |  Branch (7560:9): [True: 194, False: 0]
  ------------------
 7561|    194|      return 10236;
 7562|    194|    }
 7563|      0|    break;
 7564|       |    /* longrightarrow */
 7565|      0|  case 0x58c54f5e14373c94ULL:
  ------------------
  |  Branch (7565:3): [True: 0, False: 516k]
  ------------------
 7566|      0|    if (len == 14) {
  ------------------
  |  Branch (7566:9): [True: 0, False: 0]
  ------------------
 7567|      0|      return 10230;
 7568|      0|    }
 7569|      0|    break;
 7570|       |    /* looparrowleft */
 7571|      0|  case 0xc970d1e81f395521ULL:
  ------------------
  |  Branch (7571:3): [True: 0, False: 516k]
  ------------------
 7572|      0|    if (len == 13) {
  ------------------
  |  Branch (7572:9): [True: 0, False: 0]
  ------------------
 7573|      0|      return 8619;
 7574|      0|    }
 7575|      0|    break;
 7576|       |    /* looparrowright */
 7577|      0|  case 0xa59b04be1154af02ULL:
  ------------------
  |  Branch (7577:3): [True: 0, False: 516k]
  ------------------
 7578|      0|    if (len == 14) {
  ------------------
  |  Branch (7578:9): [True: 0, False: 0]
  ------------------
 7579|      0|      return 8620;
 7580|      0|    }
 7581|      0|    break;
 7582|       |    /* lopar */
 7583|    194|  case 0x97cd34b7359dcc27ULL:
  ------------------
  |  Branch (7583:3): [True: 194, False: 516k]
  ------------------
 7584|    194|    if (len == 5) {
  ------------------
  |  Branch (7584:9): [True: 194, False: 0]
  ------------------
 7585|    194|      return 10629;
 7586|    194|    }
 7587|      0|    break;
 7588|       |    /* lopf */
 7589|    194|  case 0xce41e8ad711dc4b6ULL:
  ------------------
  |  Branch (7589:3): [True: 194, False: 516k]
  ------------------
 7590|    194|    if (len == 4) {
  ------------------
  |  Branch (7590:9): [True: 194, False: 0]
  ------------------
 7591|    194|      return 120157;
 7592|    194|    }
 7593|      0|    break;
 7594|       |    /* loplus */
 7595|    194|  case 0xa8b7625029352ddcULL:
  ------------------
  |  Branch (7595:3): [True: 194, False: 516k]
  ------------------
 7596|    194|    if (len == 6) {
  ------------------
  |  Branch (7596:9): [True: 194, False: 0]
  ------------------
 7597|    194|      return 10797;
 7598|    194|    }
 7599|      0|    break;
 7600|       |    /* lotimes */
 7601|    194|  case 0xff082808bf3b4fdaULL:
  ------------------
  |  Branch (7601:3): [True: 194, False: 516k]
  ------------------
 7602|    194|    if (len == 7) {
  ------------------
  |  Branch (7602:9): [True: 194, False: 0]
  ------------------
 7603|    194|      return 10804;
 7604|    194|    }
 7605|      0|    break;
 7606|       |    /* lowast */
 7607|    194|  case 0x60d68a440e9caf47ULL:
  ------------------
  |  Branch (7607:3): [True: 194, False: 516k]
  ------------------
 7608|    194|    if (len == 6) {
  ------------------
  |  Branch (7608:9): [True: 194, False: 0]
  ------------------
 7609|    194|      return 8727;
 7610|    194|    }
 7611|      0|    break;
 7612|       |    /* lowbar */
 7613|    194|  case 0x7a8f01441d1ae8aeULL:
  ------------------
  |  Branch (7613:3): [True: 194, False: 516k]
  ------------------
 7614|    194|    if (len == 6) {
  ------------------
  |  Branch (7614:9): [True: 194, False: 0]
  ------------------
 7615|    194|      return 95;
 7616|    194|    }
 7617|      0|    break;
 7618|       |    /* loz */
 7619|    194|  case 0x12507e191daf66e2ULL:
  ------------------
  |  Branch (7619:3): [True: 194, False: 516k]
  ------------------
 7620|    194|    if (len == 3) {
  ------------------
  |  Branch (7620:9): [True: 194, False: 0]
  ------------------
 7621|    194|      return 9674;
 7622|    194|    }
 7623|      0|    break;
 7624|       |    /* lozenge */
 7625|    201|  case 0xbb7a7cfe7a72c225ULL:
  ------------------
  |  Branch (7625:3): [True: 201, False: 516k]
  ------------------
 7626|    201|    if (len == 7) {
  ------------------
  |  Branch (7626:9): [True: 201, False: 0]
  ------------------
 7627|    201|      return 9674;
 7628|    201|    }
 7629|      0|    break;
 7630|       |    /* lozf */
 7631|    196|  case 0xce2cc8ad710b324cULL:
  ------------------
  |  Branch (7631:3): [True: 196, False: 516k]
  ------------------
 7632|    196|    if (len == 4) {
  ------------------
  |  Branch (7632:9): [True: 196, False: 0]
  ------------------
 7633|    196|      return 10731;
 7634|    196|    }
 7635|      0|    break;
 7636|       |    /* lpar */
 7637|    194|  case 0x97ce83ade3eea456ULL:
  ------------------
  |  Branch (7637:3): [True: 194, False: 516k]
  ------------------
 7638|    194|    if (len == 4) {
  ------------------
  |  Branch (7638:9): [True: 194, False: 0]
  ------------------
 7639|    194|      return 40;
 7640|    194|    }
 7641|      0|    break;
 7642|       |    /* lparlt */
 7643|    194|  case 0x784f97d3654c72ceULL:
  ------------------
  |  Branch (7643:3): [True: 194, False: 516k]
  ------------------
 7644|    194|    if (len == 6) {
  ------------------
  |  Branch (7644:9): [True: 194, False: 0]
  ------------------
 7645|    194|      return 10643;
 7646|    194|    }
 7647|      0|    break;
 7648|       |    /* lrarr */
 7649|    194|  case 0xa1b13869a150b332ULL:
  ------------------
  |  Branch (7649:3): [True: 194, False: 516k]
  ------------------
 7650|    194|    if (len == 5) {
  ------------------
  |  Branch (7650:9): [True: 194, False: 0]
  ------------------
 7651|    194|      return 8646;
 7652|    194|    }
 7653|      0|    break;
 7654|       |    /* lrcorner */
 7655|    194|  case 0xd85219c581b04bfaULL:
  ------------------
  |  Branch (7655:3): [True: 194, False: 516k]
  ------------------
 7656|    194|    if (len == 8) {
  ------------------
  |  Branch (7656:9): [True: 194, False: 0]
  ------------------
 7657|    194|      return 8991;
 7658|    194|    }
 7659|      0|    break;
 7660|       |    /* lrhar */
 7661|    194|  case 0x640321697e15e91eULL:
  ------------------
  |  Branch (7661:3): [True: 194, False: 516k]
  ------------------
 7662|    194|    if (len == 5) {
  ------------------
  |  Branch (7662:9): [True: 194, False: 0]
  ------------------
 7663|    194|      return 8651;
 7664|    194|    }
 7665|      0|    break;
 7666|       |    /* lrhard */
 7667|    194|  case 0x073b40413f3bba4eULL:
  ------------------
  |  Branch (7667:3): [True: 194, False: 516k]
  ------------------
 7668|    194|    if (len == 6) {
  ------------------
  |  Branch (7668:9): [True: 194, False: 0]
  ------------------
 7669|    194|      return 10605;
 7670|    194|    }
 7671|      0|    break;
 7672|       |    /* lrm */
 7673|    194|  case 0x12988d191ded3602ULL:
  ------------------
  |  Branch (7673:3): [True: 194, False: 516k]
  ------------------
 7674|    194|    if (len == 3) {
  ------------------
  |  Branch (7674:9): [True: 194, False: 0]
  ------------------
 7675|    194|      return 8206;
 7676|    194|    }
 7677|      0|    break;
 7678|       |    /* lrtri */
 7679|    194|  case 0x43bd8c696c7acc9cULL:
  ------------------
  |  Branch (7679:3): [True: 194, False: 516k]
  ------------------
 7680|    194|    if (len == 5) {
  ------------------
  |  Branch (7680:9): [True: 194, False: 0]
  ------------------
 7681|    194|      return 8895;
 7682|    194|    }
 7683|      0|    break;
 7684|       |    /* lsaquo */
 7685|    194|  case 0x53ada622aa502beaULL:
  ------------------
  |  Branch (7685:3): [True: 194, False: 516k]
  ------------------
 7686|    194|    if (len == 6) {
  ------------------
  |  Branch (7686:9): [True: 194, False: 0]
  ------------------
 7687|    194|      return 8249;
 7688|    194|    }
 7689|      0|    break;
 7690|       |    /* lscr */
 7691|    194|  case 0x7b530aadd3179fd9ULL:
  ------------------
  |  Branch (7691:3): [True: 194, False: 516k]
  ------------------
 7692|    194|    if (len == 4) {
  ------------------
  |  Branch (7692:9): [True: 194, False: 0]
  ------------------
 7693|    194|      return 120001;
 7694|    194|    }
 7695|      0|    break;
 7696|       |    /* lsh */
 7697|    195|  case 0x129464191de90780ULL:
  ------------------
  |  Branch (7697:3): [True: 195, False: 516k]
  ------------------
 7698|    195|    if (len == 3) {
  ------------------
  |  Branch (7698:9): [True: 195, False: 0]
  ------------------
 7699|    195|      return 8624;
 7700|    195|    }
 7701|      0|    break;
 7702|       |    /* lsim */
 7703|    194|  case 0x7b3127add2faeabaULL:
  ------------------
  |  Branch (7703:3): [True: 194, False: 516k]
  ------------------
 7704|    194|    if (len == 4) {
  ------------------
  |  Branch (7704:9): [True: 194, False: 0]
  ------------------
 7705|    194|      return 8818;
 7706|    194|    }
 7707|      0|    break;
 7708|       |    /* lsime */
 7709|    194|  case 0x4f714b5d805d18edULL:
  ------------------
  |  Branch (7709:3): [True: 194, False: 516k]
  ------------------
 7710|    194|    if (len == 5) {
  ------------------
  |  Branch (7710:9): [True: 194, False: 0]
  ------------------
 7711|    194|      return 10893;
 7712|    194|    }
 7713|      0|    break;
 7714|       |    /* lsimg */
 7715|    194|  case 0x4f71495d805d1587ULL:
  ------------------
  |  Branch (7715:3): [True: 194, False: 516k]
  ------------------
 7716|    194|    if (len == 5) {
  ------------------
  |  Branch (7716:9): [True: 194, False: 0]
  ------------------
 7717|    194|      return 10895;
 7718|    194|    }
 7719|      0|    break;
 7720|       |    /* lsqb */
 7721|    194|  case 0x7b822aadd33f46fbULL:
  ------------------
  |  Branch (7721:3): [True: 194, False: 516k]
  ------------------
 7722|    194|    if (len == 4) {
  ------------------
  |  Branch (7722:9): [True: 194, False: 0]
  ------------------
 7723|    194|      return 91;
 7724|    194|    }
 7725|      0|    break;
 7726|       |    /* lsquo */
 7727|    195|  case 0x1d4ff95df4659adfULL:
  ------------------
  |  Branch (7727:3): [True: 195, False: 516k]
  ------------------
 7728|    195|    if (len == 5) {
  ------------------
  |  Branch (7728:9): [True: 195, False: 0]
  ------------------
 7729|    195|      return 8216;
 7730|    195|    }
 7731|      0|    break;
 7732|       |    /* lsquor */
 7733|    194|  case 0x347f67a648a5d3f7ULL:
  ------------------
  |  Branch (7733:3): [True: 194, False: 516k]
  ------------------
 7734|    194|    if (len == 6) {
  ------------------
  |  Branch (7734:9): [True: 194, False: 0]
  ------------------
 7735|    194|      return 8218;
 7736|    194|    }
 7737|      0|    break;
 7738|       |    /* lstrok */
 7739|    194|  case 0x8b18e7c2f48cd1a4ULL:
  ------------------
  |  Branch (7739:3): [True: 194, False: 516k]
  ------------------
 7740|    194|    if (len == 6) {
  ------------------
  |  Branch (7740:9): [True: 194, False: 0]
  ------------------
 7741|    194|      return 322;
 7742|    194|    }
 7743|      0|    break;
 7744|       |    /* lt */
 7745|    198|  case 0x08ad5407b55426cdULL:
  ------------------
  |  Branch (7745:3): [True: 198, False: 516k]
  ------------------
 7746|    198|    if (len == 2) {
  ------------------
  |  Branch (7746:9): [True: 198, False: 0]
  ------------------
 7747|    198|      return 60;
 7748|    198|    }
 7749|      0|    break;
 7750|       |    /* ltcc */
 7751|    194|  case 0xb8c828adf622b08bULL:
  ------------------
  |  Branch (7751:3): [True: 194, False: 516k]
  ------------------
 7752|    194|    if (len == 4) {
  ------------------
  |  Branch (7752:9): [True: 194, False: 0]
  ------------------
 7753|    194|      return 10918;
 7754|    194|    }
 7755|      0|    break;
 7756|       |    /* ltcir */
 7757|    195|  case 0x1eb918993ce05b11ULL:
  ------------------
  |  Branch (7757:3): [True: 195, False: 516k]
  ------------------
 7758|    195|    if (len == 5) {
  ------------------
  |  Branch (7758:9): [True: 195, False: 0]
  ------------------
 7759|    195|      return 10873;
 7760|    195|    }
 7761|      0|    break;
 7762|       |    /* ltdot */
 7763|    194|  case 0xf36a4b9924596768ULL:
  ------------------
  |  Branch (7763:3): [True: 194, False: 516k]
  ------------------
 7764|    194|    if (len == 5) {
  ------------------
  |  Branch (7764:9): [True: 194, False: 0]
  ------------------
 7765|    194|      return 8918;
 7766|    194|    }
 7767|      0|    break;
 7768|       |    /* lthree */
 7769|    194|  case 0xeaae3b15f8c150e9ULL:
  ------------------
  |  Branch (7769:3): [True: 194, False: 516k]
  ------------------
 7770|    194|    if (len == 6) {
  ------------------
  |  Branch (7770:9): [True: 194, False: 0]
  ------------------
 7771|    194|      return 8907;
 7772|    194|    }
 7773|      0|    break;
 7774|       |    /* ltimes */
 7775|    194|  case 0xb1cf2e0efef92763ULL:
  ------------------
  |  Branch (7775:3): [True: 194, False: 516k]
  ------------------
 7776|    194|    if (len == 6) {
  ------------------
  |  Branch (7776:9): [True: 194, False: 0]
  ------------------
 7777|    194|      return 8905;
 7778|    194|    }
 7779|      0|    break;
 7780|       |    /* ltlarr */
 7781|    194|  case 0x54491cf7689dcc9aULL:
  ------------------
  |  Branch (7781:3): [True: 194, False: 516k]
  ------------------
 7782|    194|    if (len == 6) {
  ------------------
  |  Branch (7782:9): [True: 194, False: 0]
  ------------------
 7783|    194|      return 10614;
 7784|    194|    }
 7785|      0|    break;
 7786|       |    /* ltquest */
 7787|    194|  case 0xa5dd420ba9b4fbd5ULL:
  ------------------
  |  Branch (7787:3): [True: 194, False: 516k]
  ------------------
 7788|    194|    if (len == 7) {
  ------------------
  |  Branch (7788:9): [True: 194, False: 0]
  ------------------
 7789|    194|      return 10875;
 7790|    194|    }
 7791|      0|    break;
 7792|       |    /* ltrPar */
 7793|    194|  case 0x92cdb2f13a3ac2e0ULL:
  ------------------
  |  Branch (7793:3): [True: 194, False: 516k]
  ------------------
 7794|    194|    if (len == 6) {
  ------------------
  |  Branch (7794:9): [True: 194, False: 0]
  ------------------
 7795|    194|      return 10646;
 7796|    194|    }
 7797|      0|    break;
 7798|       |    /* ltri */
 7799|    194|  case 0xb90226adf654256cULL:
  ------------------
  |  Branch (7799:3): [True: 194, False: 516k]
  ------------------
 7800|    194|    if (len == 4) {
  ------------------
  |  Branch (7800:9): [True: 194, False: 0]
  ------------------
 7801|    194|      return 9667;
 7802|    194|    }
 7803|      0|    break;
 7804|       |    /* ltrie */
 7805|    194|  case 0xb2ccc29990faee4bULL:
  ------------------
  |  Branch (7805:3): [True: 194, False: 516k]
  ------------------
 7806|    194|    if (len == 5) {
  ------------------
  |  Branch (7806:9): [True: 194, False: 0]
  ------------------
 7807|    194|      return 8884;
 7808|    194|    }
 7809|      0|    break;
 7810|       |    /* ltrif */
 7811|    194|  case 0xb2ccc39990faeffeULL:
  ------------------
  |  Branch (7811:3): [True: 194, False: 516k]
  ------------------
 7812|    194|    if (len == 5) {
  ------------------
  |  Branch (7812:9): [True: 194, False: 0]
  ------------------
 7813|    194|      return 9666;
 7814|    194|    }
 7815|      0|    break;
 7816|       |    /* lurdshar */
 7817|    194|  case 0xb64630a0f47316b0ULL:
  ------------------
  |  Branch (7817:3): [True: 194, False: 516k]
  ------------------
 7818|    194|    if (len == 8) {
  ------------------
  |  Branch (7818:9): [True: 194, False: 0]
  ------------------
 7819|    194|      return 10570;
 7820|    194|    }
 7821|      0|    break;
 7822|       |    /* luruhar */
 7823|    194|  case 0x7cec9409e7db2d02ULL:
  ------------------
  |  Branch (7823:3): [True: 194, False: 516k]
  ------------------
 7824|    194|    if (len == 7) {
  ------------------
  |  Branch (7824:9): [True: 194, False: 0]
  ------------------
 7825|    194|      return 10598;
 7826|    194|    }
 7827|      0|    break;
 7828|       |    /* mDDot */
 7829|    194|  case 0x288ac6b537e55dbbULL:
  ------------------
  |  Branch (7829:3): [True: 194, False: 516k]
  ------------------
 7830|    194|    if (len == 5) {
  ------------------
  |  Branch (7830:9): [True: 194, False: 0]
  ------------------
 7831|    194|      return 8762;
 7832|    194|    }
 7833|      0|    break;
 7834|       |    /* macr */
 7835|    194|  case 0x1f6e56a2ceaa4b6eULL:
  ------------------
  |  Branch (7835:3): [True: 194, False: 516k]
  ------------------
 7836|    194|    if (len == 4) {
  ------------------
  |  Branch (7836:9): [True: 194, False: 0]
  ------------------
 7837|    194|      return 175;
 7838|    194|    }
 7839|      0|    break;
 7840|       |    /* male */
 7841|    194|  case 0x1f6a59a2cea667b0ULL:
  ------------------
  |  Branch (7841:3): [True: 194, False: 516k]
  ------------------
 7842|    194|    if (len == 4) {
  ------------------
  |  Branch (7842:9): [True: 194, False: 0]
  ------------------
 7843|    194|      return 9794;
 7844|    194|    }
 7845|      0|    break;
 7846|       |    /* malt */
 7847|    194|  case 0x1f6a4aa2cea64e33ULL:
  ------------------
  |  Branch (7847:3): [True: 194, False: 516k]
  ------------------
 7848|    194|    if (len == 4) {
  ------------------
  |  Branch (7848:9): [True: 194, False: 0]
  ------------------
 7849|    194|      return 10016;
 7850|    194|    }
 7851|      0|    break;
 7852|       |    /* maltese */
 7853|    194|  case 0xa539a41312f19772ULL:
  ------------------
  |  Branch (7853:3): [True: 194, False: 516k]
  ------------------
 7854|    194|    if (len == 7) {
  ------------------
  |  Branch (7854:9): [True: 194, False: 0]
  ------------------
 7855|    194|      return 10016;
 7856|    194|    }
 7857|      0|    break;
 7858|       |    /* map */
 7859|    195|  case 0x080f5919176d2d91ULL:
  ------------------
  |  Branch (7859:3): [True: 195, False: 516k]
  ------------------
 7860|    195|    if (len == 3) {
  ------------------
  |  Branch (7860:9): [True: 195, False: 0]
  ------------------
 7861|    195|      return 8614;
 7862|    195|    }
 7863|      0|    break;
 7864|       |    /* mapsto */
 7865|    203|  case 0x3756023ce999f2bbULL:
  ------------------
  |  Branch (7865:3): [True: 203, False: 516k]
  ------------------
 7866|    203|    if (len == 6) {
  ------------------
  |  Branch (7866:9): [True: 203, False: 0]
  ------------------
 7867|    203|      return 8614;
 7868|    203|    }
 7869|      0|    break;
 7870|       |    /* mapstodown */
 7871|    194|  case 0x393de27982cbe417ULL:
  ------------------
  |  Branch (7871:3): [True: 194, False: 516k]
  ------------------
 7872|    194|    if (len == 10) {
  ------------------
  |  Branch (7872:9): [True: 194, False: 0]
  ------------------
 7873|    194|      return 8615;
 7874|    194|    }
 7875|      0|    break;
 7876|       |    /* mapstoleft */
 7877|    194|  case 0x9a3c70382aaae882ULL:
  ------------------
  |  Branch (7877:3): [True: 194, False: 516k]
  ------------------
 7878|    194|    if (len == 10) {
  ------------------
  |  Branch (7878:9): [True: 194, False: 0]
  ------------------
 7879|    194|      return 8612;
 7880|    194|    }
 7881|      0|    break;
 7882|       |    /* mapstoup */
 7883|    194|  case 0x5464b618d1914b4eULL:
  ------------------
  |  Branch (7883:3): [True: 194, False: 516k]
  ------------------
 7884|    194|    if (len == 8) {
  ------------------
  |  Branch (7884:9): [True: 194, False: 0]
  ------------------
 7885|    194|      return 8613;
 7886|    194|    }
 7887|      0|    break;
 7888|       |    /* marker */
 7889|    194|  case 0xeddcb72b15486e77ULL:
  ------------------
  |  Branch (7889:3): [True: 194, False: 516k]
  ------------------
 7890|    194|    if (len == 6) {
  ------------------
  |  Branch (7890:9): [True: 194, False: 0]
  ------------------
 7891|    194|      return 9646;
 7892|    194|    }
 7893|      0|    break;
 7894|       |    /* mcomma */
 7895|    194|  case 0xacb3f182a85c325bULL:
  ------------------
  |  Branch (7895:3): [True: 194, False: 516k]
  ------------------
 7896|    194|    if (len == 6) {
  ------------------
  |  Branch (7896:9): [True: 194, False: 0]
  ------------------
 7897|    194|      return 10793;
 7898|    194|    }
 7899|      0|    break;
 7900|       |    /* mcy */
 7901|    194|  case 0x08164c1917733628ULL:
  ------------------
  |  Branch (7901:3): [True: 194, False: 516k]
  ------------------
 7902|    194|    if (len == 3) {
  ------------------
  |  Branch (7902:9): [True: 194, False: 0]
  ------------------
 7903|    194|      return 1084;
 7904|    194|    }
 7905|      0|    break;
 7906|       |    /* mdash */
 7907|    194|  case 0xeaeebebd079118f4ULL:
  ------------------
  |  Branch (7907:3): [True: 194, False: 516k]
  ------------------
 7908|    194|    if (len == 5) {
  ------------------
  |  Branch (7908:9): [True: 194, False: 0]
  ------------------
 7909|    194|      return 8212;
 7910|    194|    }
 7911|      0|    break;
 7912|       |    /* measuredangle */
 7913|      0|  case 0x64ca94fe280a160cULL:
  ------------------
  |  Branch (7913:3): [True: 0, False: 516k]
  ------------------
 7914|      0|    if (len == 13) {
  ------------------
  |  Branch (7914:9): [True: 0, False: 0]
  ------------------
 7915|      0|      return 8737;
 7916|      0|    }
 7917|      0|    break;
 7918|       |    /* mfr */
 7919|    194|  case 0x08205519177b99f8ULL:
  ------------------
  |  Branch (7919:3): [True: 194, False: 516k]
  ------------------
 7920|    194|    if (len == 3) {
  ------------------
  |  Branch (7920:9): [True: 194, False: 0]
  ------------------
 7921|    194|      return 120106;
 7922|    194|    }
 7923|      0|    break;
 7924|       |    /* mho */
 7925|    194|  case 0x07f1621917543f4dULL:
  ------------------
  |  Branch (7925:3): [True: 194, False: 516k]
  ------------------
 7926|    194|    if (len == 3) {
  ------------------
  |  Branch (7926:9): [True: 194, False: 0]
  ------------------
 7927|    194|      return 8487;
 7928|    194|    }
 7929|      0|    break;
 7930|       |    /* micro */
 7931|    194|  case 0x1140a762783f5b1bULL:
  ------------------
  |  Branch (7931:3): [True: 194, False: 516k]
  ------------------
 7932|    194|    if (len == 5) {
  ------------------
  |  Branch (7932:9): [True: 194, False: 0]
  ------------------
 7933|    194|      return 181;
 7934|    194|    }
 7935|      0|    break;
 7936|       |    /* mid */
 7937|    195|  case 0x07f43d1917563645ULL:
  ------------------
  |  Branch (7937:3): [True: 195, False: 516k]
  ------------------
 7938|    195|    if (len == 3) {
  ------------------
  |  Branch (7938:9): [True: 195, False: 0]
  ------------------
 7939|    195|      return 8739;
 7940|    195|    }
 7941|      0|    break;
 7942|       |    /* midast */
 7943|    194|  case 0x7539668d8b5c947bULL:
  ------------------
  |  Branch (7943:3): [True: 194, False: 516k]
  ------------------
 7944|    194|    if (len == 6) {
  ------------------
  |  Branch (7944:9): [True: 194, False: 0]
  ------------------
 7945|    194|      return 42;
 7946|    194|    }
 7947|      0|    break;
 7948|       |    /* midcir */
 7949|    194|  case 0x8744a68d95c9cce9ULL:
  ------------------
  |  Branch (7949:3): [True: 194, False: 516k]
  ------------------
 7950|    194|    if (len == 6) {
  ------------------
  |  Branch (7950:9): [True: 194, False: 0]
  ------------------
 7951|    194|      return 10992;
 7952|    194|    }
 7953|      0|    break;
 7954|       |    /* middot */
 7955|    194|  case 0x5bf4d98d7d412640ULL:
  ------------------
  |  Branch (7955:3): [True: 194, False: 516k]
  ------------------
 7956|    194|    if (len == 6) {
  ------------------
  |  Branch (7956:9): [True: 194, False: 0]
  ------------------
 7957|    194|      return 183;
 7958|    194|    }
 7959|      0|    break;
 7960|       |    /* minus */
 7961|    194|  case 0x8156a862b7957cafULL:
  ------------------
  |  Branch (7961:3): [True: 194, False: 516k]
  ------------------
 7962|    194|    if (len == 5) {
  ------------------
  |  Branch (7962:9): [True: 194, False: 0]
  ------------------
 7963|    194|      return 8722;
 7964|    194|    }
 7965|      0|    break;
 7966|       |    /* minusb */
 7967|    194|  case 0x5bbcecbdf3031057ULL:
  ------------------
  |  Branch (7967:3): [True: 194, False: 516k]
  ------------------
 7968|    194|    if (len == 6) {
  ------------------
  |  Branch (7968:9): [True: 194, False: 0]
  ------------------
 7969|    194|      return 8863;
 7970|    194|    }
 7971|      0|    break;
 7972|       |    /* minusd */
 7973|    194|  case 0x5bbceabdf3030cf1ULL:
  ------------------
  |  Branch (7973:3): [True: 194, False: 516k]
  ------------------
 7974|    194|    if (len == 6) {
  ------------------
  |  Branch (7974:9): [True: 194, False: 0]
  ------------------
 7975|    194|      return 8760;
 7976|    194|    }
 7977|      0|    break;
 7978|       |    /* minusdu */
 7979|    194|  case 0xe50f64c3ee2e444cULL:
  ------------------
  |  Branch (7979:3): [True: 194, False: 516k]
  ------------------
 7980|    194|    if (len == 7) {
  ------------------
  |  Branch (7980:9): [True: 194, False: 0]
  ------------------
 7981|    194|      return 10794;
 7982|    194|    }
 7983|      0|    break;
 7984|       |    /* mlcp */
 7985|    194|  case 0xf43391a2b6340e67ULL:
  ------------------
  |  Branch (7985:3): [True: 194, False: 516k]
  ------------------
 7986|    194|    if (len == 4) {
  ------------------
  |  Branch (7986:9): [True: 194, False: 0]
  ------------------
 7987|    194|      return 10971;
 7988|    194|    }
 7989|      0|    break;
 7990|       |    /* mldr */
 7991|    194|  case 0xf41b89a2b61f6eeeULL:
  ------------------
  |  Branch (7991:3): [True: 194, False: 516k]
  ------------------
 7992|    194|    if (len == 4) {
  ------------------
  |  Branch (7992:9): [True: 194, False: 0]
  ------------------
 7993|    194|      return 8230;
 7994|    194|    }
 7995|      0|    break;
 7996|       |    /* mnplus */
 7997|    194|  case 0x3540aec4e6e65cd6ULL:
  ------------------
  |  Branch (7997:3): [True: 194, False: 516k]
  ------------------
 7998|    194|    if (len == 6) {
  ------------------
  |  Branch (7998:9): [True: 194, False: 0]
  ------------------
 7999|    194|      return 8723;
 8000|    194|    }
 8001|      0|    break;
 8002|       |    /* models */
 8003|    194|  case 0xbb021c3315a8cc0bULL:
  ------------------
  |  Branch (8003:3): [True: 194, False: 516k]
  ------------------
 8004|    194|    if (len == 6) {
  ------------------
  |  Branch (8004:9): [True: 194, False: 0]
  ------------------
 8005|    194|      return 8871;
 8006|    194|    }
 8007|      0|    break;
 8008|       |    /* mopf */
 8009|    194|  case 0x0d151aa2c3faf87bULL:
  ------------------
  |  Branch (8009:3): [True: 194, False: 516k]
  ------------------
 8010|    194|    if (len == 4) {
  ------------------
  |  Branch (8010:9): [True: 194, False: 0]
  ------------------
 8011|    194|      return 120158;
 8012|    194|    }
 8013|      0|    break;
 8014|       |    /* mp */
 8015|    206|  case 0x08a94a07b5502cf8ULL:
  ------------------
  |  Branch (8015:3): [True: 206, False: 516k]
  ------------------
 8016|    206|    if (len == 2) {
  ------------------
  |  Branch (8016:9): [True: 206, False: 0]
  ------------------
 8017|    206|      return 8723;
 8018|    206|    }
 8019|      0|    break;
 8020|       |    /* mscr */
 8021|    194|  case 0xa7ea10a28b77420cULL:
  ------------------
  |  Branch (8021:3): [True: 194, False: 516k]
  ------------------
 8022|    194|    if (len == 4) {
  ------------------
  |  Branch (8022:9): [True: 194, False: 0]
  ------------------
 8023|    194|      return 120002;
 8024|    194|    }
 8025|      0|    break;
 8026|       |    /* mstpos */
 8027|    194|  case 0xfa0e91367dccd2bfULL:
  ------------------
  |  Branch (8027:3): [True: 194, False: 516k]
  ------------------
 8028|    194|    if (len == 6) {
  ------------------
  |  Branch (8028:9): [True: 194, False: 0]
  ------------------
 8029|    194|      return 8766;
 8030|    194|    }
 8031|      0|    break;
 8032|       |    /* mu */
 8033|    194|  case 0x08a94f07b5503577ULL:
  ------------------
  |  Branch (8033:3): [True: 194, False: 516k]
  ------------------
 8034|    194|    if (len == 2) {
  ------------------
  |  Branch (8034:9): [True: 194, False: 0]
  ------------------
 8035|    194|      return 956;
 8036|    194|    }
 8037|      0|    break;
 8038|       |    /* multimap */
 8039|    194|  case 0x473b190659bc52bcULL:
  ------------------
  |  Branch (8039:3): [True: 194, False: 516k]
  ------------------
 8040|    194|    if (len == 8) {
  ------------------
  |  Branch (8040:9): [True: 194, False: 0]
  ------------------
 8041|    194|      return 8888;
 8042|    194|    }
 8043|      0|    break;
 8044|       |    /* mumap */
 8045|    200|  case 0x9c6900400418a7d7ULL:
  ------------------
  |  Branch (8045:3): [True: 200, False: 516k]
  ------------------
 8046|    200|    if (len == 5) {
  ------------------
  |  Branch (8046:9): [True: 200, False: 0]
  ------------------
 8047|    200|      return 8888;
 8048|    200|    }
 8049|      0|    break;
 8050|       |    /* nLeftarrow */
 8051|    194|  case 0x87adad457d2d347dULL:
  ------------------
  |  Branch (8051:3): [True: 194, False: 516k]
  ------------------
 8052|    194|    if (len == 10) {
  ------------------
  |  Branch (8052:9): [True: 194, False: 0]
  ------------------
 8053|    194|      return 8653;
 8054|    194|    }
 8055|      0|    break;
 8056|       |    /* nLeftrightarrow */
 8057|      0|  case 0xf8dd537f87909debULL:
  ------------------
  |  Branch (8057:3): [True: 0, False: 516k]
  ------------------
 8058|      0|    if (len == 15) {
  ------------------
  |  Branch (8058:9): [True: 0, False: 0]
  ------------------
 8059|      0|      return 8654;
 8060|      0|    }
 8061|      0|    break;
 8062|       |    /* nRightarrow */
 8063|      0|  case 0x9bbe79c1b36ba232ULL:
  ------------------
  |  Branch (8063:3): [True: 0, False: 516k]
  ------------------
 8064|      0|    if (len == 11) {
  ------------------
  |  Branch (8064:9): [True: 0, False: 0]
  ------------------
 8065|      0|      return 8655;
 8066|      0|    }
 8067|      0|    break;
 8068|       |    /* nVDash */
 8069|    194|  case 0x78f3b70af3d01e75ULL:
  ------------------
  |  Branch (8069:3): [True: 194, False: 516k]
  ------------------
 8070|    194|    if (len == 6) {
  ------------------
  |  Branch (8070:9): [True: 194, False: 0]
  ------------------
 8071|    194|      return 8879;
 8072|    194|    }
 8073|      0|    break;
 8074|       |    /* nVdash */
 8075|    194|  case 0xa381b816f5409255ULL:
  ------------------
  |  Branch (8075:3): [True: 194, False: 516k]
  ------------------
 8076|    194|    if (len == 6) {
  ------------------
  |  Branch (8076:9): [True: 194, False: 0]
  ------------------
 8077|    194|      return 8878;
 8078|    194|    }
 8079|      0|    break;
 8080|       |    /* nabla */
 8081|    194|  case 0x4eda67ffbb18e01dULL:
  ------------------
  |  Branch (8081:3): [True: 194, False: 516k]
  ------------------
 8082|    194|    if (len == 5) {
  ------------------
  |  Branch (8082:9): [True: 194, False: 0]
  ------------------
 8083|    194|      return 8711;
 8084|    194|    }
 8085|      0|    break;
 8086|       |    /* nacute */
 8087|    194|  case 0x8b843c95fe1c34dfULL:
  ------------------
  |  Branch (8087:3): [True: 194, False: 516k]
  ------------------
 8088|    194|    if (len == 6) {
  ------------------
  |  Branch (8088:9): [True: 194, False: 0]
  ------------------
 8089|    194|      return 324;
 8090|    194|    }
 8091|      0|    break;
 8092|       |    /* nap */
 8093|    195|  case 0x212bbe19256705c0ULL:
  ------------------
  |  Branch (8093:3): [True: 195, False: 516k]
  ------------------
 8094|    195|    if (len == 3) {
  ------------------
  |  Branch (8094:9): [True: 195, False: 0]
  ------------------
 8095|    195|      return 8777;
 8096|    195|    }
 8097|      0|    break;
 8098|       |    /* napos */
 8099|    194|  case 0xb31493ff62e7c62aULL:
  ------------------
  |  Branch (8099:3): [True: 194, False: 516k]
  ------------------
 8100|    194|    if (len == 5) {
  ------------------
  |  Branch (8100:9): [True: 194, False: 0]
  ------------------
 8101|    194|      return 329;
 8102|    194|    }
 8103|      0|    break;
 8104|       |    /* napprox */
 8105|    195|  case 0xbfaa6b74b8644ec9ULL:
  ------------------
  |  Branch (8105:3): [True: 195, False: 516k]
  ------------------
 8106|    195|    if (len == 7) {
  ------------------
  |  Branch (8106:9): [True: 195, False: 0]
  ------------------
 8107|    195|      return 8777;
 8108|    195|    }
 8109|      0|    break;
 8110|       |    /* natur */
 8111|    194|  case 0xd76730ff77f4636bULL:
  ------------------
  |  Branch (8111:3): [True: 194, False: 516k]
  ------------------
 8112|    194|    if (len == 5) {
  ------------------
  |  Branch (8112:9): [True: 194, False: 0]
  ------------------
 8113|    194|      return 9838;
 8114|    194|    }
 8115|      0|    break;
 8116|       |    /* natural */
 8117|    194|  case 0xea8be030b0090316ULL:
  ------------------
  |  Branch (8117:3): [True: 194, False: 516k]
  ------------------
 8118|    194|    if (len == 7) {
  ------------------
  |  Branch (8118:9): [True: 194, False: 0]
  ------------------
 8119|    194|      return 9838;
 8120|    194|    }
 8121|      0|    break;
 8122|       |    /* naturals */
 8123|    194|  case 0x94b157bb1f50c49fULL:
  ------------------
  |  Branch (8123:3): [True: 194, False: 516k]
  ------------------
 8124|    194|    if (len == 8) {
  ------------------
  |  Branch (8124:9): [True: 194, False: 0]
  ------------------
 8125|    194|      return 8469;
 8126|    194|    }
 8127|      0|    break;
 8128|       |    /* nbsp */
 8129|    194|  case 0xdded4bba9c6dfd9aULL:
  ------------------
  |  Branch (8129:3): [True: 194, False: 516k]
  ------------------
 8130|    194|    if (len == 4) {
  ------------------
  |  Branch (8130:9): [True: 194, False: 0]
  ------------------
 8131|    194|      return 160;
 8132|    194|    }
 8133|      0|    break;
 8134|       |    /* ncap */
 8135|    194|  case 0xd6c010ba98c8bdbfULL:
  ------------------
  |  Branch (8135:3): [True: 194, False: 516k]
  ------------------
 8136|    194|    if (len == 4) {
  ------------------
  |  Branch (8136:9): [True: 194, False: 0]
  ------------------
 8137|    194|      return 10819;
 8138|    194|    }
 8139|      0|    break;
 8140|       |    /* ncaron */
 8141|    194|  case 0x1bb534edfe1fb170ULL:
  ------------------
  |  Branch (8141:3): [True: 194, False: 516k]
  ------------------
 8142|    194|    if (len == 6) {
  ------------------
  |  Branch (8142:9): [True: 194, False: 0]
  ------------------
 8143|    194|      return 328;
 8144|    194|    }
 8145|      0|    break;
 8146|       |    /* ncedil */
 8147|    194|  case 0xe3d840ca8a586002ULL:
  ------------------
  |  Branch (8147:3): [True: 194, False: 516k]
  ------------------
 8148|    194|    if (len == 6) {
  ------------------
  |  Branch (8148:9): [True: 194, False: 0]
  ------------------
 8149|    194|      return 326;
 8150|    194|    }
 8151|      0|    break;
 8152|       |    /* ncong */
 8153|    194|  case 0xc3687711a7bfd078ULL:
  ------------------
  |  Branch (8153:3): [True: 194, False: 516k]
  ------------------
 8154|    194|    if (len == 5) {
  ------------------
  |  Branch (8154:9): [True: 194, False: 0]
  ------------------
 8155|    194|      return 8775;
 8156|    194|    }
 8157|      0|    break;
 8158|       |    /* ncup */
 8159|    194|  case 0xd67c18ba988efe8bULL:
  ------------------
  |  Branch (8159:3): [True: 194, False: 516k]
  ------------------
 8160|    194|    if (len == 4) {
  ------------------
  |  Branch (8160:9): [True: 194, False: 0]
  ------------------
 8161|    194|      return 10818;
 8162|    194|    }
 8163|      0|    break;
 8164|       |    /* ncy */
 8165|    198|  case 0x2132d319256d481dULL:
  ------------------
  |  Branch (8165:3): [True: 198, False: 516k]
  ------------------
 8166|    198|    if (len == 3) {
  ------------------
  |  Branch (8166:9): [True: 198, False: 0]
  ------------------
 8167|    198|      return 1085;
 8168|    198|    }
 8169|      0|    break;
 8170|       |    /* ndash */
 8171|    194|  case 0x569bac295cfedae9ULL:
  ------------------
  |  Branch (8171:3): [True: 194, False: 516k]
  ------------------
 8172|    194|    if (len == 5) {
  ------------------
  |  Branch (8172:9): [True: 194, False: 0]
  ------------------
 8173|    194|      return 8211;
 8174|    194|    }
 8175|      0|    break;
 8176|       |    /* ne */
 8177|    198|  case 0x08b34f07b55889fcULL:
  ------------------
  |  Branch (8177:3): [True: 198, False: 516k]
  ------------------
 8178|    198|    if (len == 2) {
  ------------------
  |  Branch (8178:9): [True: 198, False: 0]
  ------------------
 8179|    198|      return 8800;
 8180|    198|    }
 8181|      0|    break;
 8182|       |    /* neArr */
 8183|    194|  case 0x8788461f38dccd47ULL:
  ------------------
  |  Branch (8183:3): [True: 194, False: 516k]
  ------------------
 8184|    194|    if (len == 5) {
  ------------------
  |  Branch (8184:9): [True: 194, False: 0]
  ------------------
 8185|    194|      return 8663;
 8186|    194|    }
 8187|      0|    break;
 8188|       |    /* nearhk */
 8189|    194|  case 0x01ea5201a0651e6aULL:
  ------------------
  |  Branch (8189:3): [True: 194, False: 516k]
  ------------------
 8190|    194|    if (len == 6) {
  ------------------
  |  Branch (8190:9): [True: 194, False: 0]
  ------------------
 8191|    194|      return 10532;
 8192|    194|    }
 8193|      0|    break;
 8194|       |    /* nearr */
 8195|    194|  case 0x7180261e9b2573e7ULL:
  ------------------
  |  Branch (8195:3): [True: 194, False: 516k]
  ------------------
 8196|    194|    if (len == 5) {
  ------------------
  |  Branch (8196:9): [True: 194, False: 0]
  ------------------
 8197|    194|      return 8599;
 8198|    194|    }
 8199|      0|    break;
 8200|       |    /* nearrow */
 8201|    194|  case 0x6230fbc3f581ac9dULL:
  ------------------
  |  Branch (8201:3): [True: 194, False: 516k]
  ------------------
 8202|    194|    if (len == 7) {
  ------------------
  |  Branch (8202:9): [True: 194, False: 0]
  ------------------
 8203|    194|      return 8599;
 8204|    194|    }
 8205|      0|    break;
 8206|       |    /* nequiv */
 8207|    194|  case 0x280aeb7e0581c151ULL:
  ------------------
  |  Branch (8207:3): [True: 194, False: 516k]
  ------------------
 8208|    194|    if (len == 6) {
  ------------------
  |  Branch (8208:9): [True: 194, False: 0]
  ------------------
 8209|    194|      return 8802;
 8210|    194|    }
 8211|      0|    break;
 8212|       |    /* nesear */
 8213|    194|  case 0x71ad638b50e540bbULL:
  ------------------
  |  Branch (8213:3): [True: 194, False: 516k]
  ------------------
 8214|    194|    if (len == 6) {
  ------------------
  |  Branch (8214:9): [True: 194, False: 0]
  ------------------
 8215|    194|      return 10536;
 8216|    194|    }
 8217|      0|    break;
 8218|       |    /* nexist */
 8219|    194|  case 0xaaaf8f30cc8ba490ULL:
  ------------------
  |  Branch (8219:3): [True: 194, False: 516k]
  ------------------
 8220|    194|    if (len == 6) {
  ------------------
  |  Branch (8220:9): [True: 194, False: 0]
  ------------------
 8221|    194|      return 8708;
 8222|    194|    }
 8223|      0|    break;
 8224|       |    /* nexists */
 8225|    194|  case 0x93f532eb91492db9ULL:
  ------------------
  |  Branch (8225:3): [True: 194, False: 516k]
  ------------------
 8226|    194|    if (len == 7) {
  ------------------
  |  Branch (8226:9): [True: 194, False: 0]
  ------------------
 8227|    194|      return 8708;
 8228|    194|    }
 8229|      0|    break;
 8230|       |    /* nfr */
 8231|    194|  case 0x2143ca19257bac05ULL:
  ------------------
  |  Branch (8231:3): [True: 194, False: 516k]
  ------------------
 8232|    194|    if (len == 3) {
  ------------------
  |  Branch (8232:9): [True: 194, False: 0]
  ------------------
 8233|    194|      return 120107;
 8234|    194|    }
 8235|      0|    break;
 8236|       |    /* nge */
 8237|    194|  case 0x213fb7192577a2e5ULL:
  ------------------
  |  Branch (8237:3): [True: 194, False: 516k]
  ------------------
 8238|    194|    if (len == 3) {
  ------------------
  |  Branch (8238:9): [True: 194, False: 0]
  ------------------
 8239|    194|      return 8817;
 8240|    194|    }
 8241|      0|    break;
 8242|       |    /* ngeq */
 8243|    194|  case 0xf6e6b3baaa49417cULL:
  ------------------
  |  Branch (8243:3): [True: 194, False: 516k]
  ------------------
 8244|    194|    if (len == 4) {
  ------------------
  |  Branch (8244:9): [True: 194, False: 0]
  ------------------
 8245|    194|      return 8817;
 8246|    194|    }
 8247|      0|    break;
 8248|       |    /* ngsim */
 8249|    194|  case 0x29c8152f8b726949ULL:
  ------------------
  |  Branch (8249:3): [True: 194, False: 516k]
  ------------------
 8250|    194|    if (len == 5) {
  ------------------
  |  Branch (8250:9): [True: 194, False: 0]
  ------------------
 8251|    194|      return 8821;
 8252|    194|    }
 8253|      0|    break;
 8254|       |    /* ngt */
 8255|    194|  case 0x213fc6192577bc62ULL:
  ------------------
  |  Branch (8255:3): [True: 194, False: 516k]
  ------------------
 8256|    194|    if (len == 3) {
  ------------------
  |  Branch (8256:9): [True: 194, False: 0]
  ------------------
 8257|    194|      return 8815;
 8258|    194|    }
 8259|      0|    break;
 8260|       |    /* ngtr */
 8261|    209|  case 0xf719acbaaa748f30ULL:
  ------------------
  |  Branch (8261:3): [True: 209, False: 516k]
  ------------------
 8262|    209|    if (len == 4) {
  ------------------
  |  Branch (8262:9): [True: 209, False: 0]
  ------------------
 8263|    209|      return 8815;
 8264|    209|    }
 8265|      0|    break;
 8266|       |    /* nhArr */
 8267|    194|  case 0x96f49048ded2f2f2ULL:
  ------------------
  |  Branch (8267:3): [True: 194, False: 516k]
  ------------------
 8268|    194|    if (len == 5) {
  ------------------
  |  Branch (8268:9): [True: 194, False: 0]
  ------------------
 8269|    194|      return 8654;
 8270|    194|    }
 8271|      0|    break;
 8272|       |    /* nharr */
 8273|    194|  case 0x80eb70484119e692ULL:
  ------------------
  |  Branch (8273:3): [True: 194, False: 516k]
  ------------------
 8274|    194|    if (len == 5) {
  ------------------
  |  Branch (8274:9): [True: 194, False: 0]
  ------------------
 8275|    194|      return 8622;
 8276|    194|    }
 8277|      0|    break;
 8278|       |    /* nhpar */
 8279|    194|  case 0xfeca0147f7563e66ULL:
  ------------------
  |  Branch (8279:3): [True: 194, False: 516k]
  ------------------
 8280|    194|    if (len == 5) {
  ------------------
  |  Branch (8280:9): [True: 194, False: 0]
  ------------------
 8281|    194|      return 10994;
 8282|    194|    }
 8283|      0|    break;
 8284|       |    /* ni */
 8285|    201|  case 0x08b35307b55890c8ULL:
  ------------------
  |  Branch (8285:3): [True: 201, False: 516k]
  ------------------
 8286|    201|    if (len == 2) {
  ------------------
  |  Branch (8286:9): [True: 201, False: 0]
  ------------------
 8287|    201|      return 8715;
 8288|    201|    }
 8289|      0|    break;
 8290|       |    /* nis */
 8291|    218|  case 0x2146d119257dedc1ULL:
  ------------------
  |  Branch (8291:3): [True: 218, False: 516k]
  ------------------
 8292|    218|    if (len == 3) {
  ------------------
  |  Branch (8292:9): [True: 218, False: 0]
  ------------------
 8293|    218|      return 8956;
 8294|    218|    }
 8295|      0|    break;
 8296|       |    /* nisd */
 8297|    366|  case 0x0942f2bab4facf5fULL:
  ------------------
  |  Branch (8297:3): [True: 366, False: 516k]
  ------------------
 8298|    366|    if (len == 4) {
  ------------------
  |  Branch (8298:9): [True: 366, False: 0]
  ------------------
 8299|    366|      return 8954;
 8300|    366|    }
 8301|      0|    break;
 8302|       |    /* niv */
 8303|    194|  case 0x2146d419257df2daULL:
  ------------------
  |  Branch (8303:3): [True: 194, False: 516k]
  ------------------
 8304|    194|    if (len == 3) {
  ------------------
  |  Branch (8304:9): [True: 194, False: 0]
  ------------------
 8305|    194|      return 8715;
 8306|    194|    }
 8307|      0|    break;
 8308|       |    /* njcy */
 8309|    254|  case 0x22288cbac2c5bf2dULL:
  ------------------
  |  Branch (8309:3): [True: 254, False: 516k]
  ------------------
 8310|    254|    if (len == 4) {
  ------------------
  |  Branch (8310:9): [True: 254, False: 0]
  ------------------
 8311|    254|      return 1114;
 8312|    254|    }
 8313|      0|    break;
 8314|       |    /* nlArr */
 8315|    196|  case 0x1598e06a36947f76ULL:
  ------------------
  |  Branch (8315:3): [True: 196, False: 516k]
  ------------------
 8316|    196|    if (len == 5) {
  ------------------
  |  Branch (8316:9): [True: 196, False: 0]
  ------------------
 8317|    196|      return 8653;
 8318|    196|    }
 8319|      0|    break;
 8320|       |    /* nlarr */
 8321|    194|  case 0x2ba2006ad44d8bd6ULL:
  ------------------
  |  Branch (8321:3): [True: 194, False: 516k]
  ------------------
 8322|    194|    if (len == 5) {
  ------------------
  |  Branch (8322:9): [True: 194, False: 0]
  ------------------
 8323|    194|      return 8602;
 8324|    194|    }
 8325|      0|    break;
 8326|       |    /* nldr */
 8327|    194|  case 0x3443ddbacd3fd4b1ULL:
  ------------------
  |  Branch (8327:3): [True: 194, False: 516k]
  ------------------
 8328|    194|    if (len == 4) {
  ------------------
  |  Branch (8328:9): [True: 194, False: 0]
  ------------------
 8329|    194|      return 8229;
 8330|    194|    }
 8331|      0|    break;
 8332|       |    /* nle */
 8333|    194|  case 0x2157b719258c34c6ULL:
  ------------------
  |  Branch (8333:3): [True: 194, False: 516k]
  ------------------
 8334|    194|    if (len == 3) {
  ------------------
  |  Branch (8334:9): [True: 194, False: 0]
  ------------------
 8335|    194|      return 8816;
 8336|    194|    }
 8337|      0|    break;
 8338|       |    /* nleftarrow */
 8339|    194|  case 0x3559034f0893641dULL:
  ------------------
  |  Branch (8339:3): [True: 194, False: 516k]
  ------------------
 8340|    194|    if (len == 10) {
  ------------------
  |  Branch (8340:9): [True: 194, False: 0]
  ------------------
 8341|    194|      return 8602;
 8342|    194|    }
 8343|      0|    break;
 8344|       |    /* nleftrightarrow */
 8345|      0|  case 0xfcad04050c077d0bULL:
  ------------------
  |  Branch (8345:3): [True: 0, False: 516k]
  ------------------
 8346|      0|    if (len == 15) {
  ------------------
  |  Branch (8346:9): [True: 0, False: 0]
  ------------------
 8347|      0|      return 8622;
 8348|      0|    }
 8349|      0|    break;
 8350|       |    /* nleq */
 8351|    195|  case 0x3440d6bacd3d92f5ULL:
  ------------------
  |  Branch (8351:3): [True: 195, False: 516k]
  ------------------
 8352|    195|    if (len == 4) {
  ------------------
  |  Branch (8352:9): [True: 195, False: 0]
  ------------------
 8353|    195|      return 8816;
 8354|    195|    }
 8355|      0|    break;
 8356|       |    /* nless */
 8357|    194|  case 0x07b9756abf9ba934ULL:
  ------------------
  |  Branch (8357:3): [True: 194, False: 516k]
  ------------------
 8358|    194|    if (len == 5) {
  ------------------
  |  Branch (8358:9): [True: 194, False: 0]
  ------------------
 8359|    194|      return 8814;
 8360|    194|    }
 8361|      0|    break;
 8362|       |    /* nlsim */
 8363|    267|  case 0xa3593d6b17abdf86ULL:
  ------------------
  |  Branch (8363:3): [True: 267, False: 516k]
  ------------------
 8364|    267|    if (len == 5) {
  ------------------
  |  Branch (8364:9): [True: 267, False: 0]
  ------------------
 8365|    267|      return 8820;
 8366|    267|    }
 8367|      0|    break;
 8368|       |    /* nlt */
 8369|    195|  case 0x2157c819258c51a9ULL:
  ------------------
  |  Branch (8369:3): [True: 195, False: 516k]
  ------------------
 8370|    195|    if (len == 3) {
  ------------------
  |  Branch (8370:9): [True: 195, False: 0]
  ------------------
 8371|    195|      return 8814;
 8372|    195|    }
 8373|      0|    break;
 8374|       |    /* nltri */
 8375|    194|  case 0x9bde0c6b13c48f58ULL:
  ------------------
  |  Branch (8375:3): [True: 194, False: 516k]
  ------------------
 8376|    194|    if (len == 5) {
  ------------------
  |  Branch (8376:9): [True: 194, False: 0]
  ------------------
 8377|    194|      return 8938;
 8378|    194|    }
 8379|      0|    break;
 8380|       |    /* nltrie */
 8381|    194|  case 0x9ede56f296ff64a7ULL:
  ------------------
  |  Branch (8381:3): [True: 194, False: 516k]
  ------------------
 8382|    194|    if (len == 6) {
  ------------------
  |  Branch (8382:9): [True: 194, False: 0]
  ------------------
 8383|    194|      return 8940;
 8384|    194|    }
 8385|      0|    break;
 8386|       |    /* nmid */
 8387|    194|  case 0x2d799abac9ef0499ULL:
  ------------------
  |  Branch (8387:3): [True: 194, False: 516k]
  ------------------
 8388|    194|    if (len == 4) {
  ------------------
  |  Branch (8388:9): [True: 194, False: 0]
  ------------------
 8389|    194|      return 8740;
 8390|    194|    }
 8391|      0|    break;
 8392|       |    /* nopf */
 8393|    194|  case 0x3beb18bad14c70c8ULL:
  ------------------
  |  Branch (8393:3): [True: 194, False: 516k]
  ------------------
 8394|    194|    if (len == 4) {
  ------------------
  |  Branch (8394:9): [True: 194, False: 0]
  ------------------
 8395|    194|      return 120159;
 8396|    194|    }
 8397|      0|    break;
 8398|       |    /* not */
 8399|    194|  case 0x215ad619258e9f4aULL:
  ------------------
  |  Branch (8399:3): [True: 194, False: 516k]
  ------------------
 8400|    194|    if (len == 3) {
  ------------------
  |  Branch (8400:9): [True: 194, False: 0]
  ------------------
 8401|    194|      return 172;
 8402|    194|    }
 8403|      0|    break;
 8404|       |    /* notin */
 8405|    194|  case 0x40677171b938df15ULL:
  ------------------
  |  Branch (8405:3): [True: 194, False: 516k]
  ------------------
 8406|    194|    if (len == 5) {
  ------------------
  |  Branch (8406:9): [True: 194, False: 0]
  ------------------
 8407|    194|      return 8713;
 8408|    194|    }
 8409|      0|    break;
 8410|       |    /* notinva */
 8411|    194|  case 0x343705e5d6f6c488ULL:
  ------------------
  |  Branch (8411:3): [True: 194, False: 516k]
  ------------------
 8412|    194|    if (len == 7) {
  ------------------
  |  Branch (8412:9): [True: 194, False: 0]
  ------------------
 8413|    194|      return 8713;
 8414|    194|    }
 8415|      0|    break;
 8416|       |    /* notinvb */
 8417|    194|  case 0x343708e5d6f6c9a1ULL:
  ------------------
  |  Branch (8417:3): [True: 194, False: 516k]
  ------------------
 8418|    194|    if (len == 7) {
  ------------------
  |  Branch (8418:9): [True: 194, False: 0]
  ------------------
 8419|    194|      return 8951;
 8420|    194|    }
 8421|      0|    break;
 8422|       |    /* notinvc */
 8423|    194|  case 0x343707e5d6f6c7eeULL:
  ------------------
  |  Branch (8423:3): [True: 194, False: 516k]
  ------------------
 8424|    194|    if (len == 7) {
  ------------------
  |  Branch (8424:9): [True: 194, False: 0]
  ------------------
 8425|    194|      return 8950;
 8426|    194|    }
 8427|      0|    break;
 8428|       |    /* notni */
 8429|    194|  case 0x406b5271b93c933fULL:
  ------------------
  |  Branch (8429:3): [True: 194, False: 516k]
  ------------------
 8430|    194|    if (len == 5) {
  ------------------
  |  Branch (8430:9): [True: 194, False: 0]
  ------------------
 8431|    194|      return 8716;
 8432|    194|    }
 8433|      0|    break;
 8434|       |    /* notniva */
 8435|    194|  case 0xfcb8f2f087dff31eULL:
  ------------------
  |  Branch (8435:3): [True: 194, False: 516k]
  ------------------
 8436|    194|    if (len == 7) {
  ------------------
  |  Branch (8436:9): [True: 194, False: 0]
  ------------------
 8437|    194|      return 8716;
 8438|    194|    }
 8439|      0|    break;
 8440|       |    /* notnivb */
 8441|    194|  case 0xfcb8f1f087dff16bULL:
  ------------------
  |  Branch (8441:3): [True: 194, False: 516k]
  ------------------
 8442|    194|    if (len == 7) {
  ------------------
  |  Branch (8442:9): [True: 194, False: 0]
  ------------------
 8443|    194|      return 8958;
 8444|    194|    }
 8445|      0|    break;
 8446|       |    /* notnivc */
 8447|    194|  case 0xfcb8f0f087dfefb8ULL:
  ------------------
  |  Branch (8447:3): [True: 194, False: 516k]
  ------------------
 8448|    194|    if (len == 7) {
  ------------------
  |  Branch (8448:9): [True: 194, False: 0]
  ------------------
 8449|    194|      return 8957;
 8450|    194|    }
 8451|      0|    break;
 8452|       |    /* npar */
 8453|    194|  case 0x429e57ba44a1d3acULL:
  ------------------
  |  Branch (8453:3): [True: 194, False: 516k]
  ------------------
 8454|    194|    if (len == 4) {
  ------------------
  |  Branch (8454:9): [True: 194, False: 0]
  ------------------
 8455|    194|      return 8742;
 8456|    194|    }
 8457|      0|    break;
 8458|       |    /* nparallel */
 8459|    194|  case 0x7e3f7f8730674fceULL:
  ------------------
  |  Branch (8459:3): [True: 194, False: 516k]
  ------------------
 8460|    194|    if (len == 9) {
  ------------------
  |  Branch (8460:9): [True: 194, False: 0]
  ------------------
 8461|    194|      return 8742;
 8462|    194|    }
 8463|      0|    break;
 8464|       |    /* npolint */
 8465|    194|  case 0x9ffdd639dfb8d529ULL:
  ------------------
  |  Branch (8465:3): [True: 194, False: 516k]
  ------------------
 8466|    194|    if (len == 7) {
  ------------------
  |  Branch (8466:9): [True: 194, False: 0]
  ------------------
 8467|    194|      return 10772;
 8468|    194|    }
 8469|      0|    break;
 8470|       |    /* npr */
 8471|    194|  case 0x20f8c219253bb2f3ULL:
  ------------------
  |  Branch (8471:3): [True: 194, False: 516k]
  ------------------
 8472|    194|    if (len == 3) {
  ------------------
  |  Branch (8472:9): [True: 194, False: 0]
  ------------------
 8473|    194|      return 8832;
 8474|    194|    }
 8475|      0|    break;
 8476|       |    /* nprcue */
 8477|    194|  case 0x7026ca657a37f66eULL:
  ------------------
  |  Branch (8477:3): [True: 194, False: 516k]
  ------------------
 8478|    194|    if (len == 6) {
  ------------------
  |  Branch (8478:9): [True: 194, False: 0]
  ------------------
 8479|    194|      return 8928;
 8480|    194|    }
 8481|      0|    break;
 8482|       |    /* nprec */
 8483|    195|  case 0x410f0f824b15f733ULL:
  ------------------
  |  Branch (8483:3): [True: 195, False: 516k]
  ------------------
 8484|    195|    if (len == 5) {
  ------------------
  |  Branch (8484:9): [True: 195, False: 0]
  ------------------
 8485|    195|      return 8832;
 8486|    195|    }
 8487|      0|    break;
 8488|       |    /* nrArr */
 8489|    194|  case 0x2c34bb93ea3f6374ULL:
  ------------------
  |  Branch (8489:3): [True: 194, False: 516k]
  ------------------
 8490|    194|    if (len == 5) {
  ------------------
  |  Branch (8490:9): [True: 194, False: 0]
  ------------------
 8491|    194|      return 8655;
 8492|    194|    }
 8493|      0|    break;
 8494|       |    /* nrarr */
 8495|    197|  case 0x3ed7db94851546d4ULL:
  ------------------
  |  Branch (8495:3): [True: 197, False: 516k]
  ------------------
 8496|    197|    if (len == 5) {
  ------------------
  |  Branch (8496:9): [True: 197, False: 0]
  ------------------
 8497|    197|      return 8603;
 8498|    197|    }
 8499|      0|    break;
 8500|       |    /* nrightarrow */
 8501|      0|  case 0x88556137f4662e52ULL:
  ------------------
  |  Branch (8501:3): [True: 0, False: 516k]
  ------------------
 8502|      0|    if (len == 11) {
  ------------------
  |  Branch (8502:9): [True: 0, False: 0]
  ------------------
 8503|      0|      return 8603;
 8504|      0|    }
 8505|      0|    break;
 8506|       |    /* nrtri */
 8507|    194|  case 0xe0c823945026d122ULL:
  ------------------
  |  Branch (8507:3): [True: 194, False: 516k]
  ------------------
 8508|    194|    if (len == 5) {
  ------------------
  |  Branch (8508:9): [True: 194, False: 0]
  ------------------
 8509|    194|      return 8939;
 8510|    194|    }
 8511|      0|    break;
 8512|       |    /* nrtrie */
 8513|    194|  case 0x1ae5bc0431f59ba5ULL:
  ------------------
  |  Branch (8513:3): [True: 194, False: 516k]
  ------------------
 8514|    194|    if (len == 6) {
  ------------------
  |  Branch (8514:9): [True: 194, False: 0]
  ------------------
 8515|    194|      return 8941;
 8516|    194|    }
 8517|      0|    break;
 8518|       |    /* nsc */
 8519|    194|  case 0x20fbb919253dd97fULL:
  ------------------
  |  Branch (8519:3): [True: 194, False: 516k]
  ------------------
 8520|    194|    if (len == 3) {
  ------------------
  |  Branch (8520:9): [True: 194, False: 0]
  ------------------
 8521|    194|      return 8833;
 8522|    194|    }
 8523|      0|    break;
 8524|       |    /* nsccue */
 8525|    194|  case 0x1fe32df296dbefc2ULL:
  ------------------
  |  Branch (8525:3): [True: 194, False: 516k]
  ------------------
 8526|    194|    if (len == 6) {
  ------------------
  |  Branch (8526:9): [True: 194, False: 0]
  ------------------
 8527|    194|      return 8929;
 8528|    194|    }
 8529|      0|    break;
 8530|       |    /* nscr */
 8531|    194|  case 0x499492ba4817d117ULL:
  ------------------
  |  Branch (8531:3): [True: 194, False: 516k]
  ------------------
 8532|    194|    if (len == 4) {
  ------------------
  |  Branch (8532:9): [True: 194, False: 0]
  ------------------
 8533|    194|      return 120003;
 8534|    194|    }
 8535|      0|    break;
 8536|       |    /* nshortmid */
 8537|      0|  case 0xc0a8a73826a97491ULL:
  ------------------
  |  Branch (8537:3): [True: 0, False: 516k]
  ------------------
 8538|      0|    if (len == 9) {
  ------------------
  |  Branch (8538:9): [True: 0, False: 0]
  ------------------
 8539|      0|      return 8740;
 8540|      0|    }
 8541|      0|    break;
 8542|       |    /* nshortparallel */
 8543|      0|  case 0xa8e1dc07e7833806ULL:
  ------------------
  |  Branch (8543:3): [True: 0, False: 516k]
  ------------------
 8544|      0|    if (len == 14) {
  ------------------
  |  Branch (8544:9): [True: 0, False: 0]
  ------------------
 8545|      0|      return 8742;
 8546|      0|    }
 8547|      0|    break;
 8548|       |    /* nsim */
 8549|    195|  case 0x49b693ba4834b930ULL:
  ------------------
  |  Branch (8549:3): [True: 195, False: 516k]
  ------------------
 8550|    195|    if (len == 4) {
  ------------------
  |  Branch (8550:9): [True: 195, False: 0]
  ------------------
 8551|    195|      return 8769;
 8552|    195|    }
 8553|      0|    break;
 8554|       |    /* nsime */
 8555|    194|  case 0x75f65a88b196eb6fULL:
  ------------------
  |  Branch (8555:3): [True: 194, False: 516k]
  ------------------
 8556|    194|    if (len == 5) {
  ------------------
  |  Branch (8556:9): [True: 194, False: 0]
  ------------------
 8557|    194|      return 8772;
 8558|    194|    }
 8559|      0|    break;
 8560|       |    /* nsimeq */
 8561|    194|  case 0x0886f445c37183faULL:
  ------------------
  |  Branch (8561:3): [True: 194, False: 516k]
  ------------------
 8562|    194|    if (len == 6) {
  ------------------
  |  Branch (8562:9): [True: 194, False: 0]
  ------------------
 8563|    194|      return 8772;
 8564|    194|    }
 8565|      0|    break;
 8566|       |    /* nsmid */
 8567|    194|  case 0x5547a5889fa2af84ULL:
  ------------------
  |  Branch (8567:3): [True: 194, False: 516k]
  ------------------
 8568|    194|    if (len == 5) {
  ------------------
  |  Branch (8568:9): [True: 194, False: 0]
  ------------------
 8569|    194|      return 8740;
 8570|    194|    }
 8571|      0|    break;
 8572|       |    /* nspar */
 8573|    194|  case 0xb2c87888d4179ad1ULL:
  ------------------
  |  Branch (8573:3): [True: 194, False: 516k]
  ------------------
 8574|    194|    if (len == 5) {
  ------------------
  |  Branch (8574:9): [True: 194, False: 0]
  ------------------
 8575|    194|      return 8742;
 8576|    194|    }
 8577|      0|    break;
 8578|       |    /* nsqsube */
 8579|    194|  case 0x5c0e910d7853f560ULL:
  ------------------
  |  Branch (8579:3): [True: 194, False: 516k]
  ------------------
 8580|    194|    if (len == 7) {
  ------------------
  |  Branch (8580:9): [True: 194, False: 0]
  ------------------
 8581|    194|      return 8930;
 8582|    194|    }
 8583|      0|    break;
 8584|       |    /* nsqsupe */
 8585|    194|  case 0x5c3ea50d787d3b1eULL:
  ------------------
  |  Branch (8585:3): [True: 194, False: 516k]
  ------------------
 8586|    194|    if (len == 7) {
  ------------------
  |  Branch (8586:9): [True: 194, False: 0]
  ------------------
 8587|    194|      return 8931;
 8588|    194|    }
 8589|      0|    break;
 8590|       |    /* nsub */
 8591|    194|  case 0x49c47aba4840cc11ULL:
  ------------------
  |  Branch (8591:3): [True: 194, False: 516k]
  ------------------
 8592|    194|    if (len == 4) {
  ------------------
  |  Branch (8592:9): [True: 194, False: 0]
  ------------------
 8593|    194|      return 8836;
 8594|    194|    }
 8595|      0|    break;
 8596|       |    /* nsube */
 8597|    194|  case 0x99a8fe88c61b691cULL:
  ------------------
  |  Branch (8597:3): [True: 194, False: 516k]
  ------------------
 8598|    194|    if (len == 5) {
  ------------------
  |  Branch (8598:9): [True: 194, False: 0]
  ------------------
 8599|    194|      return 8840;
 8600|    194|    }
 8601|      0|    break;
 8602|       |    /* nsubseteq */
 8603|    194|  case 0x53d8e3db65277265ULL:
  ------------------
  |  Branch (8603:3): [True: 194, False: 516k]
  ------------------
 8604|    194|    if (len == 9) {
  ------------------
  |  Branch (8604:9): [True: 194, False: 0]
  ------------------
 8605|    194|      return 8840;
 8606|    194|    }
 8607|      0|    break;
 8608|       |    /* nsucc */
 8609|    194|  case 0x99a51488c617a5a7ULL:
  ------------------
  |  Branch (8609:3): [True: 194, False: 516k]
  ------------------
 8610|    194|    if (len == 5) {
  ------------------
  |  Branch (8610:9): [True: 194, False: 0]
  ------------------
 8611|    194|      return 8833;
 8612|    194|    }
 8613|      0|    break;
 8614|       |    /* nsup */
 8615|    195|  case 0x49c488ba4840e3dbULL:
  ------------------
  |  Branch (8615:3): [True: 195, False: 516k]
  ------------------
 8616|    195|    if (len == 4) {
  ------------------
  |  Branch (8616:9): [True: 195, False: 0]
  ------------------
 8617|    195|      return 8837;
 8618|    195|    }
 8619|      0|    break;
 8620|       |    /* nsupe */
 8621|    194|  case 0x99d81288c642fbdaULL:
  ------------------
  |  Branch (8621:3): [True: 194, False: 516k]
  ------------------
 8622|    194|    if (len == 5) {
  ------------------
  |  Branch (8622:9): [True: 194, False: 0]
  ------------------
 8623|    194|      return 8841;
 8624|    194|    }
 8625|      0|    break;
 8626|       |    /* nsupseteq */
 8627|    194|  case 0x8433aebd115f0eefULL:
  ------------------
  |  Branch (8627:3): [True: 194, False: 516k]
  ------------------
 8628|    194|    if (len == 9) {
  ------------------
  |  Branch (8628:9): [True: 194, False: 0]
  ------------------
 8629|    194|      return 8841;
 8630|    194|    }
 8631|      0|    break;
 8632|       |    /* ntgl */
 8633|    194|  case 0x637cedba56befeacULL:
  ------------------
  |  Branch (8633:3): [True: 194, False: 516k]
  ------------------
 8634|    194|    if (len == 4) {
  ------------------
  |  Branch (8634:9): [True: 194, False: 0]
  ------------------
 8635|    194|      return 8825;
 8636|    194|    }
 8637|      0|    break;
 8638|       |    /* ntilde */
 8639|    194|  case 0xc6a4182fa5857abdULL:
  ------------------
  |  Branch (8639:3): [True: 194, False: 516k]
  ------------------
 8640|    194|    if (len == 6) {
  ------------------
  |  Branch (8640:9): [True: 194, False: 0]
  ------------------
 8641|    194|      return 241;
 8642|    194|    }
 8643|      0|    break;
 8644|       |    /* ntlg */
 8645|    196|  case 0x636bf8ba56b09e2aULL:
  ------------------
  |  Branch (8645:3): [True: 196, False: 516k]
  ------------------
 8646|    196|    if (len == 4) {
  ------------------
  |  Branch (8646:9): [True: 196, False: 0]
  ------------------
 8647|    196|      return 8824;
 8648|    196|    }
 8649|      0|    break;
 8650|       |    /* ntriangleleft */
 8651|    194|  case 0x3a5eb3d207e91434ULL:
  ------------------
  |  Branch (8651:3): [True: 194, False: 516k]
  ------------------
 8652|    194|    if (len == 13) {
  ------------------
  |  Branch (8652:9): [True: 194, False: 0]
  ------------------
 8653|    194|      return 8938;
 8654|    194|    }
 8655|      0|    break;
 8656|       |    /* ntrianglelefteq */
 8657|    194|  case 0xd54d8e7919fa63d6ULL:
  ------------------
  |  Branch (8657:3): [True: 194, False: 516k]
  ------------------
 8658|    194|    if (len == 15) {
  ------------------
  |  Branch (8658:9): [True: 194, False: 0]
  ------------------
 8659|    194|      return 8940;
 8660|    194|    }
 8661|      0|    break;
 8662|       |    /* ntriangleright */
 8663|      0|  case 0xb385b5a00feea241ULL:
  ------------------
  |  Branch (8663:3): [True: 0, False: 516k]
  ------------------
 8664|      0|    if (len == 14) {
  ------------------
  |  Branch (8664:9): [True: 0, False: 0]
  ------------------
 8665|      0|      return 8939;
 8666|      0|    }
 8667|      0|    break;
 8668|       |    /* ntrianglerighteq */
 8669|      0|  case 0xb6bdada06b463707ULL:
  ------------------
  |  Branch (8669:3): [True: 0, False: 516k]
  ------------------
 8670|      0|    if (len == 16) {
  ------------------
  |  Branch (8670:9): [True: 0, False: 0]
  ------------------
 8671|      0|      return 8941;
 8672|      0|    }
 8673|      0|    break;
 8674|       |    /* nu */
 8675|    196|  case 0x08b33f07b5586eccULL:
  ------------------
  |  Branch (8675:3): [True: 196, False: 516k]
  ------------------
 8676|    196|    if (len == 2) {
  ------------------
  |  Branch (8676:9): [True: 196, False: 0]
  ------------------
 8677|    196|      return 957;
 8678|    196|    }
 8679|      0|    break;
 8680|       |    /* num */
 8681|    194|  case 0x2102bb192543fb93ULL:
  ------------------
  |  Branch (8681:3): [True: 194, False: 516k]
  ------------------
 8682|    194|    if (len == 3) {
  ------------------
  |  Branch (8682:9): [True: 194, False: 0]
  ------------------
 8683|    194|      return 35;
 8684|    194|    }
 8685|      0|    break;
 8686|       |    /* numero */
 8687|    194|  case 0xaba6920d8c9ee00dULL:
  ------------------
  |  Branch (8687:3): [True: 194, False: 516k]
  ------------------
 8688|    194|    if (len == 6) {
  ------------------
  |  Branch (8688:9): [True: 194, False: 0]
  ------------------
 8689|    194|      return 8470;
 8690|    194|    }
 8691|      0|    break;
 8692|       |    /* numsp */
 8693|    206|  case 0x3584fd9a37fb4870ULL:
  ------------------
  |  Branch (8693:3): [True: 206, False: 516k]
  ------------------
 8694|    206|    if (len == 5) {
  ------------------
  |  Branch (8694:9): [True: 206, False: 0]
  ------------------
 8695|    206|      return 8199;
 8696|    206|    }
 8697|      0|    break;
 8698|       |    /* nvDash */
 8699|    194|  case 0x0e4fd1bc849bb3d5ULL:
  ------------------
  |  Branch (8699:3): [True: 194, False: 516k]
  ------------------
 8700|    194|    if (len == 6) {
  ------------------
  |  Branch (8700:9): [True: 194, False: 0]
  ------------------
 8701|    194|      return 8877;
 8702|    194|    }
 8703|      0|    break;
 8704|       |    /* nvHarr */
 8705|    194|  case 0x0da9f61ce0096da6ULL:
  ------------------
  |  Branch (8705:3): [True: 194, False: 516k]
  ------------------
 8706|    194|    if (len == 6) {
  ------------------
  |  Branch (8706:9): [True: 194, False: 0]
  ------------------
 8707|    194|      return 10500;
 8708|    194|    }
 8709|      0|    break;
 8710|       |    /* nvdash */
 8711|    194|  case 0xe3c1d0b0832b3ff5ULL:
  ------------------
  |  Branch (8711:3): [True: 194, False: 516k]
  ------------------
 8712|    194|    if (len == 6) {
  ------------------
  |  Branch (8712:9): [True: 194, False: 0]
  ------------------
 8713|    194|      return 8876;
 8714|    194|    }
 8715|      0|    break;
 8716|       |    /* nvinfin */
 8717|    194|  case 0x508b5cd0817cfce7ULL:
  ------------------
  |  Branch (8717:3): [True: 194, False: 516k]
  ------------------
 8718|    194|    if (len == 7) {
  ------------------
  |  Branch (8718:9): [True: 194, False: 0]
  ------------------
 8719|    194|      return 10718;
 8720|    194|    }
 8721|      0|    break;
 8722|       |    /* nvlArr */
 8723|    194|  case 0xa32c04f15d1db662ULL:
  ------------------
  |  Branch (8723:3): [True: 194, False: 516k]
  ------------------
 8724|    194|    if (len == 6) {
  ------------------
  |  Branch (8724:9): [True: 194, False: 0]
  ------------------
 8725|    194|      return 10498;
 8726|    194|    }
 8727|      0|    break;
 8728|       |    /* nvrArr */
 8729|    194|  case 0xb9604168898bbc68ULL:
  ------------------
  |  Branch (8729:3): [True: 194, False: 516k]
  ------------------
 8730|    194|    if (len == 6) {
  ------------------
  |  Branch (8730:9): [True: 194, False: 0]
  ------------------
 8731|    194|      return 10499;
 8732|    194|    }
 8733|      0|    break;
 8734|       |    /* nwArr */
 8735|    194|  case 0x1aeaf9acf485d1c9ULL:
  ------------------
  |  Branch (8735:3): [True: 194, False: 516k]
  ------------------
 8736|    194|    if (len == 5) {
  ------------------
  |  Branch (8736:9): [True: 194, False: 0]
  ------------------
 8737|    194|      return 8662;
 8738|    194|    }
 8739|      0|    break;
 8740|       |    /* nwarhk */
 8741|    194|  case 0xc548e1dc68b7b000ULL:
  ------------------
  |  Branch (8741:3): [True: 194, False: 516k]
  ------------------
 8742|    194|    if (len == 6) {
  ------------------
  |  Branch (8742:9): [True: 194, False: 0]
  ------------------
 8743|    194|      return 10531;
 8744|    194|    }
 8745|      0|    break;
 8746|       |    /* nwarr */
 8747|    194|  case 0x0848d9ac59b1a169ULL:
  ------------------
  |  Branch (8747:3): [True: 194, False: 516k]
  ------------------
 8748|    194|    if (len == 5) {
  ------------------
  |  Branch (8748:9): [True: 194, False: 0]
  ------------------
 8749|    194|      return 8598;
 8750|    194|    }
 8751|      0|    break;
 8752|       |    /* nwarrow */
 8753|    194|  case 0x4941da8621473c3fULL:
  ------------------
  |  Branch (8753:3): [True: 194, False: 516k]
  ------------------
 8754|    194|    if (len == 7) {
  ------------------
  |  Branch (8754:9): [True: 194, False: 0]
  ------------------
 8755|    194|      return 8598;
 8756|    194|    }
 8757|      0|    break;
 8758|       |    /* nwnear */
 8759|    194|  case 0x58a31a2494091ddcULL:
  ------------------
  |  Branch (8759:3): [True: 194, False: 516k]
  ------------------
 8760|    194|    if (len == 6) {
  ------------------
  |  Branch (8760:9): [True: 194, False: 0]
  ------------------
 8761|    194|      return 10535;
 8762|    194|    }
 8763|      0|    break;
 8764|       |    /* oS */
 8765|    194|  case 0x08b07507b55694b7ULL:
  ------------------
  |  Branch (8765:3): [True: 194, False: 516k]
  ------------------
 8766|    194|    if (len == 2) {
  ------------------
  |  Branch (8766:9): [True: 194, False: 0]
  ------------------
 8767|    194|      return 9416;
 8768|    194|    }
 8769|      0|    break;
 8770|       |    /* oacute */
 8771|    194|  case 0xa04e0bb8821b609aULL:
  ------------------
  |  Branch (8771:3): [True: 194, False: 516k]
  ------------------
 8772|    194|    if (len == 6) {
  ------------------
  |  Branch (8772:9): [True: 194, False: 0]
  ------------------
 8773|    194|      return 243;
 8774|    194|    }
 8775|      0|    break;
 8776|       |    /* oast */
 8777|    194|  case 0x892c48b4b49557caULL:
  ------------------
  |  Branch (8777:3): [True: 194, False: 516k]
  ------------------
 8778|    194|    if (len == 4) {
  ------------------
  |  Branch (8778:9): [True: 194, False: 0]
  ------------------
 8779|    194|      return 8859;
 8780|    194|    }
 8781|      0|    break;
 8782|       |    /* ocir */
 8783|    194|  case 0x7a43f0b4acd305c8ULL:
  ------------------
  |  Branch (8783:3): [True: 194, False: 516k]
  ------------------
 8784|    194|    if (len == 4) {
  ------------------
  |  Branch (8784:9): [True: 194, False: 0]
  ------------------
 8785|    194|      return 8858;
 8786|    194|    }
 8787|      0|    break;
 8788|       |    /* ocirc */
 8789|    194|  case 0x9477ae01aa92a191ULL:
  ------------------
  |  Branch (8789:3): [True: 194, False: 516k]
  ------------------
 8790|    194|    if (len == 5) {
  ------------------
  |  Branch (8790:9): [True: 194, False: 0]
  ------------------
 8791|    194|      return 244;
 8792|    194|    }
 8793|      0|    break;
 8794|       |    /* ocy */
 8795|    194|  case 0x1a35aa1921f14a9aULL:
  ------------------
  |  Branch (8795:3): [True: 194, False: 516k]
  ------------------
 8796|    194|    if (len == 3) {
  ------------------
  |  Branch (8796:9): [True: 194, False: 0]
  ------------------
 8797|    194|      return 1086;
 8798|    194|    }
 8799|      0|    break;
 8800|       |    /* odash */
 8801|    194|  case 0x010feee4dc2ea546ULL:
  ------------------
  |  Branch (8801:3): [True: 194, False: 516k]
  ------------------
 8802|    194|    if (len == 5) {
  ------------------
  |  Branch (8802:9): [True: 194, False: 0]
  ------------------
 8803|    194|      return 8861;
 8804|    194|    }
 8805|      0|    break;
 8806|       |    /* odblac */
 8807|    194|  case 0xc32e44c97f65b5e8ULL:
  ------------------
  |  Branch (8807:3): [True: 194, False: 516k]
  ------------------
 8808|    194|    if (len == 6) {
  ------------------
  |  Branch (8808:9): [True: 194, False: 0]
  ------------------
 8809|    194|      return 337;
 8810|    194|    }
 8811|      0|    break;
 8812|       |    /* odiv */
 8813|    195|  case 0x5d8b6bb49bc83ec9ULL:
  ------------------
  |  Branch (8813:3): [True: 195, False: 516k]
  ------------------
 8814|    195|    if (len == 4) {
  ------------------
  |  Branch (8814:9): [True: 195, False: 0]
  ------------------
 8815|    195|      return 10808;
 8816|    195|    }
 8817|      0|    break;
 8818|       |    /* odot */
 8819|    194|  case 0x5d776db49bb79925ULL:
  ------------------
  |  Branch (8819:3): [True: 194, False: 516k]
  ------------------
 8820|    194|    if (len == 4) {
  ------------------
  |  Branch (8820:9): [True: 194, False: 0]
  ------------------
 8821|    194|      return 8857;
 8822|    194|    }
 8823|      0|    break;
 8824|       |    /* odsold */
 8825|    194|  case 0x7097c1586204d3c8ULL:
  ------------------
  |  Branch (8825:3): [True: 194, False: 516k]
  ------------------
 8826|    194|    if (len == 6) {
  ------------------
  |  Branch (8826:9): [True: 194, False: 0]
  ------------------
 8827|    194|      return 10684;
 8828|    194|    }
 8829|      0|    break;
 8830|       |    /* oelig */
 8831|    194|  case 0x5634b2efdd540b27ULL:
  ------------------
  |  Branch (8831:3): [True: 194, False: 516k]
  ------------------
 8832|    194|    if (len == 5) {
  ------------------
  |  Branch (8832:9): [True: 194, False: 0]
  ------------------
 8833|    194|      return 339;
 8834|    194|    }
 8835|      0|    break;
 8836|       |    /* ofcir */
 8837|    194|  case 0x52ae6ad7e88b126eULL:
  ------------------
  |  Branch (8837:3): [True: 194, False: 516k]
  ------------------
 8838|    194|    if (len == 5) {
  ------------------
  |  Branch (8838:9): [True: 194, False: 0]
  ------------------
 8839|    194|      return 10687;
 8840|    194|    }
 8841|      0|    break;
 8842|       |    /* ofr */
 8843|    194|  case 0x1a24a71921e2d24eULL:
  ------------------
  |  Branch (8843:3): [True: 194, False: 516k]
  ------------------
 8844|    194|    if (len == 3) {
  ------------------
  |  Branch (8844:9): [True: 194, False: 0]
  ------------------
 8845|    194|      return 120108;
 8846|    194|    }
 8847|      0|    break;
 8848|       |    /* ogon */
 8849|    194|  case 0x569558b498528556ULL:
  ------------------
  |  Branch (8849:3): [True: 194, False: 516k]
  ------------------
 8850|    194|    if (len == 4) {
  ------------------
  |  Branch (8850:9): [True: 194, False: 0]
  ------------------
 8851|    194|      return 731;
 8852|    194|    }
 8853|      0|    break;
 8854|       |    /* ograve */
 8855|    194|  case 0x07a91c484ecd0a07ULL:
  ------------------
  |  Branch (8855:3): [True: 194, False: 516k]
  ------------------
 8856|    194|    if (len == 6) {
  ------------------
  |  Branch (8856:9): [True: 194, False: 0]
  ------------------
 8857|    194|      return 242;
 8858|    194|    }
 8859|      0|    break;
 8860|       |    /* ogt */
 8861|    194|  case 0x1a27af1921e515bdULL:
  ------------------
  |  Branch (8861:3): [True: 194, False: 516k]
  ------------------
 8862|    194|    if (len == 3) {
  ------------------
  |  Branch (8862:9): [True: 194, False: 0]
  ------------------
 8863|    194|      return 10689;
 8864|    194|    }
 8865|      0|    break;
 8866|       |    /* ohbar */
 8867|    194|  case 0xbcf6a3c5e986d1d3ULL:
  ------------------
  |  Branch (8867:3): [True: 194, False: 516k]
  ------------------
 8868|    194|    if (len == 5) {
  ------------------
  |  Branch (8868:9): [True: 194, False: 0]
  ------------------
 8869|    194|      return 10677;
 8870|    194|    }
 8871|      0|    break;
 8872|       |    /* ohm */
 8873|    194|  case 0x1a1d961921dc96bdULL:
  ------------------
  |  Branch (8873:3): [True: 194, False: 516k]
  ------------------
 8874|    194|    if (len == 3) {
  ------------------
  |  Branch (8874:9): [True: 194, False: 0]
  ------------------
 8875|    194|      return 937;
 8876|    194|    }
 8877|      0|    break;
 8878|       |    /* oint */
 8879|    194|  case 0x4494eeb48def0d0fULL:
  ------------------
  |  Branch (8879:3): [True: 194, False: 516k]
  ------------------
 8880|    194|    if (len == 4) {
  ------------------
  |  Branch (8880:9): [True: 194, False: 0]
  ------------------
 8881|    194|      return 8750;
 8882|    194|    }
 8883|      0|    break;
 8884|       |    /* olarr */
 8885|    194|  case 0x2b9c8ea364830e15ULL:
  ------------------
  |  Branch (8885:3): [True: 194, False: 516k]
  ------------------
 8886|    194|    if (len == 5) {
  ------------------
  |  Branch (8886:9): [True: 194, False: 0]
  ------------------
 8887|    194|      return 8634;
 8888|    194|    }
 8889|      0|    break;
 8890|       |    /* olcir */
 8891|    194|  case 0x1ce732a35cec0ee0ULL:
  ------------------
  |  Branch (8891:3): [True: 194, False: 516k]
  ------------------
 8892|    194|    if (len == 5) {
  ------------------
  |  Branch (8892:9): [True: 194, False: 0]
  ------------------
 8893|    194|      return 10686;
 8894|    194|    }
 8895|      0|    break;
 8896|       |    /* olcross */
 8897|    194|  case 0x1d96aa2633ba8546ULL:
  ------------------
  |  Branch (8897:3): [True: 194, False: 516k]
  ------------------
 8898|    194|    if (len == 7) {
  ------------------
  |  Branch (8898:9): [True: 194, False: 0]
  ------------------
 8899|    194|      return 10683;
 8900|    194|    }
 8901|      0|    break;
 8902|       |    /* oline */
 8903|    194|  case 0x7382efa38df9aed4ULL:
  ------------------
  |  Branch (8903:3): [True: 194, False: 516k]
  ------------------
 8904|    194|    if (len == 5) {
  ------------------
  |  Branch (8904:9): [True: 194, False: 0]
  ------------------
 8905|    194|      return 8254;
 8906|    194|    }
 8907|      0|    break;
 8908|       |    /* olt */
 8909|    194|  case 0x1a0f9d1921d06546ULL:
  ------------------
  |  Branch (8909:3): [True: 194, False: 516k]
  ------------------
 8910|    194|    if (len == 3) {
  ------------------
  |  Branch (8910:9): [True: 194, False: 0]
  ------------------
 8911|    194|      return 10688;
 8912|    194|    }
 8913|      0|    break;
 8914|       |    /* omacr */
 8915|    194|  case 0x10ef0aae268ba689ULL:
  ------------------
  |  Branch (8915:3): [True: 194, False: 516k]
  ------------------
 8916|    194|    if (len == 5) {
  ------------------
  |  Branch (8916:9): [True: 194, False: 0]
  ------------------
 8917|    194|      return 333;
 8918|    194|    }
 8919|      0|    break;
 8920|       |    /* omega */
 8921|    194|  case 0x3460cbae3ad8be88ULL:
  ------------------
  |  Branch (8921:3): [True: 194, False: 516k]
  ------------------
 8922|    194|    if (len == 5) {
  ------------------
  |  Branch (8922:9): [True: 194, False: 0]
  ------------------
 8923|    194|      return 969;
 8924|    194|    }
 8925|      0|    break;
 8926|       |    /* omicron */
 8927|    194|  case 0xb68093d38ddba51cULL:
  ------------------
  |  Branch (8927:3): [True: 194, False: 516k]
  ------------------
 8928|    194|    if (len == 7) {
  ------------------
  |  Branch (8928:9): [True: 194, False: 0]
  ------------------
 8929|    194|      return 959;
 8930|    194|    }
 8931|      0|    break;
 8932|       |    /* omid */
 8933|    194|  case 0x236f38b47b95a90cULL:
  ------------------
  |  Branch (8933:3): [True: 194, False: 516k]
  ------------------
 8934|    194|    if (len == 4) {
  ------------------
  |  Branch (8934:9): [True: 194, False: 0]
  ------------------
 8935|    194|      return 10678;
 8936|    194|    }
 8937|      0|    break;
 8938|       |    /* ominus */
 8939|    198|  case 0xb22c3aa9045761daULL:
  ------------------
  |  Branch (8939:3): [True: 198, False: 516k]
  ------------------
 8940|    198|    if (len == 6) {
  ------------------
  |  Branch (8940:9): [True: 198, False: 0]
  ------------------
 8941|    198|      return 8854;
 8942|    198|    }
 8943|      0|    break;
 8944|       |    /* oopf */
 8945|    194|  case 0x1197fab47155809dULL:
  ------------------
  |  Branch (8945:3): [True: 194, False: 516k]
  ------------------
 8946|    194|    if (len == 4) {
  ------------------
  |  Branch (8946:9): [True: 194, False: 0]
  ------------------
 8947|    194|      return 120160;
 8948|    194|    }
 8949|      0|    break;
 8950|       |    /* opar */
 8951|    194|  case 0xf8417bb4632a03f9ULL:
  ------------------
  |  Branch (8951:3): [True: 194, False: 516k]
  ------------------
 8952|    194|    if (len == 4) {
  ------------------
  |  Branch (8952:9): [True: 194, False: 0]
  ------------------
 8953|    194|      return 10679;
 8954|    194|    }
 8955|      0|    break;
 8956|       |    /* operp */
 8957|    194|  case 0x25a268849576d737ULL:
  ------------------
  |  Branch (8957:3): [True: 194, False: 516k]
  ------------------
 8958|    194|    if (len == 5) {
  ------------------
  |  Branch (8958:9): [True: 194, False: 0]
  ------------------
 8959|    194|      return 10681;
 8960|    194|    }
 8961|      0|    break;
 8962|       |    /* oplus */
 8963|    194|  case 0xd603e88467e556c2ULL:
  ------------------
  |  Branch (8963:3): [True: 194, False: 516k]
  ------------------
 8964|    194|    if (len == 5) {
  ------------------
  |  Branch (8964:9): [True: 194, False: 0]
  ------------------
 8965|    194|      return 8853;
 8966|    194|    }
 8967|      0|    break;
 8968|       |    /* or */
 8969|    196|  case 0x08b05407b5565ca4ULL:
  ------------------
  |  Branch (8969:3): [True: 196, False: 516k]
  ------------------
 8970|    196|    if (len == 2) {
  ------------------
  |  Branch (8970:9): [True: 196, False: 0]
  ------------------
 8971|    196|      return 8744;
 8972|    196|    }
 8973|      0|    break;
 8974|       |    /* orarr */
 8975|    194|  case 0x97c0ca729aa684dfULL:
  ------------------
  |  Branch (8975:3): [True: 194, False: 516k]
  ------------------
 8976|    194|    if (len == 5) {
  ------------------
  |  Branch (8976:9): [True: 194, False: 0]
  ------------------
 8977|    194|      return 8635;
 8978|    194|    }
 8979|      0|    break;
 8980|       |    /* ord */
 8981|    194|  case 0x19fb891921bf9a40ULL:
  ------------------
  |  Branch (8981:3): [True: 194, False: 516k]
  ------------------
 8982|    194|    if (len == 3) {
  ------------------
  |  Branch (8982:9): [True: 194, False: 0]
  ------------------
 8983|    194|      return 10845;
 8984|    194|    }
 8985|      0|    break;
 8986|       |    /* order */
 8987|    194|  case 0x6be60d7281a829f7ULL:
  ------------------
  |  Branch (8987:3): [True: 194, False: 516k]
  ------------------
 8988|    194|    if (len == 5) {
  ------------------
  |  Branch (8988:9): [True: 194, False: 0]
  ------------------
 8989|    194|      return 8500;
 8990|    194|    }
 8991|      0|    break;
 8992|       |    /* orderof */
 8993|    194|  case 0xde04299f3400452aULL:
  ------------------
  |  Branch (8993:3): [True: 194, False: 516k]
  ------------------
 8994|    194|    if (len == 7) {
  ------------------
  |  Branch (8994:9): [True: 194, False: 0]
  ------------------
 8995|    194|      return 8500;
 8996|    194|    }
 8997|      0|    break;
 8998|       |    /* ordf */
 8999|    194|  case 0xe6041bb45892ee92ULL:
  ------------------
  |  Branch (8999:3): [True: 194, False: 516k]
  ------------------
 9000|    194|    if (len == 4) {
  ------------------
  |  Branch (9000:9): [True: 194, False: 0]
  ------------------
 9001|    194|      return 170;
 9002|    194|    }
 9003|      0|    break;
 9004|       |    /* ordm */
 9005|    194|  case 0xe60422b45892fa77ULL:
  ------------------
  |  Branch (9005:3): [True: 194, False: 516k]
  ------------------
 9006|    194|    if (len == 4) {
  ------------------
  |  Branch (9006:9): [True: 194, False: 0]
  ------------------
 9007|    194|      return 186;
 9008|    194|    }
 9009|      0|    break;
 9010|       |    /* origof */
 9011|    194|  case 0xb9feccfe786a9511ULL:
  ------------------
  |  Branch (9011:3): [True: 194, False: 516k]
  ------------------
 9012|    194|    if (len == 6) {
  ------------------
  |  Branch (9012:9): [True: 194, False: 0]
  ------------------
 9013|    194|      return 8886;
 9014|    194|    }
 9015|      0|    break;
 9016|       |    /* oror */
 9017|    194|  case 0xe62929b458b22299ULL:
  ------------------
  |  Branch (9017:3): [True: 194, False: 516k]
  ------------------
 9018|    194|    if (len == 4) {
  ------------------
  |  Branch (9018:9): [True: 194, False: 0]
  ------------------
 9019|    194|      return 10838;
 9020|    194|    }
 9021|      0|    break;
 9022|       |    /* orslope */
 9023|    194|  case 0xc1a7e068566cae13ULL:
  ------------------
  |  Branch (9023:3): [True: 194, False: 516k]
  ------------------
 9024|    194|    if (len == 7) {
  ------------------
  |  Branch (9024:9): [True: 194, False: 0]
  ------------------
 9025|    194|      return 10839;
 9026|    194|    }
 9027|      0|    break;
 9028|       |    /* orv */
 9029|    194|  case 0x19fb9b1921bfb8d6ULL:
  ------------------
  |  Branch (9029:3): [True: 194, False: 516k]
  ------------------
 9030|    194|    if (len == 3) {
  ------------------
  |  Branch (9030:9): [True: 194, False: 0]
  ------------------
 9031|    194|      return 10843;
 9032|    194|    }
 9033|      0|    break;
 9034|       |    /* oscr */
 9035|    194|  case 0xedd768b45cc4e42aULL:
  ------------------
  |  Branch (9035:3): [True: 194, False: 516k]
  ------------------
 9036|    194|    if (len == 4) {
  ------------------
  |  Branch (9036:9): [True: 194, False: 0]
  ------------------
 9037|    194|      return 8500;
 9038|    194|    }
 9039|      0|    break;
 9040|       |    /* oslash */
 9041|    194|  case 0xd99745e9d48f4813ULL:
  ------------------
  |  Branch (9041:3): [True: 194, False: 516k]
  ------------------
 9042|    194|    if (len == 6) {
  ------------------
  |  Branch (9042:9): [True: 194, False: 0]
  ------------------
 9043|    194|      return 248;
 9044|    194|    }
 9045|      0|    break;
 9046|       |    /* osol */
 9047|    194|  case 0xede54ab45cd0ee8cULL:
  ------------------
  |  Branch (9047:3): [True: 194, False: 516k]
  ------------------
 9048|    194|    if (len == 4) {
  ------------------
  |  Branch (9048:9): [True: 194, False: 0]
  ------------------
 9049|    194|      return 8856;
 9050|    194|    }
 9051|      0|    break;
 9052|       |    /* otilde */
 9053|    194|  case 0xfe66aa244ed765b8ULL:
  ------------------
  |  Branch (9053:3): [True: 194, False: 516k]
  ------------------
 9054|    194|    if (len == 6) {
  ------------------
  |  Branch (9054:9): [True: 194, False: 0]
  ------------------
 9055|    194|      return 245;
 9056|    194|    }
 9057|      0|    break;
 9058|       |    /* otimes */
 9059|    194|  case 0xf69987244aaa232cULL:
  ------------------
  |  Branch (9059:3): [True: 194, False: 516k]
  ------------------
 9060|    194|    if (len == 6) {
  ------------------
  |  Branch (9060:9): [True: 194, False: 0]
  ------------------
 9061|    194|      return 8855;
 9062|    194|    }
 9063|      0|    break;
 9064|       |    /* otimesas */
 9065|    194|  case 0xe3abe359192697acULL:
  ------------------
  |  Branch (9065:3): [True: 194, False: 516k]
  ------------------
 9066|    194|    if (len == 8) {
  ------------------
  |  Branch (9066:9): [True: 194, False: 0]
  ------------------
 9067|    194|      return 10806;
 9068|    194|    }
 9069|      0|    break;
 9070|       |    /* ouml */
 9071|    194|  case 0xdbdb18b4526580e8ULL:
  ------------------
  |  Branch (9071:3): [True: 194, False: 516k]
  ------------------
 9072|    194|    if (len == 4) {
  ------------------
  |  Branch (9072:9): [True: 194, False: 0]
  ------------------
 9073|    194|      return 246;
 9074|    194|    }
 9075|      0|    break;
 9076|       |    /* ovbar */
 9077|    194|  case 0xf73b6b500da86d1dULL:
  ------------------
  |  Branch (9077:3): [True: 194, False: 516k]
  ------------------
 9078|    194|    if (len == 5) {
  ------------------
  |  Branch (9078:9): [True: 194, False: 0]
  ------------------
 9079|    194|      return 9021;
 9080|    194|    }
 9081|      0|    break;
 9082|       |    /* par */
 9083|    197|  case 0x77ca6a195676bea8ULL:
  ------------------
  |  Branch (9083:3): [True: 197, False: 516k]
  ------------------
 9084|    197|    if (len == 3) {
  ------------------
  |  Branch (9084:9): [True: 197, False: 0]
  ------------------
 9085|    197|      return 8741;
 9086|    197|    }
 9087|      0|    break;
 9088|       |    /* para */
 9089|    194|  case 0x03b1120debc62f8bULL:
  ------------------
  |  Branch (9089:3): [True: 194, False: 516k]
  ------------------
 9090|    194|    if (len == 4) {
  ------------------
  |  Branch (9090:9): [True: 194, False: 0]
  ------------------
 9091|    194|      return 182;
 9092|    194|    }
 9093|      0|    break;
 9094|       |    /* parallel */
 9095|    194|  case 0xb292646184d47d92ULL:
  ------------------
  |  Branch (9095:3): [True: 194, False: 516k]
  ------------------
 9096|    194|    if (len == 8) {
  ------------------
  |  Branch (9096:9): [True: 194, False: 0]
  ------------------
 9097|    194|      return 8741;
 9098|    194|    }
 9099|      0|    break;
 9100|       |    /* parsim */
 9101|    196|  case 0xe07b82d836bc260fULL:
  ------------------
  |  Branch (9101:3): [True: 196, False: 516k]
  ------------------
 9102|    196|    if (len == 6) {
  ------------------
  |  Branch (9102:9): [True: 196, False: 0]
  ------------------
 9103|    196|      return 10995;
 9104|    196|    }
 9105|      0|    break;
 9106|       |    /* parsl */
 9107|    194|  case 0x0c4e90a7a1f70cd7ULL:
  ------------------
  |  Branch (9107:3): [True: 194, False: 516k]
  ------------------
 9108|    194|    if (len == 5) {
  ------------------
  |  Branch (9108:9): [True: 194, False: 0]
  ------------------
 9109|    194|      return 11005;
 9110|    194|    }
 9111|      0|    break;
 9112|       |    /* part */
 9113|    194|  case 0x03b1250debc64fd4ULL:
  ------------------
  |  Branch (9113:3): [True: 194, False: 516k]
  ------------------
 9114|    194|    if (len == 4) {
  ------------------
  |  Branch (9114:9): [True: 194, False: 0]
  ------------------
 9115|    194|      return 8706;
 9116|    194|    }
 9117|      0|    break;
 9118|       |    /* pcy */
 9119|    265|  case 0x77c3691956709e47ULL:
  ------------------
  |  Branch (9119:3): [True: 265, False: 516k]
  ------------------
 9120|    265|    if (len == 3) {
  ------------------
  |  Branch (9120:9): [True: 265, False: 0]
  ------------------
 9121|    265|      return 1087;
 9122|    265|    }
 9123|      0|    break;
 9124|       |    /* percnt */
 9125|   121k|  case 0xceb4140b29646bbfULL:
  ------------------
  |  Branch (9125:3): [True: 121k, False: 394k]
  ------------------
 9126|   121k|    if (len == 6) {
  ------------------
  |  Branch (9126:9): [True: 121k, False: 0]
  ------------------
 9127|   121k|      return 37;
 9128|   121k|    }
 9129|      0|    break;
 9130|       |    /* period */
 9131|    486|  case 0x0528080b48ef9464ULL:
  ------------------
  |  Branch (9131:3): [True: 486, False: 515k]
  ------------------
 9132|    486|    if (len == 6) {
  ------------------
  |  Branch (9132:9): [True: 486, False: 0]
  ------------------
 9133|    486|      return 46;
 9134|    486|    }
 9135|      0|    break;
 9136|       |    /* permil */
 9137|    194|  case 0xe0ad600b33c1925eULL:
  ------------------
  |  Branch (9137:3): [True: 194, False: 516k]
  ------------------
 9138|    194|    if (len == 6) {
  ------------------
  |  Branch (9138:9): [True: 194, False: 0]
  ------------------
 9139|    194|      return 8240;
 9140|    194|    }
 9141|      0|    break;
 9142|       |    /* perp */
 9143|    194|  case 0xdfc4750dd710457cULL:
  ------------------
  |  Branch (9143:3): [True: 194, False: 516k]
  ------------------
 9144|    194|    if (len == 4) {
  ------------------
  |  Branch (9144:9): [True: 194, False: 0]
  ------------------
 9145|    194|      return 8869;
 9146|    194|    }
 9147|      0|    break;
 9148|       |    /* pertenk */
 9149|      0|  case 0x8a943844cb26f188ULL:
  ------------------
  |  Branch (9149:3): [True: 0, False: 516k]
  ------------------
 9150|      0|    if (len == 7) {
  ------------------
  |  Branch (9150:9): [True: 0, False: 0]
  ------------------
 9151|      0|      return 8241;
 9152|      0|    }
 9153|      0|    break;
 9154|       |    /* pfr */
 9155|    194|  case 0x77b96c1956684edbULL:
  ------------------
  |  Branch (9155:3): [True: 194, False: 516k]
  ------------------
 9156|    194|    if (len == 3) {
  ------------------
  |  Branch (9156:9): [True: 194, False: 0]
  ------------------
 9157|    194|      return 120109;
 9158|    194|    }
 9159|      0|    break;
 9160|       |    /* phi */
 9161|    194|  case 0x77b2591956620fe4ULL:
  ------------------
  |  Branch (9161:3): [True: 194, False: 516k]
  ------------------
 9162|    194|    if (len == 3) {
  ------------------
  |  Branch (9162:9): [True: 194, False: 0]
  ------------------
 9163|    194|      return 966;
 9164|    194|    }
 9165|      0|    break;
 9166|       |    /* phiv */
 9167|    194|  case 0xc61cf80dc8a07516ULL:
  ------------------
  |  Branch (9167:3): [True: 194, False: 516k]
  ------------------
 9168|    194|    if (len == 4) {
  ------------------
  |  Branch (9168:9): [True: 194, False: 0]
  ------------------
 9169|    194|      return 981;
 9170|    194|    }
 9171|      0|    break;
 9172|       |    /* phmmat */
 9173|    194|  case 0x141cbb3e5512773aULL:
  ------------------
  |  Branch (9173:3): [True: 194, False: 516k]
  ------------------
 9174|    194|    if (len == 6) {
  ------------------
  |  Branch (9174:9): [True: 194, False: 0]
  ------------------
 9175|    194|      return 8499;
 9176|    194|    }
 9177|      0|    break;
 9178|       |    /* phone */
 9179|    194|  case 0x31fc9c6bde865d6fULL:
  ------------------
  |  Branch (9179:3): [True: 194, False: 516k]
  ------------------
 9180|    194|    if (len == 5) {
  ------------------
  |  Branch (9180:9): [True: 194, False: 0]
  ------------------
 9181|    194|      return 9742;
 9182|    194|    }
 9183|      0|    break;
 9184|       |    /* pi */
 9185|    200|  case 0x08d53f07b5755532ULL:
  ------------------
  |  Branch (9185:3): [True: 200, False: 516k]
  ------------------
 9186|    200|    if (len == 2) {
  ------------------
  |  Branch (9186:9): [True: 200, False: 0]
  ------------------
 9187|    200|      return 960;
 9188|    200|    }
 9189|      0|    break;
 9190|       |    /* pitchfork */
 9191|      0|  case 0x253c0933f6dcb76dULL:
  ------------------
  |  Branch (9191:3): [True: 0, False: 516k]
  ------------------
 9192|      0|    if (len == 9) {
  ------------------
  |  Branch (9192:9): [True: 0, False: 0]
  ------------------
 9193|      0|      return 8916;
 9194|      0|    }
 9195|      0|    break;
 9196|       |    /* piv */
 9197|    194|  case 0x77af5e19565fe28cULL:
  ------------------
  |  Branch (9197:3): [True: 194, False: 516k]
  ------------------
 9198|    194|    if (len == 3) {
  ------------------
  |  Branch (9198:9): [True: 194, False: 0]
  ------------------
 9199|    194|      return 982;
 9200|    194|    }
 9201|      0|    break;
 9202|       |    /* planck */
 9203|    194|  case 0xe7de30b006ecf758ULL:
  ------------------
  |  Branch (9203:3): [True: 194, False: 516k]
  ------------------
 9204|    194|    if (len == 6) {
  ------------------
  |  Branch (9204:9): [True: 194, False: 0]
  ------------------
 9205|    194|      return 8463;
 9206|    194|    }
 9207|      0|    break;
 9208|       |    /* planckh */
 9209|    194|  case 0xeb83eb1bc4a80690ULL:
  ------------------
  |  Branch (9209:3): [True: 194, False: 516k]
  ------------------
 9210|    194|    if (len == 7) {
  ------------------
  |  Branch (9210:9): [True: 194, False: 0]
  ------------------
 9211|    194|      return 8462;
 9212|    194|    }
 9213|      0|    break;
 9214|       |    /* plankv */
 9215|    194|  case 0xe7f94db00703f057ULL:
  ------------------
  |  Branch (9215:3): [True: 194, False: 516k]
  ------------------
 9216|    194|    if (len == 6) {
  ------------------
  |  Branch (9216:9): [True: 194, False: 0]
  ------------------
 9217|    194|      return 8463;
 9218|    194|    }
 9219|      0|    break;
 9220|       |    /* plus */
 9221|    196|  case 0xa5c0590db6f268b5ULL:
  ------------------
  |  Branch (9221:3): [True: 196, False: 516k]
  ------------------
 9222|    196|    if (len == 4) {
  ------------------
  |  Branch (9222:9): [True: 196, False: 0]
  ------------------
 9223|    196|      return 43;
 9224|    196|    }
 9225|      0|    break;
 9226|       |    /* plusacir */
 9227|    194|  case 0xfd7576263ab59ddaULL:
  ------------------
  |  Branch (9227:3): [True: 194, False: 516k]
  ------------------
 9228|    194|    if (len == 8) {
  ------------------
  |  Branch (9228:9): [True: 194, False: 0]
  ------------------
 9229|    194|      return 10787;
 9230|    194|    }
 9231|      0|    break;
 9232|       |    /* plusb */
 9233|    195|  case 0x9840294ddde82555ULL:
  ------------------
  |  Branch (9233:3): [True: 195, False: 516k]
  ------------------
 9234|    195|    if (len == 5) {
  ------------------
  |  Branch (9234:9): [True: 195, False: 0]
  ------------------
 9235|    195|      return 8862;
 9236|    195|    }
 9237|      0|    break;
 9238|       |    /* pluscir */
 9239|    194|  case 0x8042b00da9800199ULL:
  ------------------
  |  Branch (9239:3): [True: 194, False: 516k]
  ------------------
 9240|    194|    if (len == 7) {
  ------------------
  |  Branch (9240:9): [True: 194, False: 0]
  ------------------
 9241|    194|      return 10786;
 9242|    194|    }
 9243|      0|    break;
 9244|       |    /* plusdo */
 9245|    194|  case 0x9d17495011666224ULL:
  ------------------
  |  Branch (9245:3): [True: 194, False: 516k]
  ------------------
 9246|    194|    if (len == 6) {
  ------------------
  |  Branch (9246:9): [True: 194, False: 0]
  ------------------
 9247|    194|      return 8724;
 9248|    194|    }
 9249|      0|    break;
 9250|       |    /* plusdu */
 9251|    194|  case 0x9d17535011667322ULL:
  ------------------
  |  Branch (9251:3): [True: 194, False: 516k]
  ------------------
 9252|    194|    if (len == 6) {
  ------------------
  |  Branch (9252:9): [True: 194, False: 0]
  ------------------
 9253|    194|      return 10789;
 9254|    194|    }
 9255|      0|    break;
 9256|       |    /* pluse */
 9257|    194|  case 0x9840224ddde81970ULL:
  ------------------
  |  Branch (9257:3): [True: 194, False: 516k]
  ------------------
 9258|    194|    if (len == 5) {
  ------------------
  |  Branch (9258:9): [True: 194, False: 0]
  ------------------
 9259|    194|      return 10866;
 9260|    194|    }
 9261|      0|    break;
 9262|       |    /* plusmn */
 9263|    194|  case 0x9d2f4850117af252ULL:
  ------------------
  |  Branch (9263:3): [True: 194, False: 516k]
  ------------------
 9264|    194|    if (len == 6) {
  ------------------
  |  Branch (9264:9): [True: 194, False: 0]
  ------------------
 9265|    194|      return 177;
 9266|    194|    }
 9267|      0|    break;
 9268|       |    /* plussim */
 9269|    194|  case 0xf3f8190d598eace4ULL:
  ------------------
  |  Branch (9269:3): [True: 194, False: 516k]
  ------------------
 9270|    194|    if (len == 7) {
  ------------------
  |  Branch (9270:9): [True: 194, False: 0]
  ------------------
 9271|    194|      return 10790;
 9272|    194|    }
 9273|      0|    break;
 9274|       |    /* plustwo */
 9275|    194|  case 0xc8574e0d40c1b279ULL:
  ------------------
  |  Branch (9275:3): [True: 194, False: 516k]
  ------------------
 9276|    194|    if (len == 7) {
  ------------------
  |  Branch (9276:9): [True: 194, False: 0]
  ------------------
 9277|    194|      return 10791;
 9278|    194|    }
 9279|      0|    break;
 9280|       |    /* pm */
 9281|    196|  case 0x08d53b07b5754e66ULL:
  ------------------
  |  Branch (9281:3): [True: 196, False: 516k]
  ------------------
 9282|    196|    if (len == 2) {
  ------------------
  |  Branch (9282:9): [True: 196, False: 0]
  ------------------
 9283|    196|      return 177;
 9284|    196|    }
 9285|      0|    break;
 9286|       |    /* pointint */
 9287|    198|  case 0x2a85601a14b31592ULL:
  ------------------
  |  Branch (9287:3): [True: 198, False: 516k]
  ------------------
 9288|    198|    if (len == 8) {
  ------------------
  |  Branch (9288:9): [True: 198, False: 0]
  ------------------
 9289|    198|      return 10773;
 9290|    198|    }
 9291|      0|    break;
 9292|       |    /* popf */
 9293|    194|  case 0x8c25e90da88d38c2ULL:
  ------------------
  |  Branch (9293:3): [True: 194, False: 516k]
  ------------------
 9294|    194|    if (len == 4) {
  ------------------
  |  Branch (9294:9): [True: 194, False: 0]
  ------------------
 9295|    194|      return 120161;
 9296|    194|    }
 9297|      0|    break;
 9298|       |    /* pound */
 9299|    194|  case 0xdcaf9735804655b5ULL:
  ------------------
  |  Branch (9299:3): [True: 194, False: 516k]
  ------------------
 9300|    194|    if (len == 5) {
  ------------------
  |  Branch (9300:9): [True: 194, False: 0]
  ------------------
 9301|    194|      return 163;
 9302|    194|    }
 9303|      0|    break;
 9304|       |    /* pr */
 9305|    203|  case 0x08d55607b5757c47ULL:
  ------------------
  |  Branch (9305:3): [True: 203, False: 516k]
  ------------------
 9306|    203|    if (len == 2) {
  ------------------
  |  Branch (9306:9): [True: 203, False: 0]
  ------------------
 9307|    203|      return 8826;
 9308|    203|    }
 9309|      0|    break;
 9310|       |    /* prE */
 9311|    194|  case 0x77fd311956a1b766ULL:
  ------------------
  |  Branch (9311:3): [True: 194, False: 516k]
  ------------------
 9312|    194|    if (len == 3) {
  ------------------
  |  Branch (9312:9): [True: 194, False: 0]
  ------------------
 9313|    194|      return 10931;
 9314|    194|    }
 9315|      0|    break;
 9316|       |    /* prap */
 9317|    194|  case 0x856c7c0e35331c06ULL:
  ------------------
  |  Branch (9317:3): [True: 194, False: 516k]
  ------------------
 9318|    194|    if (len == 4) {
  ------------------
  |  Branch (9318:9): [True: 194, False: 0]
  ------------------
 9319|    194|      return 10935;
 9320|    194|    }
 9321|      0|    break;
 9322|       |    /* prcue */
 9323|    194|  case 0xd8a90d245ba3cdbaULL:
  ------------------
  |  Branch (9323:3): [True: 194, False: 516k]
  ------------------
 9324|    194|    if (len == 5) {
  ------------------
  |  Branch (9324:9): [True: 194, False: 0]
  ------------------
 9325|    194|      return 8828;
 9326|    194|    }
 9327|      0|    break;
 9328|       |    /* pre */
 9329|    196|  case 0x77fd511956a1edc6ULL:
  ------------------
  |  Branch (9329:3): [True: 196, False: 516k]
  ------------------
 9330|    196|    if (len == 3) {
  ------------------
  |  Branch (9330:9): [True: 196, False: 0]
  ------------------
 9331|    196|      return 10927;
 9332|    196|    }
 9333|      0|    break;
 9334|       |    /* prec */
 9335|    197|  case 0x855e730e3526cf5fULL:
  ------------------
  |  Branch (9335:3): [True: 197, False: 516k]
  ------------------
 9336|    197|    if (len == 4) {
  ------------------
  |  Branch (9336:9): [True: 197, False: 0]
  ------------------
 9337|    197|      return 8826;
 9338|    197|    }
 9339|      0|    break;
 9340|       |    /* precapprox */
 9341|    194|  case 0xa762d7409317a5e7ULL:
  ------------------
  |  Branch (9341:3): [True: 194, False: 516k]
  ------------------
 9342|    194|    if (len == 10) {
  ------------------
  |  Branch (9342:9): [True: 194, False: 0]
  ------------------
 9343|    194|      return 10935;
 9344|    194|    }
 9345|      0|    break;
 9346|       |    /* preccurlyeq */
 9347|    194|  case 0x2d60065e856c07beULL:
  ------------------
  |  Branch (9347:3): [True: 194, False: 516k]
  ------------------
 9348|    194|    if (len == 11) {
  ------------------
  |  Branch (9348:9): [True: 194, False: 0]
  ------------------
 9349|    194|      return 8828;
 9350|    194|    }
 9351|      0|    break;
 9352|       |    /* preceq */
 9353|    194|  case 0xe681fdb58b6c5e4dULL:
  ------------------
  |  Branch (9353:3): [True: 194, False: 516k]
  ------------------
 9354|    194|    if (len == 6) {
  ------------------
  |  Branch (9354:9): [True: 194, False: 0]
  ------------------
 9355|    194|      return 10927;
 9356|    194|    }
 9357|      0|    break;
 9358|       |    /* precnapprox */
 9359|    194|  case 0x2edef4f68048deb3ULL:
  ------------------
  |  Branch (9359:3): [True: 194, False: 516k]
  ------------------
 9360|    194|    if (len == 11) {
  ------------------
  |  Branch (9360:9): [True: 194, False: 0]
  ------------------
 9361|    194|      return 10937;
 9362|    194|    }
 9363|      0|    break;
 9364|       |    /* precneqq */
 9365|    194|  case 0x05ef703f68ea76d8ULL:
  ------------------
  |  Branch (9365:3): [True: 194, False: 516k]
  ------------------
 9366|    194|    if (len == 8) {
  ------------------
  |  Branch (9366:9): [True: 194, False: 0]
  ------------------
 9367|    194|      return 10933;
 9368|    194|    }
 9369|      0|    break;
 9370|       |    /* precnsim */
 9371|    194|  case 0x5ce01a3f9a403682ULL:
  ------------------
  |  Branch (9371:3): [True: 194, False: 516k]
  ------------------
 9372|    194|    if (len == 8) {
  ------------------
  |  Branch (9372:9): [True: 194, False: 0]
  ------------------
 9373|    194|      return 8936;
 9374|    194|    }
 9375|      0|    break;
 9376|       |    /* precsim */
 9377|    194|  case 0xa02d217ba2eb03aeULL:
  ------------------
  |  Branch (9377:3): [True: 194, False: 516k]
  ------------------
 9378|    194|    if (len == 7) {
  ------------------
  |  Branch (9378:9): [True: 194, False: 0]
  ------------------
 9379|    194|      return 8830;
 9380|    194|    }
 9381|      0|    break;
 9382|       |    /* prime */
 9383|    194|  case 0x2f1173248c858040ULL:
  ------------------
  |  Branch (9383:3): [True: 194, False: 516k]
  ------------------
 9384|    194|    if (len == 5) {
  ------------------
  |  Branch (9384:9): [True: 194, False: 0]
  ------------------
 9385|    194|      return 8242;
 9386|    194|    }
 9387|      0|    break;
 9388|       |    /* primes */
 9389|    194|  case 0x8026da1ac6d8d6a9ULL:
  ------------------
  |  Branch (9389:3): [True: 194, False: 516k]
  ------------------
 9390|    194|    if (len == 6) {
  ------------------
  |  Branch (9390:9): [True: 194, False: 0]
  ------------------
 9391|    194|      return 8473;
 9392|    194|    }
 9393|      0|    break;
 9394|       |    /* prnE */
 9395|    194|  case 0x8576a10e353baf6aULL:
  ------------------
  |  Branch (9395:3): [True: 194, False: 516k]
  ------------------
 9396|    194|    if (len == 4) {
  ------------------
  |  Branch (9396:9): [True: 194, False: 0]
  ------------------
 9397|    194|      return 10933;
 9398|    194|    }
 9399|      0|    break;
 9400|       |    /* prnap */
 9401|    194|  case 0x03c8cd2474033a8aULL:
  ------------------
  |  Branch (9401:3): [True: 194, False: 516k]
  ------------------
 9402|    194|    if (len == 5) {
  ------------------
  |  Branch (9402:9): [True: 194, False: 0]
  ------------------
 9403|    194|      return 10937;
 9404|    194|    }
 9405|      0|    break;
 9406|       |    /* prnsim */
 9407|    194|  case 0xebabd9f166ff08daULL:
  ------------------
  |  Branch (9407:3): [True: 194, False: 516k]
  ------------------
 9408|    194|    if (len == 6) {
  ------------------
  |  Branch (9408:9): [True: 194, False: 0]
  ------------------
 9409|    194|      return 8936;
 9410|    194|    }
 9411|      0|    break;
 9412|       |    /* prod */
 9413|    194|  case 0x85729c0e3537be14ULL:
  ------------------
  |  Branch (9413:3): [True: 194, False: 516k]
  ------------------
 9414|    194|    if (len == 4) {
  ------------------
  |  Branch (9414:9): [True: 194, False: 0]
  ------------------
 9415|    194|      return 8719;
 9416|    194|    }
 9417|      0|    break;
 9418|       |    /* profalar */
 9419|    206|  case 0xe350cd6187eeab50ULL:
  ------------------
  |  Branch (9419:3): [True: 206, False: 516k]
  ------------------
 9420|    206|    if (len == 8) {
  ------------------
  |  Branch (9420:9): [True: 206, False: 0]
  ------------------
 9421|    206|      return 9006;
 9422|    206|    }
 9423|      0|    break;
 9424|       |    /* profline */
 9425|    194|  case 0xa8c7a737c99b1f18ULL:
  ------------------
  |  Branch (9425:3): [True: 194, False: 516k]
  ------------------
 9426|    194|    if (len == 8) {
  ------------------
  |  Branch (9426:9): [True: 194, False: 0]
  ------------------
 9427|    194|      return 8978;
 9428|    194|    }
 9429|      0|    break;
 9430|       |    /* profsurf */
 9431|      0|  case 0x08c443ccd2db0c7aULL:
  ------------------
  |  Branch (9431:3): [True: 0, False: 516k]
  ------------------
 9432|      0|    if (len == 8) {
  ------------------
  |  Branch (9432:9): [True: 0, False: 0]
  ------------------
 9433|      0|      return 8979;
 9434|      0|    }
 9435|      0|    break;
 9436|       |    /* prop */
 9437|    194|  case 0x8572880e35379c18ULL:
  ------------------
  |  Branch (9437:3): [True: 194, False: 516k]
  ------------------
 9438|    194|    if (len == 4) {
  ------------------
  |  Branch (9438:9): [True: 194, False: 0]
  ------------------
 9439|    194|      return 8733;
 9440|    194|    }
 9441|      0|    break;
 9442|       |    /* propto */
 9443|    194|  case 0xfbb03ce60e748051ULL:
  ------------------
  |  Branch (9443:3): [True: 194, False: 516k]
  ------------------
 9444|    194|    if (len == 6) {
  ------------------
  |  Branch (9444:9): [True: 194, False: 0]
  ------------------
 9445|    194|      return 8733;
 9446|    194|    }
 9447|      0|    break;
 9448|       |    /* prsim */
 9449|    194|  case 0x62237524a9318086ULL:
  ------------------
  |  Branch (9449:3): [True: 194, False: 516k]
  ------------------
 9450|    194|    if (len == 5) {
  ------------------
  |  Branch (9450:9): [True: 194, False: 0]
  ------------------
 9451|    194|      return 8830;
 9452|    194|    }
 9453|      0|    break;
 9454|       |    /* prurel */
 9455|    194|  case 0x28934a396165c925ULL:
  ------------------
  |  Branch (9455:3): [True: 194, False: 516k]
  ------------------
 9456|    194|    if (len == 6) {
  ------------------
  |  Branch (9456:9): [True: 194, False: 0]
  ------------------
 9457|    194|      return 8880;
 9458|    194|    }
 9459|      0|    break;
 9460|       |    /* pscr */
 9461|    194|  case 0x7e835b0e31c7d525ULL:
  ------------------
  |  Branch (9461:3): [True: 194, False: 516k]
  ------------------
 9462|    194|    if (len == 4) {
  ------------------
  |  Branch (9462:9): [True: 194, False: 0]
  ------------------
 9463|    194|      return 120005;
 9464|    194|    }
 9465|      0|    break;
 9466|       |    /* psi */
 9467|    194|  case 0x77fa7919569ffbe7ULL:
  ------------------
  |  Branch (9467:3): [True: 194, False: 516k]
  ------------------
 9468|    194|    if (len == 3) {
  ------------------
  |  Branch (9468:9): [True: 194, False: 0]
  ------------------
 9469|    194|      return 968;
 9470|    194|    }
 9471|      0|    break;
 9472|       |    /* puncsp */
 9473|    194|  case 0x40f9d900abd274caULL:
  ------------------
  |  Branch (9473:3): [True: 194, False: 516k]
  ------------------
 9474|    194|    if (len == 6) {
  ------------------
  |  Branch (9474:9): [True: 194, False: 0]
  ------------------
 9475|    194|      return 8200;
 9476|    194|    }
 9477|      0|    break;
 9478|       |    /* qfr */
 9479|    194|  case 0x70d0491952fd0494ULL:
  ------------------
  |  Branch (9479:3): [True: 194, False: 516k]
  ------------------
 9480|    194|    if (len == 3) {
  ------------------
  |  Branch (9480:9): [True: 194, False: 0]
  ------------------
 9481|    194|      return 120110;
 9482|    194|    }
 9483|      0|    break;
 9484|       |    /* qint */
 9485|    194|  case 0x83424f07eb1617a5ULL:
  ------------------
  |  Branch (9485:3): [True: 194, False: 516k]
  ------------------
 9486|    194|    if (len == 4) {
  ------------------
  |  Branch (9486:9): [True: 194, False: 0]
  ------------------
 9487|    194|      return 10764;
 9488|    194|    }
 9489|      0|    break;
 9490|       |    /* qopf */
 9491|    194|  case 0x74e21b07e3c79c67ULL:
  ------------------
  |  Branch (9491:3): [True: 194, False: 516k]
  ------------------
 9492|    194|    if (len == 4) {
  ------------------
  |  Branch (9492:9): [True: 194, False: 0]
  ------------------
 9493|    194|      return 120162;
 9494|    194|    }
 9495|      0|    break;
 9496|       |    /* qprime */
 9497|    194|  case 0xc369609d4ca94b03ULL:
  ------------------
  |  Branch (9497:3): [True: 194, False: 516k]
  ------------------
 9498|    194|    if (len == 6) {
  ------------------
  |  Branch (9498:9): [True: 194, False: 0]
  ------------------
 9499|    194|      return 8279;
 9500|    194|    }
 9501|      0|    break;
 9502|       |    /* qscr */
 9503|    202|  case 0x512f6107cf42f958ULL:
  ------------------
  |  Branch (9503:3): [True: 202, False: 516k]
  ------------------
 9504|    202|    if (len == 4) {
  ------------------
  |  Branch (9504:9): [True: 202, False: 0]
  ------------------
 9505|    202|      return 120006;
 9506|    202|    }
 9507|      0|    break;
 9508|       |    /* quaternions */
 9509|      0|  case 0x506137c3345d957aULL:
  ------------------
  |  Branch (9509:3): [True: 0, False: 516k]
  ------------------
 9510|      0|    if (len == 11) {
  ------------------
  |  Branch (9510:9): [True: 0, False: 0]
  ------------------
 9511|      0|      return 8461;
 9512|      0|    }
 9513|      0|    break;
 9514|       |    /* quatint */
 9515|    194|  case 0x1c11594f9f34416fULL:
  ------------------
  |  Branch (9515:3): [True: 194, False: 516k]
  ------------------
 9516|    194|    if (len == 7) {
  ------------------
  |  Branch (9516:9): [True: 194, False: 0]
  ------------------
 9517|    194|      return 10774;
 9518|    194|    }
 9519|      0|    break;
 9520|       |    /* quest */
 9521|    246|  case 0xb109a0146c47e97dULL:
  ------------------
  |  Branch (9521:3): [True: 246, False: 516k]
  ------------------
 9522|    246|    if (len == 5) {
  ------------------
  |  Branch (9522:9): [True: 246, False: 0]
  ------------------
 9523|    246|      return 63;
 9524|    246|    }
 9525|      0|    break;
 9526|       |    /* questeq */
 9527|    194|  case 0x85cd18d8ed64835bULL:
  ------------------
  |  Branch (9527:3): [True: 194, False: 516k]
  ------------------
 9528|    194|    if (len == 7) {
  ------------------
  |  Branch (9528:9): [True: 194, False: 0]
  ------------------
 9529|    194|      return 8799;
 9530|    194|    }
 9531|      0|    break;
 9532|       |    /* quot */
 9533|    194|  case 0x1df46d07b2740bc8ULL:
  ------------------
  |  Branch (9533:3): [True: 194, False: 516k]
  ------------------
 9534|    194|    if (len == 4) {
  ------------------
  |  Branch (9534:9): [True: 194, False: 0]
  ------------------
 9535|    194|      return 34;
 9536|    194|    }
 9537|      0|    break;
 9538|       |    /* rAarr */
 9539|    194|  case 0x891d9d05e8bf1067ULL:
  ------------------
  |  Branch (9539:3): [True: 194, False: 516k]
  ------------------
 9540|    194|    if (len == 5) {
  ------------------
  |  Branch (9540:9): [True: 194, False: 0]
  ------------------
 9541|    194|      return 8667;
 9542|    194|    }
 9543|      0|    break;
 9544|       |    /* rArr */
 9545|    194|  case 0x579cef1f342784a8ULL:
  ------------------
  |  Branch (9545:3): [True: 194, False: 516k]
  ------------------
 9546|    194|    if (len == 4) {
  ------------------
  |  Branch (9546:9): [True: 194, False: 0]
  ------------------
 9547|    194|      return 8658;
 9548|    194|    }
 9549|      0|    break;
 9550|       |    /* rAtail */
 9551|    194|  case 0x80a6565d9e35a26eULL:
  ------------------
  |  Branch (9551:3): [True: 194, False: 516k]
  ------------------
 9552|    194|    if (len == 6) {
  ------------------
  |  Branch (9552:9): [True: 194, False: 0]
  ------------------
 9553|    194|      return 10524;
 9554|    194|    }
 9555|      0|    break;
 9556|       |    /* rBarr */
 9557|    194|  case 0xd82a032290aebec8ULL:
  ------------------
  |  Branch (9557:3): [True: 194, False: 516k]
  ------------------
 9558|    194|    if (len == 5) {
  ------------------
  |  Branch (9558:9): [True: 194, False: 0]
  ------------------
 9559|    194|      return 10511;
 9560|    194|    }
 9561|      0|    break;
 9562|       |    /* rHar */
 9563|    194|  case 0xa698501f612e6f20ULL:
  ------------------
  |  Branch (9563:3): [True: 194, False: 516k]
  ------------------
 9564|    194|    if (len == 4) {
  ------------------
  |  Branch (9564:9): [True: 194, False: 0]
  ------------------
 9565|    194|      return 10596;
 9566|    194|    }
 9567|      0|    break;
 9568|       |    /* racute */
 9569|    194|  case 0xc9284782c39fb483ULL:
  ------------------
  |  Branch (9569:3): [True: 194, False: 516k]
  ------------------
 9570|    194|    if (len == 6) {
  ------------------
  |  Branch (9570:9): [True: 194, False: 0]
  ------------------
 9571|    194|      return 341;
 9572|    194|    }
 9573|      0|    break;
 9574|       |    /* radic */
 9575|    202|  case 0x8813c811d16918b0ULL:
  ------------------
  |  Branch (9575:3): [True: 202, False: 516k]
  ------------------
 9576|    202|    if (len == 5) {
  ------------------
  |  Branch (9576:9): [True: 202, False: 0]
  ------------------
 9577|    202|      return 8730;
 9578|    202|    }
 9579|      0|    break;
 9580|       |    /* raemptyv */
 9581|    194|  case 0x5ae2ca7f7cb82b21ULL:
  ------------------
  |  Branch (9581:3): [True: 194, False: 516k]
  ------------------
 9582|    194|    if (len == 8) {
  ------------------
  |  Branch (9582:9): [True: 194, False: 0]
  ------------------
 9583|    194|      return 10675;
 9584|    194|    }
 9585|      0|    break;
 9586|       |    /* rang */
 9587|    197|  case 0x6db3141fd1eb23e3ULL:
  ------------------
  |  Branch (9587:3): [True: 197, False: 516k]
  ------------------
 9588|    197|    if (len == 4) {
  ------------------
  |  Branch (9588:9): [True: 197, False: 0]
  ------------------
 9589|    197|      return 10217;
 9590|    197|    }
 9591|      0|    break;
 9592|       |    /* rangd */
 9593|    194|  case 0x526eb911b28d5e65ULL:
  ------------------
  |  Branch (9593:3): [True: 194, False: 516k]
  ------------------
 9594|    194|    if (len == 5) {
  ------------------
  |  Branch (9594:9): [True: 194, False: 0]
  ------------------
 9595|    194|      return 10642;
 9596|    194|    }
 9597|      0|    break;
 9598|       |    /* range */
 9599|    194|  case 0x526eb811b28d5cb2ULL:
  ------------------
  |  Branch (9599:3): [True: 194, False: 516k]
  ------------------
 9600|    194|    if (len == 5) {
  ------------------
  |  Branch (9600:9): [True: 194, False: 0]
  ------------------
 9601|    194|      return 10661;
 9602|    194|    }
 9603|      0|    break;
 9604|       |    /* rangle */
 9605|    200|  case 0x9f9da912664dd348ULL:
  ------------------
  |  Branch (9605:3): [True: 200, False: 516k]
  ------------------
 9606|    200|    if (len == 6) {
  ------------------
  |  Branch (9606:9): [True: 200, False: 0]
  ------------------
 9607|    200|      return 10217;
 9608|    200|    }
 9609|      0|    break;
 9610|       |    /* raquo */
 9611|    194|  case 0x26e8f11199d730cbULL:
  ------------------
  |  Branch (9611:3): [True: 194, False: 516k]
  ------------------
 9612|    194|    if (len == 5) {
  ------------------
  |  Branch (9612:9): [True: 194, False: 0]
  ------------------
 9613|    194|      return 187;
 9614|    194|    }
 9615|      0|    break;
 9616|       |    /* rarr */
 9617|    198|  case 0x6da60f1fd1e09108ULL:
  ------------------
  |  Branch (9617:3): [True: 198, False: 516k]
  ------------------
 9618|    198|    if (len == 4) {
  ------------------
  |  Branch (9618:9): [True: 198, False: 0]
  ------------------
 9619|    198|      return 8594;
 9620|    198|    }
 9621|      0|    break;
 9622|       |    /* rarrap */
 9623|    194|  case 0x1b6bccf3e0b8dce1ULL:
  ------------------
  |  Branch (9623:3): [True: 194, False: 516k]
  ------------------
 9624|    194|    if (len == 6) {
  ------------------
  |  Branch (9624:9): [True: 194, False: 0]
  ------------------
 9625|    194|      return 10613;
 9626|    194|    }
 9627|      0|    break;
 9628|       |    /* rarrb */
 9629|    194|  case 0x31bd1d11a097171eULL:
  ------------------
  |  Branch (9629:3): [True: 194, False: 516k]
  ------------------
 9630|    194|    if (len == 5) {
  ------------------
  |  Branch (9630:9): [True: 194, False: 0]
  ------------------
 9631|    194|      return 8677;
 9632|    194|    }
 9633|      0|    break;
 9634|       |    /* rarrbfs */
 9635|    194|  case 0x5bf50d66e0f1a761ULL:
  ------------------
  |  Branch (9635:3): [True: 194, False: 516k]
  ------------------
 9636|    194|    if (len == 7) {
  ------------------
  |  Branch (9636:9): [True: 194, False: 0]
  ------------------
 9637|    194|      return 10528;
 9638|    194|    }
 9639|      0|    break;
 9640|       |    /* rarrc */
 9641|    194|  case 0x31bd1e11a09718d1ULL:
  ------------------
  |  Branch (9641:3): [True: 194, False: 516k]
  ------------------
 9642|    194|    if (len == 5) {
  ------------------
  |  Branch (9642:9): [True: 194, False: 0]
  ------------------
 9643|    194|      return 10547;
 9644|    194|    }
 9645|      0|    break;
 9646|       |    /* rarrfs */
 9647|    194|  case 0x1b7cc9f3e0c74afbULL:
  ------------------
  |  Branch (9647:3): [True: 194, False: 516k]
  ------------------
 9648|    194|    if (len == 6) {
  ------------------
  |  Branch (9648:9): [True: 194, False: 0]
  ------------------
 9649|    194|      return 10526;
 9650|    194|    }
 9651|      0|    break;
 9652|       |    /* rarrhk */
 9653|    194|  case 0x1b4db1f3e09fb171ULL:
  ------------------
  |  Branch (9653:3): [True: 194, False: 516k]
  ------------------
 9654|    194|    if (len == 6) {
  ------------------
  |  Branch (9654:9): [True: 194, False: 0]
  ------------------
 9655|    194|      return 8618;
 9656|    194|    }
 9657|      0|    break;
 9658|       |    /* rarrlp */
 9659|    194|  case 0x1b5acef3e0aa6d14ULL:
  ------------------
  |  Branch (9659:3): [True: 194, False: 516k]
  ------------------
 9660|    194|    if (len == 6) {
  ------------------
  |  Branch (9660:9): [True: 194, False: 0]
  ------------------
 9661|    194|      return 8620;
 9662|    194|    }
 9663|      0|    break;
 9664|       |    /* rarrpl */
 9665|    194|  case 0x1b9eb2f3e0e40a4cULL:
  ------------------
  |  Branch (9665:3): [True: 194, False: 516k]
  ------------------
 9666|    194|    if (len == 6) {
  ------------------
  |  Branch (9666:9): [True: 194, False: 0]
  ------------------
 9667|    194|      return 10565;
 9668|    194|    }
 9669|      0|    break;
 9670|       |    /* rarrsim */
 9671|    194|  case 0xef62d067347fcdefULL:
  ------------------
  |  Branch (9671:3): [True: 194, False: 516k]
  ------------------
 9672|    194|    if (len == 7) {
  ------------------
  |  Branch (9672:9): [True: 194, False: 0]
  ------------------
 9673|    194|      return 10612;
 9674|    194|    }
 9675|      0|    break;
 9676|       |    /* rarrtl */
 9677|    194|  case 0x1bacd2f3e0f07e08ULL:
  ------------------
  |  Branch (9677:3): [True: 194, False: 516k]
  ------------------
 9678|    194|    if (len == 6) {
  ------------------
  |  Branch (9678:9): [True: 194, False: 0]
  ------------------
 9679|    194|      return 8611;
 9680|    194|    }
 9681|      0|    break;
 9682|       |    /* rarrw */
 9683|    194|  case 0x31bd3211a0973acdULL:
  ------------------
  |  Branch (9683:3): [True: 194, False: 516k]
  ------------------
 9684|    194|    if (len == 5) {
  ------------------
  |  Branch (9684:9): [True: 194, False: 0]
  ------------------
 9685|    194|      return 8605;
 9686|    194|    }
 9687|      0|    break;
 9688|       |    /* ratail */
 9689|    194|  case 0x93853dbf256920ceULL:
  ------------------
  |  Branch (9689:3): [True: 194, False: 516k]
  ------------------
 9690|    194|    if (len == 6) {
  ------------------
  |  Branch (9690:9): [True: 194, False: 0]
  ------------------
 9691|    194|      return 10522;
 9692|    194|    }
 9693|      0|    break;
 9694|       |    /* ratio */
 9695|    194|  case 0xfbc924118177ade4ULL:
  ------------------
  |  Branch (9695:3): [True: 194, False: 516k]
  ------------------
 9696|    194|    if (len == 5) {
  ------------------
  |  Branch (9696:9): [True: 194, False: 0]
  ------------------
 9697|    194|      return 8758;
 9698|    194|    }
 9699|      0|    break;
 9700|       |    /* rationals */
 9701|      0|  case 0x19014f5fafee1d80ULL:
  ------------------
  |  Branch (9701:3): [True: 0, False: 516k]
  ------------------
 9702|      0|    if (len == 9) {
  ------------------
  |  Branch (9702:9): [True: 0, False: 0]
  ------------------
 9703|      0|      return 8474;
 9704|      0|    }
 9705|      0|    break;
 9706|       |    /* rbarr */
 9707|    194|  case 0x55d70429a73d5ea8ULL:
  ------------------
  |  Branch (9707:3): [True: 194, False: 516k]
  ------------------
 9708|    194|    if (len == 5) {
  ------------------
  |  Branch (9708:9): [True: 194, False: 0]
  ------------------
 9709|    194|      return 10509;
 9710|    194|    }
 9711|      0|    break;
 9712|       |    /* rbbrk */
 9713|    194|  case 0x72607029b8208a6aULL:
  ------------------
  |  Branch (9713:3): [True: 194, False: 516k]
  ------------------
 9714|    194|    if (len == 5) {
  ------------------
  |  Branch (9714:9): [True: 194, False: 0]
  ------------------
 9715|    194|      return 10099;
 9716|    194|    }
 9717|      0|    break;
 9718|       |    /* rbrace */
 9719|    194|  case 0x6a75b65b0c353128ULL:
  ------------------
  |  Branch (9719:3): [True: 194, False: 516k]
  ------------------
 9720|    194|    if (len == 6) {
  ------------------
  |  Branch (9720:9): [True: 194, False: 0]
  ------------------
 9721|    194|      return 125;
 9722|    194|    }
 9723|      0|    break;
 9724|       |    /* rbrack */
 9725|    194|  case 0x6a75b45b0c352dc2ULL:
  ------------------
  |  Branch (9725:3): [True: 194, False: 516k]
  ------------------
 9726|    194|    if (len == 6) {
  ------------------
  |  Branch (9726:9): [True: 194, False: 0]
  ------------------
 9727|    194|      return 93;
 9728|    194|    }
 9729|      0|    break;
 9730|       |    /* rbrke */
 9731|    194|  case 0xe589e62967b7c95dULL:
  ------------------
  |  Branch (9731:3): [True: 194, False: 516k]
  ------------------
 9732|    194|    if (len == 5) {
  ------------------
  |  Branch (9732:9): [True: 194, False: 0]
  ------------------
 9733|    194|      return 10636;
 9734|    194|    }
 9735|      0|    break;
 9736|       |    /* rbrksld */
 9737|    194|  case 0xc2f58309575e0de3ULL:
  ------------------
  |  Branch (9737:3): [True: 194, False: 516k]
  ------------------
 9738|    194|    if (len == 7) {
  ------------------
  |  Branch (9738:9): [True: 194, False: 0]
  ------------------
 9739|    194|      return 10638;
 9740|    194|    }
 9741|      0|    break;
 9742|       |    /* rbrkslu */
 9743|    194|  case 0xc2f57209575df100ULL:
  ------------------
  |  Branch (9743:3): [True: 194, False: 516k]
  ------------------
 9744|    194|    if (len == 7) {
  ------------------
  |  Branch (9744:9): [True: 194, False: 0]
  ------------------
 9745|    194|      return 10640;
 9746|    194|    }
 9747|      0|    break;
 9748|       |    /* rcaron */
 9749|    194|  case 0x4c8265c2ea891dbcULL:
  ------------------
  |  Branch (9749:3): [True: 194, False: 516k]
  ------------------
 9750|    194|    if (len == 6) {
  ------------------
  |  Branch (9750:9): [True: 194, False: 0]
  ------------------
 9751|    194|      return 345;
 9752|    194|    }
 9753|      0|    break;
 9754|       |    /* rcedil */
 9755|    194|  case 0x4e2f79e5af16adc6ULL:
  ------------------
  |  Branch (9755:3): [True: 194, False: 516k]
  ------------------
 9756|    194|    if (len == 6) {
  ------------------
  |  Branch (9756:9): [True: 194, False: 0]
  ------------------
 9757|    194|      return 343;
 9758|    194|    }
 9759|      0|    break;
 9760|       |    /* rceil */
 9761|    194|  case 0x1554ce22a96ca078ULL:
  ------------------
  |  Branch (9761:3): [True: 194, False: 516k]
  ------------------
 9762|    194|    if (len == 5) {
  ------------------
  |  Branch (9762:9): [True: 194, False: 0]
  ------------------
 9763|    194|      return 8969;
 9764|    194|    }
 9765|      0|    break;
 9766|       |    /* rcub */
 9767|    198|  case 0x7f6f6b1fdc14af15ULL:
  ------------------
  |  Branch (9767:3): [True: 198, False: 516k]
  ------------------
 9768|    198|    if (len == 4) {
  ------------------
  |  Branch (9768:9): [True: 198, False: 0]
  ------------------
 9769|    198|      return 125;
 9770|    198|    }
 9771|      0|    break;
 9772|       |    /* rcy */
 9773|    194|  case 0x89fdb71961055f41ULL:
  ------------------
  |  Branch (9773:3): [True: 194, False: 516k]
  ------------------
 9774|    194|    if (len == 3) {
  ------------------
  |  Branch (9774:9): [True: 194, False: 0]
  ------------------
 9775|    194|      return 1088;
 9776|    194|    }
 9777|      0|    break;
 9778|       |    /* rdca */
 9779|    194|  case 0x53ce731fc3476833ULL:
  ------------------
  |  Branch (9779:3): [True: 194, False: 516k]
  ------------------
 9780|    194|    if (len == 4) {
  ------------------
  |  Branch (9780:9): [True: 194, False: 0]
  ------------------
 9781|    194|      return 10551;
 9782|    194|    }
 9783|      0|    break;
 9784|       |    /* rdldhar */
 9785|    194|  case 0x258527708e3d4e5eULL:
  ------------------
  |  Branch (9785:3): [True: 194, False: 516k]
  ------------------
 9786|    194|    if (len == 7) {
  ------------------
  |  Branch (9786:9): [True: 194, False: 0]
  ------------------
 9787|    194|      return 10601;
 9788|    194|    }
 9789|      0|    break;
 9790|       |    /* rdquo */
 9791|    194|  case 0x4adcdcf92a6cd582ULL:
  ------------------
  |  Branch (9791:3): [True: 194, False: 516k]
  ------------------
 9792|    194|    if (len == 5) {
  ------------------
  |  Branch (9792:9): [True: 194, False: 0]
  ------------------
 9793|    194|      return 8221;
 9794|    194|    }
 9795|      0|    break;
 9796|       |    /* rdquor */
 9797|    194|  case 0xa2216b6316ef86d0ULL:
  ------------------
  |  Branch (9797:3): [True: 194, False: 516k]
  ------------------
 9798|    194|    if (len == 6) {
  ------------------
  |  Branch (9798:9): [True: 194, False: 0]
  ------------------
 9799|    194|      return 8221;
 9800|    194|    }
 9801|      0|    break;
 9802|       |    /* rdsh */
 9803|    194|  case 0x54059a1fc376ece8ULL:
  ------------------
  |  Branch (9803:3): [True: 194, False: 516k]
  ------------------
 9804|    194|    if (len == 4) {
  ------------------
  |  Branch (9804:9): [True: 194, False: 0]
  ------------------
 9805|    194|      return 8627;
 9806|    194|    }
 9807|      0|    break;
 9808|       |    /* real */
 9809|    194|  case 0x4ce65b1fbfdde39dULL:
  ------------------
  |  Branch (9809:3): [True: 194, False: 516k]
  ------------------
 9810|    194|    if (len == 4) {
  ------------------
  |  Branch (9810:9): [True: 194, False: 0]
  ------------------
 9811|    194|      return 8476;
 9812|    194|    }
 9813|      0|    break;
 9814|       |    /* realine */
 9815|    194|  case 0x5eac945bd387dd09ULL:
  ------------------
  |  Branch (9815:3): [True: 194, False: 516k]
  ------------------
 9816|    194|    if (len == 7) {
  ------------------
  |  Branch (9816:9): [True: 194, False: 0]
  ------------------
 9817|    194|      return 8475;
 9818|    194|    }
 9819|      0|    break;
 9820|       |    /* realpart */
 9821|    194|  case 0x2b1259cd06bd15ccULL:
  ------------------
  |  Branch (9821:3): [True: 194, False: 516k]
  ------------------
 9822|    194|    if (len == 8) {
  ------------------
  |  Branch (9822:9): [True: 194, False: 0]
  ------------------
 9823|    194|      return 8476;
 9824|    194|    }
 9825|      0|    break;
 9826|       |    /* reals */
 9827|    200|  case 0x8950c4f3060a4d6aULL:
  ------------------
  |  Branch (9827:3): [True: 200, False: 516k]
  ------------------
 9828|    200|    if (len == 5) {
  ------------------
  |  Branch (9828:9): [True: 200, False: 0]
  ------------------
 9829|    200|      return 8477;
 9830|    200|    }
 9831|      0|    break;
 9832|       |    /* rect */
 9833|    194|  case 0x4cec6f1fbfe27147ULL:
  ------------------
  |  Branch (9833:3): [True: 194, False: 516k]
  ------------------
 9834|    194|    if (len == 4) {
  ------------------
  |  Branch (9834:9): [True: 194, False: 0]
  ------------------
 9835|    194|      return 9645;
 9836|    194|    }
 9837|      0|    break;
 9838|       |    /* reg */
 9839|    194|  case 0x89e9c11960f4c735ULL:
  ------------------
  |  Branch (9839:3): [True: 194, False: 516k]
  ------------------
 9840|    194|    if (len == 3) {
  ------------------
  |  Branch (9840:9): [True: 194, False: 0]
  ------------------
 9841|    194|      return 174;
 9842|    194|    }
 9843|      0|    break;
 9844|       |    /* rfisht */
 9845|    194|  case 0x2d45bd077d9a9de5ULL:
  ------------------
  |  Branch (9845:3): [True: 194, False: 516k]
  ------------------
 9846|    194|    if (len == 6) {
  ------------------
  |  Branch (9846:9): [True: 194, False: 0]
  ------------------
 9847|    194|      return 10621;
 9848|    194|    }
 9849|      0|    break;
 9850|       |    /* rfloor */
 9851|    217|  case 0x4fa34b31bea9056dULL:
  ------------------
  |  Branch (9851:3): [True: 217, False: 516k]
  ------------------
 9852|    217|    if (len == 6) {
  ------------------
  |  Branch (9852:9): [True: 217, False: 0]
  ------------------
 9853|    217|      return 8971;
 9854|    217|    }
 9855|      0|    break;
 9856|       |    /* rfr */
 9857|    195|  case 0x89f3be1960fd16a1ULL:
  ------------------
  |  Branch (9857:3): [True: 195, False: 516k]
  ------------------
 9858|    195|    if (len == 3) {
  ------------------
  |  Branch (9858:9): [True: 195, False: 0]
  ------------------
 9859|    195|      return 120111;
 9860|    195|    }
 9861|      0|    break;
 9862|       |    /* rhard */
 9863|    194|  case 0x6a676a5e20745b6cULL:
  ------------------
  |  Branch (9863:3): [True: 194, False: 516k]
  ------------------
 9864|    194|    if (len == 5) {
  ------------------
  |  Branch (9864:9): [True: 194, False: 0]
  ------------------
 9865|    194|      return 8641;
 9866|    194|    }
 9867|      0|    break;
 9868|       |    /* rharu */
 9869|    194|  case 0x6a677b5e2074784fULL:
  ------------------
  |  Branch (9869:3): [True: 194, False: 516k]
  ------------------
 9870|    194|    if (len == 5) {
  ------------------
  |  Branch (9870:9): [True: 194, False: 0]
  ------------------
 9871|    194|      return 8640;
 9872|    194|    }
 9873|      0|    break;
 9874|       |    /* rharul */
 9875|    194|  case 0x424ec3f125e82379ULL:
  ------------------
  |  Branch (9875:3): [True: 194, False: 516k]
  ------------------
 9876|    194|    if (len == 6) {
  ------------------
  |  Branch (9876:9): [True: 194, False: 0]
  ------------------
 9877|    194|      return 10604;
 9878|    194|    }
 9879|      0|    break;
 9880|       |    /* rho */
 9881|    257|  case 0x8a15a9196119d958ULL:
  ------------------
  |  Branch (9881:3): [True: 257, False: 516k]
  ------------------
 9882|    257|    if (len == 3) {
  ------------------
  |  Branch (9882:9): [True: 257, False: 0]
  ------------------
 9883|    257|      return 961;
 9884|    257|    }
 9885|      0|    break;
 9886|       |    /* rhov */
 9887|    194|  case 0xbca7841ffeec092aULL:
  ------------------
  |  Branch (9887:3): [True: 194, False: 516k]
  ------------------
 9888|    194|    if (len == 4) {
  ------------------
  |  Branch (9888:9): [True: 194, False: 0]
  ------------------
 9889|    194|      return 1009;
 9890|    194|    }
 9891|      0|    break;
 9892|       |    /* rightarrow */
 9893|      0|  case 0xc071503c76e89ca6ULL:
  ------------------
  |  Branch (9893:3): [True: 0, False: 516k]
  ------------------
 9894|      0|    if (len == 10) {
  ------------------
  |  Branch (9894:9): [True: 0, False: 0]
  ------------------
 9895|      0|      return 8594;
 9896|      0|    }
 9897|      0|    break;
 9898|       |    /* rightarrowtail */
 9899|      0|  case 0xa993a3f8974ce4e8ULL:
  ------------------
  |  Branch (9899:3): [True: 0, False: 516k]
  ------------------
 9900|      0|    if (len == 14) {
  ------------------
  |  Branch (9900:9): [True: 0, False: 0]
  ------------------
 9901|      0|      return 8611;
 9902|      0|    }
 9903|      0|    break;
 9904|       |    /* rightharpoondown */
 9905|      0|  case 0x42f6fa0544f46134ULL:
  ------------------
  |  Branch (9905:3): [True: 0, False: 516k]
  ------------------
 9906|      0|    if (len == 16) {
  ------------------
  |  Branch (9906:9): [True: 0, False: 0]
  ------------------
 9907|      0|      return 8641;
 9908|      0|    }
 9909|      0|    break;
 9910|       |    /* rightharpoonup */
 9911|      0|  case 0xaee5b2fc3ec1cc15ULL:
  ------------------
  |  Branch (9911:3): [True: 0, False: 516k]
  ------------------
 9912|      0|    if (len == 14) {
  ------------------
  |  Branch (9912:9): [True: 0, False: 0]
  ------------------
 9913|      0|      return 8640;
 9914|      0|    }
 9915|      0|    break;
 9916|       |    /* rightleftarrows */
 9917|      0|  case 0x251377195cd75f2eULL:
  ------------------
  |  Branch (9917:3): [True: 0, False: 516k]
  ------------------
 9918|      0|    if (len == 15) {
  ------------------
  |  Branch (9918:9): [True: 0, False: 0]
  ------------------
 9919|      0|      return 8644;
 9920|      0|    }
 9921|      0|    break;
 9922|       |    /* rightleftharpoons */
 9923|      0|  case 0x847392a413f0da20ULL:
  ------------------
  |  Branch (9923:3): [True: 0, False: 516k]
  ------------------
 9924|      0|    if (len == 17) {
  ------------------
  |  Branch (9924:9): [True: 0, False: 0]
  ------------------
 9925|      0|      return 8652;
 9926|      0|    }
 9927|      0|    break;
 9928|       |    /* rightrightarrows */
 9929|      0|  case 0x65d0a7589e0c4a4fULL:
  ------------------
  |  Branch (9929:3): [True: 0, False: 516k]
  ------------------
 9930|      0|    if (len == 16) {
  ------------------
  |  Branch (9930:9): [True: 0, False: 0]
  ------------------
 9931|      0|      return 8649;
 9932|      0|    }
 9933|      0|    break;
 9934|       |    /* rightsquigarrow */
 9935|      0|  case 0xcb8fc84ce59e5d99ULL:
  ------------------
  |  Branch (9935:3): [True: 0, False: 516k]
  ------------------
 9936|      0|    if (len == 15) {
  ------------------
  |  Branch (9936:9): [True: 0, False: 0]
  ------------------
 9937|      0|      return 8605;
 9938|      0|    }
 9939|      0|    break;
 9940|       |    /* rightthreetimes */
 9941|      0|  case 0x28d97b179436cd2bULL:
  ------------------
  |  Branch (9941:3): [True: 0, False: 516k]
  ------------------
 9942|      0|    if (len == 15) {
  ------------------
  |  Branch (9942:9): [True: 0, False: 0]
  ------------------
 9943|      0|      return 8908;
 9944|      0|    }
 9945|      0|    break;
 9946|       |    /* ring */
 9947|    194|  case 0xb25c4c1ff8a15b0bULL:
  ------------------
  |  Branch (9947:3): [True: 194, False: 516k]
  ------------------
 9948|    194|    if (len == 4) {
  ------------------
  |  Branch (9948:9): [True: 194, False: 0]
  ------------------
 9949|    194|      return 730;
 9950|    194|    }
 9951|      0|    break;
 9952|       |    /* risingdotseq */
 9953|      0|  case 0x97f5bbc58d91b14dULL:
  ------------------
  |  Branch (9953:3): [True: 0, False: 516k]
  ------------------
 9954|      0|    if (len == 12) {
  ------------------
  |  Branch (9954:9): [True: 0, False: 0]
  ------------------
 9955|      0|      return 8787;
 9956|      0|    }
 9957|      0|    break;
 9958|       |    /* rlarr */
 9959|    194|  case 0xc316e83b9023f6f2ULL:
  ------------------
  |  Branch (9959:3): [True: 194, False: 516k]
  ------------------
 9960|    194|    if (len == 5) {
  ------------------
  |  Branch (9960:9): [True: 194, False: 0]
  ------------------
 9961|    194|      return 8644;
 9962|    194|    }
 9963|      0|    break;
 9964|       |    /* rlhar */
 9965|    203|  case 0x8567d13b6ce779deULL:
  ------------------
  |  Branch (9965:3): [True: 203, False: 516k]
  ------------------
 9966|    203|    if (len == 5) {
  ------------------
  |  Branch (9966:9): [True: 203, False: 0]
  ------------------
 9967|    203|      return 8652;
 9968|    203|    }
 9969|      0|    break;
 9970|       |    /* rlm */
 9971|    194|  case 0x8a07cb19610dd5c2ULL:
  ------------------
  |  Branch (9971:3): [True: 194, False: 516k]
  ------------------
 9972|    194|    if (len == 3) {
  ------------------
  |  Branch (9972:9): [True: 194, False: 0]
  ------------------
 9973|    194|      return 8207;
 9974|    194|    }
 9975|      0|    break;
 9976|       |    /* rmoust */
 9977|    194|  case 0x4fd5371fb3168db7ULL:
  ------------------
  |  Branch (9977:3): [True: 194, False: 516k]
  ------------------
 9978|    194|    if (len == 6) {
  ------------------
  |  Branch (9978:9): [True: 194, False: 0]
  ------------------
 9979|    194|      return 9137;
 9980|    194|    }
 9981|      0|    break;
 9982|       |    /* rmoustache */
 9983|    194|  case 0x144fd67ad856a0ccULL:
  ------------------
  |  Branch (9983:3): [True: 194, False: 516k]
  ------------------
 9984|    194|    if (len == 10) {
  ------------------
  |  Branch (9984:9): [True: 194, False: 0]
  ------------------
 9985|    194|      return 9137;
 9986|    194|    }
 9987|      0|    break;
 9988|       |    /* rnmid */
 9989|    194|  case 0x6939904c75ee9349ULL:
  ------------------
  |  Branch (9989:3): [True: 194, False: 516k]
  ------------------
 9990|    194|    if (len == 5) {
  ------------------
  |  Branch (9990:9): [True: 194, False: 0]
  ------------------
 9991|    194|      return 10990;
 9992|    194|    }
 9993|      0|    break;
 9994|       |    /* roang */
 9995|    194|  case 0xc8d00d4663e3014aULL:
  ------------------
  |  Branch (9995:3): [True: 194, False: 516k]
  ------------------
 9996|    194|    if (len == 5) {
  ------------------
  |  Branch (9996:9): [True: 194, False: 0]
  ------------------
 9997|    194|      return 10221;
 9998|    194|    }
 9999|      0|    break;
10000|       |    /* roarr */
10001|    194|  case 0xc8c3224663d89a9dULL:
  ------------------
  |  Branch (10001:3): [True: 194, False: 516k]
  ------------------
10002|    194|    if (len == 5) {
  ------------------
  |  Branch (10002:9): [True: 194, False: 0]
  ------------------
10003|    194|      return 8702;
10004|    194|    }
10005|      0|    break;
10006|       |    /* robrk */
10007|    194|  case 0xaf338646557d276bULL:
  ------------------
  |  Branch (10007:3): [True: 194, False: 516k]
  ------------------
10008|    194|    if (len == 5) {
  ------------------
  |  Branch (10008:9): [True: 194, False: 0]
  ------------------
10009|    194|      return 10215;
10010|    194|    }
10011|      0|    break;
10012|       |    /* ropar */
10013|    194|  case 0x4ae47146ad9c0c69ULL:
  ------------------
  |  Branch (10013:3): [True: 194, False: 516k]
  ------------------
10014|    194|    if (len == 5) {
  ------------------
  |  Branch (10014:9): [True: 194, False: 0]
  ------------------
10015|    194|      return 10630;
10016|    194|    }
10017|      0|    break;
10018|       |    /* ropf */
10019|    194|  case 0xa3b8191ff11914b4ULL:
  ------------------
  |  Branch (10019:3): [True: 194, False: 516k]
  ------------------
10020|    194|    if (len == 4) {
  ------------------
  |  Branch (10020:9): [True: 194, False: 0]
  ------------------
10021|    194|      return 120163;
10022|    194|    }
10023|      0|    break;
10024|       |    /* roplus */
10025|    194|  case 0xb2f3c018e7a9e372ULL:
  ------------------
  |  Branch (10025:3): [True: 194, False: 516k]
  ------------------
10026|    194|    if (len == 6) {
  ------------------
  |  Branch (10026:9): [True: 194, False: 0]
  ------------------
10027|    194|      return 10798;
10028|    194|    }
10029|      0|    break;
10030|       |    /* rotimes */
10031|    194|  case 0xbbfa0660c5691fdcULL:
  ------------------
  |  Branch (10031:3): [True: 194, False: 516k]
  ------------------
10032|    194|    if (len == 7) {
  ------------------
  |  Branch (10032:9): [True: 194, False: 0]
  ------------------
10033|    194|      return 10805;
10034|    194|    }
10035|      0|    break;
10036|       |    /* rpar */
10037|    194|  case 0xebe3a81f886d8af8ULL:
  ------------------
  |  Branch (10037:3): [True: 194, False: 516k]
  ------------------
10038|    194|    if (len == 4) {
  ------------------
  |  Branch (10038:9): [True: 194, False: 0]
  ------------------
10039|    194|      return 41;
10040|    194|    }
10041|      0|    break;
10042|       |    /* rpargt */
10043|    194|  case 0x3ae179e110b47b3bULL:
  ------------------
  |  Branch (10043:3): [True: 194, False: 516k]
  ------------------
10044|    194|    if (len == 6) {
  ------------------
  |  Branch (10044:9): [True: 194, False: 0]
  ------------------
10045|    194|      return 10644;
10046|    194|    }
10047|      0|    break;
10048|       |    /* rppolint */
10049|    194|  case 0x93b0a458c9383cffULL:
  ------------------
  |  Branch (10049:3): [True: 194, False: 516k]
  ------------------
10050|    194|    if (len == 8) {
  ------------------
  |  Branch (10050:9): [True: 194, False: 0]
  ------------------
10051|    194|      return 10770;
10052|    194|    }
10053|      0|    break;
10054|       |    /* rrarr */
10055|    195|  case 0x82aae3a57faf7058ULL:
  ------------------
  |  Branch (10055:3): [True: 195, False: 516k]
  ------------------
10056|    195|    if (len == 5) {
  ------------------
  |  Branch (10056:9): [True: 195, False: 0]
  ------------------
10057|    195|      return 8649;
10058|    195|    }
10059|      0|    break;
10060|       |    /* rsaquo */
10061|    194|  case 0x795edd46be16f458ULL:
  ------------------
  |  Branch (10061:3): [True: 194, False: 516k]
  ------------------
10062|    194|    if (len == 6) {
  ------------------
  |  Branch (10062:9): [True: 194, False: 0]
  ------------------
10063|    194|      return 8250;
10064|    194|    }
10065|      0|    break;
10066|       |    /* rscr */
10067|    196|  case 0xf640c31f8ec82e03ULL:
  ------------------
  |  Branch (10067:3): [True: 196, False: 516k]
  ------------------
10068|    196|    if (len == 4) {
  ------------------
  |  Branch (10068:9): [True: 196, False: 0]
  ------------------
10069|    196|      return 120007;
10070|    196|    }
10071|      0|    break;
10072|       |    /* rsh */
10073|    194|  case 0x89c7c61960d7e94eULL:
  ------------------
  |  Branch (10073:3): [True: 194, False: 516k]
  ------------------
10074|    194|    if (len == 3) {
  ------------------
  |  Branch (10074:9): [True: 194, False: 0]
  ------------------
10075|    194|      return 8625;
10076|    194|    }
10077|      0|    break;
10078|       |    /* rsqb */
10079|    194|  case 0xf610e31f8e9f40a1ULL:
  ------------------
  |  Branch (10079:3): [True: 194, False: 516k]
  ------------------
10080|    194|    if (len == 4) {
  ------------------
  |  Branch (10080:9): [True: 194, False: 0]
  ------------------
10081|    194|      return 93;
10082|    194|    }
10083|      0|    break;
10084|       |    /* rsquo */
10085|    194|  case 0xbdbfbc9f586fc471ULL:
  ------------------
  |  Branch (10085:3): [True: 194, False: 516k]
  ------------------
10086|    194|    if (len == 5) {
  ------------------
  |  Branch (10086:9): [True: 194, False: 0]
  ------------------
10087|    194|      return 8217;
10088|    194|    }
10089|      0|    break;
10090|       |    /* rsquor */
10091|    194|  case 0xdc9185c345ea1119ULL:
  ------------------
  |  Branch (10091:3): [True: 194, False: 516k]
  ------------------
10092|    194|    if (len == 6) {
  ------------------
  |  Branch (10092:9): [True: 194, False: 0]
  ------------------
10093|    194|      return 8217;
10094|    194|    }
10095|      0|    break;
10096|       |    /* rthree */
10097|    194|  case 0x31d0a2b062cb6133ULL:
  ------------------
  |  Branch (10097:3): [True: 194, False: 516k]
  ------------------
10098|    194|    if (len == 6) {
  ------------------
  |  Branch (10098:9): [True: 194, False: 0]
  ------------------
10099|    194|      return 8908;
10100|    194|    }
10101|      0|    break;
10102|       |    /* rtimes */
10103|    194|  case 0x41e63da50a4fab05ULL:
  ------------------
  |  Branch (10103:3): [True: 194, False: 516k]
  ------------------
10104|    194|    if (len == 6) {
  ------------------
  |  Branch (10104:9): [True: 194, False: 0]
  ------------------
10105|    194|      return 8906;
10106|    194|    }
10107|      0|    break;
10108|       |    /* rtri */
10109|    197|  case 0xcab70f1f760e398eULL:
  ------------------
  |  Branch (10109:3): [True: 197, False: 516k]
  ------------------
10110|    197|    if (len == 4) {
  ------------------
  |  Branch (10110:9): [True: 197, False: 0]
  ------------------
10111|    197|      return 9657;
10112|    197|    }
10113|      0|    break;
10114|       |    /* rtrie */
10115|    194|  case 0x83489d759a2c6a51ULL:
  ------------------
  |  Branch (10115:3): [True: 194, False: 516k]
  ------------------
10116|    194|    if (len == 5) {
  ------------------
  |  Branch (10116:9): [True: 194, False: 0]
  ------------------
10117|    194|      return 8885;
10118|    194|    }
10119|      0|    break;
10120|       |    /* rtrif */
10121|    194|  case 0x83489a759a2c6538ULL:
  ------------------
  |  Branch (10121:3): [True: 194, False: 516k]
  ------------------
10122|    194|    if (len == 5) {
  ------------------
  |  Branch (10122:9): [True: 194, False: 0]
  ------------------
10123|    194|      return 9656;
10124|    194|    }
10125|      0|    break;
10126|       |    /* rtriltri */
10127|    194|  case 0xbfb05bfa4a63349fULL:
  ------------------
  |  Branch (10127:3): [True: 194, False: 516k]
  ------------------
10128|    194|    if (len == 8) {
  ------------------
  |  Branch (10128:9): [True: 194, False: 0]
  ------------------
10129|    194|      return 10702;
10130|    194|    }
10131|      0|    break;
10132|       |    /* ruluhar */
10133|    194|  case 0x5502cfe6adf6c066ULL:
  ------------------
  |  Branch (10133:3): [True: 194, False: 516k]
  ------------------
10134|    194|    if (len == 7) {
  ------------------
  |  Branch (10134:9): [True: 194, False: 0]
  ------------------
10135|    194|      return 10600;
10136|    194|    }
10137|      0|    break;
10138|       |    /* rx */
10139|    195|  case 0x08dc4c07b57b89f7ULL:
  ------------------
  |  Branch (10139:3): [True: 195, False: 516k]
  ------------------
10140|    195|    if (len == 2) {
  ------------------
  |  Branch (10140:9): [True: 195, False: 0]
  ------------------
10141|    195|      return 8478;
10142|    195|    }
10143|      0|    break;
10144|       |    /* sacute */
10145|    194|  case 0x0592103383b561deULL:
  ------------------
  |  Branch (10145:3): [True: 194, False: 516k]
  ------------------
10146|    194|    if (len == 6) {
  ------------------
  |  Branch (10146:9): [True: 194, False: 0]
  ------------------
10147|    194|      return 347;
10148|    194|    }
10149|      0|    break;
10150|       |    /* sbquo */
10151|    194|  case 0x8f7b7bf4f1edc677ULL:
  ------------------
  |  Branch (10151:3): [True: 194, False: 516k]
  ------------------
10152|    194|    if (len == 5) {
  ------------------
  |  Branch (10152:9): [True: 194, False: 0]
  ------------------
10153|    194|      return 8218;
10154|    194|    }
10155|      0|    break;
10156|       |    /* sc */
10157|    203|  case 0x08d92d07b5791f73ULL:
  ------------------
  |  Branch (10157:3): [True: 203, False: 516k]
  ------------------
10158|    203|    if (len == 2) {
  ------------------
  |  Branch (10158:9): [True: 203, False: 0]
  ------------------
10159|    203|      return 8827;
10160|    203|    }
10161|      0|    break;
10162|       |    /* scE */
10163|    194|  case 0x8226ba195cd008c2ULL:
  ------------------
  |  Branch (10163:3): [True: 194, False: 516k]
  ------------------
10164|    194|    if (len == 3) {
  ------------------
  |  Branch (10164:9): [True: 194, False: 0]
  ------------------
10165|    194|      return 10932;
10166|    194|    }
10167|      0|    break;
10168|       |    /* scap */
10169|    194|  case 0xf75cf318b51777d2ULL:
  ------------------
  |  Branch (10169:3): [True: 194, False: 516k]
  ------------------
10170|    194|    if (len == 4) {
  ------------------
  |  Branch (10170:9): [True: 194, False: 0]
  ------------------
10171|    194|      return 10936;
10172|    194|    }
10173|      0|    break;
10174|       |    /* scaron */
10175|    194|  case 0x9e1f7fb7b4a6dd35ULL:
  ------------------
  |  Branch (10175:3): [True: 194, False: 516k]
  ------------------
10176|    194|    if (len == 6) {
  ------------------
  |  Branch (10176:9): [True: 194, False: 0]
  ------------------
10177|    194|      return 353;
10178|    194|    }
10179|      0|    break;
10180|       |    /* sccue */
10181|    194|  case 0x584d87fbac666feeULL:
  ------------------
  |  Branch (10181:3): [True: 194, False: 516k]
  ------------------
10182|    194|    if (len == 5) {
  ------------------
  |  Branch (10182:9): [True: 194, False: 0]
  ------------------
10183|    194|      return 8829;
10184|    194|    }
10185|      0|    break;
10186|       |    /* sce */
10187|    194|  case 0x82269a195ccfd262ULL:
  ------------------
  |  Branch (10187:3): [True: 194, False: 516k]
  ------------------
10188|    194|    if (len == 3) {
  ------------------
  |  Branch (10188:9): [True: 194, False: 0]
  ------------------
10189|    194|      return 10928;
10190|    194|    }
10191|      0|    break;
10192|       |    /* scedil */
10193|    194|  case 0x5f6e7bd5cd13ea57ULL:
  ------------------
  |  Branch (10193:3): [True: 194, False: 516k]
  ------------------
10194|    194|    if (len == 6) {
  ------------------
  |  Branch (10194:9): [True: 194, False: 0]
  ------------------
10195|    194|      return 351;
10196|    194|    }
10197|      0|    break;
10198|       |    /* scirc */
10199|    194|  case 0xaf4113fbddbe3275ULL:
  ------------------
  |  Branch (10199:3): [True: 194, False: 516k]
  ------------------
10200|    194|    if (len == 5) {
  ------------------
  |  Branch (10200:9): [True: 194, False: 0]
  ------------------
10201|    194|      return 349;
10202|    194|    }
10203|      0|    break;
10204|       |    /* scnE */
10205|    194|  case 0xf781c018b5363d66ULL:
  ------------------
  |  Branch (10205:3): [True: 194, False: 516k]
  ------------------
10206|    194|    if (len == 4) {
  ------------------
  |  Branch (10206:9): [True: 194, False: 0]
  ------------------
10207|    194|      return 10934;
10208|    194|    }
10209|      0|    break;
10210|       |    /* scnap */
10211|    194|  case 0xc83177fbeb92ce06ULL:
  ------------------
  |  Branch (10211:3): [True: 194, False: 516k]
  ------------------
10212|    194|    if (len == 5) {
  ------------------
  |  Branch (10212:9): [True: 194, False: 0]
  ------------------
10213|    194|      return 10938;
10214|    194|    }
10215|      0|    break;
10216|       |    /* scnsim */
10217|    194|  case 0x368d8a118dccf686ULL:
  ------------------
  |  Branch (10217:3): [True: 194, False: 516k]
  ------------------
10218|    194|    if (len == 6) {
  ------------------
  |  Branch (10218:9): [True: 194, False: 0]
  ------------------
10219|    194|      return 8937;
10220|    194|    }
10221|      0|    break;
10222|       |    /* scpolint */
10223|    194|  case 0x98514d56fb047373ULL:
  ------------------
  |  Branch (10223:3): [True: 194, False: 516k]
  ------------------
10224|    194|    if (len == 8) {
  ------------------
  |  Branch (10224:9): [True: 194, False: 0]
  ------------------
10225|    194|      return 10771;
10226|    194|    }
10227|      0|    break;
10228|       |    /* scsim */
10229|    194|  case 0xced2cffb5ed83532ULL:
  ------------------
  |  Branch (10229:3): [True: 194, False: 516k]
  ------------------
10230|    194|    if (len == 5) {
  ------------------
  |  Branch (10230:9): [True: 194, False: 0]
  ------------------
10231|    194|      return 8831;
10232|    194|    }
10233|      0|    break;
10234|       |    /* scy */
10235|    194|  case 0x82268e195ccfbdfeULL:
  ------------------
  |  Branch (10235:3): [True: 194, False: 516k]
  ------------------
10236|    194|    if (len == 3) {
  ------------------
  |  Branch (10236:9): [True: 194, False: 0]
  ------------------
10237|    194|      return 1089;
10238|    194|    }
10239|      0|    break;
10240|       |    /* sdot */
10241|    194|  case 0x22d4be18cdc16d29ULL:
  ------------------
  |  Branch (10241:3): [True: 194, False: 516k]
  ------------------
10242|    194|    if (len == 4) {
  ------------------
  |  Branch (10242:9): [True: 194, False: 0]
  ------------------
10243|    194|      return 8901;
10244|    194|    }
10245|      0|    break;
10246|       |    /* sdotb */
10247|    194|  case 0xf0ec4f259facb671ULL:
  ------------------
  |  Branch (10247:3): [True: 194, False: 516k]
  ------------------
10248|    194|    if (len == 5) {
  ------------------
  |  Branch (10248:9): [True: 194, False: 0]
  ------------------
10249|    194|      return 8865;
10250|    194|    }
10251|      0|    break;
10252|       |    /* sdote */
10253|    194|  case 0xf0ec50259facb824ULL:
  ------------------
  |  Branch (10253:3): [True: 194, False: 516k]
  ------------------
10254|    194|    if (len == 5) {
  ------------------
  |  Branch (10254:9): [True: 194, False: 0]
  ------------------
10255|    194|      return 10854;
10256|    194|    }
10257|      0|    break;
10258|       |    /* seArr */
10259|    194|  case 0x921c6730cb593b18ULL:
  ------------------
  |  Branch (10259:3): [True: 194, False: 516k]
  ------------------
10260|    194|    if (len == 5) {
  ------------------
  |  Branch (10260:9): [True: 194, False: 0]
  ------------------
10261|    194|      return 8664;
10262|    194|    }
10263|      0|    break;
10264|       |    /* searhk */
10265|    194|  case 0x21f3d1e2722e5887ULL:
  ------------------
  |  Branch (10265:3): [True: 194, False: 516k]
  ------------------
10266|    194|    if (len == 6) {
  ------------------
  |  Branch (10266:9): [True: 194, False: 0]
  ------------------
10267|    194|      return 10533;
10268|    194|    }
10269|      0|    break;
10270|       |    /* searr */
10271|    194|  case 0x7f7a473030850ab8ULL:
  ------------------
  |  Branch (10271:3): [True: 194, False: 516k]
  ------------------
10272|    194|    if (len == 5) {
  ------------------
  |  Branch (10272:9): [True: 194, False: 0]
  ------------------
10273|    194|      return 8600;
10274|    194|    }
10275|      0|    break;
10276|       |    /* searrow */
10277|    194|  case 0x88ebf9c7d3990ac6ULL:
  ------------------
  |  Branch (10277:3): [True: 194, False: 516k]
  ------------------
10278|    194|    if (len == 7) {
  ------------------
  |  Branch (10278:9): [True: 194, False: 0]
  ------------------
10279|    194|      return 8600;
10280|    194|    }
10281|      0|    break;
10282|       |    /* sect */
10283|    194|  case 0x2d0ee518d3fd8b32ULL:
  ------------------
  |  Branch (10283:3): [True: 194, False: 516k]
  ------------------
10284|    194|    if (len == 4) {
  ------------------
  |  Branch (10284:9): [True: 194, False: 0]
  ------------------
10285|    194|      return 167;
10286|    194|    }
10287|      0|    break;
10288|       |    /* semi */
10289|    194|  case 0x2d15f618d403c6c3ULL:
  ------------------
  |  Branch (10289:3): [True: 194, False: 516k]
  ------------------
10290|    194|    if (len == 4) {
  ------------------
  |  Branch (10290:9): [True: 194, False: 0]
  ------------------
10291|    194|      return 59;
10292|    194|    }
10293|      0|    break;
10294|       |    /* seswar */
10295|    194|  case 0x3d69b6774ac76528ULL:
  ------------------
  |  Branch (10295:3): [True: 194, False: 516k]
  ------------------
10296|    194|    if (len == 6) {
  ------------------
  |  Branch (10296:9): [True: 194, False: 0]
  ------------------
10297|    194|      return 10537;
10298|    194|    }
10299|      0|    break;
10300|       |    /* setminus */
10301|    194|  case 0xc83b1ab590aeb049ULL:
  ------------------
  |  Branch (10301:3): [True: 194, False: 516k]
  ------------------
10302|    194|    if (len == 8) {
  ------------------
  |  Branch (10302:9): [True: 194, False: 0]
  ------------------
10303|    194|      return 8726;
10304|    194|    }
10305|      0|    break;
10306|       |    /* setmn */
10307|    194|  case 0xef2448306f800d6cULL:
  ------------------
  |  Branch (10307:3): [True: 194, False: 516k]
  ------------------
10308|    194|    if (len == 5) {
  ------------------
  |  Branch (10308:9): [True: 194, False: 0]
  ------------------
10309|    194|      return 8726;
10310|    194|    }
10311|      0|    break;
10312|       |    /* sext */
10313|    194|  case 0x2d5de718d44162e9ULL:
  ------------------
  |  Branch (10313:3): [True: 194, False: 516k]
  ------------------
10314|    194|    if (len == 4) {
  ------------------
  |  Branch (10314:9): [True: 194, False: 0]
  ------------------
10315|    194|      return 10038;
10316|    194|    }
10317|      0|    break;
10318|       |    /* sfr */
10319|    234|  case 0x82319b195cd9db9aULL:
  ------------------
  |  Branch (10319:3): [True: 234, False: 516k]
  ------------------
10320|    234|    if (len == 3) {
  ------------------
  |  Branch (10320:9): [True: 234, False: 0]
  ------------------
10321|    234|      return 120112;
10322|    234|    }
10323|      0|    break;
10324|       |    /* sfrown */
10325|    194|  case 0x11799f167b93ccf2ULL:
  ------------------
  |  Branch (10325:3): [True: 194, False: 516k]
  ------------------
10326|    194|    if (len == 6) {
  ------------------
  |  Branch (10326:9): [True: 194, False: 0]
  ------------------
10327|    194|      return 8994;
10328|    194|    }
10329|      0|    break;
10330|       |    /* sharp */
10331|    194|  case 0x6e30a3493acbac07ULL:
  ------------------
  |  Branch (10331:3): [True: 194, False: 516k]
  ------------------
10332|    194|    if (len == 5) {
  ------------------
  |  Branch (10332:9): [True: 194, False: 0]
  ------------------
10333|    194|      return 9839;
10334|    194|    }
10335|      0|    break;
10336|       |    /* shchcy */
10337|    194|  case 0xf1806561b926db39ULL:
  ------------------
  |  Branch (10337:3): [True: 194, False: 516k]
  ------------------
10338|    194|    if (len == 6) {
  ------------------
  |  Branch (10338:9): [True: 194, False: 0]
  ------------------
10339|    194|      return 1097;
10340|    194|    }
10341|      0|    break;
10342|       |    /* shcy */
10343|    194|  case 0x47056d18e2b1429aULL:
  ------------------
  |  Branch (10343:3): [True: 194, False: 516k]
  ------------------
10344|    194|    if (len == 4) {
  ------------------
  |  Branch (10344:9): [True: 194, False: 0]
  ------------------
10345|    194|      return 1096;
10346|    194|    }
10347|      0|    break;
10348|       |    /* shortmid */
10349|      0|  case 0x964e3ca52b213715ULL:
  ------------------
  |  Branch (10349:3): [True: 0, False: 516k]
  ------------------
10350|      0|    if (len == 8) {
  ------------------
  |  Branch (10350:9): [True: 0, False: 0]
  ------------------
10351|      0|      return 8739;
10352|      0|    }
10353|      0|    break;
10354|       |    /* shortparallel */
10355|      0|  case 0x36090ea71d540b02ULL:
  ------------------
  |  Branch (10355:3): [True: 0, False: 516k]
  ------------------
10356|      0|    if (len == 13) {
  ------------------
  |  Branch (10356:9): [True: 0, False: 0]
  ------------------
10357|      0|      return 8741;
10358|      0|    }
10359|      0|    break;
10360|       |    /* shy */
10361|    194|  case 0x824596195cea7c25ULL:
  ------------------
  |  Branch (10361:3): [True: 194, False: 516k]
  ------------------
10362|    194|    if (len == 3) {
  ------------------
  |  Branch (10362:9): [True: 194, False: 0]
  ------------------
10363|    194|      return 173;
10364|    194|    }
10365|      0|    break;
10366|       |    /* sigma */
10367|    194|  case 0xdc022c4f3092a794ULL:
  ------------------
  |  Branch (10367:3): [True: 194, False: 516k]
  ------------------
10368|    194|    if (len == 5) {
  ------------------
  |  Branch (10368:9): [True: 194, False: 0]
  ------------------
10369|    194|      return 963;
10370|    194|    }
10371|      0|    break;
10372|       |    /* sigmaf */
10373|    194|  case 0x6a593c8f89336036ULL:
  ------------------
  |  Branch (10373:3): [True: 194, False: 516k]
  ------------------
10374|    194|    if (len == 6) {
  ------------------
  |  Branch (10374:9): [True: 194, False: 0]
  ------------------
10375|    194|      return 962;
10376|    194|    }
10377|      0|    break;
10378|       |    /* sigmav */
10379|    194|  case 0x6a592c8f89334506ULL:
  ------------------
  |  Branch (10379:3): [True: 194, False: 516k]
  ------------------
10380|    194|    if (len == 6) {
  ------------------
  |  Branch (10380:9): [True: 194, False: 0]
  ------------------
10381|    194|      return 962;
10382|    194|    }
10383|      0|    break;
10384|       |    /* sim */
10385|    196|  case 0x82489e195cecbf94ULL:
  ------------------
  |  Branch (10385:3): [True: 196, False: 516k]
  ------------------
10386|    196|    if (len == 3) {
  ------------------
  |  Branch (10386:9): [True: 196, False: 0]
  ------------------
10387|    196|      return 8764;
10388|    196|    }
10389|      0|    break;
10390|       |    /* simdot */
10391|    199|  case 0x172447c4e9f3f71bULL:
  ------------------
  |  Branch (10391:3): [True: 199, False: 516k]
  ------------------
10392|    199|    if (len == 6) {
  ------------------
  |  Branch (10392:9): [True: 199, False: 0]
  ------------------
10393|    199|      return 10858;
10394|    199|    }
10395|      0|    break;
10396|       |    /* sime */
10397|    196|  case 0x4e249618e64a2683ULL:
  ------------------
  |  Branch (10397:3): [True: 196, False: 516k]
  ------------------
10398|    196|    if (len == 4) {
  ------------------
  |  Branch (10398:9): [True: 196, False: 0]
  ------------------
10399|    196|      return 8771;
10400|    196|    }
10401|      0|    break;
10402|       |    /* simeq */
10403|    194|  case 0x1251fe4f50002d36ULL:
  ------------------
  |  Branch (10403:3): [True: 194, False: 516k]
  ------------------
10404|    194|    if (len == 5) {
  ------------------
  |  Branch (10404:9): [True: 194, False: 0]
  ------------------
10405|    194|      return 8771;
10406|    194|    }
10407|      0|    break;
10408|       |    /* simg */
10409|    194|  case 0x4e249818e64a29e9ULL:
  ------------------
  |  Branch (10409:3): [True: 194, False: 516k]
  ------------------
10410|    194|    if (len == 4) {
  ------------------
  |  Branch (10410:9): [True: 194, False: 0]
  ------------------
10411|    194|      return 10910;
10412|    194|    }
10413|      0|    break;
10414|       |    /* simgE */
10415|    194|  case 0x12581e4f5004cf44ULL:
  ------------------
  |  Branch (10415:3): [True: 194, False: 516k]
  ------------------
10416|    194|    if (len == 5) {
  ------------------
  |  Branch (10416:9): [True: 194, False: 0]
  ------------------
10417|    194|      return 10912;
10418|    194|    }
10419|      0|    break;
10420|       |    /* siml */
10421|    195|  case 0x4e249d18e64a3268ULL:
  ------------------
  |  Branch (10421:3): [True: 195, False: 516k]
  ------------------
10422|    195|    if (len == 4) {
  ------------------
  |  Branch (10422:9): [True: 195, False: 0]
  ------------------
10423|    195|      return 10909;
10424|    195|    }
10425|      0|    break;
10426|       |    /* simlE */
10427|    194|  case 0x12691e4f50134277ULL:
  ------------------
  |  Branch (10427:3): [True: 194, False: 516k]
  ------------------
10428|    194|    if (len == 5) {
  ------------------
  |  Branch (10428:9): [True: 194, False: 0]
  ------------------
10429|    194|      return 10911;
10430|    194|    }
10431|      0|    break;
10432|       |    /* simne */
10433|    194|  case 0x1270024f50193191ULL:
  ------------------
  |  Branch (10433:3): [True: 194, False: 516k]
  ------------------
10434|    194|    if (len == 5) {
  ------------------
  |  Branch (10434:9): [True: 194, False: 0]
  ------------------
10435|    194|      return 8774;
10436|    194|    }
10437|      0|    break;
10438|       |    /* simplus */
10439|    194|  case 0xb2bcc833c0aa6174ULL:
  ------------------
  |  Branch (10439:3): [True: 194, False: 516k]
  ------------------
10440|    194|    if (len == 7) {
  ------------------
  |  Branch (10440:9): [True: 194, False: 0]
  ------------------
10441|    194|      return 10788;
10442|    194|    }
10443|      0|    break;
10444|       |    /* simrarr */
10445|    194|  case 0x8cc8b245e61c7589ULL:
  ------------------
  |  Branch (10445:3): [True: 194, False: 516k]
  ------------------
10446|    194|    if (len == 7) {
  ------------------
  |  Branch (10446:9): [True: 194, False: 0]
  ------------------
10447|    194|      return 10610;
10448|    194|    }
10449|      0|    break;
10450|       |    /* slarr */
10451|    194|  case 0x18e6356bcdfda1b1ULL:
  ------------------
  |  Branch (10451:3): [True: 194, False: 516k]
  ------------------
10452|    194|    if (len == 5) {
  ------------------
  |  Branch (10452:9): [True: 194, False: 0]
  ------------------
10453|    194|      return 8592;
10454|    194|    }
10455|      0|    break;
10456|       |    /* smallsetminus */
10457|      0|  case 0xaa5c5f42a7692a6cULL:
  ------------------
  |  Branch (10457:3): [True: 0, False: 516k]
  ------------------
10458|      0|    if (len == 13) {
  ------------------
  |  Branch (10458:9): [True: 0, False: 0]
  ------------------
10459|      0|      return 8726;
10460|      0|    }
10461|      0|    break;
10462|       |    /* smashp */
10463|    195|  case 0x24aa4f334f4e1ce5ULL:
  ------------------
  |  Branch (10463:3): [True: 195, False: 516k]
  ------------------
10464|    195|    if (len == 6) {
  ------------------
  |  Branch (10464:9): [True: 195, False: 0]
  ------------------
10465|    195|      return 10803;
10466|    195|    }
10467|      0|    break;
10468|       |    /* smeparsl */
10469|    194|  case 0x1c09891b368d20fcULL:
  ------------------
  |  Branch (10469:3): [True: 194, False: 516k]
  ------------------
10470|    194|    if (len == 8) {
  ------------------
  |  Branch (10470:9): [True: 194, False: 0]
  ------------------
10471|    194|      return 10724;
10472|    194|    }
10473|      0|    break;
10474|       |    /* smid */
10475|    194|  case 0x72394918fb218808ULL:
  ------------------
  |  Branch (10475:3): [True: 194, False: 516k]
  ------------------
10476|    194|    if (len == 4) {
  ------------------
  |  Branch (10476:9): [True: 194, False: 0]
  ------------------
10477|    194|      return 8739;
10478|    194|    }
10479|      0|    break;
10480|       |    /* smile */
10481|    194|  case 0x38c3b272b9e271afULL:
  ------------------
  |  Branch (10481:3): [True: 194, False: 516k]
  ------------------
10482|    194|    if (len == 5) {
  ------------------
  |  Branch (10482:9): [True: 194, False: 0]
  ------------------
10483|    194|      return 8995;
10484|    194|    }
10485|      0|    break;
10486|       |    /* smt */
10487|    194|  case 0x825697195cf8f10bULL:
  ------------------
  |  Branch (10487:3): [True: 194, False: 516k]
  ------------------
10488|    194|    if (len == 3) {
  ------------------
  |  Branch (10488:9): [True: 194, False: 0]
  ------------------
10489|    194|      return 10922;
10490|    194|    }
10491|      0|    break;
10492|       |    /* smte */
10493|    194|  case 0x72142e18fb023deaULL:
  ------------------
  |  Branch (10493:3): [True: 194, False: 516k]
  ------------------
10494|    194|    if (len == 4) {
  ------------------
  |  Branch (10494:9): [True: 194, False: 0]
  ------------------
10495|    194|      return 10924;
10496|    194|    }
10497|      0|    break;
10498|       |    /* softcy */
10499|    194|  case 0x09a3e49fb94e8e61ULL:
  ------------------
  |  Branch (10499:3): [True: 194, False: 516k]
  ------------------
10500|    194|    if (len == 6) {
  ------------------
  |  Branch (10500:9): [True: 194, False: 0]
  ------------------
10501|    194|      return 1100;
10502|    194|    }
10503|      0|    break;
10504|       |    /* sol */
10505|    196|  case 0x824fa3195cf2e6c1ULL:
  ------------------
  |  Branch (10505:3): [True: 196, False: 516k]
  ------------------
10506|    196|    if (len == 3) {
  ------------------
  |  Branch (10506:9): [True: 196, False: 0]
  ------------------
10507|    196|      return 47;
10508|    196|    }
10509|      0|    break;
10510|       |    /* solb */
10511|    194|  case 0x6038c718f0bde6f9ULL:
  ------------------
  |  Branch (10511:3): [True: 194, False: 516k]
  ------------------
10512|    194|    if (len == 4) {
  ------------------
  |  Branch (10512:9): [True: 194, False: 0]
  ------------------
10513|    194|      return 10692;
10514|    194|    }
10515|      0|    break;
10516|       |    /* solbar */
10517|    194|  case 0xad7d63f2bf129e8eULL:
  ------------------
  |  Branch (10517:3): [True: 194, False: 516k]
  ------------------
10518|    194|    if (len == 6) {
  ------------------
  |  Branch (10518:9): [True: 194, False: 0]
  ------------------
10519|    194|      return 9023;
10520|    194|    }
10521|      0|    break;
10522|       |    /* sopf */
10523|    194|  case 0x5ff4cb18f08420f9ULL:
  ------------------
  |  Branch (10523:3): [True: 194, False: 516k]
  ------------------
10524|    194|    if (len == 4) {
  ------------------
  |  Branch (10524:9): [True: 194, False: 0]
  ------------------
10525|    194|      return 120164;
10526|    194|    }
10527|      0|    break;
10528|       |    /* spades */
10529|    194|  case 0xaeade2acd79a97f3ULL:
  ------------------
  |  Branch (10529:3): [True: 194, False: 516k]
  ------------------
10530|    194|    if (len == 6) {
  ------------------
  |  Branch (10530:9): [True: 194, False: 0]
  ------------------
10531|    194|      return 9824;
10532|    194|    }
10533|      0|    break;
10534|       |    /* spadesuit */
10535|    194|  case 0xf131ca3c38fae46fULL:
  ------------------
  |  Branch (10535:3): [True: 194, False: 516k]
  ------------------
10536|    194|    if (len == 9) {
  ------------------
  |  Branch (10536:9): [True: 194, False: 0]
  ------------------
10537|    194|      return 9824;
10538|    194|    }
10539|      0|    break;
10540|       |    /* spar */
10541|    194|  case 0x8b7dac19093caee5ULL:
  ------------------
  |  Branch (10541:3): [True: 194, False: 516k]
  ------------------
10542|    194|    if (len == 4) {
  ------------------
  |  Branch (10542:9): [True: 194, False: 0]
  ------------------
10543|    194|      return 8741;
10544|    194|    }
10545|      0|    break;
10546|       |    /* sqcap */
10547|    194|  case 0x3ab1e9957ea7d427ULL:
  ------------------
  |  Branch (10547:3): [True: 194, False: 516k]
  ------------------
10548|    194|    if (len == 5) {
  ------------------
  |  Branch (10548:9): [True: 194, False: 0]
  ------------------
10549|    194|      return 8851;
10550|    194|    }
10551|      0|    break;
10552|       |    /* sqcup */
10553|    194|  case 0x3a6dd1957e6dde93ULL:
  ------------------
  |  Branch (10553:3): [True: 194, False: 516k]
  ------------------
10554|    194|    if (len == 5) {
  ------------------
  |  Branch (10554:9): [True: 194, False: 0]
  ------------------
10555|    194|      return 8852;
10556|    194|    }
10557|      0|    break;
10558|       |    /* sqsub */
10559|    194|  case 0xc3bf5395cbd8b879ULL:
  ------------------
  |  Branch (10559:3): [True: 194, False: 516k]
  ------------------
10560|    194|    if (len == 5) {
  ------------------
  |  Branch (10560:9): [True: 194, False: 0]
  ------------------
10561|    194|      return 8847;
10562|    194|    }
10563|      0|    break;
10564|       |    /* sqsube */
10565|    195|  case 0x76d323896140d794ULL:
  ------------------
  |  Branch (10565:3): [True: 195, False: 516k]
  ------------------
10566|    195|    if (len == 6) {
  ------------------
  |  Branch (10566:9): [True: 195, False: 0]
  ------------------
10567|    195|      return 8849;
10568|    195|    }
10569|      0|    break;
10570|       |    /* sqsubset */
10571|    194|  case 0x46cbd8be684480afULL:
  ------------------
  |  Branch (10571:3): [True: 194, False: 516k]
  ------------------
10572|    194|    if (len == 8) {
  ------------------
  |  Branch (10572:9): [True: 194, False: 0]
  ------------------
10573|    194|      return 8847;
10574|    194|    }
10575|      0|    break;
10576|       |    /* sqsubseteq */
10577|    194|  case 0x9701ea7c72bfdb3dULL:
  ------------------
  |  Branch (10577:3): [True: 194, False: 516k]
  ------------------
10578|    194|    if (len == 10) {
  ------------------
  |  Branch (10578:9): [True: 194, False: 0]
  ------------------
10579|    194|      return 8849;
10580|    194|    }
10581|      0|    break;
10582|       |    /* sqsup */
10583|    194|  case 0xc3bf6195cbd8d043ULL:
  ------------------
  |  Branch (10583:3): [True: 194, False: 516k]
  ------------------
10584|    194|    if (len == 5) {
  ------------------
  |  Branch (10584:9): [True: 194, False: 0]
  ------------------
10585|    194|      return 8848;
10586|    194|    }
10587|      0|    break;
10588|       |    /* sqsupe */
10589|    194|  case 0x7702f7896169b092ULL:
  ------------------
  |  Branch (10589:3): [True: 194, False: 516k]
  ------------------
10590|    194|    if (len == 6) {
  ------------------
  |  Branch (10590:9): [True: 194, False: 0]
  ------------------
10591|    194|      return 8850;
10592|    194|    }
10593|      0|    break;
10594|       |    /* sqsupset */
10595|    194|  case 0x26115d34e4d62d41ULL:
  ------------------
  |  Branch (10595:3): [True: 194, False: 516k]
  ------------------
10596|    194|    if (len == 8) {
  ------------------
  |  Branch (10596:9): [True: 194, False: 0]
  ------------------
10597|    194|      return 8848;
10598|    194|    }
10599|      0|    break;
10600|       |    /* sqsupseteq */
10601|    194|  case 0x1640270eea9c7a07ULL:
  ------------------
  |  Branch (10601:3): [True: 194, False: 516k]
  ------------------
10602|    194|    if (len == 10) {
  ------------------
  |  Branch (10602:9): [True: 194, False: 0]
  ------------------
10603|    194|      return 8850;
10604|    194|    }
10605|      0|    break;
10606|       |    /* squ */
10607|    194|  case 0x826496195d052cb4ULL:
  ------------------
  |  Branch (10607:3): [True: 194, False: 516k]
  ------------------
10608|    194|    if (len == 3) {
  ------------------
  |  Branch (10608:9): [True: 194, False: 0]
  ------------------
10609|    194|      return 9633;
10610|    194|    }
10611|      0|    break;
10612|       |    /* square */
10613|    194|  case 0x7884f79b0c364646ULL:
  ------------------
  |  Branch (10613:3): [True: 194, False: 516k]
  ------------------
10614|    194|    if (len == 6) {
  ------------------
  |  Branch (10614:9): [True: 194, False: 0]
  ------------------
10615|    194|      return 9633;
10616|    194|    }
10617|      0|    break;
10618|       |    /* squarf */
10619|    194|  case 0x7884f69b0c364493ULL:
  ------------------
  |  Branch (10619:3): [True: 194, False: 516k]
  ------------------
10620|    194|    if (len == 6) {
  ------------------
  |  Branch (10620:9): [True: 194, False: 0]
  ------------------
10621|    194|      return 9642;
10622|    194|    }
10623|      0|    break;
10624|       |    /* squf */
10625|    194|  case 0x9617df190fcb28d6ULL:
  ------------------
  |  Branch (10625:3): [True: 194, False: 516k]
  ------------------
10626|    194|    if (len == 4) {
  ------------------
  |  Branch (10626:9): [True: 194, False: 0]
  ------------------
10627|    194|      return 9642;
10628|    194|    }
10629|      0|    break;
10630|       |    /* srarr */
10631|    199|  case 0xd9451178cc025863ULL:
  ------------------
  |  Branch (10631:3): [True: 199, False: 516k]
  ------------------
10632|    199|    if (len == 5) {
  ------------------
  |  Branch (10632:9): [True: 199, False: 0]
  ------------------
10633|    199|      return 8594;
10634|    199|    }
10635|      0|    break;
10636|       |    /* sscr */
10637|    194|  case 0x83a07919050290f6ULL:
  ------------------
  |  Branch (10637:3): [True: 194, False: 516k]
  ------------------
10638|    194|    if (len == 4) {
  ------------------
  |  Branch (10638:9): [True: 194, False: 0]
  ------------------
10639|    194|      return 120008;
10640|    194|    }
10641|      0|    break;
10642|       |    /* ssetmn */
10643|    194|  case 0x9d2804a86e737c19ULL:
  ------------------
  |  Branch (10643:3): [True: 194, False: 516k]
  ------------------
10644|    194|    if (len == 6) {
  ------------------
  |  Branch (10644:9): [True: 194, False: 0]
  ------------------
10645|    194|      return 8726;
10646|    194|    }
10647|      0|    break;
10648|       |    /* ssmile */
10649|    194|  case 0x472f4aeee6774cfeULL:
  ------------------
  |  Branch (10649:3): [True: 194, False: 516k]
  ------------------
10650|    194|    if (len == 6) {
  ------------------
  |  Branch (10650:9): [True: 194, False: 0]
  ------------------
10651|    194|      return 8995;
10652|    194|    }
10653|      0|    break;
10654|       |    /* sstarf */
10655|    202|  case 0xc53fc43796f6cc24ULL:
  ------------------
  |  Branch (10655:3): [True: 202, False: 516k]
  ------------------
10656|    202|    if (len == 6) {
  ------------------
  |  Branch (10656:9): [True: 202, False: 0]
  ------------------
10657|    202|      return 8902;
10658|    202|    }
10659|      0|    break;
10660|       |    /* star */
10661|    194|  case 0xaefd58191d95e091ULL:
  ------------------
  |  Branch (10661:3): [True: 194, False: 516k]
  ------------------
10662|    194|    if (len == 4) {
  ------------------
  |  Branch (10662:9): [True: 194, False: 0]
  ------------------
10663|    194|      return 9734;
10664|    194|    }
10665|      0|    break;
10666|       |    /* starf */
10667|    195|  case 0xee5da9ad45ad43b5ULL:
  ------------------
  |  Branch (10667:3): [True: 195, False: 516k]
  ------------------
10668|    195|    if (len == 5) {
  ------------------
  |  Branch (10668:9): [True: 195, False: 0]
  ------------------
10669|    195|      return 9733;
10670|    195|    }
10671|      0|    break;
10672|       |    /* straightepsilon */
10673|      0|  case 0x5b6ede597dd0218fULL:
  ------------------
  |  Branch (10673:3): [True: 0, False: 516k]
  ------------------
10674|      0|    if (len == 15) {
  ------------------
  |  Branch (10674:9): [True: 0, False: 0]
  ------------------
10675|      0|      return 1013;
10676|      0|    }
10677|      0|    break;
10678|       |    /* straightphi */
10679|      0|  case 0x733e8eb2536d818aULL:
  ------------------
  |  Branch (10679:3): [True: 0, False: 516k]
  ------------------
10680|      0|    if (len == 11) {
  ------------------
  |  Branch (10680:9): [True: 0, False: 0]
  ------------------
10681|      0|      return 981;
10682|      0|    }
10683|      0|    break;
10684|       |    /* strns */
10685|    194|  case 0x5e7db9ad850bd34bULL:
  ------------------
  |  Branch (10685:3): [True: 194, False: 516k]
  ------------------
10686|    194|    if (len == 5) {
  ------------------
  |  Branch (10686:9): [True: 194, False: 0]
  ------------------
10687|    194|      return 175;
10688|    194|    }
10689|      0|    break;
10690|       |    /* sub */
10691|    202|  case 0x82719d195d0fc2f5ULL:
  ------------------
  |  Branch (10691:3): [True: 202, False: 516k]
  ------------------
10692|    202|    if (len == 3) {
  ------------------
  |  Branch (10692:9): [True: 202, False: 0]
  ------------------
10693|    202|      return 8834;
10694|    202|    }
10695|      0|    break;
10696|       |    /* subE */
10697|    194|  case 0xb6d0a21921c7d110ULL:
  ------------------
  |  Branch (10697:3): [True: 194, False: 516k]
  ------------------
10698|    194|    if (len == 4) {
  ------------------
  |  Branch (10698:9): [True: 194, False: 0]
  ------------------
10699|    194|      return 10949;
10700|    194|    }
10701|      0|    break;
10702|       |    /* subdot */
10703|    194|  case 0x8e26ff89a06e1330ULL:
  ------------------
  |  Branch (10703:3): [True: 194, False: 516k]
  ------------------
10704|    194|    if (len == 6) {
  ------------------
  |  Branch (10704:9): [True: 194, False: 0]
  ------------------
10705|    194|      return 10941;
10706|    194|    }
10707|      0|    break;
10708|       |    /* sube */
10709|    194|  case 0xb6d0821921c79ab0ULL:
  ------------------
  |  Branch (10709:3): [True: 194, False: 516k]
  ------------------
10710|    194|    if (len == 4) {
  ------------------
  |  Branch (10710:9): [True: 194, False: 0]
  ------------------
10711|    194|      return 8838;
10712|    194|    }
10713|      0|    break;
10714|       |    /* subedot */
10715|    194|  case 0x8536e9d5a181f167ULL:
  ------------------
  |  Branch (10715:3): [True: 194, False: 516k]
  ------------------
10716|    194|    if (len == 7) {
  ------------------
  |  Branch (10716:9): [True: 194, False: 0]
  ------------------
10717|    194|      return 10947;
10718|    194|    }
10719|      0|    break;
10720|       |    /* submult */
10721|    194|  case 0xee1a03176cbc20ffULL:
  ------------------
  |  Branch (10721:3): [True: 194, False: 516k]
  ------------------
10722|    194|    if (len == 7) {
  ------------------
  |  Branch (10722:9): [True: 194, False: 0]
  ------------------
10723|    194|      return 10945;
10724|    194|    }
10725|      0|    break;
10726|       |    /* subnE */
10727|    194|  case 0x6c0ce5b4664b342cULL:
  ------------------
  |  Branch (10727:3): [True: 194, False: 516k]
  ------------------
10728|    194|    if (len == 5) {
  ------------------
  |  Branch (10728:9): [True: 194, False: 0]
  ------------------
10729|    194|      return 10955;
10730|    194|    }
10731|      0|    break;
10732|       |    /* subne */
10733|    194|  case 0x6c0cc5b4664afdccULL:
  ------------------
  |  Branch (10733:3): [True: 194, False: 516k]
  ------------------
10734|    194|    if (len == 5) {
  ------------------
  |  Branch (10734:9): [True: 194, False: 0]
  ------------------
10735|    194|      return 8842;
10736|    194|    }
10737|      0|    break;
10738|       |    /* subplus */
10739|    194|  case 0xc5a11c772a4a26e5ULL:
  ------------------
  |  Branch (10739:3): [True: 194, False: 516k]
  ------------------
10740|    194|    if (len == 7) {
  ------------------
  |  Branch (10740:9): [True: 194, False: 0]
  ------------------
10741|    194|      return 10943;
10742|    194|    }
10743|      0|    break;
10744|       |    /* subrarr */
10745|    194|  case 0x64db92880cab1278ULL:
  ------------------
  |  Branch (10745:3): [True: 194, False: 516k]
  ------------------
10746|    194|    if (len == 7) {
  ------------------
  |  Branch (10746:9): [True: 194, False: 0]
  ------------------
10747|    194|      return 10617;
10748|    194|    }
10749|      0|    break;
10750|       |    /* subset */
10751|    194|  case 0x30843e896bdc6013ULL:
  ------------------
  |  Branch (10751:3): [True: 194, False: 516k]
  ------------------
10752|    194|    if (len == 6) {
  ------------------
  |  Branch (10752:9): [True: 194, False: 0]
  ------------------
10753|    194|      return 8834;
10754|    194|    }
10755|      0|    break;
10756|       |    /* subseteq */
10757|    194|  case 0x75862b5f70c0d4e9ULL:
  ------------------
  |  Branch (10757:3): [True: 194, False: 516k]
  ------------------
10758|    194|    if (len == 8) {
  ------------------
  |  Branch (10758:9): [True: 194, False: 0]
  ------------------
10759|    194|      return 8838;
10760|    194|    }
10761|      0|    break;
10762|       |    /* subseteqq */
10763|    194|  case 0x73d04b2c97a93e48ULL:
  ------------------
  |  Branch (10763:3): [True: 194, False: 516k]
  ------------------
10764|    194|    if (len == 9) {
  ------------------
  |  Branch (10764:9): [True: 194, False: 0]
  ------------------
10765|    194|      return 10949;
10766|    194|    }
10767|      0|    break;
10768|       |    /* subsetneq */
10769|    195|  case 0xad9b662cb7975415ULL:
  ------------------
  |  Branch (10769:3): [True: 195, False: 516k]
  ------------------
10770|    195|    if (len == 9) {
  ------------------
  |  Branch (10770:9): [True: 195, False: 0]
  ------------------
10771|    195|      return 8842;
10772|    195|    }
10773|      0|    break;
10774|       |    /* subsetneqq */
10775|    194|  case 0x966301fbf62465ecULL:
  ------------------
  |  Branch (10775:3): [True: 194, False: 516k]
  ------------------
10776|    194|    if (len == 10) {
  ------------------
  |  Branch (10776:9): [True: 194, False: 0]
  ------------------
10777|    194|      return 10955;
10778|    194|    }
10779|      0|    break;
10780|       |    /* subsim */
10781|    194|  case 0x309235896be88e24ULL:
  ------------------
  |  Branch (10781:3): [True: 194, False: 516k]
  ------------------
10782|    194|    if (len == 6) {
  ------------------
  |  Branch (10782:9): [True: 194, False: 0]
  ------------------
10783|    194|      return 10951;
10784|    194|    }
10785|      0|    break;
10786|       |    /* subsub */
10787|    194|  case 0x304e34896baebfa5ULL:
  ------------------
  |  Branch (10787:3): [True: 194, False: 516k]
  ------------------
10788|    194|    if (len == 6) {
  ------------------
  |  Branch (10788:9): [True: 194, False: 0]
  ------------------
10789|    194|      return 10965;
10790|    194|    }
10791|      0|    break;
10792|       |    /* subsup */
10793|    194|  case 0x304e42896baed76fULL:
  ------------------
  |  Branch (10793:3): [True: 194, False: 516k]
  ------------------
10794|    194|    if (len == 6) {
  ------------------
  |  Branch (10794:9): [True: 194, False: 0]
  ------------------
10795|    194|      return 10963;
10796|    194|    }
10797|      0|    break;
10798|       |    /* succ */
10799|    195|  case 0xb6cd601921c52b13ULL:
  ------------------
  |  Branch (10799:3): [True: 195, False: 516k]
  ------------------
10800|    195|    if (len == 4) {
  ------------------
  |  Branch (10800:9): [True: 195, False: 0]
  ------------------
10801|    195|      return 8827;
10802|    195|    }
10803|      0|    break;
10804|       |    /* succapprox */
10805|    194|  case 0x57d5c8d1fec817c3ULL:
  ------------------
  |  Branch (10805:3): [True: 194, False: 516k]
  ------------------
10806|    194|    if (len == 10) {
  ------------------
  |  Branch (10806:9): [True: 194, False: 0]
  ------------------
10807|    194|      return 10936;
10808|    194|    }
10809|      0|    break;
10810|       |    /* succcurlyeq */
10811|    194|  case 0x8ec2f9fa0bb8ddb2ULL:
  ------------------
  |  Branch (10811:3): [True: 194, False: 516k]
  ------------------
10812|    194|    if (len == 11) {
  ------------------
  |  Branch (10812:9): [True: 194, False: 0]
  ------------------
10813|    194|      return 8829;
10814|    194|    }
10815|      0|    break;
10816|       |    /* succeq */
10817|    194|  case 0x35006582950a57e9ULL:
  ------------------
  |  Branch (10817:3): [True: 194, False: 516k]
  ------------------
10818|    194|    if (len == 6) {
  ------------------
  |  Branch (10818:9): [True: 194, False: 0]
  ------------------
10819|    194|      return 10928;
10820|    194|    }
10821|      0|    break;
10822|       |    /* succnapprox */
10823|    194|  case 0xd47804c7bd93ca6fULL:
  ------------------
  |  Branch (10823:3): [True: 194, False: 516k]
  ------------------
10824|    194|    if (len == 11) {
  ------------------
  |  Branch (10824:9): [True: 194, False: 0]
  ------------------
10825|    194|      return 10938;
10826|    194|    }
10827|      0|    break;
10828|       |    /* succneqq */
10829|    194|  case 0xe9fbc35cfb1360ecULL:
  ------------------
  |  Branch (10829:3): [True: 194, False: 516k]
  ------------------
10830|    194|    if (len == 8) {
  ------------------
  |  Branch (10830:9): [True: 194, False: 0]
  ------------------
10831|    194|      return 10934;
10832|    194|    }
10833|      0|    break;
10834|       |    /* succnsim */
10835|    194|  case 0x85949d5d531d9726ULL:
  ------------------
  |  Branch (10835:3): [True: 194, False: 516k]
  ------------------
10836|    194|    if (len == 8) {
  ------------------
  |  Branch (10836:9): [True: 194, False: 0]
  ------------------
10837|    194|      return 8937;
10838|    194|    }
10839|      0|    break;
10840|       |    /* succsim */
10841|    194|  case 0x5a7f7ee2d3d43552ULL:
  ------------------
  |  Branch (10841:3): [True: 194, False: 516k]
  ------------------
10842|    194|    if (len == 7) {
  ------------------
  |  Branch (10842:9): [True: 194, False: 0]
  ------------------
10843|    194|      return 8831;
10844|    194|    }
10845|      0|    break;
10846|       |    /* sum */
10847|    194|  case 0x82719e195d0fc4a8ULL:
  ------------------
  |  Branch (10847:3): [True: 194, False: 516k]
  ------------------
10848|    194|    if (len == 3) {
  ------------------
  |  Branch (10848:9): [True: 194, False: 0]
  ------------------
10849|    194|      return 8721;
10850|    194|    }
10851|      0|    break;
10852|       |    /* sung */
10853|    194|  case 0xb6de641921d3a512ULL:
  ------------------
  |  Branch (10853:3): [True: 194, False: 516k]
  ------------------
10854|    194|    if (len == 4) {
  ------------------
  |  Branch (10854:9): [True: 194, False: 0]
  ------------------
10855|    194|      return 9834;
10856|    194|    }
10857|      0|    break;
10858|       |    /* sup1 */
10859|    194|  case 0xb693ca19219466eaULL:
  ------------------
  |  Branch (10859:3): [True: 194, False: 516k]
  ------------------
10860|    194|    if (len == 4) {
  ------------------
  |  Branch (10860:9): [True: 194, False: 0]
  ------------------
10861|    194|      return 185;
10862|    194|    }
10863|      0|    break;
10864|       |    /* sup2 */
10865|    194|  case 0xb693c91921946537ULL:
  ------------------
  |  Branch (10865:3): [True: 194, False: 516k]
  ------------------
10866|    194|    if (len == 4) {
  ------------------
  |  Branch (10866:9): [True: 194, False: 0]
  ------------------
10867|    194|      return 178;
10868|    194|    }
10869|      0|    break;
10870|       |    /* sup3 */
10871|    194|  case 0xb693c81921946384ULL:
  ------------------
  |  Branch (10871:3): [True: 194, False: 516k]
  ------------------
10872|    194|    if (len == 4) {
  ------------------
  |  Branch (10872:9): [True: 194, False: 0]
  ------------------
10873|    194|      return 179;
10874|    194|    }
10875|      0|    break;
10876|       |    /* sup */
10877|    197|  case 0x82718b195d0fa45fULL:
  ------------------
  |  Branch (10877:3): [True: 197, False: 516k]
  ------------------
10878|    197|    if (len == 3) {
  ------------------
  |  Branch (10878:9): [True: 197, False: 0]
  ------------------
10879|    197|      return 8835;
10880|    197|    }
10881|      0|    break;
10882|       |    /* supE */
10883|    194|  case 0xb69376192193d82eULL:
  ------------------
  |  Branch (10883:3): [True: 194, False: 516k]
  ------------------
10884|    194|    if (len == 4) {
  ------------------
  |  Branch (10884:9): [True: 194, False: 0]
  ------------------
10885|    194|      return 10950;
10886|    194|    }
10887|      0|    break;
10888|       |    /* supdot */
10889|    194|  case 0x79cd46f4cb6bb9baULL:
  ------------------
  |  Branch (10889:3): [True: 194, False: 516k]
  ------------------
10890|    194|    if (len == 6) {
  ------------------
  |  Branch (10890:9): [True: 194, False: 0]
  ------------------
10891|    194|      return 10942;
10892|    194|    }
10893|      0|    break;
10894|       |    /* supdsub */
10895|    194|  case 0x83f80ff5b9cb0881ULL:
  ------------------
  |  Branch (10895:3): [True: 194, False: 516k]
  ------------------
10896|    194|    if (len == 7) {
  ------------------
  |  Branch (10896:9): [True: 194, False: 0]
  ------------------
10897|    194|      return 10968;
10898|    194|    }
10899|      0|    break;
10900|       |    /* supe */
10901|    194|  case 0xb693961921940e8eULL:
  ------------------
  |  Branch (10901:3): [True: 194, False: 516k]
  ------------------
10902|    194|    if (len == 4) {
  ------------------
  |  Branch (10902:9): [True: 194, False: 0]
  ------------------
10903|    194|      return 8839;
10904|    194|    }
10905|      0|    break;
10906|       |    /* supedot */
10907|    194|  case 0x8574c2ef72c88db5ULL:
  ------------------
  |  Branch (10907:3): [True: 194, False: 516k]
  ------------------
10908|    194|    if (len == 7) {
  ------------------
  |  Branch (10908:9): [True: 194, False: 0]
  ------------------
10909|    194|      return 10948;
10910|    194|    }
10911|      0|    break;
10912|       |    /* suphsol */
10913|    194|  case 0xc69835d28bbcccd1ULL:
  ------------------
  |  Branch (10913:3): [True: 194, False: 516k]
  ------------------
10914|    194|    if (len == 7) {
  ------------------
  |  Branch (10914:9): [True: 194, False: 0]
  ------------------
10915|    194|      return 10185;
10916|    194|    }
10917|      0|    break;
10918|       |    /* suphsub */
10919|    194|  case 0xc64d2fd28b7cd725ULL:
  ------------------
  |  Branch (10919:3): [True: 194, False: 516k]
  ------------------
10920|    194|    if (len == 7) {
  ------------------
  |  Branch (10920:9): [True: 194, False: 0]
  ------------------
10921|    194|      return 10967;
10922|    194|    }
10923|      0|    break;
10924|       |    /* suplarr */
10925|    194|  case 0x1380b3b3ea932544ULL:
  ------------------
  |  Branch (10925:3): [True: 194, False: 516k]
  ------------------
10926|    194|    if (len == 7) {
  ------------------
  |  Branch (10926:9): [True: 194, False: 0]
  ------------------
10927|    194|      return 10619;
10928|    194|    }
10929|      0|    break;
10930|       |    /* supmult */
10931|    194|  case 0x84b2fba8c99cd241ULL:
  ------------------
  |  Branch (10931:3): [True: 194, False: 516k]
  ------------------
10932|    194|    if (len == 7) {
  ------------------
  |  Branch (10932:9): [True: 194, False: 0]
  ------------------
10933|    194|      return 10946;
10934|    194|    }
10935|      0|    break;
10936|       |    /* supnE */
10937|    194|  case 0xd0b7c7b40e7a5732ULL:
  ------------------
  |  Branch (10937:3): [True: 194, False: 516k]
  ------------------
10938|    194|    if (len == 5) {
  ------------------
  |  Branch (10938:9): [True: 194, False: 0]
  ------------------
10939|    194|      return 10956;
10940|    194|    }
10941|      0|    break;
10942|       |    /* supne */
10943|    194|  case 0xd0b7e7b40e7a8d92ULL:
  ------------------
  |  Branch (10943:3): [True: 194, False: 516k]
  ------------------
10944|    194|    if (len == 5) {
  ------------------
  |  Branch (10944:9): [True: 194, False: 0]
  ------------------
10945|    194|      return 8843;
10946|    194|    }
10947|      0|    break;
10948|       |    /* supplus */
10949|    194|  case 0x0a5f419122241743ULL:
  ------------------
  |  Branch (10949:3): [True: 194, False: 516k]
  ------------------
10950|    194|    if (len == 7) {
  ------------------
  |  Branch (10950:9): [True: 194, False: 0]
  ------------------
10951|    194|      return 10944;
10952|    194|    }
10953|      0|    break;
10954|       |    /* supset */
10955|    194|  case 0xf7a8d1f481a5d185ULL:
  ------------------
  |  Branch (10955:3): [True: 194, False: 516k]
  ------------------
10956|    194|    if (len == 6) {
  ------------------
  |  Branch (10956:9): [True: 194, False: 0]
  ------------------
10957|    194|      return 8835;
10958|    194|    }
10959|      0|    break;
10960|       |    /* supseteq */
10961|    195|  case 0x875de36a70689023ULL:
  ------------------
  |  Branch (10961:3): [True: 195, False: 516k]
  ------------------
10962|    195|    if (len == 8) {
  ------------------
  |  Branch (10962:9): [True: 195, False: 0]
  ------------------
10963|    195|      return 8839;
10964|    195|    }
10965|      0|    break;
10966|       |    /* supseteqq */
10967|    194|  case 0x6d19bfdd01ad3b56ULL:
  ------------------
  |  Branch (10967:3): [True: 194, False: 516k]
  ------------------
10968|    194|    if (len == 9) {
  ------------------
  |  Branch (10968:9): [True: 194, False: 0]
  ------------------
10969|    194|      return 10950;
10970|    194|    }
10971|      0|    break;
10972|       |    /* supsetneq */
10973|    194|  case 0xcb5896dd36c35677ULL:
  ------------------
  |  Branch (10973:3): [True: 194, False: 516k]
  ------------------
10974|    194|    if (len == 9) {
  ------------------
  |  Branch (10974:9): [True: 194, False: 0]
  ------------------
10975|    194|      return 8843;
10976|    194|    }
10977|      0|    break;
10978|       |    /* supsetneqq */
10979|    194|  case 0x4ade5fe40deb2c32ULL:
  ------------------
  |  Branch (10979:3): [True: 194, False: 516k]
  ------------------
10980|    194|    if (len == 10) {
  ------------------
  |  Branch (10980:9): [True: 194, False: 0]
  ------------------
10981|    194|      return 10956;
10982|    194|    }
10983|      0|    break;
10984|       |    /* supsim */
10985|    194|  case 0xf7d0e8f481c74aaeULL:
  ------------------
  |  Branch (10985:3): [True: 194, False: 516k]
  ------------------
10986|    194|    if (len == 6) {
  ------------------
  |  Branch (10986:9): [True: 194, False: 0]
  ------------------
10987|    194|      return 10952;
10988|    194|    }
10989|      0|    break;
10990|       |    /* supsub */
10991|    194|  case 0xf7debbf481d33b93ULL:
  ------------------
  |  Branch (10991:3): [True: 194, False: 516k]
  ------------------
10992|    194|    if (len == 6) {
  ------------------
  |  Branch (10992:9): [True: 194, False: 0]
  ------------------
10993|    194|      return 10964;
10994|    194|    }
10995|      0|    break;
10996|       |    /* supsup */
10997|    194|  case 0xf7decdf481d35a29ULL:
  ------------------
  |  Branch (10997:3): [True: 194, False: 516k]
  ------------------
10998|    194|    if (len == 6) {
  ------------------
  |  Branch (10998:9): [True: 194, False: 0]
  ------------------
10999|    194|      return 10966;
11000|    194|    }
11001|      0|    break;
11002|       |    /* swArr */
11003|    194|  case 0xfeba9ba30fb1c0ceULL:
  ------------------
  |  Branch (11003:3): [True: 194, False: 516k]
  ------------------
11004|    194|    if (len == 5) {
  ------------------
  |  Branch (11004:9): [True: 194, False: 0]
  ------------------
11005|    194|      return 8665;
11006|    194|    }
11007|      0|    break;
11008|       |    /* swarhk */
11009|    194|  case 0x5df11207a94f6111ULL:
  ------------------
  |  Branch (11009:3): [True: 194, False: 516k]
  ------------------
11010|    194|    if (len == 6) {
  ------------------
  |  Branch (11010:9): [True: 194, False: 0]
  ------------------
11011|    194|      return 10534;
11012|    194|    }
11013|      0|    break;
11014|       |    /* swarr */
11015|    194|  case 0xe8b17ba271f8b46eULL:
  ------------------
  |  Branch (11015:3): [True: 194, False: 516k]
  ------------------
11016|    194|    if (len == 5) {
  ------------------
  |  Branch (11016:9): [True: 194, False: 0]
  ------------------
11017|    194|      return 8601;
11018|    194|    }
11019|      0|    break;
11020|       |    /* swarrow */
11021|    194|  case 0xd00e33053073d40cULL:
  ------------------
  |  Branch (11021:3): [True: 194, False: 516k]
  ------------------
11022|    194|    if (len == 7) {
  ------------------
  |  Branch (11022:9): [True: 194, False: 0]
  ------------------
11023|    194|      return 8601;
11024|    194|    }
11025|      0|    break;
11026|       |    /* swnwar */
11027|    194|  case 0x6e5a5f9bf51fa13fULL:
  ------------------
  |  Branch (11027:3): [True: 194, False: 516k]
  ------------------
11028|    194|    if (len == 6) {
  ------------------
  |  Branch (11028:9): [True: 194, False: 0]
  ------------------
11029|    194|      return 10538;
11030|    194|    }
11031|      0|    break;
11032|       |    /* szlig */
11033|    194|  case 0x2c9fd7bf12ea7dc8ULL:
  ------------------
  |  Branch (11033:3): [True: 194, False: 516k]
  ------------------
11034|    194|    if (len == 5) {
  ------------------
  |  Branch (11034:9): [True: 194, False: 0]
  ------------------
11035|    194|      return 223;
11036|    194|    }
11037|      0|    break;
11038|       |    /* target */
11039|    194|  case 0x16f3e46051eee3e8ULL:
  ------------------
  |  Branch (11039:3): [True: 194, False: 516k]
  ------------------
11040|    194|    if (len == 6) {
  ------------------
  |  Branch (11040:9): [True: 194, False: 0]
  ------------------
11041|    194|      return 8982;
11042|    194|    }
11043|      0|    break;
11044|       |    /* tau */
11045|    194|  case 0x56d7bd194448c389ULL:
  ------------------
  |  Branch (11045:3): [True: 194, False: 516k]
  ------------------
11046|    194|    if (len == 3) {
  ------------------
  |  Branch (11046:9): [True: 194, False: 0]
  ------------------
11047|    194|      return 964;
11048|    194|    }
11049|      0|    break;
11050|       |    /* tbrk */
11051|    194|  case 0xce942aef00f16b88ULL:
  ------------------
  |  Branch (11051:3): [True: 194, False: 516k]
  ------------------
11052|    194|    if (len == 4) {
  ------------------
  |  Branch (11052:9): [True: 194, False: 0]
  ------------------
11053|    194|      return 9140;
11054|    194|    }
11055|      0|    break;
11056|       |    /* tcaron */
11057|    194|  case 0x7588128a4f15512eULL:
  ------------------
  |  Branch (11057:3): [True: 194, False: 516k]
  ------------------
11058|    194|    if (len == 6) {
  ------------------
  |  Branch (11058:9): [True: 194, False: 0]
  ------------------
11059|    194|      return 357;
11060|    194|    }
11061|      0|    break;
11062|       |    /* tcedil */
11063|    194|  case 0x19f326a9789703fcULL:
  ------------------
  |  Branch (11063:3): [True: 194, False: 516k]
  ------------------
11064|    194|    if (len == 6) {
  ------------------
  |  Branch (11064:9): [True: 194, False: 0]
  ------------------
11065|    194|      return 355;
11066|    194|    }
11067|      0|    break;
11068|       |    /* tcy */
11069|    202|  case 0x56d0bd194442a4dbULL:
  ------------------
  |  Branch (11069:3): [True: 202, False: 516k]
  ------------------
11070|    202|    if (len == 3) {
  ------------------
  |  Branch (11070:9): [True: 202, False: 0]
  ------------------
11071|    202|      return 1090;
11072|    202|    }
11073|      0|    break;
11074|       |    /* tdot */
11075|    194|  case 0x048e1def2015363eULL:
  ------------------
  |  Branch (11075:3): [True: 194, False: 516k]
  ------------------
11076|    194|    if (len == 4) {
  ------------------
  |  Branch (11076:9): [True: 194, False: 0]
  ------------------
11077|    194|      return 8411;
11078|    194|    }
11079|      0|    break;
11080|       |    /* telrec */
11081|    194|  case 0x2544e6cbb938bdccULL:
  ------------------
  |  Branch (11081:3): [True: 194, False: 516k]
  ------------------
11082|    194|    if (len == 6) {
  ------------------
  |  Branch (11082:9): [True: 194, False: 0]
  ------------------
11083|    194|      return 8981;
11084|    194|    }
11085|      0|    break;
11086|       |    /* tfr */
11087|    194|  case 0x56e1d01944513857ULL:
  ------------------
  |  Branch (11087:3): [True: 194, False: 516k]
  ------------------
11088|    194|    if (len == 3) {
  ------------------
  |  Branch (11088:9): [True: 194, False: 0]
  ------------------
11089|    194|      return 120113;
11090|    194|    }
11091|      0|    break;
11092|       |    /* there4 */
11093|    194|  case 0xe5d2a5553611536bULL:
  ------------------
  |  Branch (11093:3): [True: 194, False: 516k]
  ------------------
11094|    194|    if (len == 6) {
  ------------------
  |  Branch (11094:9): [True: 194, False: 0]
  ------------------
11095|    194|      return 8756;
11096|    194|    }
11097|      0|    break;
11098|       |    /* therefore */
11099|    194|  case 0x62302200658996b7ULL:
  ------------------
  |  Branch (11099:3): [True: 194, False: 516k]
  ------------------
11100|    194|    if (len == 9) {
  ------------------
  |  Branch (11100:9): [True: 194, False: 0]
  ------------------
11101|    194|      return 8756;
11102|    194|    }
11103|      0|    break;
11104|       |    /* theta */
11105|    194|  case 0xeadab6725da1db1bULL:
  ------------------
  |  Branch (11105:3): [True: 194, False: 516k]
  ------------------
11106|    194|    if (len == 5) {
  ------------------
  |  Branch (11106:9): [True: 194, False: 0]
  ------------------
11107|    194|      return 952;
11108|    194|    }
11109|      0|    break;
11110|       |    /* thetasym */
11111|    194|  case 0x27f794c5bdc02a7aULL:
  ------------------
  |  Branch (11111:3): [True: 194, False: 516k]
  ------------------
11112|    194|    if (len == 8) {
  ------------------
  |  Branch (11112:9): [True: 194, False: 0]
  ------------------
11113|    194|      return 977;
11114|    194|    }
11115|      0|    break;
11116|       |    /* thetav */
11117|    194|  case 0xb37f71551a07da37ULL:
  ------------------
  |  Branch (11117:3): [True: 194, False: 516k]
  ------------------
11118|    194|    if (len == 6) {
  ------------------
  |  Branch (11118:9): [True: 194, False: 0]
  ------------------
11119|    194|      return 977;
11120|    194|    }
11121|      0|    break;
11122|       |    /* thickapprox */
11123|    194|  case 0x77abec71600eb6c2ULL:
  ------------------
  |  Branch (11123:3): [True: 194, False: 516k]
  ------------------
11124|    194|    if (len == 11) {
  ------------------
  |  Branch (11124:9): [True: 194, False: 0]
  ------------------
11125|    194|      return 8776;
11126|    194|    }
11127|      0|    break;
11128|       |    /* thicksim */
11129|    194|  case 0xbbc13542f05a9a05ULL:
  ------------------
  |  Branch (11129:3): [True: 194, False: 516k]
  ------------------
11130|    194|    if (len == 8) {
  ------------------
  |  Branch (11130:9): [True: 194, False: 0]
  ------------------
11131|    194|      return 8764;
11132|    194|    }
11133|      0|    break;
11134|       |    /* thinsp */
11135|    194|  case 0xf975d97804f98979ULL:
  ------------------
  |  Branch (11135:3): [True: 194, False: 516k]
  ------------------
11136|    194|    if (len == 6) {
  ------------------
  |  Branch (11136:9): [True: 194, False: 0]
  ------------------
11137|    194|      return 8201;
11138|    194|    }
11139|      0|    break;
11140|       |    /* thkap */
11141|    194|  case 0x20cda5727cbf8057ULL:
  ------------------
  |  Branch (11141:3): [True: 194, False: 516k]
  ------------------
11142|    194|    if (len == 5) {
  ------------------
  |  Branch (11142:9): [True: 194, False: 0]
  ------------------
11143|    194|      return 8776;
11144|    194|    }
11145|      0|    break;
11146|       |    /* thksim */
11147|    194|  case 0xf75c798a3f118be5ULL:
  ------------------
  |  Branch (11147:3): [True: 194, False: 516k]
  ------------------
11148|    194|    if (len == 6) {
  ------------------
  |  Branch (11148:9): [True: 194, False: 0]
  ------------------
11149|    194|      return 8764;
11150|    194|    }
11151|      0|    break;
11152|       |    /* thorn */
11153|    194|  case 0x41804d728eb78f02ULL:
  ------------------
  |  Branch (11153:3): [True: 194, False: 516k]
  ------------------
11154|    194|    if (len == 5) {
  ------------------
  |  Branch (11154:9): [True: 194, False: 0]
  ------------------
11155|    194|      return 254;
11156|    194|    }
11157|      0|    break;
11158|       |    /* tilde */
11159|    194|  case 0x1ebe716c32b937c9ULL:
  ------------------
  |  Branch (11159:3): [True: 194, False: 516k]
  ------------------
11160|    194|    if (len == 5) {
  ------------------
  |  Branch (11160:9): [True: 194, False: 0]
  ------------------
11161|    194|      return 732;
11162|    194|    }
11163|      0|    break;
11164|       |    /* times */
11165|    194|  case 0x29338c6c39286cb5ULL:
  ------------------
  |  Branch (11165:3): [True: 194, False: 516k]
  ------------------
11166|    194|    if (len == 5) {
  ------------------
  |  Branch (11166:9): [True: 194, False: 0]
  ------------------
11167|    194|      return 215;
11168|    194|    }
11169|      0|    break;
11170|       |    /* timesb */
11171|    194|  case 0x2b0472e51fb0f155ULL:
  ------------------
  |  Branch (11171:3): [True: 194, False: 516k]
  ------------------
11172|    194|    if (len == 6) {
  ------------------
  |  Branch (11172:9): [True: 194, False: 0]
  ------------------
11173|    194|      return 8864;
11174|    194|    }
11175|      0|    break;
11176|       |    /* timesbar */
11177|    194|  case 0x0f185b2ddb9f6f2aULL:
  ------------------
  |  Branch (11177:3): [True: 194, False: 516k]
  ------------------
11178|    194|    if (len == 8) {
  ------------------
  |  Branch (11178:9): [True: 194, False: 0]
  ------------------
11179|    194|      return 10801;
11180|    194|    }
11181|      0|    break;
11182|       |    /* timesd */
11183|    194|  case 0x2b046ce51fb0e723ULL:
  ------------------
  |  Branch (11183:3): [True: 194, False: 516k]
  ------------------
11184|    194|    if (len == 6) {
  ------------------
  |  Branch (11184:9): [True: 194, False: 0]
  ------------------
11185|    194|      return 10800;
11186|    194|    }
11187|      0|    break;
11188|       |    /* tint */
11189|    194|  case 0x1e4984ef2e958a4cULL:
  ------------------
  |  Branch (11189:3): [True: 194, False: 516k]
  ------------------
11190|    194|    if (len == 4) {
  ------------------
  |  Branch (11190:9): [True: 194, False: 0]
  ------------------
11191|    194|      return 8749;
11192|    194|    }
11193|      0|    break;
11194|       |    /* toea */
11195|    194|  case 0x2fc1e7ef38855d16ULL:
  ------------------
  |  Branch (11195:3): [True: 194, False: 516k]
  ------------------
11196|    194|    if (len == 4) {
  ------------------
  |  Branch (11196:9): [True: 194, False: 0]
  ------------------
11197|    194|      return 10536;
11198|    194|    }
11199|      0|    break;
11200|       |    /* top */
11201|    197|  case 0x56f9bc194465a83cULL:
  ------------------
  |  Branch (11201:3): [True: 197, False: 516k]
  ------------------
11202|    197|    if (len == 3) {
  ------------------
  |  Branch (11202:9): [True: 197, False: 0]
  ------------------
11203|    197|      return 8868;
11204|    197|    }
11205|      0|    break;
11206|       |    /* topbot */
11207|    194|  case 0xef9e9d19f2142161ULL:
  ------------------
  |  Branch (11207:3): [True: 194, False: 516k]
  ------------------
11208|    194|    if (len == 6) {
  ------------------
  |  Branch (11208:9): [True: 194, False: 0]
  ------------------
11209|    194|      return 9014;
11210|    194|    }
11211|      0|    break;
11212|       |    /* topcir */
11213|    246|  case 0xf687c619f57f75daULL:
  ------------------
  |  Branch (11213:3): [True: 246, False: 516k]
  ------------------
11214|    246|    if (len == 6) {
  ------------------
  |  Branch (11214:9): [True: 246, False: 0]
  ------------------
11215|    246|      return 10993;
11216|    246|    }
11217|      0|    break;
11218|       |    /* topf */
11219|    194|  case 0x3002f8ef38bd10eeULL:
  ------------------
  |  Branch (11219:3): [True: 194, False: 516k]
  ------------------
11220|    194|    if (len == 4) {
  ------------------
  |  Branch (11220:9): [True: 194, False: 0]
  ------------------
11221|    194|      return 120165;
11222|    194|    }
11223|      0|    break;
11224|       |    /* topfork */
11225|    194|  case 0x25fefcf26538d5c8ULL:
  ------------------
  |  Branch (11225:3): [True: 194, False: 516k]
  ------------------
11226|    194|    if (len == 7) {
  ------------------
  |  Branch (11226:9): [True: 194, False: 0]
  ------------------
11227|    194|      return 10970;
11228|    194|    }
11229|      0|    break;
11230|       |    /* tosa */
11231|    194|  case 0x300cebef38c54f5cULL:
  ------------------
  |  Branch (11231:3): [True: 194, False: 516k]
  ------------------
11232|    194|    if (len == 4) {
  ------------------
  |  Branch (11232:9): [True: 194, False: 0]
  ------------------
11233|    194|      return 10537;
11234|    194|    }
11235|      0|    break;
11236|       |    /* tprime */
11237|    194|  case 0xdcbc0f6aeba7f4feULL:
  ------------------
  |  Branch (11237:3): [True: 194, False: 516k]
  ------------------
11238|    194|    if (len == 6) {
  ------------------
  |  Branch (11238:9): [True: 194, False: 0]
  ------------------
11239|    194|      return 8244;
11240|    194|    }
11241|      0|    break;
11242|       |    /* trade */
11243|    194|  case 0xdebb6ea6c4e2f4d9ULL:
  ------------------
  |  Branch (11243:3): [True: 194, False: 516k]
  ------------------
11244|    194|    if (len == 5) {
  ------------------
  |  Branch (11244:9): [True: 194, False: 0]
  ------------------
11245|    194|      return 8482;
11246|    194|    }
11247|      0|    break;
11248|       |    /* triangle */
11249|    195|  case 0xdc74456562ae7805ULL:
  ------------------
  |  Branch (11249:3): [True: 195, False: 516k]
  ------------------
11250|    195|    if (len == 8) {
  ------------------
  |  Branch (11250:9): [True: 195, False: 0]
  ------------------
11251|    195|      return 9653;
11252|    195|    }
11253|      0|    break;
11254|       |    /* triangledown */
11255|    194|  case 0x014b077c1530e435ULL:
  ------------------
  |  Branch (11255:3): [True: 194, False: 516k]
  ------------------
11256|    194|    if (len == 12) {
  ------------------
  |  Branch (11256:9): [True: 194, False: 0]
  ------------------
11257|    194|      return 9663;
11258|    194|    }
11259|      0|    break;
11260|       |    /* triangleleft */
11261|    194|  case 0xa3e265bd705e0a90ULL:
  ------------------
  |  Branch (11261:3): [True: 194, False: 516k]
  ------------------
11262|    194|    if (len == 12) {
  ------------------
  |  Branch (11262:9): [True: 194, False: 0]
  ------------------
11263|    194|      return 9667;
11264|    194|    }
11265|      0|    break;
11266|       |    /* trianglelefteq */
11267|    199|  case 0x6430b3b678b0e35aULL:
  ------------------
  |  Branch (11267:3): [True: 199, False: 516k]
  ------------------
11268|    199|    if (len == 14) {
  ------------------
  |  Branch (11268:9): [True: 199, False: 0]
  ------------------
11269|    199|      return 8884;
11270|    199|    }
11271|      0|    break;
11272|       |    /* triangleq */
11273|    194|  case 0x480a5f46ae76ad1cULL:
  ------------------
  |  Branch (11273:3): [True: 194, False: 516k]
  ------------------
11274|    194|    if (len == 9) {
  ------------------
  |  Branch (11274:9): [True: 194, False: 0]
  ------------------
11275|    194|      return 8796;
11276|    194|    }
11277|      0|    break;
11278|       |    /* triangleright */
11279|      0|  case 0xed273c852f9f5665ULL:
  ------------------
  |  Branch (11279:3): [True: 0, False: 516k]
  ------------------
11280|      0|    if (len == 13) {
  ------------------
  |  Branch (11280:9): [True: 0, False: 0]
  ------------------
11281|      0|      return 9657;
11282|      0|    }
11283|      0|    break;
11284|       |    /* trianglerighteq */
11285|      0|  case 0xbd419acd95c78603ULL:
  ------------------
  |  Branch (11285:3): [True: 0, False: 516k]
  ------------------
11286|      0|    if (len == 15) {
  ------------------
  |  Branch (11286:9): [True: 0, False: 0]
  ------------------
11287|      0|      return 8885;
11288|      0|    }
11289|      0|    break;
11290|       |    /* tridot */
11291|    194|  case 0x597256a33dc59f25ULL:
  ------------------
  |  Branch (11291:3): [True: 194, False: 516k]
  ------------------
11292|    194|    if (len == 6) {
  ------------------
  |  Branch (11292:9): [True: 194, False: 0]
  ------------------
11293|    194|      return 9708;
11294|    194|    }
11295|      0|    break;
11296|       |    /* trie */
11297|    194|  case 0x5b33c8ef512b0c21ULL:
  ------------------
  |  Branch (11297:3): [True: 194, False: 516k]
  ------------------
11298|    194|    if (len == 4) {
  ------------------
  |  Branch (11298:9): [True: 194, False: 0]
  ------------------
11299|    194|      return 8796;
11300|    194|    }
11301|      0|    break;
11302|       |    /* triminus */
11303|    194|  case 0x042866af73e857daULL:
  ------------------
  |  Branch (11303:3): [True: 194, False: 516k]
  ------------------
11304|    194|    if (len == 8) {
  ------------------
  |  Branch (11304:9): [True: 194, False: 0]
  ------------------
11305|    194|      return 10810;
11306|    194|    }
11307|      0|    break;
11308|       |    /* triplus */
11309|    194|  case 0x0f63b601c5b988c2ULL:
  ------------------
  |  Branch (11309:3): [True: 194, False: 516k]
  ------------------
11310|    194|    if (len == 7) {
  ------------------
  |  Branch (11310:9): [True: 194, False: 0]
  ------------------
11311|    194|      return 10809;
11312|    194|    }
11313|      0|    break;
11314|       |    /* trisb */
11315|    194|  case 0x23dad9a6ebfcf60fULL:
  ------------------
  |  Branch (11315:3): [True: 194, False: 516k]
  ------------------
11316|    194|    if (len == 5) {
  ------------------
  |  Branch (11316:9): [True: 194, False: 0]
  ------------------
11317|    194|      return 10701;
11318|    194|    }
11319|      0|    break;
11320|       |    /* tritime */
11321|    194|  case 0x4b4d9cdf2453b457ULL:
  ------------------
  |  Branch (11321:3): [True: 194, False: 516k]
  ------------------
11322|    194|    if (len == 7) {
  ------------------
  |  Branch (11322:9): [True: 194, False: 0]
  ------------------
11323|    194|      return 10811;
11324|    194|    }
11325|      0|    break;
11326|       |    /* trpezium */
11327|      0|  case 0xf3e5799099bbe89bULL:
  ------------------
  |  Branch (11327:3): [True: 0, False: 516k]
  ------------------
11328|      0|    if (len == 8) {
  ------------------
  |  Branch (11328:9): [True: 0, False: 0]
  ------------------
11329|      0|      return 9186;
11330|      0|    }
11331|      0|    break;
11332|       |    /* tscr */
11333|    195|  case 0x50c98aef4ac5a341ULL:
  ------------------
  |  Branch (11333:3): [True: 195, False: 516k]
  ------------------
11334|    195|    if (len == 4) {
  ------------------
  |  Branch (11334:9): [True: 195, False: 0]
  ------------------
11335|    195|      return 120009;
11336|    195|    }
11337|      0|    break;
11338|       |    /* tscy */
11339|    194|  case 0x50c97fef4ac59090ULL:
  ------------------
  |  Branch (11339:3): [True: 194, False: 516k]
  ------------------
11340|    194|    if (len == 4) {
  ------------------
  |  Branch (11340:9): [True: 194, False: 0]
  ------------------
11341|    194|      return 1094;
11342|    194|    }
11343|      0|    break;
11344|       |    /* tshcy */
11345|    194|  case 0x3737199c2631a538ULL:
  ------------------
  |  Branch (11345:3): [True: 194, False: 516k]
  ------------------
11346|    194|    if (len == 5) {
  ------------------
  |  Branch (11346:9): [True: 194, False: 0]
  ------------------
11347|    194|      return 1115;
11348|    194|    }
11349|      0|    break;
11350|       |    /* tstrok */
11351|    195|  case 0x04f96dae725b776cULL:
  ------------------
  |  Branch (11351:3): [True: 195, False: 516k]
  ------------------
11352|    195|    if (len == 6) {
  ------------------
  |  Branch (11352:9): [True: 195, False: 0]
  ------------------
11353|    195|      return 359;
11354|    195|    }
11355|      0|    break;
11356|       |    /* twixt */
11357|    194|  case 0x892887bfa8c593d3ULL:
  ------------------
  |  Branch (11357:3): [True: 194, False: 516k]
  ------------------
11358|    194|    if (len == 5) {
  ------------------
  |  Branch (11358:9): [True: 194, False: 0]
  ------------------
11359|    194|      return 8812;
11360|    194|    }
11361|      0|    break;
11362|       |    /* twoheadleftarrow */
11363|      0|  case 0x9241b1d92283ddf3ULL:
  ------------------
  |  Branch (11363:3): [True: 0, False: 516k]
  ------------------
11364|      0|    if (len == 16) {
  ------------------
  |  Branch (11364:9): [True: 0, False: 0]
  ------------------
11365|      0|      return 8606;
11366|      0|    }
11367|      0|    break;
11368|       |    /* twoheadrightarrow */
11369|      0|  case 0xf68e0dfa08a4ab98ULL:
  ------------------
  |  Branch (11369:3): [True: 0, False: 516k]
  ------------------
11370|      0|    if (len == 17) {
  ------------------
  |  Branch (11370:9): [True: 0, False: 0]
  ------------------
11371|      0|      return 8608;
11372|      0|    }
11373|      0|    break;
11374|       |    /* uArr */
11375|    194|  case 0x0a4dd8e4e388fcc3ULL:
  ------------------
  |  Branch (11375:3): [True: 194, False: 516k]
  ------------------
11376|    194|    if (len == 4) {
  ------------------
  |  Branch (11376:9): [True: 194, False: 0]
  ------------------
11377|    194|      return 8657;
11378|    194|    }
11379|      0|    break;
11380|       |    /* uHar */
11381|    194|  case 0x479e07e506750e1bULL:
  ------------------
  |  Branch (11381:3): [True: 194, False: 516k]
  ------------------
11382|    194|    if (len == 4) {
  ------------------
  |  Branch (11382:9): [True: 194, False: 0]
  ------------------
11383|    194|      return 10595;
11384|    194|    }
11385|      0|    break;
11386|       |    /* uacute */
11387|    194|  case 0x47821f8c87c6c9acULL:
  ------------------
  |  Branch (11387:3): [True: 194, False: 516k]
  ------------------
11388|    194|    if (len == 6) {
  ------------------
  |  Branch (11388:9): [True: 194, False: 0]
  ------------------
11389|    194|      return 250;
11390|    194|    }
11391|      0|    break;
11392|       |    /* uarr */
11393|    195|  case 0xf444b8e445cff063ULL:
  ------------------
  |  Branch (11393:3): [True: 195, False: 516k]
  ------------------
11394|    195|    if (len == 4) {
  ------------------
  |  Branch (11394:9): [True: 195, False: 0]
  ------------------
11395|    195|      return 8593;
11396|    195|    }
11397|      0|    break;
11398|       |    /* ubrcy */
11399|    194|  case 0xea783fee0769cf4cULL:
  ------------------
  |  Branch (11399:3): [True: 194, False: 516k]
  ------------------
11400|    194|    if (len == 5) {
  ------------------
  |  Branch (11400:9): [True: 194, False: 0]
  ------------------
11401|    194|      return 1118;
11402|    194|    }
11403|      0|    break;
11404|       |    /* ubreve */
11405|    194|  case 0xa196c8767c906626ULL:
  ------------------
  |  Branch (11405:3): [True: 194, False: 516k]
  ------------------
11406|    194|    if (len == 6) {
  ------------------
  |  Branch (11406:9): [True: 194, False: 0]
  ------------------
11407|    194|      return 365;
11408|    194|    }
11409|      0|    break;
11410|       |    /* ucirc */
11411|    194|  case 0x83de90f415f4e8cfULL:
  ------------------
  |  Branch (11411:3): [True: 194, False: 516k]
  ------------------
11412|    194|    if (len == 5) {
  ------------------
  |  Branch (11412:9): [True: 194, False: 0]
  ------------------
11413|    194|      return 251;
11414|    194|    }
11415|      0|    break;
11416|       |    /* ucy */
11417|    196|  case 0x4c8894193dfa4610ULL:
  ------------------
  |  Branch (11417:3): [True: 196, False: 516k]
  ------------------
11418|    196|    if (len == 3) {
  ------------------
  |  Branch (11418:9): [True: 196, False: 0]
  ------------------
11419|    196|      return 1091;
11420|    196|    }
11421|      0|    break;
11422|       |    /* udarr */
11423|    194|  case 0x50e541fb63e84467ULL:
  ------------------
  |  Branch (11423:3): [True: 194, False: 516k]
  ------------------
11424|    194|    if (len == 5) {
  ------------------
  |  Branch (11424:9): [True: 194, False: 0]
  ------------------
11425|    194|      return 8645;
11426|    194|    }
11427|      0|    break;
11428|       |    /* udblac */
11429|    208|  case 0x34cc7e31854321ceULL:
  ------------------
  |  Branch (11429:3): [True: 208, False: 516k]
  ------------------
11430|    208|    if (len == 6) {
  ------------------
  |  Branch (11430:9): [True: 208, False: 0]
  ------------------
11431|    208|      return 369;
11432|    208|    }
11433|      0|    break;
11434|       |    /* udhar */
11435|    194|  case 0x01e9c0fb36e1238fULL:
  ------------------
  |  Branch (11435:3): [True: 194, False: 516k]
  ------------------
11436|    194|    if (len == 5) {
  ------------------
  |  Branch (11436:9): [True: 194, False: 0]
  ------------------
11437|    194|      return 10606;
11438|    194|    }
11439|      0|    break;
11440|       |    /* ufisht */
11441|    194|  case 0xa5450cc31ae76d9aULL:
  ------------------
  |  Branch (11441:3): [True: 194, False: 516k]
  ------------------
11442|    194|    if (len == 6) {
  ------------------
  |  Branch (11442:9): [True: 194, False: 0]
  ------------------
11443|    194|      return 10622;
11444|    194|    }
11445|      0|    break;
11446|       |    /* ufr */
11447|    194|  case 0x4c928d193e028eb0ULL:
  ------------------
  |  Branch (11447:3): [True: 194, False: 516k]
  ------------------
11448|    194|    if (len == 3) {
  ------------------
  |  Branch (11448:9): [True: 194, False: 0]
  ------------------
11449|    194|      return 120114;
11450|    194|    }
11451|      0|    break;
11452|       |    /* ugrave */
11453|    194|  case 0xf074086ffeff1671ULL:
  ------------------
  |  Branch (11453:3): [True: 194, False: 516k]
  ------------------
11454|    194|    if (len == 6) {
  ------------------
  |  Branch (11454:9): [True: 194, False: 0]
  ------------------
11455|    194|      return 249;
11456|    194|    }
11457|      0|    break;
11458|       |    /* uharl */
11459|    194|  case 0xfc07e01df7772055ULL:
  ------------------
  |  Branch (11459:3): [True: 194, False: 516k]
  ------------------
11460|    194|    if (len == 5) {
  ------------------
  |  Branch (11460:9): [True: 194, False: 0]
  ------------------
11461|    194|      return 8639;
11462|    194|    }
11463|      0|    break;
11464|       |    /* uharr */
11465|    194|  case 0xfc07d21df777088bULL:
  ------------------
  |  Branch (11465:3): [True: 194, False: 516k]
  ------------------
11466|    194|    if (len == 5) {
  ------------------
  |  Branch (11466:9): [True: 194, False: 0]
  ------------------
11467|    194|      return 8638;
11468|    194|    }
11469|      0|    break;
11470|       |    /* uhblk */
11471|    194|  case 0x037f0a1dfb5a7bc7ULL:
  ------------------
  |  Branch (11471:3): [True: 194, False: 516k]
  ------------------
11472|    194|    if (len == 5) {
  ------------------
  |  Branch (11472:9): [True: 194, False: 0]
  ------------------
11473|    194|      return 9600;
11474|    194|    }
11475|      0|    break;
11476|       |    /* ulcorn */
11477|    194|  case 0xd91e4fd10e8e794eULL:
  ------------------
  |  Branch (11477:3): [True: 194, False: 516k]
  ------------------
11478|    194|    if (len == 6) {
  ------------------
  |  Branch (11478:9): [True: 194, False: 0]
  ------------------
11479|    194|      return 8988;
11480|    194|    }
11481|      0|    break;
11482|       |    /* ulcorner */
11483|    194|  case 0x760bb9809c991439ULL:
  ------------------
  |  Branch (11483:3): [True: 194, False: 516k]
  ------------------
11484|    194|    if (len == 8) {
  ------------------
  |  Branch (11484:9): [True: 194, False: 0]
  ------------------
11485|    194|      return 8988;
11486|    194|    }
11487|      0|    break;
11488|       |    /* ulcrop */
11489|    194|  case 0x361e42d0b2ad988aULL:
  ------------------
  |  Branch (11489:3): [True: 194, False: 516k]
  ------------------
11490|    194|    if (len == 6) {
  ------------------
  |  Branch (11490:9): [True: 194, False: 0]
  ------------------
11491|    194|      return 8975;
11492|    194|    }
11493|      0|    break;
11494|       |    /* ultri */
11495|    194|  case 0x1ad65e415d50ba0dULL:
  ------------------
  |  Branch (11495:3): [True: 194, False: 516k]
  ------------------
11496|    194|    if (len == 5) {
  ------------------
  |  Branch (11496:9): [True: 194, False: 0]
  ------------------
11497|    194|      return 9720;
11498|    194|    }
11499|      0|    break;
11500|       |    /* umacr */
11501|    194|  case 0x0b411e479d41d803ULL:
  ------------------
  |  Branch (11501:3): [True: 194, False: 516k]
  ------------------
11502|    194|    if (len == 5) {
  ------------------
  |  Branch (11502:9): [True: 194, False: 0]
  ------------------
11503|    194|      return 363;
11504|    194|    }
11505|      0|    break;
11506|       |    /* uml */
11507|    200|  case 0x4caa8d193e172091ULL:
  ------------------
  |  Branch (11507:3): [True: 200, False: 516k]
  ------------------
11508|    200|    if (len == 3) {
  ------------------
  |  Branch (11508:9): [True: 200, False: 0]
  ------------------
11509|    200|      return 168;
11510|    200|    }
11511|      0|    break;
11512|       |    /* uogon */
11513|    194|  case 0x633fb45979011ad7ULL:
  ------------------
  |  Branch (11513:3): [True: 194, False: 516k]
  ------------------
11514|    194|    if (len == 5) {
  ------------------
  |  Branch (11514:9): [True: 194, False: 0]
  ------------------
11515|    194|      return 371;
11516|    194|    }
11517|      0|    break;
11518|       |    /* uopf */
11519|    194|  case 0x6f43eae48bf85cd3ULL:
  ------------------
  |  Branch (11519:3): [True: 194, False: 516k]
  ------------------
11520|    194|    if (len == 4) {
  ------------------
  |  Branch (11520:9): [True: 194, False: 0]
  ------------------
11521|    194|      return 120166;
11522|    194|    }
11523|      0|    break;
11524|       |    /* uparrow */
11525|    194|  case 0x4d3d5c827e5a0719ULL:
  ------------------
  |  Branch (11525:3): [True: 194, False: 516k]
  ------------------
11526|    194|    if (len == 7) {
  ------------------
  |  Branch (11526:9): [True: 194, False: 0]
  ------------------
11527|    194|      return 8593;
11528|    194|    }
11529|      0|    break;
11530|       |    /* updownarrow */
11531|    194|  case 0x0f92179d5142382dULL:
  ------------------
  |  Branch (11531:3): [True: 194, False: 516k]
  ------------------
11532|    194|    if (len == 11) {
  ------------------
  |  Branch (11532:9): [True: 194, False: 0]
  ------------------
11533|    194|      return 8597;
11534|    194|    }
11535|      0|    break;
11536|       |    /* upharpoonleft */
11537|      0|  case 0x92e4d523b361453aULL:
  ------------------
  |  Branch (11537:3): [True: 0, False: 516k]
  ------------------
11538|      0|    if (len == 13) {
  ------------------
  |  Branch (11538:9): [True: 0, False: 0]
  ------------------
11539|      0|      return 8639;
11540|      0|    }
11541|      0|    break;
11542|       |    /* upharpoonright */
11543|      0|  case 0x097fff6161b22fa7ULL:
  ------------------
  |  Branch (11543:3): [True: 0, False: 516k]
  ------------------
11544|      0|    if (len == 14) {
  ------------------
  |  Branch (11544:9): [True: 0, False: 0]
  ------------------
11545|      0|      return 8638;
11546|      0|    }
11547|      0|    break;
11548|       |    /* uplus */
11549|    194|  case 0xb163f3588d1b2a50ULL:
  ------------------
  |  Branch (11549:3): [True: 194, False: 516k]
  ------------------
11550|    194|    if (len == 5) {
  ------------------
  |  Branch (11550:9): [True: 194, False: 0]
  ------------------
11551|    194|      return 8846;
11552|    194|    }
11553|      0|    break;
11554|       |    /* upsi */
11555|    194|  case 0x63a0f4e3f4a0ae80ULL:
  ------------------
  |  Branch (11555:3): [True: 194, False: 516k]
  ------------------
11556|    194|    if (len == 4) {
  ------------------
  |  Branch (11556:9): [True: 194, False: 0]
  ------------------
11557|    194|      return 965;
11558|    194|    }
11559|      0|    break;
11560|       |    /* upsih */
11561|    194|  case 0xeb2f0758ad093438ULL:
  ------------------
  |  Branch (11561:3): [True: 194, False: 516k]
  ------------------
11562|    194|    if (len == 5) {
  ------------------
  |  Branch (11562:9): [True: 194, False: 0]
  ------------------
11563|    194|      return 978;
11564|    194|    }
11565|      0|    break;
11566|       |    /* upsilon */
11567|    194|  case 0xd8375cb55d00468dULL:
  ------------------
  |  Branch (11567:3): [True: 194, False: 516k]
  ------------------
11568|    194|    if (len == 7) {
  ------------------
  |  Branch (11568:9): [True: 194, False: 0]
  ------------------
11569|    194|      return 965;
11570|    194|    }
11571|      0|    break;
11572|       |    /* upuparrows */
11573|    194|  case 0x9016ee55e0c064a7ULL:
  ------------------
  |  Branch (11573:3): [True: 194, False: 516k]
  ------------------
11574|    194|    if (len == 10) {
  ------------------
  |  Branch (11574:9): [True: 194, False: 0]
  ------------------
11575|    194|      return 8648;
11576|    194|    }
11577|      0|    break;
11578|       |    /* urcorn */
11579|    194|  case 0x12c7ff1b7e5a59d8ULL:
  ------------------
  |  Branch (11579:3): [True: 194, False: 516k]
  ------------------
11580|    194|    if (len == 6) {
  ------------------
  |  Branch (11580:9): [True: 194, False: 0]
  ------------------
11581|    194|      return 8989;
11582|    194|    }
11583|      0|    break;
11584|       |    /* urcorner */
11585|    194|  case 0x646cb5260d85446fULL:
  ------------------
  |  Branch (11585:3): [True: 194, False: 516k]
  ------------------
11586|    194|    if (len == 8) {
  ------------------
  |  Branch (11586:9): [True: 194, False: 0]
  ------------------
11587|    194|      return 8989;
11588|    194|    }
11589|      0|    break;
11590|       |    /* urcrop */
11591|    194|  case 0xf9d7961b7085b5c8ULL:
  ------------------
  |  Branch (11591:3): [True: 194, False: 516k]
  ------------------
11592|    194|    if (len == 6) {
  ------------------
  |  Branch (11592:9): [True: 194, False: 0]
  ------------------
11593|    194|      return 8974;
11594|    194|    }
11595|      0|    break;
11596|       |    /* uring */
11597|    194|  case 0x556568657a61f8aaULL:
  ------------------
  |  Branch (11597:3): [True: 194, False: 516k]
  ------------------
11598|    194|    if (len == 5) {
  ------------------
  |  Branch (11598:9): [True: 194, False: 0]
  ------------------
11599|    194|      return 367;
11600|    194|    }
11601|      0|    break;
11602|       |    /* urtri */
11603|    194|  case 0x71d2dd658b2cb8ffULL:
  ------------------
  |  Branch (11603:3): [True: 194, False: 516k]
  ------------------
11604|    194|    if (len == 5) {
  ------------------
  |  Branch (11604:9): [True: 194, False: 0]
  ------------------
11605|    194|      return 9721;
11606|    194|    }
11607|      0|    break;
11608|       |    /* uscr */
11609|    194|  case 0x7d6090e403254574ULL:
  ------------------
  |  Branch (11609:3): [True: 194, False: 516k]
  ------------------
11610|    194|    if (len == 4) {
  ------------------
  |  Branch (11610:9): [True: 194, False: 0]
  ------------------
11611|    194|      return 120010;
11612|    194|    }
11613|      0|    break;
11614|       |    /* utdot */
11615|    194|  case 0x4f3d3e77211fd953ULL:
  ------------------
  |  Branch (11615:3): [True: 194, False: 516k]
  ------------------
11616|    194|    if (len == 5) {
  ------------------
  |  Branch (11616:9): [True: 194, False: 0]
  ------------------
11617|    194|      return 8944;
11618|    194|    }
11619|      0|    break;
11620|       |    /* utilde */
11621|    194|  case 0xaf88d5554a110e76ULL:
  ------------------
  |  Branch (11621:3): [True: 194, False: 516k]
  ------------------
11622|    194|    if (len == 6) {
  ------------------
  |  Branch (11622:9): [True: 194, False: 0]
  ------------------
11623|    194|      return 361;
11624|    194|    }
11625|      0|    break;
11626|       |    /* utri */
11627|    194|  case 0x8490bce406cca1a9ULL:
  ------------------
  |  Branch (11627:3): [True: 194, False: 516k]
  ------------------
11628|    194|    if (len == 4) {
  ------------------
  |  Branch (11628:9): [True: 194, False: 0]
  ------------------
11629|    194|      return 9653;
11630|    194|    }
11631|      0|    break;
11632|       |    /* utrif */
11633|    194|  case 0x0e92c6778db6f2bdULL:
  ------------------
  |  Branch (11633:3): [True: 194, False: 516k]
  ------------------
11634|    194|    if (len == 5) {
  ------------------
  |  Branch (11634:9): [True: 194, False: 0]
  ------------------
11635|    194|      return 9652;
11636|    194|    }
11637|      0|    break;
11638|       |    /* uuarr */
11639|    194|  case 0xde9bdb7e4bdcdb9eULL:
  ------------------
  |  Branch (11639:3): [True: 194, False: 516k]
  ------------------
11640|    194|    if (len == 5) {
  ------------------
  |  Branch (11640:9): [True: 194, False: 0]
  ------------------
11641|    194|      return 8648;
11642|    194|    }
11643|      0|    break;
11644|       |    /* uuml */
11645|    194|  case 0x8bf7e8e40aa3404eULL:
  ------------------
  |  Branch (11645:3): [True: 194, False: 516k]
  ------------------
11646|    194|    if (len == 4) {
  ------------------
  |  Branch (11646:9): [True: 194, False: 0]
  ------------------
11647|    194|      return 252;
11648|    194|    }
11649|      0|    break;
11650|       |    /* uwangle */
11651|    195|  case 0xd64290f488b91078ULL:
  ------------------
  |  Branch (11651:3): [True: 195, False: 516k]
  ------------------
11652|    195|    if (len == 7) {
  ------------------
  |  Branch (11652:9): [True: 195, False: 0]
  ------------------
11653|    195|      return 10663;
11654|    195|    }
11655|      0|    break;
11656|       |    /* vArr */
11657|    194|  case 0x2d491f0050087bc4ULL:
  ------------------
  |  Branch (11657:3): [True: 194, False: 516k]
  ------------------
11658|    194|    if (len == 4) {
  ------------------
  |  Branch (11658:9): [True: 194, False: 0]
  ------------------
11659|    194|      return 8661;
11660|    194|    }
11661|      0|    break;
11662|       |    /* vBar */
11663|    194|  case 0x469882005e2daa26ULL:
  ------------------
  |  Branch (11663:3): [True: 194, False: 516k]
  ------------------
11664|    194|    if (len == 4) {
  ------------------
  |  Branch (11664:9): [True: 194, False: 0]
  ------------------
11665|    194|      return 10984;
11666|    194|    }
11667|      0|    break;
11668|       |    /* vBarv */
11669|    194|  case 0x22cf36a0079865f0ULL:
  ------------------
  |  Branch (11669:3): [True: 194, False: 516k]
  ------------------
11670|    194|    if (len == 5) {
  ------------------
  |  Branch (11670:9): [True: 194, False: 0]
  ------------------
11671|    194|      return 10985;
11672|    194|    }
11673|      0|    break;
11674|       |    /* vDash */
11675|    194|  case 0x8cac1ab1ed9e0b11ULL:
  ------------------
  |  Branch (11675:3): [True: 194, False: 516k]
  ------------------
11676|    194|    if (len == 5) {
  ------------------
  |  Branch (11676:9): [True: 194, False: 0]
  ------------------
11677|    194|      return 8872;
11678|    194|    }
11679|      0|    break;
11680|       |    /* vangrt */
11681|    194|  case 0x1e8ca4e031b38879ULL:
  ------------------
  |  Branch (11681:3): [True: 194, False: 516k]
  ------------------
11682|    194|    if (len == 6) {
  ------------------
  |  Branch (11682:9): [True: 194, False: 0]
  ------------------
11683|    194|      return 10652;
11684|    194|    }
11685|      0|    break;
11686|       |    /* varepsilon */
11687|    194|  case 0xebd1e6a3573c21e0ULL:
  ------------------
  |  Branch (11687:3): [True: 194, False: 516k]
  ------------------
11688|    194|    if (len == 10) {
  ------------------
  |  Branch (11688:9): [True: 194, False: 0]
  ------------------
11689|    194|      return 1013;
11690|    194|    }
11691|      0|    break;
11692|       |    /* varkappa */
11693|    198|  case 0xf2a72a63823ef301ULL:
  ------------------
  |  Branch (11693:3): [True: 198, False: 516k]
  ------------------
11694|    198|    if (len == 8) {
  ------------------
  |  Branch (11694:9): [True: 198, False: 0]
  ------------------
11695|    198|      return 1008;
11696|    198|    }
11697|      0|    break;
11698|       |    /* varnothing */
11699|      0|  case 0xed924e7e6523b7b7ULL:
  ------------------
  |  Branch (11699:3): [True: 0, False: 516k]
  ------------------
11700|      0|    if (len == 10) {
  ------------------
  |  Branch (11700:9): [True: 0, False: 0]
  ------------------
11701|      0|      return 8709;
11702|      0|    }
11703|      0|    break;
11704|       |    /* varphi */
11705|    194|  case 0xfb348c7bcacd7f9dULL:
  ------------------
  |  Branch (11705:3): [True: 194, False: 516k]
  ------------------
11706|    194|    if (len == 6) {
  ------------------
  |  Branch (11706:9): [True: 194, False: 0]
  ------------------
11707|    194|      return 981;
11708|    194|    }
11709|      0|    break;
11710|       |    /* varpi */
11711|    194|  case 0x26505793ffe0b2b9ULL:
  ------------------
  |  Branch (11711:3): [True: 194, False: 516k]
  ------------------
11712|    194|    if (len == 5) {
  ------------------
  |  Branch (11712:9): [True: 194, False: 0]
  ------------------
11713|    194|      return 982;
11714|    194|    }
11715|      0|    break;
11716|       |    /* varpropto */
11717|    194|  case 0xac2c5a662cf9200aULL:
  ------------------
  |  Branch (11717:3): [True: 194, False: 516k]
  ------------------
11718|    194|    if (len == 9) {
  ------------------
  |  Branch (11718:9): [True: 194, False: 0]
  ------------------
11719|    194|      return 8733;
11720|    194|    }
11721|      0|    break;
11722|       |    /* varr */
11723|    194|  case 0x43523f00edc18824ULL:
  ------------------
  |  Branch (11723:3): [True: 194, False: 516k]
  ------------------
11724|    194|    if (len == 4) {
  ------------------
  |  Branch (11724:9): [True: 194, False: 0]
  ------------------
11725|    194|      return 8597;
11726|    194|    }
11727|      0|    break;
11728|       |    /* varrho */
11729|    194|  case 0xe93e347bc0727a71ULL:
  ------------------
  |  Branch (11729:3): [True: 194, False: 516k]
  ------------------
11730|    194|    if (len == 6) {
  ------------------
  |  Branch (11730:9): [True: 194, False: 0]
  ------------------
11731|    194|      return 1009;
11732|    194|    }
11733|      0|    break;
11734|       |    /* varsigma */
11735|    194|  case 0x1a0f46679639f9edULL:
  ------------------
  |  Branch (11735:3): [True: 194, False: 516k]
  ------------------
11736|    194|    if (len == 8) {
  ------------------
  |  Branch (11736:9): [True: 194, False: 0]
  ------------------
11737|    194|      return 962;
11738|    194|    }
11739|      0|    break;
11740|       |    /* vartheta */
11741|    196|  case 0xcecdd481e27e73a6ULL:
  ------------------
  |  Branch (11741:3): [True: 196, False: 516k]
  ------------------
11742|    196|    if (len == 8) {
  ------------------
  |  Branch (11742:9): [True: 196, False: 0]
  ------------------
11743|    196|      return 977;
11744|    196|    }
11745|      0|    break;
11746|       |    /* vartriangleleft */
11747|    200|  case 0x6c71a3f4e9da058bULL:
  ------------------
  |  Branch (11747:3): [True: 200, False: 516k]
  ------------------
11748|    200|    if (len == 15) {
  ------------------
  |  Branch (11748:9): [True: 200, False: 0]
  ------------------
11749|    200|      return 8882;
11750|    200|    }
11751|      0|    break;
11752|       |    /* vartriangleright */
11753|      0|  case 0xb7af40a28cd07014ULL:
  ------------------
  |  Branch (11753:3): [True: 0, False: 516k]
  ------------------
11754|      0|    if (len == 16) {
  ------------------
  |  Branch (11754:9): [True: 0, False: 0]
  ------------------
11755|      0|      return 8883;
11756|      0|    }
11757|      0|    break;
11758|       |    /* vcy */
11759|    194|  case 0x690b1b194ed78105ULL:
  ------------------
  |  Branch (11759:3): [True: 194, False: 516k]
  ------------------
11760|    194|    if (len == 3) {
  ------------------
  |  Branch (11760:9): [True: 194, False: 0]
  ------------------
11761|    194|      return 1074;
11762|    194|    }
11763|      0|    break;
11764|       |    /* vdash */
11765|    194|  case 0xb73a1bbdef0e7ef1ULL:
  ------------------
  |  Branch (11765:3): [True: 194, False: 516k]
  ------------------
11766|    194|    if (len == 5) {
  ------------------
  |  Branch (11766:9): [True: 194, False: 0]
  ------------------
11767|    194|      return 8866;
11768|    194|    }
11769|      0|    break;
11770|       |    /* vee */
11771|    194|  case 0x6911fb194edd6953ULL:
  ------------------
  |  Branch (11771:3): [True: 194, False: 516k]
  ------------------
11772|    194|    if (len == 3) {
  ------------------
  |  Branch (11772:9): [True: 194, False: 0]
  ------------------
11773|    194|      return 8744;
11774|    194|    }
11775|      0|    break;
11776|       |    /* veebar */
11777|    194|  case 0x59aac8960b1b7adcULL:
  ------------------
  |  Branch (11777:3): [True: 194, False: 516k]
  ------------------
11778|    194|    if (len == 6) {
  ------------------
  |  Branch (11778:9): [True: 194, False: 0]
  ------------------
11779|    194|      return 8891;
11780|    194|    }
11781|      0|    break;
11782|       |    /* veeeq */
11783|    194|  case 0x2f48bab6c82ca229ULL:
  ------------------
  |  Branch (11783:3): [True: 194, False: 516k]
  ------------------
11784|    194|    if (len == 5) {
  ------------------
  |  Branch (11784:9): [True: 194, False: 0]
  ------------------
11785|    194|      return 8794;
11786|    194|    }
11787|      0|    break;
11788|       |    /* vellip */
11789|    194|  case 0xd35624d1976a5e2dULL:
  ------------------
  |  Branch (11789:3): [True: 194, False: 516k]
  ------------------
11790|    194|    if (len == 6) {
  ------------------
  |  Branch (11790:9): [True: 194, False: 0]
  ------------------
11791|    194|      return 8942;
11792|    194|    }
11793|      0|    break;
11794|       |    /* verbar */
11795|  3.66k|  case 0xced85147924135b3ULL:
  ------------------
  |  Branch (11795:3): [True: 3.66k, False: 512k]
  ------------------
11796|  3.66k|    if (len == 6) {
  ------------------
  |  Branch (11796:9): [True: 3.66k, False: 0]
  ------------------
11797|  3.66k|      return 124;
11798|  3.66k|    }
11799|      0|    break;
11800|       |    /* vert */
11801|    194|  case 0x673ed10102775f82ULL:
  ------------------
  |  Branch (11801:3): [True: 194, False: 516k]
  ------------------
11802|    194|    if (len == 4) {
  ------------------
  |  Branch (11802:9): [True: 194, False: 0]
  ------------------
11803|    194|      return 124;
11804|    194|    }
11805|      0|    break;
11806|       |    /* vfr */
11807|    194|  case 0x691c22194ee6001dULL:
  ------------------
  |  Branch (11807:3): [True: 194, False: 516k]
  ------------------
11808|    194|    if (len == 3) {
  ------------------
  |  Branch (11808:9): [True: 194, False: 0]
  ------------------
11809|    194|      return 120115;
11810|    194|    }
11811|      0|    break;
11812|       |    /* vltri */
11813|    194|  case 0x3bf2bb7c191ae230ULL:
  ------------------
  |  Branch (11813:3): [True: 194, False: 516k]
  ------------------
11814|    194|    if (len == 5) {
  ------------------
  |  Branch (11814:9): [True: 194, False: 0]
  ------------------
11815|    194|      return 8882;
11816|    194|    }
11817|      0|    break;
11818|       |    /* vopf */
11819|    194|  case 0x311ec900e332a1e0ULL:
  ------------------
  |  Branch (11819:3): [True: 194, False: 516k]
  ------------------
11820|    194|    if (len == 4) {
  ------------------
  |  Branch (11820:9): [True: 194, False: 0]
  ------------------
11821|    194|      return 120167;
11822|    194|    }
11823|      0|    break;
11824|       |    /* vprop */
11825|    216|  case 0xcc19c522de799df4ULL:
  ------------------
  |  Branch (11825:3): [True: 216, False: 516k]
  ------------------
11826|    216|    if (len == 5) {
  ------------------
  |  Branch (11826:9): [True: 216, False: 0]
  ------------------
11827|    216|      return 8733;
11828|    216|    }
11829|      0|    break;
11830|       |    /* vrtri */
11831|    194|  case 0x56587434464aae8aULL:
  ------------------
  |  Branch (11831:3): [True: 194, False: 516k]
  ------------------
11832|    194|    if (len == 5) {
  ------------------
  |  Branch (11832:9): [True: 194, False: 0]
  ------------------
11833|    194|      return 8883;
11834|    194|    }
11835|      0|    break;
11836|       |    /* vscr */
11837|    194|  case 0xde8f1301457d557fULL:
  ------------------
  |  Branch (11837:3): [True: 194, False: 516k]
  ------------------
11838|    194|    if (len == 4) {
  ------------------
  |  Branch (11838:9): [True: 194, False: 0]
  ------------------
11839|    194|      return 120011;
11840|    194|    }
11841|      0|    break;
11842|       |    /* vzigzag */
11843|      0|  case 0x8d172bf590ef7a79ULL:
  ------------------
  |  Branch (11843:3): [True: 0, False: 516k]
  ------------------
11844|      0|    if (len == 7) {
  ------------------
  |  Branch (11844:9): [True: 0, False: 0]
  ------------------
11845|      0|      return 10650;
11846|      0|    }
11847|      0|    break;
11848|       |    /* wcirc */
11849|    194|  case 0x7118953fb97ade19ULL:
  ------------------
  |  Branch (11849:3): [True: 194, False: 516k]
  ------------------
11850|    194|    if (len == 5) {
  ------------------
  |  Branch (11850:9): [True: 194, False: 0]
  ------------------
11851|    194|      return 373;
11852|    194|    }
11853|      0|    break;
11854|       |    /* wedbar */
11855|    194|  case 0x3c6bee4a55123048ULL:
  ------------------
  |  Branch (11855:3): [True: 194, False: 516k]
  ------------------
11856|    194|    if (len == 6) {
  ------------------
  |  Branch (11856:9): [True: 194, False: 0]
  ------------------
11857|    194|      return 10847;
11858|    194|    }
11859|      0|    break;
11860|       |    /* wedge */
11861|    194|  case 0x7785e02e12f8b54fULL:
  ------------------
  |  Branch (11861:3): [True: 194, False: 516k]
  ------------------
11862|    194|    if (len == 5) {
  ------------------
  |  Branch (11862:9): [True: 194, False: 0]
  ------------------
11863|    194|      return 8743;
11864|    194|    }
11865|      0|    break;
11866|       |    /* wedgeq */
11867|    194|  case 0x11312c4a3c9bf85aULL:
  ------------------
  |  Branch (11867:3): [True: 194, False: 516k]
  ------------------
11868|    194|    if (len == 6) {
  ------------------
  |  Branch (11868:9): [True: 194, False: 0]
  ------------------
11869|    194|      return 8793;
11870|    194|    }
11871|      0|    break;
11872|       |    /* weierp */
11873|    194|  case 0x5766aade150cb665ULL:
  ------------------
  |  Branch (11873:3): [True: 194, False: 516k]
  ------------------
11874|    194|    if (len == 6) {
  ------------------
  |  Branch (11874:9): [True: 194, False: 0]
  ------------------
11875|    194|      return 8472;
11876|    194|    }
11877|      0|    break;
11878|       |    /* wfr */
11879|    194|  case 0x5e96df194869c706ULL:
  ------------------
  |  Branch (11879:3): [True: 194, False: 516k]
  ------------------
11880|    194|    if (len == 3) {
  ------------------
  |  Branch (11880:9): [True: 194, False: 0]
  ------------------
11881|    194|      return 120116;
11882|    194|    }
11883|      0|    break;
11884|       |    /* wopf */
11885|    194|  case 0x70600af6366e75b5ULL:
  ------------------
  |  Branch (11885:3): [True: 194, False: 516k]
  ------------------
11886|    194|    if (len == 4) {
  ------------------
  |  Branch (11886:9): [True: 194, False: 0]
  ------------------
11887|    194|      return 120168;
11888|    194|    }
11889|      0|    break;
11890|       |    /* wp */
11891|    195|  case 0x08cb4607b56d0c92ULL:
  ------------------
  |  Branch (11891:3): [True: 195, False: 516k]
  ------------------
11892|    195|    if (len == 2) {
  ------------------
  |  Branch (11892:9): [True: 195, False: 0]
  ------------------
11893|    195|      return 8472;
11894|    195|    }
11895|      0|    break;
11896|       |    /* wr */
11897|    194|  case 0x08cb4407b56d092cULL:
  ------------------
  |  Branch (11897:3): [True: 194, False: 516k]
  ------------------
11898|    194|    if (len == 2) {
  ------------------
  |  Branch (11898:9): [True: 194, False: 0]
  ------------------
11899|    194|      return 8768;
11900|    194|    }
11901|      0|    break;
11902|       |    /* wreath */
11903|    194|  case 0x7b78fd951aa46582ULL:
  ------------------
  |  Branch (11903:3): [True: 194, False: 516k]
  ------------------
11904|    194|    if (len == 6) {
  ------------------
  |  Branch (11904:9): [True: 194, False: 0]
  ------------------
11905|    194|      return 8768;
11906|    194|    }
11907|      0|    break;
11908|       |    /* wscr */
11909|    195|  case 0xc34dc8f5d472b132ULL:
  ------------------
  |  Branch (11909:3): [True: 195, False: 516k]
  ------------------
11910|    195|    if (len == 4) {
  ------------------
  |  Branch (11910:9): [True: 195, False: 0]
  ------------------
11911|    195|      return 120012;
11912|    195|    }
11913|      0|    break;
11914|       |    /* xcap */
11915|    194|  case 0x704a3d5440c51385ULL:
  ------------------
  |  Branch (11915:3): [True: 194, False: 516k]
  ------------------
11916|    194|    if (len == 4) {
  ------------------
  |  Branch (11916:9): [True: 194, False: 0]
  ------------------
11917|    194|      return 8898;
11918|    194|    }
11919|      0|    break;
11920|       |    /* xcirc */
11921|    194|  case 0x4b5af429e570ae9cULL:
  ------------------
  |  Branch (11921:3): [True: 194, False: 516k]
  ------------------
11922|    194|    if (len == 5) {
  ------------------
  |  Branch (11922:9): [True: 194, False: 0]
  ------------------
11923|    194|      return 9711;
11924|    194|    }
11925|      0|    break;
11926|       |    /* xcup */
11927|    194|  case 0x7072455440e67331ULL:
  ------------------
  |  Branch (11927:3): [True: 194, False: 516k]
  ------------------
11928|    194|    if (len == 4) {
  ------------------
  |  Branch (11928:9): [True: 194, False: 0]
  ------------------
11929|    194|      return 8899;
11930|    194|    }
11931|      0|    break;
11932|       |    /* xdtri */
11933|    194|  case 0xd5a75b23eb6a34c2ULL:
  ------------------
  |  Branch (11933:3): [True: 194, False: 516k]
  ------------------
11934|    194|    if (len == 5) {
  ------------------
  |  Branch (11934:9): [True: 194, False: 0]
  ------------------
11935|    194|      return 9661;
11936|    194|    }
11937|      0|    break;
11938|       |    /* xfr */
11939|    194|  case 0xbf91a4197fd26c93ULL:
  ------------------
  |  Branch (11939:3): [True: 194, False: 516k]
  ------------------
11940|    194|    if (len == 3) {
  ------------------
  |  Branch (11940:9): [True: 194, False: 0]
  ------------------
11941|    194|      return 120117;
11942|    194|    }
11943|      0|    break;
11944|       |    /* xhArr */
11945|    194|  case 0xc9ed2388c8f32920ULL:
  ------------------
  |  Branch (11945:3): [True: 194, False: 516k]
  ------------------
11946|    194|    if (len == 5) {
  ------------------
  |  Branch (11946:9): [True: 194, False: 0]
  ------------------
11947|    194|      return 10234;
11948|    194|    }
11949|      0|    break;
11950|       |    /* xharr */
11951|    194|  case 0xdff5438966aa8280ULL:
  ------------------
  |  Branch (11951:3): [True: 194, False: 516k]
  ------------------
11952|    194|    if (len == 5) {
  ------------------
  |  Branch (11952:9): [True: 194, False: 0]
  ------------------
11953|    194|      return 10231;
11954|    194|    }
11955|      0|    break;
11956|       |    /* xi */
11957|    195|  case 0x08f13f07b58dcfeaULL:
  ------------------
  |  Branch (11957:3): [True: 195, False: 516k]
  ------------------
11958|    195|    if (len == 2) {
  ------------------
  |  Branch (11958:9): [True: 195, False: 0]
  ------------------
11959|    195|      return 958;
11960|    195|    }
11961|      0|    break;
11962|       |    /* xlArr */
11963|    194|  case 0xf61e5364fcd5753cULL:
  ------------------
  |  Branch (11963:3): [True: 194, False: 516k]
  ------------------
11964|    194|    if (len == 5) {
  ------------------
  |  Branch (11964:9): [True: 194, False: 0]
  ------------------
11965|    194|      return 10232;
11966|    194|    }
11967|      0|    break;
11968|       |    /* xlarr */
11969|    194|  case 0x0c2773659a8e819cULL:
  ------------------
  |  Branch (11969:3): [True: 194, False: 516k]
  ------------------
11970|    194|    if (len == 5) {
  ------------------
  |  Branch (11970:9): [True: 194, False: 0]
  ------------------
11971|    194|      return 10229;
11972|    194|    }
11973|      0|    break;
11974|       |    /* xmap */
11975|    194|  case 0xa6cf3f54605ec727ULL:
  ------------------
  |  Branch (11975:3): [True: 194, False: 516k]
  ------------------
11976|    194|    if (len == 4) {
  ------------------
  |  Branch (11976:9): [True: 194, False: 0]
  ------------------
11977|    194|      return 10236;
11978|    194|    }
11979|      0|    break;
11980|       |    /* xnis */
11981|    194|  case 0x9b770754592f1bafULL:
  ------------------
  |  Branch (11981:3): [True: 194, False: 516k]
  ------------------
11982|    194|    if (len == 4) {
  ------------------
  |  Branch (11982:9): [True: 194, False: 0]
  ------------------
11983|    194|      return 8955;
11984|    194|    }
11985|      0|    break;
11986|       |    /* xodot */
11987|    194|  case 0x80797a4de93f2e8fULL:
  ------------------
  |  Branch (11987:3): [True: 194, False: 516k]
  ------------------
11988|    194|    if (len == 5) {
  ------------------
  |  Branch (11988:9): [True: 194, False: 0]
  ------------------
11989|    194|      return 10752;
11990|    194|    }
11991|      0|    break;
11992|       |    /* xopf */
11993|    194|  case 0x9468f95455a4d8daULL:
  ------------------
  |  Branch (11993:3): [True: 194, False: 516k]
  ------------------
11994|    194|    if (len == 4) {
  ------------------
  |  Branch (11994:9): [True: 194, False: 0]
  ------------------
11995|    194|      return 120169;
11996|    194|    }
11997|      0|    break;
11998|       |    /* xoplus */
11999|    194|  case 0xae374abc63c12188ULL:
  ------------------
  |  Branch (11999:3): [True: 194, False: 516k]
  ------------------
12000|    194|    if (len == 6) {
  ------------------
  |  Branch (12000:9): [True: 194, False: 0]
  ------------------
12001|    194|      return 10753;
12002|    194|    }
12003|      0|    break;
12004|       |    /* xotime */
12005|    194|  case 0xc966eddf369f8451ULL:
  ------------------
  |  Branch (12005:3): [True: 194, False: 516k]
  ------------------
12006|    194|    if (len == 6) {
  ------------------
  |  Branch (12006:9): [True: 194, False: 0]
  ------------------
12007|    194|      return 10754;
12008|    194|    }
12009|      0|    break;
12010|       |    /* xrArr */
12011|    194|  case 0x356eb7b85a86e7eeULL:
  ------------------
  |  Branch (12011:3): [True: 194, False: 516k]
  ------------------
12012|    194|    if (len == 5) {
  ------------------
  |  Branch (12012:9): [True: 194, False: 0]
  ------------------
12013|    194|      return 10233;
12014|    194|    }
12015|      0|    break;
12016|       |    /* xrarr */
12017|    194|  case 0x4b77d7b8f83ff44eULL:
  ------------------
  |  Branch (12017:3): [True: 194, False: 516k]
  ------------------
12018|    194|    if (len == 5) {
  ------------------
  |  Branch (12018:9): [True: 194, False: 0]
  ------------------
12019|    194|      return 10230;
12020|    194|    }
12021|      0|    break;
12022|       |    /* xscr */
12023|    194|  case 0xfd74db549174838dULL:
  ------------------
  |  Branch (12023:3): [True: 194, False: 516k]
  ------------------
12024|    194|    if (len == 4) {
  ------------------
  |  Branch (12024:9): [True: 194, False: 0]
  ------------------
12025|    194|      return 120013;
12026|    194|    }
12027|      0|    break;
12028|       |    /* xsqcup */
12029|    194|  case 0x18f19cd966bfe481ULL:
  ------------------
  |  Branch (12029:3): [True: 194, False: 516k]
  ------------------
12030|    194|    if (len == 6) {
  ------------------
  |  Branch (12030:9): [True: 194, False: 0]
  ------------------
12031|    194|      return 10758;
12032|    194|    }
12033|      0|    break;
12034|       |    /* xuplus */
12035|    194|  case 0x8c862e645cb8cf4aULL:
  ------------------
  |  Branch (12035:3): [True: 194, False: 516k]
  ------------------
12036|    194|    if (len == 6) {
  ------------------
  |  Branch (12036:9): [True: 194, False: 0]
  ------------------
12037|    194|      return 10756;
12038|    194|    }
12039|      0|    break;
12040|       |    /* xutri */
12041|    194|  case 0xf15219a0d265eb6fULL:
  ------------------
  |  Branch (12041:3): [True: 194, False: 516k]
  ------------------
12042|    194|    if (len == 5) {
  ------------------
  |  Branch (12042:9): [True: 194, False: 0]
  ------------------
12043|    194|      return 9651;
12044|    194|    }
12045|      0|    break;
12046|       |    /* xvee */
12047|    194|  case 0xe3785d5482bc7175ULL:
  ------------------
  |  Branch (12047:3): [True: 194, False: 516k]
  ------------------
12048|    194|    if (len == 4) {
  ------------------
  |  Branch (12048:9): [True: 194, False: 0]
  ------------------
12049|    194|      return 8897;
12050|    194|    }
12051|      0|    break;
12052|       |    /* xwedge */
12053|    194|  case 0x89a246ac4779ef45ULL:
  ------------------
  |  Branch (12053:3): [True: 194, False: 516k]
  ------------------
12054|    194|    if (len == 6) {
  ------------------
  |  Branch (12054:9): [True: 194, False: 0]
  ------------------
12055|    194|      return 8896;
12056|    194|    }
12057|      0|    break;
12058|       |    /* yacute */
12059|    194|  case 0x82cb32cf858d3170ULL:
  ------------------
  |  Branch (12059:3): [True: 194, False: 516k]
  ------------------
12060|    194|    if (len == 6) {
  ------------------
  |  Branch (12060:9): [True: 194, False: 0]
  ------------------
12061|    194|      return 253;
12062|    194|    }
12063|      0|    break;
12064|       |    /* yacy */
12065|    194|  case 0xa0b70e498c4f13e7ULL:
  ------------------
  |  Branch (12065:3): [True: 194, False: 516k]
  ------------------
12066|    194|    if (len == 4) {
  ------------------
  |  Branch (12066:9): [True: 194, False: 0]
  ------------------
12067|    194|      return 1103;
12068|    194|    }
12069|      0|    break;
12070|       |    /* ycirc */
12071|    194|  case 0x7d146906996a69c3ULL:
  ------------------
  |  Branch (12071:3): [True: 194, False: 516k]
  ------------------
12072|    194|    if (len == 5) {
  ------------------
  |  Branch (12072:9): [True: 194, False: 0]
  ------------------
12073|    194|      return 375;
12074|    194|    }
12075|      0|    break;
12076|       |    /* ycy */
12077|    200|  case 0xb553881979927864ULL:
  ------------------
  |  Branch (12077:3): [True: 200, False: 516k]
  ------------------
12078|    200|    if (len == 3) {
  ------------------
  |  Branch (12078:9): [True: 200, False: 0]
  ------------------
12079|    200|      return 1099;
12080|    200|    }
12081|      0|    break;
12082|       |    /* yen */
12083|    194|  case 0xb53f77197981b277ULL:
  ------------------
  |  Branch (12083:3): [True: 194, False: 516k]
  ------------------
12084|    194|    if (len == 3) {
  ------------------
  |  Branch (12084:9): [True: 194, False: 0]
  ------------------
12085|    194|      return 165;
12086|    194|    }
12087|      0|    break;
12088|       |    /* yfr */
12089|    194|  case 0xb54281197983f94cULL:
  ------------------
  |  Branch (12089:3): [True: 194, False: 516k]
  ------------------
12090|    194|    if (len == 3) {
  ------------------
  |  Branch (12090:9): [True: 194, False: 0]
  ------------------
12091|    194|      return 120118;
12092|    194|    }
12093|      0|    break;
12094|       |    /* yicy */
12095|    194|  case 0xe5295649b2d623cfULL:
  ------------------
  |  Branch (12095:3): [True: 194, False: 516k]
  ------------------
12096|    194|    if (len == 4) {
  ------------------
  |  Branch (12096:9): [True: 194, False: 0]
  ------------------
12097|    194|      return 1111;
12098|    194|    }
12099|      0|    break;
12100|       |    /* yopf */
12101|    194|  case 0xd33ceb49a88352dfULL:
  ------------------
  |  Branch (12101:3): [True: 194, False: 516k]
  ------------------
12102|    194|    if (len == 4) {
  ------------------
  |  Branch (12102:9): [True: 194, False: 0]
  ------------------
12103|    194|      return 120170;
12104|    194|    }
12105|      0|    break;
12106|       |    /* yscr */
12107|    194|  case 0x25ccc1494638d5a0ULL:
  ------------------
  |  Branch (12107:3): [True: 194, False: 516k]
  ------------------
12108|    194|    if (len == 4) {
  ------------------
  |  Branch (12108:9): [True: 194, False: 0]
  ------------------
12109|    194|      return 120014;
12110|    194|    }
12111|      0|    break;
12112|       |    /* yucy */
12113|    194|  case 0xf378d2492a2e1eabULL:
  ------------------
  |  Branch (12113:3): [True: 194, False: 516k]
  ------------------
12114|    194|    if (len == 4) {
  ------------------
  |  Branch (12114:9): [True: 194, False: 0]
  ------------------
12115|    194|      return 1102;
12116|    194|    }
12117|      0|    break;
12118|       |    /* yuml */
12119|    196|  case 0xf3a8e9492a576982ULL:
  ------------------
  |  Branch (12119:3): [True: 196, False: 516k]
  ------------------
12120|    196|    if (len == 4) {
  ------------------
  |  Branch (12120:9): [True: 196, False: 0]
  ------------------
12121|    196|      return 255;
12122|    196|    }
12123|      0|    break;
12124|       |    /* zacute */
12125|    194|  case 0x05a19c61a4fa586bULL:
  ------------------
  |  Branch (12125:3): [True: 194, False: 516k]
  ------------------
12126|    194|    if (len == 6) {
  ------------------
  |  Branch (12126:9): [True: 194, False: 0]
  ------------------
12127|    194|      return 378;
12128|    194|    }
12129|      0|    break;
12130|       |    /* zcaron */
12131|    194|  case 0x8462acbeb40d9fa4ULL:
  ------------------
  |  Branch (12131:3): [True: 194, False: 516k]
  ------------------
12132|    194|    if (len == 6) {
  ------------------
  |  Branch (12132:9): [True: 194, False: 0]
  ------------------
12133|    194|      return 382;
12134|    194|    }
12135|      0|    break;
12136|       |    /* zcy */
12137|    195|  case 0xce6fff19878c6f29ULL:
  ------------------
  |  Branch (12137:3): [True: 195, False: 516k]
  ------------------
12138|    195|    if (len == 3) {
  ------------------
  |  Branch (12138:9): [True: 195, False: 0]
  ------------------
12139|    195|      return 1079;
12140|    195|    }
12141|      0|    break;
12142|       |    /* zdot */
12143|    211|  case 0x293806613aeb0188ULL:
  ------------------
  |  Branch (12143:3): [True: 211, False: 516k]
  ------------------
12144|    211|    if (len == 4) {
  ------------------
  |  Branch (12144:9): [True: 211, False: 0]
  ------------------
12145|    211|      return 380;
12146|    211|    }
12147|      0|    break;
12148|       |    /* zeetrf */
12149|    194|  case 0x1711e60908fa9dc5ULL:
  ------------------
  |  Branch (12149:3): [True: 194, False: 516k]
  ------------------
12150|    194|    if (len == 6) {
  ------------------
  |  Branch (12150:9): [True: 194, False: 0]
  ------------------
12151|    194|      return 8488;
12152|    194|    }
12153|      0|    break;
12154|       |    /* zeta */
12155|    195|  case 0x2230c2613766819fULL:
  ------------------
  |  Branch (12155:3): [True: 195, False: 516k]
  ------------------
12156|    195|    if (len == 4) {
  ------------------
  |  Branch (12156:9): [True: 195, False: 0]
  ------------------
12157|    195|      return 950;
12158|    195|    }
12159|      0|    break;
12160|       |    /* zfr */
12161|    194|  case 0xce65f61987840b59ULL:
  ------------------
  |  Branch (12161:3): [True: 194, False: 516k]
  ------------------
12162|    194|    if (len == 3) {
  ------------------
  |  Branch (12162:9): [True: 194, False: 0]
  ------------------
12163|    194|      return 120119;
12164|    194|    }
12165|      0|    break;
12166|       |    /* zhcy */
12167|    194|  case 0x05c65f61269e15b7ULL:
  ------------------
  |  Branch (12167:3): [True: 194, False: 516k]
  ------------------
12168|    194|    if (len == 4) {
  ------------------
  |  Branch (12168:9): [True: 194, False: 0]
  ------------------
12169|    194|      return 1078;
12170|    194|    }
12171|      0|    break;
12172|       |    /* zigrarr */
12173|    194|  case 0x5c550fb9b7b572f4ULL:
  ------------------
  |  Branch (12173:3): [True: 194, False: 516k]
  ------------------
12174|    194|    if (len == 7) {
  ------------------
  |  Branch (12174:9): [True: 194, False: 0]
  ------------------
12175|    194|      return 8669;
12176|    194|    }
12177|      0|    break;
12178|       |    /* zopf */
12179|    194|  case 0xec09c961181bbeccULL:
  ------------------
  |  Branch (12179:3): [True: 194, False: 516k]
  ------------------
12180|    194|    if (len == 4) {
  ------------------
  |  Branch (12180:9): [True: 194, False: 0]
  ------------------
12181|    194|      return 120171;
12182|    194|    }
12183|      0|    break;
12184|       |    /* zscr */
12185|    194|  case 0xde596361a14a61cbULL:
  ------------------
  |  Branch (12185:3): [True: 194, False: 516k]
  ------------------
12186|    194|    if (len == 4) {
  ------------------
  |  Branch (12186:9): [True: 194, False: 0]
  ------------------
12187|    194|      return 120015;
12188|    194|    }
12189|      0|    break;
12190|       |    /* zwj */
12191|    232|  case 0xce98f41987af618cULL:
  ------------------
  |  Branch (12191:3): [True: 232, False: 516k]
  ------------------
12192|    232|    if (len == 3) {
  ------------------
  |  Branch (12192:9): [True: 232, False: 0]
  ------------------
12193|    232|      return 8205;
12194|    232|    }
12195|      0|    break;
12196|       |    /* zwnj */
12197|    194|  case 0xbd3aa5618ef70edeULL:
  ------------------
  |  Branch (12197:3): [True: 194, False: 516k]
  ------------------
12198|    194|    if (len == 4) {
  ------------------
  |  Branch (12198:9): [True: 194, False: 0]
  ------------------
12199|    194|      return 8204;
12200|    194|    }
12201|      0|    break;
12202|   516k|  }
12203|       |  /* unknown */
12204|  31.1k|  return -1;
12205|   516k|}

unescape_amp:
 4242|  35.8k|void unescape_amp(char *s) {
 4243|  35.8k|  if (hts_unescapeEntities(s, s, strlen(s) + 1) != 0) {
  ------------------
  |  Branch (4243:7): [True: 0, False: 35.8k]
  ------------------
 4244|      0|    assertf(! "error escaping html entities");
  ------------------
  |  |   91|      0|#define assertf(exp) assertf_(exp, __FILE__, __LINE__)
  |  |  ------------------
  |  |  |  |   86|      0|#define assertf_(exp, file, line) assertf__(exp, #exp, file, line)
  |  |  |  |  ------------------
  |  |  |  |  |  |   81|      0|  (void) ((exp) || (abortf_(sexp, file, line), 0))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (81:11): [Folded, False: 0]
  |  |  |  |  |  |  |  Branch (81:20): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4245|      0|  }
 4246|  35.8k|}
unescape_http:
 4250|  35.8k|HTSEXT_API char *unescape_http(char *const catbuff, const size_t size, const char *const s) {
 4251|  35.8k|  size_t i, j;
 4252|       |
 4253|  35.8k|  RUNTIME_TIME_CHECK_SIZE(size);
  ------------------
  |  |  853|  35.8k|#define RUNTIME_TIME_CHECK_SIZE(A) assertf((A) != sizeof(void *))
  |  |  ------------------
  |  |  |  |   91|  35.8k|#define assertf(exp) assertf_(exp, __FILE__, __LINE__)
  |  |  |  |  ------------------
  |  |  |  |  |  |   86|  35.8k|#define assertf_(exp, file, line) assertf__(exp, #exp, file, line)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   81|  35.8k|  (void) ((exp) || (abortf_(sexp, file, line), 0))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (81:11): [True: 35.8k, False: 0]
  |  |  |  |  |  |  |  |  |  Branch (81:20): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4254|       |
 4255|  1.40M|  for(i = 0, j = 0; s[i] != '\0' && j + 1 < size ; i++) {
  ------------------
  |  Branch (4255:21): [True: 1.38M, False: 21.6k]
  |  Branch (4255:37): [True: 1.36M, False: 14.1k]
  ------------------
 4256|  1.36M|    int h;
 4257|  1.36M|    if (s[i] == '%' && (h = hts_ehex(&s[i + 1])) >= 0) {
  ------------------
  |  Branch (4257:9): [True: 6.64k, False: 1.36M]
  |  Branch (4257:24): [True: 4.09k, False: 2.54k]
  ------------------
 4258|  4.09k|      catbuff[j++] = (char) h;
 4259|  4.09k|      i += 2;
 4260|  4.09k|    } else
 4261|  1.36M|      catbuff[j++] = s[i];
 4262|  1.36M|  }
 4263|  35.8k|  catbuff[j++] = '\0';
 4264|  35.8k|  return catbuff;
 4265|  35.8k|}
unescape_http_unharm:
 4273|  71.6k|                                      const hts_boolean no_high) {
 4274|  71.6k|  size_t i, j;
 4275|       |
 4276|  71.6k|  RUNTIME_TIME_CHECK_SIZE(size);
  ------------------
  |  |  853|  71.6k|#define RUNTIME_TIME_CHECK_SIZE(A) assertf((A) != sizeof(void *))
  |  |  ------------------
  |  |  |  |   91|  71.6k|#define assertf(exp) assertf_(exp, __FILE__, __LINE__)
  |  |  |  |  ------------------
  |  |  |  |  |  |   86|  71.6k|#define assertf_(exp, file, line) assertf__(exp, #exp, file, line)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   81|  71.6k|  (void) ((exp) || (abortf_(sexp, file, line), 0))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (81:11): [True: 71.6k, False: 0]
  |  |  |  |  |  |  |  |  |  Branch (81:20): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4277|       |
 4278|  2.82M|  for(i = 0, j = 0; s[i] != '\0' && j + 1 < size ; i++) {
  ------------------
  |  Branch (4278:21): [True: 2.78M, False: 43.2k]
  |  Branch (4278:37): [True: 2.75M, False: 28.4k]
  ------------------
 4279|  2.75M|    if (s[i] == '%') {
  ------------------
  |  Branch (4279:9): [True: 13.1k, False: 2.73M]
  ------------------
 4280|  13.1k|      const int nchar = hts_ehex(&s[i + 1]);
 4281|       |
 4282|  13.1k|      const int test = 
 4283|  13.1k|        ( CHAR_RESERVED(nchar) && nchar != '+' )        /* %2B => + (not in query!) */
  ------------------
  |  |  610|  26.2k|  (CIS(c, ';') || CIS(c, '/') || CIS(c, '?') || CIS(c, ':') || CIS(c, '@') ||  \
  |  |  ------------------
  |  |  |  |  608|  26.2k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 212, False: 12.9k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                 (CIS(c, ';') || CIS(c, '/') || CIS(c, '?') || CIS(c, ':') || CIS(c, '@') ||  \
  |  |  ------------------
  |  |  |  |  608|  26.0k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 450, False: 12.4k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                 (CIS(c, ';') || CIS(c, '/') || CIS(c, '?') || CIS(c, ':') || CIS(c, '@') ||  \
  |  |  ------------------
  |  |  |  |  608|  25.6k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 198, False: 12.2k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                 (CIS(c, ';') || CIS(c, '/') || CIS(c, '?') || CIS(c, ':') || CIS(c, '@') ||  \
  |  |  ------------------
  |  |  |  |  608|  25.4k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 196, False: 12.0k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                 (CIS(c, ';') || CIS(c, '/') || CIS(c, '?') || CIS(c, ':') || CIS(c, '@') ||  \
  |  |  ------------------
  |  |  |  |  608|  25.2k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 382, False: 11.7k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  611|  13.1k|   CIS(c, '&') || CIS(c, '=') || CIS(c, '+') || CIS(c, '$') || CIS(c, ','))
  |  |  ------------------
  |  |  |  |  608|  24.8k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 236, False: 11.4k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                  CIS(c, '&') || CIS(c, '=') || CIS(c, '+') || CIS(c, '$') || CIS(c, ','))
  |  |  ------------------
  |  |  |  |  608|  24.6k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 194, False: 11.2k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                  CIS(c, '&') || CIS(c, '=') || CIS(c, '+') || CIS(c, '$') || CIS(c, ','))
  |  |  ------------------
  |  |  |  |  608|  24.4k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 404, False: 10.8k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                  CIS(c, '&') || CIS(c, '=') || CIS(c, '+') || CIS(c, '$') || CIS(c, ','))
  |  |  ------------------
  |  |  |  |  608|  24.0k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 194, False: 10.6k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                  CIS(c, '&') || CIS(c, '=') || CIS(c, '+') || CIS(c, '$') || CIS(c, ','))
  |  |  ------------------
  |  |  |  |  608|  10.6k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 476, False: 10.1k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4283:35): [True: 2.53k, False: 404]
  ------------------
 4284|  10.6k|        || CHAR_DELIM(nchar)
  ------------------
  |  |  614|  23.7k|  (CIS(c, '<') || CIS(c, '>') || CIS(c, '#') || CIS(c, '%') || CIS(c, '\"'))
  |  |  ------------------
  |  |  |  |  608|  21.2k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 220, False: 10.3k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                 (CIS(c, '<') || CIS(c, '>') || CIS(c, '#') || CIS(c, '%') || CIS(c, '\"'))
  |  |  ------------------
  |  |  |  |  608|  20.9k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 194, False: 10.1k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                 (CIS(c, '<') || CIS(c, '>') || CIS(c, '#') || CIS(c, '%') || CIS(c, '\"'))
  |  |  ------------------
  |  |  |  |  608|  20.7k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 198, False: 9.98k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                 (CIS(c, '<') || CIS(c, '>') || CIS(c, '#') || CIS(c, '%') || CIS(c, '\"'))
  |  |  ------------------
  |  |  |  |  608|  20.5k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 214, False: 9.77k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                 (CIS(c, '<') || CIS(c, '>') || CIS(c, '#') || CIS(c, '%') || CIS(c, '\"'))
  |  |  ------------------
  |  |  |  |  608|  9.77k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 204, False: 9.57k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4285|  9.57k|        || CHAR_UNWISE(nchar)
  ------------------
  |  |  617|  22.7k|  (CIS(c, '{') || CIS(c, '}') || CIS(c, '|') || CIS(c, '\\') || CIS(c, '^') || \
  |  |  ------------------
  |  |  |  |  608|  19.1k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 194, False: 9.37k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                 (CIS(c, '{') || CIS(c, '}') || CIS(c, '|') || CIS(c, '\\') || CIS(c, '^') || \
  |  |  ------------------
  |  |  |  |  608|  18.9k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 196, False: 9.18k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                 (CIS(c, '{') || CIS(c, '}') || CIS(c, '|') || CIS(c, '\\') || CIS(c, '^') || \
  |  |  ------------------
  |  |  |  |  608|  18.7k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 196, False: 8.98k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                 (CIS(c, '{') || CIS(c, '}') || CIS(c, '|') || CIS(c, '\\') || CIS(c, '^') || \
  |  |  ------------------
  |  |  |  |  608|  18.5k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 196, False: 8.78k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                 (CIS(c, '{') || CIS(c, '}') || CIS(c, '|') || CIS(c, '\\') || CIS(c, '^') || \
  |  |  ------------------
  |  |  |  |  608|  18.3k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 194, False: 8.59k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  618|  9.57k|   CIS(c, '[') || CIS(c, ']') || CIS(c, '`'))
  |  |  ------------------
  |  |  |  |  608|  18.1k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 194, False: 8.40k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                  CIS(c, '[') || CIS(c, ']') || CIS(c, '`'))
  |  |  ------------------
  |  |  |  |  608|  17.9k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 196, False: 8.20k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                  CIS(c, '[') || CIS(c, ']') || CIS(c, '`'))
  |  |  ------------------
  |  |  |  |  608|  8.20k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 194, False: 8.01k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4286|  8.01k|        || CHAR_LOW(nchar)    /* CHAR_SPECIAL */
  ------------------
  |  |  620|  21.1k|#define CHAR_LOW(c)       ( ((unsigned char)(c) <= 31) )
  |  |  ------------------
  |  |  |  Branch (620:27): [True: 344, False: 7.66k]
  |  |  ------------------
  ------------------
 4287|  7.66k|        || ( CHAR_XXAVOID(nchar) && ( nchar != ' ' || ( no_high & 2) == 0 ) )
  ------------------
  |  |  625|  15.3k|  (CIS(c, ' ') || CIS(c, '*') || CIS(c, '\'') || CIS(c, '\"') ||               \
  |  |  ------------------
  |  |  |  |  608|  15.3k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 480, False: 7.18k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                 (CIS(c, ' ') || CIS(c, '*') || CIS(c, '\'') || CIS(c, '\"') ||               \
  |  |  ------------------
  |  |  |  |  608|  14.8k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 420, False: 6.76k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                 (CIS(c, ' ') || CIS(c, '*') || CIS(c, '\'') || CIS(c, '\"') ||               \
  |  |  ------------------
  |  |  |  |  608|  14.4k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 260, False: 6.50k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                 (CIS(c, ' ') || CIS(c, '*') || CIS(c, '\'') || CIS(c, '\"') ||               \
  |  |  ------------------
  |  |  |  |  608|  14.1k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 0, False: 6.50k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  626|  7.66k|   CIS(c, '&') || CIS(c, '!'))
  |  |  ------------------
  |  |  |  |  608|  14.1k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 0, False: 6.50k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                  CIS(c, '&') || CIS(c, '!'))
  |  |  ------------------
  |  |  |  |  608|  6.50k|#define CIS(c,ch) ( ((unsigned char)(c)) == (ch) )
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (608:19): [True: 266, False: 6.24k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (4287:39): [True: 946, False: 480]
  |  Branch (4287:55): [True: 480, False: 0]
  ------------------
 4288|  6.24k|        || ( ( no_high & 1 ) && CHAR_HIG(nchar) )
  ------------------
  |  |  621|  3.10k|#define CHAR_HIG(c)       ( ((unsigned char)(c) >= 127) )
  |  |  ------------------
  |  |  |  Branch (621:27): [True: 2.84k, False: 264]
  |  |  ------------------
  ------------------
  |  Branch (4288:14): [True: 3.10k, False: 3.13k]
  ------------------
 4289|  13.1k|        ;
 4290|       |
 4291|  13.1k|      if (!test && nchar >= 0) {  /* can safely unescape */
  ------------------
  |  Branch (4291:11): [True: 3.39k, False: 9.74k]
  |  Branch (4291:20): [True: 846, False: 2.54k]
  ------------------
 4292|    846|        catbuff[j++] = (char) nchar;
 4293|    846|        i += 2;
 4294|  12.2k|      } else {
 4295|  12.2k|        catbuff[j++] = '%';
 4296|  12.2k|      }
 4297|  2.73M|    } else {
 4298|  2.73M|      catbuff[j++] = s[i];
 4299|  2.73M|    }
 4300|  2.75M|  }
 4301|  71.6k|  catbuff[j++] = '\0';
 4302|  71.6k|  return catbuff;
 4303|  71.6k|}

