misc/libfreetype/src/tools/glnames.py
author dag10
Mon, 21 Jan 2013 00:30:18 -0500
changeset 8415 02acf6b92f52
parent 5172 88f2e05288ba
permissions -rw-r--r--
Moved room name edit box from footer to top of page. Also shows room name when in slave mode. Temporarily increased HWForm's min height from 580 to 610.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5172
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     1
#!/usr/bin/env python
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     2
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     4
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     5
# FreeType 2 glyph name builder
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     6
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     9
# Copyright 1996-2000, 2003, 2005, 2007, 2008 by
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    10
# David Turner, Robert Wilhelm, and Werner Lemberg.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    11
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    12
# This file is part of the FreeType project, and may only be used, modified,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    13
# and distributed under the terms of the FreeType project license,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    14
# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    15
# indicate that you have read the license and understand and accept it
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    16
# fully.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    17
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    18
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    19
"""\
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    20
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    21
usage: %s <output-file>
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    22
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    23
  This python script generates the glyph names tables defined in the
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    24
  `psnames' module.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    25
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    26
  Its single argument is the name of the header file to be created.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    27
"""
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    28
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    29
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    30
import sys, string, struct, re, os.path
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    31
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    32
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    33
# This table lists the glyphs according to the Macintosh specification.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    34
# It is used by the TrueType Postscript names table.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    35
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    36
# See
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    37
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    38
#   http://fonts.apple.com/TTRefMan/RM06/Chap6post.html
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    39
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    40
# for the official list.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    41
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    42
mac_standard_names = \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    43
[
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    44
  # 0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    45
  ".notdef", ".null", "nonmarkingreturn", "space", "exclam",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    46
  "quotedbl", "numbersign", "dollar", "percent", "ampersand",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    47
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    48
  # 10
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    49
  "quotesingle", "parenleft", "parenright", "asterisk", "plus",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    50
  "comma", "hyphen", "period", "slash", "zero",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    51
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    52
  # 20
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    53
  "one", "two", "three", "four", "five",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    54
  "six", "seven", "eight", "nine", "colon",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    55
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    56
  # 30
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    57
  "semicolon", "less", "equal", "greater", "question",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    58
  "at", "A", "B", "C", "D",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    59
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    60
  # 40
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    61
  "E", "F", "G", "H", "I",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    62
  "J", "K", "L", "M", "N",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    63
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    64
  # 50
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    65
  "O", "P", "Q", "R", "S",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    66
  "T", "U", "V", "W", "X",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    67
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    68
  # 60
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    69
  "Y", "Z", "bracketleft", "backslash", "bracketright",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    70
  "asciicircum", "underscore", "grave", "a", "b",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    71
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    72
  # 70
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    73
  "c", "d", "e", "f", "g",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    74
  "h", "i", "j", "k", "l",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    75
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    76
  # 80
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    77
  "m", "n", "o", "p", "q",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    78
  "r", "s", "t", "u", "v",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    79
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    80
  # 90
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    81
  "w", "x", "y", "z", "braceleft",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    82
  "bar", "braceright", "asciitilde", "Adieresis", "Aring",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    83
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    84
  # 100
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    85
  "Ccedilla", "Eacute", "Ntilde", "Odieresis", "Udieresis",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    86
  "aacute", "agrave", "acircumflex", "adieresis", "atilde",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    87
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    88
  # 110
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    89
  "aring", "ccedilla", "eacute", "egrave", "ecircumflex",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    90
  "edieresis", "iacute", "igrave", "icircumflex", "idieresis",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    91
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    92
  # 120
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    93
  "ntilde", "oacute", "ograve", "ocircumflex", "odieresis",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    94
  "otilde", "uacute", "ugrave", "ucircumflex", "udieresis",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    95
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    96
  # 130
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    97
  "dagger", "degree", "cent", "sterling", "section",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    98
  "bullet", "paragraph", "germandbls", "registered", "copyright",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    99
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   100
  # 140
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   101
  "trademark", "acute", "dieresis", "notequal", "AE",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   102
  "Oslash", "infinity", "plusminus", "lessequal", "greaterequal",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   103
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   104
  # 150
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   105
  "yen", "mu", "partialdiff", "summation", "product",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   106
  "pi", "integral", "ordfeminine", "ordmasculine", "Omega",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   107
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   108
  # 160
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   109
  "ae", "oslash", "questiondown", "exclamdown", "logicalnot",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   110
  "radical", "florin", "approxequal", "Delta", "guillemotleft",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   111
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   112
  # 170
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   113
  "guillemotright", "ellipsis", "nonbreakingspace", "Agrave", "Atilde",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   114
  "Otilde", "OE", "oe", "endash", "emdash",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   115
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   116
  # 180
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   117
  "quotedblleft", "quotedblright", "quoteleft", "quoteright", "divide",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   118
  "lozenge", "ydieresis", "Ydieresis", "fraction", "currency",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   119
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   120
  # 190
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   121
  "guilsinglleft", "guilsinglright", "fi", "fl", "daggerdbl",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   122
  "periodcentered", "quotesinglbase", "quotedblbase", "perthousand",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   123
    "Acircumflex",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   124
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   125
  # 200
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   126
  "Ecircumflex", "Aacute", "Edieresis", "Egrave", "Iacute",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   127
  "Icircumflex", "Idieresis", "Igrave", "Oacute", "Ocircumflex",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   128
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   129
  # 210
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   130
  "apple", "Ograve", "Uacute", "Ucircumflex", "Ugrave",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   131
  "dotlessi", "circumflex", "tilde", "macron", "breve",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   132
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   133
  # 220
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   134
  "dotaccent", "ring", "cedilla", "hungarumlaut", "ogonek",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   135
  "caron", "Lslash", "lslash", "Scaron", "scaron",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   136
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   137
  # 230
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   138
  "Zcaron", "zcaron", "brokenbar", "Eth", "eth",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   139
  "Yacute", "yacute", "Thorn", "thorn", "minus",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   140
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   141
  # 240
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   142
  "multiply", "onesuperior", "twosuperior", "threesuperior", "onehalf",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   143
  "onequarter", "threequarters", "franc", "Gbreve", "gbreve",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   144
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   145
  # 250
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   146
  "Idotaccent", "Scedilla", "scedilla", "Cacute", "cacute",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   147
  "Ccaron", "ccaron", "dcroat"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   148
]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   149
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   150
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   151
# The list of standard `SID' glyph names.  For the official list,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   152
# see Annex A of document at
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   153
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   154
#   http://partners.adobe.com/asn/developer/pdfs/tn/5176.CFF.pdf.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   155
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   156
sid_standard_names = \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   157
[
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   158
  # 0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   159
  ".notdef", "space", "exclam", "quotedbl", "numbersign",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   160
  "dollar", "percent", "ampersand", "quoteright", "parenleft",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   161
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   162
  # 10
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   163
  "parenright", "asterisk", "plus", "comma", "hyphen",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   164
  "period", "slash", "zero", "one", "two",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   165
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   166
  # 20
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   167
  "three", "four", "five", "six", "seven",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   168
  "eight", "nine", "colon", "semicolon", "less",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   169
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   170
  # 30
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   171
  "equal", "greater", "question", "at", "A",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   172
  "B", "C", "D", "E", "F",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   173
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   174
  # 40
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   175
  "G", "H", "I", "J", "K",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   176
  "L", "M", "N", "O", "P",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   177
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   178
  # 50
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   179
  "Q", "R", "S", "T", "U",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   180
  "V", "W", "X", "Y", "Z",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   181
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   182
  # 60
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   183
  "bracketleft", "backslash", "bracketright", "asciicircum", "underscore",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   184
  "quoteleft", "a", "b", "c", "d",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   185
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   186
  # 70
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   187
  "e", "f", "g", "h", "i",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   188
  "j", "k", "l", "m", "n",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   189
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   190
  # 80
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   191
  "o", "p", "q", "r", "s",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   192
  "t", "u", "v", "w", "x",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   193
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   194
  # 90
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   195
  "y", "z", "braceleft", "bar", "braceright",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   196
  "asciitilde", "exclamdown", "cent", "sterling", "fraction",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   197
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   198
  # 100
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   199
  "yen", "florin", "section", "currency", "quotesingle",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   200
  "quotedblleft", "guillemotleft", "guilsinglleft", "guilsinglright", "fi",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   201
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   202
  # 110
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   203
  "fl", "endash", "dagger", "daggerdbl", "periodcentered",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   204
  "paragraph", "bullet", "quotesinglbase", "quotedblbase", "quotedblright",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   205
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   206
  # 120
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   207
  "guillemotright", "ellipsis", "perthousand", "questiondown", "grave",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   208
  "acute", "circumflex", "tilde", "macron", "breve",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   209
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   210
  # 130
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   211
  "dotaccent", "dieresis", "ring", "cedilla", "hungarumlaut",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   212
  "ogonek", "caron", "emdash", "AE", "ordfeminine",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   213
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   214
  # 140
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   215
  "Lslash", "Oslash", "OE", "ordmasculine", "ae",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   216
  "dotlessi", "lslash", "oslash", "oe", "germandbls",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   217
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   218
  # 150
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   219
  "onesuperior", "logicalnot", "mu", "trademark", "Eth",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   220
  "onehalf", "plusminus", "Thorn", "onequarter", "divide",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   221
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   222
  # 160
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   223
  "brokenbar", "degree", "thorn", "threequarters", "twosuperior",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   224
  "registered", "minus", "eth", "multiply", "threesuperior",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   225
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   226
  # 170
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   227
  "copyright", "Aacute", "Acircumflex", "Adieresis", "Agrave",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   228
  "Aring", "Atilde", "Ccedilla", "Eacute", "Ecircumflex",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   229
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   230
  # 180
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   231
  "Edieresis", "Egrave", "Iacute", "Icircumflex", "Idieresis",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   232
  "Igrave", "Ntilde", "Oacute", "Ocircumflex", "Odieresis",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   233
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   234
  # 190
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   235
  "Ograve", "Otilde", "Scaron", "Uacute", "Ucircumflex",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   236
  "Udieresis", "Ugrave", "Yacute", "Ydieresis", "Zcaron",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   237
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   238
  # 200
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   239
  "aacute", "acircumflex", "adieresis", "agrave", "aring",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   240
  "atilde", "ccedilla", "eacute", "ecircumflex", "edieresis",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   241
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   242
  # 210
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   243
  "egrave", "iacute", "icircumflex", "idieresis", "igrave",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   244
  "ntilde", "oacute", "ocircumflex", "odieresis", "ograve",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   245
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   246
  # 220
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   247
  "otilde", "scaron", "uacute", "ucircumflex", "udieresis",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   248
  "ugrave", "yacute", "ydieresis", "zcaron", "exclamsmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   249
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   250
  # 230
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   251
  "Hungarumlautsmall", "dollaroldstyle", "dollarsuperior", "ampersandsmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   252
    "Acutesmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   253
  "parenleftsuperior", "parenrightsuperior", "twodotenleader",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   254
    "onedotenleader", "zerooldstyle",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   255
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   256
  # 240
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   257
  "oneoldstyle", "twooldstyle", "threeoldstyle", "fouroldstyle",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   258
    "fiveoldstyle",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   259
  "sixoldstyle", "sevenoldstyle", "eightoldstyle", "nineoldstyle",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   260
    "commasuperior",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   261
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   262
  # 250
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   263
  "threequartersemdash", "periodsuperior", "questionsmall", "asuperior",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   264
    "bsuperior",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   265
  "centsuperior", "dsuperior", "esuperior", "isuperior", "lsuperior",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   266
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   267
  # 260
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   268
  "msuperior", "nsuperior", "osuperior", "rsuperior", "ssuperior",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   269
  "tsuperior", "ff", "ffi", "ffl", "parenleftinferior",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   270
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   271
  # 270
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   272
  "parenrightinferior", "Circumflexsmall", "hyphensuperior", "Gravesmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   273
    "Asmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   274
  "Bsmall", "Csmall", "Dsmall", "Esmall", "Fsmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   275
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   276
  # 280
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   277
  "Gsmall", "Hsmall", "Ismall", "Jsmall", "Ksmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   278
  "Lsmall", "Msmall", "Nsmall", "Osmall", "Psmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   279
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   280
  # 290
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   281
  "Qsmall", "Rsmall", "Ssmall", "Tsmall", "Usmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   282
  "Vsmall", "Wsmall", "Xsmall", "Ysmall", "Zsmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   283
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   284
  # 300
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   285
  "colonmonetary", "onefitted", "rupiah", "Tildesmall", "exclamdownsmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   286
  "centoldstyle", "Lslashsmall", "Scaronsmall", "Zcaronsmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   287
    "Dieresissmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   288
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   289
  # 310
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   290
  "Brevesmall", "Caronsmall", "Dotaccentsmall", "Macronsmall", "figuredash",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   291
  "hypheninferior", "Ogoneksmall", "Ringsmall", "Cedillasmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   292
    "questiondownsmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   293
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   294
  # 320
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   295
  "oneeighth", "threeeighths", "fiveeighths", "seveneighths", "onethird",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   296
  "twothirds", "zerosuperior", "foursuperior", "fivesuperior",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   297
    "sixsuperior",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   298
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   299
  # 330
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   300
  "sevensuperior", "eightsuperior", "ninesuperior", "zeroinferior",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   301
    "oneinferior",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   302
  "twoinferior", "threeinferior", "fourinferior", "fiveinferior",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   303
    "sixinferior",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   304
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   305
  # 340
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   306
  "seveninferior", "eightinferior", "nineinferior", "centinferior",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   307
    "dollarinferior",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   308
  "periodinferior", "commainferior", "Agravesmall", "Aacutesmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   309
    "Acircumflexsmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   310
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   311
  # 350
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   312
  "Atildesmall", "Adieresissmall", "Aringsmall", "AEsmall", "Ccedillasmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   313
  "Egravesmall", "Eacutesmall", "Ecircumflexsmall", "Edieresissmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   314
    "Igravesmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   315
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   316
  # 360
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   317
  "Iacutesmall", "Icircumflexsmall", "Idieresissmall", "Ethsmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   318
    "Ntildesmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   319
  "Ogravesmall", "Oacutesmall", "Ocircumflexsmall", "Otildesmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   320
    "Odieresissmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   321
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   322
  # 370
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   323
  "OEsmall", "Oslashsmall", "Ugravesmall", "Uacutesmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   324
    "Ucircumflexsmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   325
  "Udieresissmall", "Yacutesmall", "Thornsmall", "Ydieresissmall",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   326
    "001.000",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   327
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   328
  # 380
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   329
  "001.001", "001.002", "001.003", "Black", "Bold",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   330
  "Book", "Light", "Medium", "Regular", "Roman",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   331
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   332
  # 390
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   333
  "Semibold"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   334
]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   335
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   336
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   337
# This table maps character codes of the Adobe Standard Type 1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   338
# encoding to glyph indices in the sid_standard_names table.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   339
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   340
t1_standard_encoding = \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   341
[
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   342
    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   343
    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   344
    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   345
    0,   0,   1,   2,   3,   4,   5,   6,   7,   8,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   346
    9,  10,  11,  12,  13,  14,  15,  16,  17,  18,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   347
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   348
   19,  20,  21,  22,  23,  24,  25,  26,  27,  28,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   349
   29,  30,  31,  32,  33,  34,  35,  36,  37,  38,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   350
   39,  40,  41,  42,  43,  44,  45,  46,  47,  48,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   351
   49,  50,  51,  52,  53,  54,  55,  56,  57,  58,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   352
   59,  60,  61,  62,  63,  64,  65,  66,  67,  68,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   353
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   354
   69,  70,  71,  72,  73,  74,  75,  76,  77,  78,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   355
   79,  80,  81,  82,  83,  84,  85,  86,  87,  88,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   356
   89,  90,  91,  92,  93,  94,  95,   0,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   357
    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   358
    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   359
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   360
    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   361
    0,  96,  97,  98,  99, 100, 101, 102, 103, 104,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   362
  105, 106, 107, 108, 109, 110,   0, 111, 112, 113,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   363
  114,   0, 115, 116, 117, 118, 119, 120, 121, 122,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   364
    0, 123,   0, 124, 125, 126, 127, 128, 129, 130,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   365
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   366
  131,   0, 132, 133,   0, 134, 135, 136, 137,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   367
    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   368
    0,   0,   0,   0,   0, 138,   0, 139,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   369
    0,   0, 140, 141, 142, 143,   0,   0,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   370
    0, 144,   0,   0,   0, 145,   0,   0, 146, 147,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   371
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   372
  148, 149,   0,   0,   0,   0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   373
]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   374
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   375
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   376
# This table maps character codes of the Adobe Expert Type 1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   377
# encoding to glyph indices in the sid_standard_names table.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   378
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   379
t1_expert_encoding = \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   380
[
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   381
    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   382
    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   383
    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   384
    0,   0,   1, 229, 230,   0, 231, 232, 233, 234,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   385
  235, 236, 237, 238,  13,  14,  15,  99, 239, 240,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   386
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   387
  241, 242, 243, 244, 245, 246, 247, 248,  27,  28,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   388
  249, 250, 251, 252,   0, 253, 254, 255, 256, 257,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   389
    0,   0,   0, 258,   0,   0, 259, 260, 261, 262,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   390
    0,   0, 263, 264, 265,   0, 266, 109, 110, 267,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   391
  268, 269,   0, 270, 271, 272, 273, 274, 275, 276,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   392
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   393
  277, 278, 279, 280, 281, 282, 283, 284, 285, 286,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   394
  287, 288, 289, 290, 291, 292, 293, 294, 295, 296,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   395
  297, 298, 299, 300, 301, 302, 303,   0,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   396
    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   397
    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   398
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   399
    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   400
    0, 304, 305, 306,   0,   0, 307, 308, 309, 310,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   401
  311,   0, 312,   0,   0, 313,   0,   0, 314, 315,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   402
    0,   0, 316, 317, 318,   0,   0,   0, 158, 155,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   403
  163, 319, 320, 321, 322, 323, 324, 325,   0,   0,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   404
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   405
  326, 150, 164, 169, 327, 328, 329, 330, 331, 332,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   406
  333, 334, 335, 336, 337, 338, 339, 340, 341, 342,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   407
  343, 344, 345, 346, 347, 348, 349, 350, 351, 352,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   408
  353, 354, 355, 356, 357, 358, 359, 360, 361, 362,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   409
  363, 364, 365, 366, 367, 368, 369, 370, 371, 372,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   410
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   411
  373, 374, 375, 376, 377, 378
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   412
]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   413
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   414
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   415
# This data has been taken literally from the file `glyphlist.txt',
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   416
# version 2.0, 22 Sept 2002.  It is available from
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   417
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   418
#   http://partners.adobe.com/asn/developer/typeforum/unicodegn.html
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   419
#   http://partners.adobe.com/public/developer/en/opentype/glyphlist.txt
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   420
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   421
adobe_glyph_list = """\
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   422
A;0041
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   423
AE;00C6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   424
AEacute;01FC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   425
AEmacron;01E2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   426
AEsmall;F7E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   427
Aacute;00C1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   428
Aacutesmall;F7E1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   429
Abreve;0102
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   430
Abreveacute;1EAE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   431
Abrevecyrillic;04D0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   432
Abrevedotbelow;1EB6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   433
Abrevegrave;1EB0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   434
Abrevehookabove;1EB2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   435
Abrevetilde;1EB4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   436
Acaron;01CD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   437
Acircle;24B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   438
Acircumflex;00C2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   439
Acircumflexacute;1EA4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   440
Acircumflexdotbelow;1EAC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   441
Acircumflexgrave;1EA6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   442
Acircumflexhookabove;1EA8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   443
Acircumflexsmall;F7E2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   444
Acircumflextilde;1EAA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   445
Acute;F6C9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   446
Acutesmall;F7B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   447
Acyrillic;0410
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   448
Adblgrave;0200
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   449
Adieresis;00C4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   450
Adieresiscyrillic;04D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   451
Adieresismacron;01DE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   452
Adieresissmall;F7E4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   453
Adotbelow;1EA0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   454
Adotmacron;01E0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   455
Agrave;00C0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   456
Agravesmall;F7E0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   457
Ahookabove;1EA2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   458
Aiecyrillic;04D4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   459
Ainvertedbreve;0202
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   460
Alpha;0391
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   461
Alphatonos;0386
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   462
Amacron;0100
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   463
Amonospace;FF21
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   464
Aogonek;0104
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   465
Aring;00C5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   466
Aringacute;01FA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   467
Aringbelow;1E00
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   468
Aringsmall;F7E5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   469
Asmall;F761
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   470
Atilde;00C3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   471
Atildesmall;F7E3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   472
Aybarmenian;0531
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   473
B;0042
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   474
Bcircle;24B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   475
Bdotaccent;1E02
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   476
Bdotbelow;1E04
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   477
Becyrillic;0411
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   478
Benarmenian;0532
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   479
Beta;0392
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   480
Bhook;0181
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   481
Blinebelow;1E06
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   482
Bmonospace;FF22
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   483
Brevesmall;F6F4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   484
Bsmall;F762
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   485
Btopbar;0182
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   486
C;0043
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   487
Caarmenian;053E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   488
Cacute;0106
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   489
Caron;F6CA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   490
Caronsmall;F6F5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   491
Ccaron;010C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   492
Ccedilla;00C7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   493
Ccedillaacute;1E08
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   494
Ccedillasmall;F7E7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   495
Ccircle;24B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   496
Ccircumflex;0108
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   497
Cdot;010A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   498
Cdotaccent;010A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   499
Cedillasmall;F7B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   500
Chaarmenian;0549
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   501
Cheabkhasiancyrillic;04BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   502
Checyrillic;0427
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   503
Chedescenderabkhasiancyrillic;04BE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   504
Chedescendercyrillic;04B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   505
Chedieresiscyrillic;04F4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   506
Cheharmenian;0543
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   507
Chekhakassiancyrillic;04CB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   508
Cheverticalstrokecyrillic;04B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   509
Chi;03A7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   510
Chook;0187
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   511
Circumflexsmall;F6F6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   512
Cmonospace;FF23
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   513
Coarmenian;0551
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   514
Csmall;F763
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   515
D;0044
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   516
DZ;01F1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   517
DZcaron;01C4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   518
Daarmenian;0534
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   519
Dafrican;0189
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   520
Dcaron;010E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   521
Dcedilla;1E10
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   522
Dcircle;24B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   523
Dcircumflexbelow;1E12
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   524
Dcroat;0110
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   525
Ddotaccent;1E0A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   526
Ddotbelow;1E0C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   527
Decyrillic;0414
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   528
Deicoptic;03EE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   529
Delta;2206
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   530
Deltagreek;0394
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   531
Dhook;018A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   532
Dieresis;F6CB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   533
DieresisAcute;F6CC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   534
DieresisGrave;F6CD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   535
Dieresissmall;F7A8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   536
Digammagreek;03DC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   537
Djecyrillic;0402
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   538
Dlinebelow;1E0E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   539
Dmonospace;FF24
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   540
Dotaccentsmall;F6F7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   541
Dslash;0110
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   542
Dsmall;F764
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   543
Dtopbar;018B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   544
Dz;01F2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   545
Dzcaron;01C5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   546
Dzeabkhasiancyrillic;04E0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   547
Dzecyrillic;0405
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   548
Dzhecyrillic;040F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   549
E;0045
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   550
Eacute;00C9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   551
Eacutesmall;F7E9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   552
Ebreve;0114
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   553
Ecaron;011A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   554
Ecedillabreve;1E1C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   555
Echarmenian;0535
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   556
Ecircle;24BA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   557
Ecircumflex;00CA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   558
Ecircumflexacute;1EBE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   559
Ecircumflexbelow;1E18
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   560
Ecircumflexdotbelow;1EC6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   561
Ecircumflexgrave;1EC0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   562
Ecircumflexhookabove;1EC2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   563
Ecircumflexsmall;F7EA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   564
Ecircumflextilde;1EC4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   565
Ecyrillic;0404
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   566
Edblgrave;0204
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   567
Edieresis;00CB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   568
Edieresissmall;F7EB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   569
Edot;0116
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   570
Edotaccent;0116
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   571
Edotbelow;1EB8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   572
Efcyrillic;0424
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   573
Egrave;00C8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   574
Egravesmall;F7E8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   575
Eharmenian;0537
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   576
Ehookabove;1EBA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   577
Eightroman;2167
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   578
Einvertedbreve;0206
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   579
Eiotifiedcyrillic;0464
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   580
Elcyrillic;041B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   581
Elevenroman;216A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   582
Emacron;0112
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   583
Emacronacute;1E16
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   584
Emacrongrave;1E14
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   585
Emcyrillic;041C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   586
Emonospace;FF25
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   587
Encyrillic;041D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   588
Endescendercyrillic;04A2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   589
Eng;014A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   590
Enghecyrillic;04A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   591
Enhookcyrillic;04C7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   592
Eogonek;0118
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   593
Eopen;0190
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   594
Epsilon;0395
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   595
Epsilontonos;0388
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   596
Ercyrillic;0420
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   597
Ereversed;018E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   598
Ereversedcyrillic;042D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   599
Escyrillic;0421
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   600
Esdescendercyrillic;04AA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   601
Esh;01A9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   602
Esmall;F765
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   603
Eta;0397
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   604
Etarmenian;0538
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   605
Etatonos;0389
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   606
Eth;00D0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   607
Ethsmall;F7F0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   608
Etilde;1EBC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   609
Etildebelow;1E1A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   610
Euro;20AC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   611
Ezh;01B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   612
Ezhcaron;01EE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   613
Ezhreversed;01B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   614
F;0046
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   615
Fcircle;24BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   616
Fdotaccent;1E1E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   617
Feharmenian;0556
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   618
Feicoptic;03E4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   619
Fhook;0191
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   620
Fitacyrillic;0472
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   621
Fiveroman;2164
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   622
Fmonospace;FF26
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   623
Fourroman;2163
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   624
Fsmall;F766
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   625
G;0047
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   626
GBsquare;3387
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   627
Gacute;01F4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   628
Gamma;0393
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   629
Gammaafrican;0194
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   630
Gangiacoptic;03EA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   631
Gbreve;011E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   632
Gcaron;01E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   633
Gcedilla;0122
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   634
Gcircle;24BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   635
Gcircumflex;011C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   636
Gcommaaccent;0122
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   637
Gdot;0120
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   638
Gdotaccent;0120
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   639
Gecyrillic;0413
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   640
Ghadarmenian;0542
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   641
Ghemiddlehookcyrillic;0494
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   642
Ghestrokecyrillic;0492
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   643
Gheupturncyrillic;0490
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   644
Ghook;0193
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   645
Gimarmenian;0533
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   646
Gjecyrillic;0403
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   647
Gmacron;1E20
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   648
Gmonospace;FF27
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   649
Grave;F6CE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   650
Gravesmall;F760
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   651
Gsmall;F767
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   652
Gsmallhook;029B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   653
Gstroke;01E4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   654
H;0048
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   655
H18533;25CF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   656
H18543;25AA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   657
H18551;25AB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   658
H22073;25A1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   659
HPsquare;33CB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   660
Haabkhasiancyrillic;04A8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   661
Hadescendercyrillic;04B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   662
Hardsigncyrillic;042A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   663
Hbar;0126
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   664
Hbrevebelow;1E2A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   665
Hcedilla;1E28
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   666
Hcircle;24BD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   667
Hcircumflex;0124
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   668
Hdieresis;1E26
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   669
Hdotaccent;1E22
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   670
Hdotbelow;1E24
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   671
Hmonospace;FF28
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   672
Hoarmenian;0540
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   673
Horicoptic;03E8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   674
Hsmall;F768
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   675
Hungarumlaut;F6CF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   676
Hungarumlautsmall;F6F8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   677
Hzsquare;3390
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   678
I;0049
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   679
IAcyrillic;042F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   680
IJ;0132
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   681
IUcyrillic;042E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   682
Iacute;00CD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   683
Iacutesmall;F7ED
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   684
Ibreve;012C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   685
Icaron;01CF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   686
Icircle;24BE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   687
Icircumflex;00CE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   688
Icircumflexsmall;F7EE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   689
Icyrillic;0406
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   690
Idblgrave;0208
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   691
Idieresis;00CF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   692
Idieresisacute;1E2E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   693
Idieresiscyrillic;04E4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   694
Idieresissmall;F7EF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   695
Idot;0130
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   696
Idotaccent;0130
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   697
Idotbelow;1ECA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   698
Iebrevecyrillic;04D6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   699
Iecyrillic;0415
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   700
Ifraktur;2111
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   701
Igrave;00CC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   702
Igravesmall;F7EC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   703
Ihookabove;1EC8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   704
Iicyrillic;0418
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   705
Iinvertedbreve;020A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   706
Iishortcyrillic;0419
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   707
Imacron;012A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   708
Imacroncyrillic;04E2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   709
Imonospace;FF29
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   710
Iniarmenian;053B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   711
Iocyrillic;0401
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   712
Iogonek;012E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   713
Iota;0399
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   714
Iotaafrican;0196
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   715
Iotadieresis;03AA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   716
Iotatonos;038A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   717
Ismall;F769
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   718
Istroke;0197
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   719
Itilde;0128
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   720
Itildebelow;1E2C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   721
Izhitsacyrillic;0474
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   722
Izhitsadblgravecyrillic;0476
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   723
J;004A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   724
Jaarmenian;0541
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   725
Jcircle;24BF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   726
Jcircumflex;0134
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   727
Jecyrillic;0408
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   728
Jheharmenian;054B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   729
Jmonospace;FF2A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   730
Jsmall;F76A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   731
K;004B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   732
KBsquare;3385
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   733
KKsquare;33CD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   734
Kabashkircyrillic;04A0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   735
Kacute;1E30
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   736
Kacyrillic;041A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   737
Kadescendercyrillic;049A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   738
Kahookcyrillic;04C3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   739
Kappa;039A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   740
Kastrokecyrillic;049E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   741
Kaverticalstrokecyrillic;049C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   742
Kcaron;01E8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   743
Kcedilla;0136
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   744
Kcircle;24C0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   745
Kcommaaccent;0136
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   746
Kdotbelow;1E32
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   747
Keharmenian;0554
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   748
Kenarmenian;053F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   749
Khacyrillic;0425
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   750
Kheicoptic;03E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   751
Khook;0198
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   752
Kjecyrillic;040C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   753
Klinebelow;1E34
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   754
Kmonospace;FF2B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   755
Koppacyrillic;0480
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   756
Koppagreek;03DE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   757
Ksicyrillic;046E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   758
Ksmall;F76B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   759
L;004C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   760
LJ;01C7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   761
LL;F6BF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   762
Lacute;0139
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   763
Lambda;039B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   764
Lcaron;013D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   765
Lcedilla;013B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   766
Lcircle;24C1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   767
Lcircumflexbelow;1E3C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   768
Lcommaaccent;013B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   769
Ldot;013F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   770
Ldotaccent;013F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   771
Ldotbelow;1E36
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   772
Ldotbelowmacron;1E38
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   773
Liwnarmenian;053C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   774
Lj;01C8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   775
Ljecyrillic;0409
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   776
Llinebelow;1E3A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   777
Lmonospace;FF2C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   778
Lslash;0141
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   779
Lslashsmall;F6F9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   780
Lsmall;F76C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   781
M;004D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   782
MBsquare;3386
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   783
Macron;F6D0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   784
Macronsmall;F7AF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   785
Macute;1E3E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   786
Mcircle;24C2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   787
Mdotaccent;1E40
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   788
Mdotbelow;1E42
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   789
Menarmenian;0544
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   790
Mmonospace;FF2D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   791
Msmall;F76D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   792
Mturned;019C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   793
Mu;039C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   794
N;004E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   795
NJ;01CA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   796
Nacute;0143
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   797
Ncaron;0147
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   798
Ncedilla;0145
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   799
Ncircle;24C3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   800
Ncircumflexbelow;1E4A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   801
Ncommaaccent;0145
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   802
Ndotaccent;1E44
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   803
Ndotbelow;1E46
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   804
Nhookleft;019D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   805
Nineroman;2168
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   806
Nj;01CB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   807
Njecyrillic;040A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   808
Nlinebelow;1E48
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   809
Nmonospace;FF2E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   810
Nowarmenian;0546
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   811
Nsmall;F76E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   812
Ntilde;00D1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   813
Ntildesmall;F7F1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   814
Nu;039D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   815
O;004F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   816
OE;0152
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   817
OEsmall;F6FA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   818
Oacute;00D3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   819
Oacutesmall;F7F3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   820
Obarredcyrillic;04E8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   821
Obarreddieresiscyrillic;04EA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   822
Obreve;014E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   823
Ocaron;01D1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   824
Ocenteredtilde;019F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   825
Ocircle;24C4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   826
Ocircumflex;00D4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   827
Ocircumflexacute;1ED0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   828
Ocircumflexdotbelow;1ED8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   829
Ocircumflexgrave;1ED2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   830
Ocircumflexhookabove;1ED4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   831
Ocircumflexsmall;F7F4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   832
Ocircumflextilde;1ED6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   833
Ocyrillic;041E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   834
Odblacute;0150
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   835
Odblgrave;020C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   836
Odieresis;00D6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   837
Odieresiscyrillic;04E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   838
Odieresissmall;F7F6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   839
Odotbelow;1ECC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   840
Ogoneksmall;F6FB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   841
Ograve;00D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   842
Ogravesmall;F7F2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   843
Oharmenian;0555
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   844
Ohm;2126
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   845
Ohookabove;1ECE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   846
Ohorn;01A0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   847
Ohornacute;1EDA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   848
Ohorndotbelow;1EE2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   849
Ohorngrave;1EDC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   850
Ohornhookabove;1EDE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   851
Ohorntilde;1EE0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   852
Ohungarumlaut;0150
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   853
Oi;01A2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   854
Oinvertedbreve;020E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   855
Omacron;014C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   856
Omacronacute;1E52
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   857
Omacrongrave;1E50
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   858
Omega;2126
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   859
Omegacyrillic;0460
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   860
Omegagreek;03A9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   861
Omegaroundcyrillic;047A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   862
Omegatitlocyrillic;047C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   863
Omegatonos;038F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   864
Omicron;039F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   865
Omicrontonos;038C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   866
Omonospace;FF2F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   867
Oneroman;2160
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   868
Oogonek;01EA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   869
Oogonekmacron;01EC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   870
Oopen;0186
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   871
Oslash;00D8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   872
Oslashacute;01FE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   873
Oslashsmall;F7F8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   874
Osmall;F76F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   875
Ostrokeacute;01FE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   876
Otcyrillic;047E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   877
Otilde;00D5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   878
Otildeacute;1E4C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   879
Otildedieresis;1E4E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   880
Otildesmall;F7F5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   881
P;0050
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   882
Pacute;1E54
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   883
Pcircle;24C5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   884
Pdotaccent;1E56
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   885
Pecyrillic;041F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   886
Peharmenian;054A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   887
Pemiddlehookcyrillic;04A6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   888
Phi;03A6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   889
Phook;01A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   890
Pi;03A0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   891
Piwrarmenian;0553
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   892
Pmonospace;FF30
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   893
Psi;03A8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   894
Psicyrillic;0470
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   895
Psmall;F770
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   896
Q;0051
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   897
Qcircle;24C6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   898
Qmonospace;FF31
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   899
Qsmall;F771
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   900
R;0052
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   901
Raarmenian;054C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   902
Racute;0154
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   903
Rcaron;0158
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   904
Rcedilla;0156
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   905
Rcircle;24C7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   906
Rcommaaccent;0156
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   907
Rdblgrave;0210
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   908
Rdotaccent;1E58
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   909
Rdotbelow;1E5A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   910
Rdotbelowmacron;1E5C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   911
Reharmenian;0550
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   912
Rfraktur;211C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   913
Rho;03A1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   914
Ringsmall;F6FC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   915
Rinvertedbreve;0212
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   916
Rlinebelow;1E5E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   917
Rmonospace;FF32
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   918
Rsmall;F772
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   919
Rsmallinverted;0281
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   920
Rsmallinvertedsuperior;02B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   921
S;0053
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   922
SF010000;250C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   923
SF020000;2514
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   924
SF030000;2510
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   925
SF040000;2518
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   926
SF050000;253C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   927
SF060000;252C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   928
SF070000;2534
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   929
SF080000;251C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   930
SF090000;2524
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   931
SF100000;2500
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   932
SF110000;2502
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   933
SF190000;2561
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   934
SF200000;2562
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   935
SF210000;2556
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   936
SF220000;2555
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   937
SF230000;2563
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   938
SF240000;2551
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   939
SF250000;2557
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   940
SF260000;255D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   941
SF270000;255C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   942
SF280000;255B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   943
SF360000;255E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   944
SF370000;255F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   945
SF380000;255A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   946
SF390000;2554
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   947
SF400000;2569
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   948
SF410000;2566
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   949
SF420000;2560
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   950
SF430000;2550
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   951
SF440000;256C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   952
SF450000;2567
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   953
SF460000;2568
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   954
SF470000;2564
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   955
SF480000;2565
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   956
SF490000;2559
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   957
SF500000;2558
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   958
SF510000;2552
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   959
SF520000;2553
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   960
SF530000;256B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   961
SF540000;256A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   962
Sacute;015A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   963
Sacutedotaccent;1E64
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   964
Sampigreek;03E0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   965
Scaron;0160
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   966
Scarondotaccent;1E66
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   967
Scaronsmall;F6FD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   968
Scedilla;015E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   969
Schwa;018F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   970
Schwacyrillic;04D8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   971
Schwadieresiscyrillic;04DA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   972
Scircle;24C8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   973
Scircumflex;015C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   974
Scommaaccent;0218
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   975
Sdotaccent;1E60
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   976
Sdotbelow;1E62
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   977
Sdotbelowdotaccent;1E68
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   978
Seharmenian;054D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   979
Sevenroman;2166
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   980
Shaarmenian;0547
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   981
Shacyrillic;0428
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   982
Shchacyrillic;0429
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   983
Sheicoptic;03E2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   984
Shhacyrillic;04BA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   985
Shimacoptic;03EC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   986
Sigma;03A3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   987
Sixroman;2165
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   988
Smonospace;FF33
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   989
Softsigncyrillic;042C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   990
Ssmall;F773
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   991
Stigmagreek;03DA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   992
T;0054
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   993
Tau;03A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   994
Tbar;0166
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   995
Tcaron;0164
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   996
Tcedilla;0162
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   997
Tcircle;24C9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   998
Tcircumflexbelow;1E70
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   999
Tcommaaccent;0162
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1000
Tdotaccent;1E6A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1001
Tdotbelow;1E6C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1002
Tecyrillic;0422
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1003
Tedescendercyrillic;04AC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1004
Tenroman;2169
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1005
Tetsecyrillic;04B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1006
Theta;0398
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1007
Thook;01AC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1008
Thorn;00DE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1009
Thornsmall;F7FE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1010
Threeroman;2162
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1011
Tildesmall;F6FE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1012
Tiwnarmenian;054F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1013
Tlinebelow;1E6E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1014
Tmonospace;FF34
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1015
Toarmenian;0539
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1016
Tonefive;01BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1017
Tonesix;0184
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1018
Tonetwo;01A7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1019
Tretroflexhook;01AE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1020
Tsecyrillic;0426
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1021
Tshecyrillic;040B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1022
Tsmall;F774
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1023
Twelveroman;216B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1024
Tworoman;2161
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1025
U;0055
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1026
Uacute;00DA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1027
Uacutesmall;F7FA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1028
Ubreve;016C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1029
Ucaron;01D3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1030
Ucircle;24CA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1031
Ucircumflex;00DB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1032
Ucircumflexbelow;1E76
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1033
Ucircumflexsmall;F7FB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1034
Ucyrillic;0423
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1035
Udblacute;0170
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1036
Udblgrave;0214
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1037
Udieresis;00DC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1038
Udieresisacute;01D7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1039
Udieresisbelow;1E72
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1040
Udieresiscaron;01D9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1041
Udieresiscyrillic;04F0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1042
Udieresisgrave;01DB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1043
Udieresismacron;01D5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1044
Udieresissmall;F7FC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1045
Udotbelow;1EE4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1046
Ugrave;00D9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1047
Ugravesmall;F7F9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1048
Uhookabove;1EE6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1049
Uhorn;01AF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1050
Uhornacute;1EE8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1051
Uhorndotbelow;1EF0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1052
Uhorngrave;1EEA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1053
Uhornhookabove;1EEC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1054
Uhorntilde;1EEE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1055
Uhungarumlaut;0170
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1056
Uhungarumlautcyrillic;04F2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1057
Uinvertedbreve;0216
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1058
Ukcyrillic;0478
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1059
Umacron;016A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1060
Umacroncyrillic;04EE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1061
Umacrondieresis;1E7A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1062
Umonospace;FF35
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1063
Uogonek;0172
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1064
Upsilon;03A5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1065
Upsilon1;03D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1066
Upsilonacutehooksymbolgreek;03D3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1067
Upsilonafrican;01B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1068
Upsilondieresis;03AB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1069
Upsilondieresishooksymbolgreek;03D4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1070
Upsilonhooksymbol;03D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1071
Upsilontonos;038E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1072
Uring;016E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1073
Ushortcyrillic;040E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1074
Usmall;F775
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1075
Ustraightcyrillic;04AE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1076
Ustraightstrokecyrillic;04B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1077
Utilde;0168
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1078
Utildeacute;1E78
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1079
Utildebelow;1E74
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1080
V;0056
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1081
Vcircle;24CB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1082
Vdotbelow;1E7E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1083
Vecyrillic;0412
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1084
Vewarmenian;054E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1085
Vhook;01B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1086
Vmonospace;FF36
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1087
Voarmenian;0548
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1088
Vsmall;F776
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1089
Vtilde;1E7C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1090
W;0057
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1091
Wacute;1E82
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1092
Wcircle;24CC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1093
Wcircumflex;0174
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1094
Wdieresis;1E84
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1095
Wdotaccent;1E86
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1096
Wdotbelow;1E88
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1097
Wgrave;1E80
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1098
Wmonospace;FF37
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1099
Wsmall;F777
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1100
X;0058
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1101
Xcircle;24CD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1102
Xdieresis;1E8C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1103
Xdotaccent;1E8A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1104
Xeharmenian;053D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1105
Xi;039E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1106
Xmonospace;FF38
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1107
Xsmall;F778
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1108
Y;0059
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1109
Yacute;00DD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1110
Yacutesmall;F7FD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1111
Yatcyrillic;0462
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1112
Ycircle;24CE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1113
Ycircumflex;0176
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1114
Ydieresis;0178
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1115
Ydieresissmall;F7FF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1116
Ydotaccent;1E8E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1117
Ydotbelow;1EF4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1118
Yericyrillic;042B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1119
Yerudieresiscyrillic;04F8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1120
Ygrave;1EF2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1121
Yhook;01B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1122
Yhookabove;1EF6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1123
Yiarmenian;0545
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1124
Yicyrillic;0407
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1125
Yiwnarmenian;0552
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1126
Ymonospace;FF39
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1127
Ysmall;F779
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1128
Ytilde;1EF8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1129
Yusbigcyrillic;046A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1130
Yusbigiotifiedcyrillic;046C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1131
Yuslittlecyrillic;0466
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1132
Yuslittleiotifiedcyrillic;0468
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1133
Z;005A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1134
Zaarmenian;0536
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1135
Zacute;0179
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1136
Zcaron;017D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1137
Zcaronsmall;F6FF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1138
Zcircle;24CF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1139
Zcircumflex;1E90
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1140
Zdot;017B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1141
Zdotaccent;017B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1142
Zdotbelow;1E92
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1143
Zecyrillic;0417
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1144
Zedescendercyrillic;0498
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1145
Zedieresiscyrillic;04DE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1146
Zeta;0396
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1147
Zhearmenian;053A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1148
Zhebrevecyrillic;04C1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1149
Zhecyrillic;0416
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1150
Zhedescendercyrillic;0496
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1151
Zhedieresiscyrillic;04DC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1152
Zlinebelow;1E94
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1153
Zmonospace;FF3A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1154
Zsmall;F77A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1155
Zstroke;01B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1156
a;0061
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1157
aabengali;0986
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1158
aacute;00E1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1159
aadeva;0906
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1160
aagujarati;0A86
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1161
aagurmukhi;0A06
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1162
aamatragurmukhi;0A3E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1163
aarusquare;3303
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1164
aavowelsignbengali;09BE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1165
aavowelsigndeva;093E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1166
aavowelsigngujarati;0ABE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1167
abbreviationmarkarmenian;055F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1168
abbreviationsigndeva;0970
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1169
abengali;0985
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1170
abopomofo;311A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1171
abreve;0103
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1172
abreveacute;1EAF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1173
abrevecyrillic;04D1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1174
abrevedotbelow;1EB7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1175
abrevegrave;1EB1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1176
abrevehookabove;1EB3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1177
abrevetilde;1EB5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1178
acaron;01CE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1179
acircle;24D0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1180
acircumflex;00E2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1181
acircumflexacute;1EA5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1182
acircumflexdotbelow;1EAD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1183
acircumflexgrave;1EA7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1184
acircumflexhookabove;1EA9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1185
acircumflextilde;1EAB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1186
acute;00B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1187
acutebelowcmb;0317
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1188
acutecmb;0301
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1189
acutecomb;0301
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1190
acutedeva;0954
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1191
acutelowmod;02CF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1192
acutetonecmb;0341
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1193
acyrillic;0430
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1194
adblgrave;0201
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1195
addakgurmukhi;0A71
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1196
adeva;0905
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1197
adieresis;00E4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1198
adieresiscyrillic;04D3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1199
adieresismacron;01DF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1200
adotbelow;1EA1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1201
adotmacron;01E1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1202
ae;00E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1203
aeacute;01FD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1204
aekorean;3150
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1205
aemacron;01E3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1206
afii00208;2015
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1207
afii08941;20A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1208
afii10017;0410
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1209
afii10018;0411
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1210
afii10019;0412
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1211
afii10020;0413
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1212
afii10021;0414
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1213
afii10022;0415
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1214
afii10023;0401
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1215
afii10024;0416
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1216
afii10025;0417
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1217
afii10026;0418
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1218
afii10027;0419
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1219
afii10028;041A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1220
afii10029;041B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1221
afii10030;041C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1222
afii10031;041D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1223
afii10032;041E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1224
afii10033;041F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1225
afii10034;0420
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1226
afii10035;0421
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1227
afii10036;0422
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1228
afii10037;0423
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1229
afii10038;0424
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1230
afii10039;0425
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1231
afii10040;0426
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1232
afii10041;0427
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1233
afii10042;0428
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1234
afii10043;0429
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1235
afii10044;042A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1236
afii10045;042B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1237
afii10046;042C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1238
afii10047;042D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1239
afii10048;042E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1240
afii10049;042F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1241
afii10050;0490
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1242
afii10051;0402
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1243
afii10052;0403
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1244
afii10053;0404
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1245
afii10054;0405
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1246
afii10055;0406
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1247
afii10056;0407
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1248
afii10057;0408
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1249
afii10058;0409
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1250
afii10059;040A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1251
afii10060;040B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1252
afii10061;040C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1253
afii10062;040E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1254
afii10063;F6C4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1255
afii10064;F6C5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1256
afii10065;0430
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1257
afii10066;0431
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1258
afii10067;0432
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1259
afii10068;0433
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1260
afii10069;0434
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1261
afii10070;0435
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1262
afii10071;0451
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1263
afii10072;0436
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1264
afii10073;0437
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1265
afii10074;0438
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1266
afii10075;0439
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1267
afii10076;043A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1268
afii10077;043B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1269
afii10078;043C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1270
afii10079;043D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1271
afii10080;043E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1272
afii10081;043F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1273
afii10082;0440
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1274
afii10083;0441
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1275
afii10084;0442
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1276
afii10085;0443
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1277
afii10086;0444
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1278
afii10087;0445
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1279
afii10088;0446
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1280
afii10089;0447
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1281
afii10090;0448
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1282
afii10091;0449
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1283
afii10092;044A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1284
afii10093;044B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1285
afii10094;044C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1286
afii10095;044D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1287
afii10096;044E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1288
afii10097;044F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1289
afii10098;0491
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1290
afii10099;0452
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1291
afii10100;0453
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1292
afii10101;0454
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1293
afii10102;0455
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1294
afii10103;0456
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1295
afii10104;0457
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1296
afii10105;0458
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1297
afii10106;0459
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1298
afii10107;045A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1299
afii10108;045B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1300
afii10109;045C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1301
afii10110;045E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1302
afii10145;040F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1303
afii10146;0462
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1304
afii10147;0472
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1305
afii10148;0474
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1306
afii10192;F6C6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1307
afii10193;045F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1308
afii10194;0463
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1309
afii10195;0473
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1310
afii10196;0475
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1311
afii10831;F6C7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1312
afii10832;F6C8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1313
afii10846;04D9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1314
afii299;200E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1315
afii300;200F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1316
afii301;200D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1317
afii57381;066A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1318
afii57388;060C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1319
afii57392;0660
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1320
afii57393;0661
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1321
afii57394;0662
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1322
afii57395;0663
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1323
afii57396;0664
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1324
afii57397;0665
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1325
afii57398;0666
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1326
afii57399;0667
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1327
afii57400;0668
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1328
afii57401;0669
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1329
afii57403;061B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1330
afii57407;061F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1331
afii57409;0621
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1332
afii57410;0622
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1333
afii57411;0623
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1334
afii57412;0624
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1335
afii57413;0625
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1336
afii57414;0626
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1337
afii57415;0627
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1338
afii57416;0628
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1339
afii57417;0629
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1340
afii57418;062A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1341
afii57419;062B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1342
afii57420;062C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1343
afii57421;062D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1344
afii57422;062E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1345
afii57423;062F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1346
afii57424;0630
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1347
afii57425;0631
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1348
afii57426;0632
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1349
afii57427;0633
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1350
afii57428;0634
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1351
afii57429;0635
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1352
afii57430;0636
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1353
afii57431;0637
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1354
afii57432;0638
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1355
afii57433;0639
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1356
afii57434;063A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1357
afii57440;0640
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1358
afii57441;0641
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1359
afii57442;0642
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1360
afii57443;0643
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1361
afii57444;0644
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1362
afii57445;0645
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1363
afii57446;0646
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1364
afii57448;0648
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1365
afii57449;0649
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1366
afii57450;064A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1367
afii57451;064B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1368
afii57452;064C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1369
afii57453;064D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1370
afii57454;064E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1371
afii57455;064F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1372
afii57456;0650
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1373
afii57457;0651
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1374
afii57458;0652
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1375
afii57470;0647
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1376
afii57505;06A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1377
afii57506;067E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1378
afii57507;0686
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1379
afii57508;0698
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1380
afii57509;06AF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1381
afii57511;0679
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1382
afii57512;0688
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1383
afii57513;0691
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1384
afii57514;06BA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1385
afii57519;06D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1386
afii57534;06D5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1387
afii57636;20AA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1388
afii57645;05BE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1389
afii57658;05C3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1390
afii57664;05D0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1391
afii57665;05D1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1392
afii57666;05D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1393
afii57667;05D3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1394
afii57668;05D4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1395
afii57669;05D5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1396
afii57670;05D6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1397
afii57671;05D7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1398
afii57672;05D8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1399
afii57673;05D9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1400
afii57674;05DA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1401
afii57675;05DB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1402
afii57676;05DC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1403
afii57677;05DD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1404
afii57678;05DE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1405
afii57679;05DF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1406
afii57680;05E0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1407
afii57681;05E1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1408
afii57682;05E2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1409
afii57683;05E3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1410
afii57684;05E4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1411
afii57685;05E5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1412
afii57686;05E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1413
afii57687;05E7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1414
afii57688;05E8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1415
afii57689;05E9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1416
afii57690;05EA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1417
afii57694;FB2A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1418
afii57695;FB2B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1419
afii57700;FB4B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1420
afii57705;FB1F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1421
afii57716;05F0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1422
afii57717;05F1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1423
afii57718;05F2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1424
afii57723;FB35
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1425
afii57793;05B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1426
afii57794;05B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1427
afii57795;05B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1428
afii57796;05BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1429
afii57797;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1430
afii57798;05B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1431
afii57799;05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1432
afii57800;05B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1433
afii57801;05B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1434
afii57802;05B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1435
afii57803;05C2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1436
afii57804;05C1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1437
afii57806;05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1438
afii57807;05BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1439
afii57839;05BD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1440
afii57841;05BF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1441
afii57842;05C0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1442
afii57929;02BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1443
afii61248;2105
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1444
afii61289;2113
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1445
afii61352;2116
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1446
afii61573;202C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1447
afii61574;202D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1448
afii61575;202E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1449
afii61664;200C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1450
afii63167;066D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1451
afii64937;02BD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1452
agrave;00E0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1453
agujarati;0A85
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1454
agurmukhi;0A05
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1455
ahiragana;3042
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1456
ahookabove;1EA3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1457
aibengali;0990
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1458
aibopomofo;311E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1459
aideva;0910
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1460
aiecyrillic;04D5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1461
aigujarati;0A90
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1462
aigurmukhi;0A10
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1463
aimatragurmukhi;0A48
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1464
ainarabic;0639
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1465
ainfinalarabic;FECA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1466
aininitialarabic;FECB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1467
ainmedialarabic;FECC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1468
ainvertedbreve;0203
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1469
aivowelsignbengali;09C8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1470
aivowelsigndeva;0948
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1471
aivowelsigngujarati;0AC8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1472
akatakana;30A2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1473
akatakanahalfwidth;FF71
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1474
akorean;314F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1475
alef;05D0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1476
alefarabic;0627
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1477
alefdageshhebrew;FB30
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1478
aleffinalarabic;FE8E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1479
alefhamzaabovearabic;0623
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1480
alefhamzaabovefinalarabic;FE84
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1481
alefhamzabelowarabic;0625
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1482
alefhamzabelowfinalarabic;FE88
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1483
alefhebrew;05D0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1484
aleflamedhebrew;FB4F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1485
alefmaddaabovearabic;0622
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1486
alefmaddaabovefinalarabic;FE82
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1487
alefmaksuraarabic;0649
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1488
alefmaksurafinalarabic;FEF0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1489
alefmaksurainitialarabic;FEF3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1490
alefmaksuramedialarabic;FEF4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1491
alefpatahhebrew;FB2E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1492
alefqamatshebrew;FB2F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1493
aleph;2135
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1494
allequal;224C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1495
alpha;03B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1496
alphatonos;03AC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1497
amacron;0101
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1498
amonospace;FF41
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1499
ampersand;0026
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1500
ampersandmonospace;FF06
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1501
ampersandsmall;F726
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1502
amsquare;33C2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1503
anbopomofo;3122
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1504
angbopomofo;3124
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1505
angkhankhuthai;0E5A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1506
angle;2220
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1507
anglebracketleft;3008
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1508
anglebracketleftvertical;FE3F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1509
anglebracketright;3009
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1510
anglebracketrightvertical;FE40
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1511
angleleft;2329
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1512
angleright;232A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1513
angstrom;212B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1514
anoteleia;0387
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1515
anudattadeva;0952
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1516
anusvarabengali;0982
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1517
anusvaradeva;0902
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1518
anusvaragujarati;0A82
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1519
aogonek;0105
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1520
apaatosquare;3300
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1521
aparen;249C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1522
apostrophearmenian;055A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1523
apostrophemod;02BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1524
apple;F8FF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1525
approaches;2250
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1526
approxequal;2248
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1527
approxequalorimage;2252
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1528
approximatelyequal;2245
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1529
araeaekorean;318E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1530
araeakorean;318D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1531
arc;2312
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1532
arighthalfring;1E9A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1533
aring;00E5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1534
aringacute;01FB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1535
aringbelow;1E01
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1536
arrowboth;2194
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1537
arrowdashdown;21E3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1538
arrowdashleft;21E0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1539
arrowdashright;21E2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1540
arrowdashup;21E1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1541
arrowdblboth;21D4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1542
arrowdbldown;21D3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1543
arrowdblleft;21D0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1544
arrowdblright;21D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1545
arrowdblup;21D1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1546
arrowdown;2193
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1547
arrowdownleft;2199
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1548
arrowdownright;2198
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1549
arrowdownwhite;21E9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1550
arrowheaddownmod;02C5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1551
arrowheadleftmod;02C2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1552
arrowheadrightmod;02C3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1553
arrowheadupmod;02C4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1554
arrowhorizex;F8E7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1555
arrowleft;2190
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1556
arrowleftdbl;21D0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1557
arrowleftdblstroke;21CD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1558
arrowleftoverright;21C6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1559
arrowleftwhite;21E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1560
arrowright;2192
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1561
arrowrightdblstroke;21CF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1562
arrowrightheavy;279E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1563
arrowrightoverleft;21C4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1564
arrowrightwhite;21E8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1565
arrowtableft;21E4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1566
arrowtabright;21E5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1567
arrowup;2191
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1568
arrowupdn;2195
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1569
arrowupdnbse;21A8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1570
arrowupdownbase;21A8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1571
arrowupleft;2196
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1572
arrowupleftofdown;21C5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1573
arrowupright;2197
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1574
arrowupwhite;21E7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1575
arrowvertex;F8E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1576
asciicircum;005E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1577
asciicircummonospace;FF3E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1578
asciitilde;007E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1579
asciitildemonospace;FF5E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1580
ascript;0251
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1581
ascriptturned;0252
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1582
asmallhiragana;3041
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1583
asmallkatakana;30A1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1584
asmallkatakanahalfwidth;FF67
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1585
asterisk;002A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1586
asteriskaltonearabic;066D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1587
asteriskarabic;066D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1588
asteriskmath;2217
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1589
asteriskmonospace;FF0A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1590
asterisksmall;FE61
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1591
asterism;2042
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1592
asuperior;F6E9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1593
asymptoticallyequal;2243
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1594
at;0040
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1595
atilde;00E3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1596
atmonospace;FF20
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1597
atsmall;FE6B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1598
aturned;0250
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1599
aubengali;0994
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1600
aubopomofo;3120
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1601
audeva;0914
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1602
augujarati;0A94
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1603
augurmukhi;0A14
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1604
aulengthmarkbengali;09D7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1605
aumatragurmukhi;0A4C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1606
auvowelsignbengali;09CC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1607
auvowelsigndeva;094C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1608
auvowelsigngujarati;0ACC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1609
avagrahadeva;093D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1610
aybarmenian;0561
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1611
ayin;05E2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1612
ayinaltonehebrew;FB20
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1613
ayinhebrew;05E2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1614
b;0062
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1615
babengali;09AC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1616
backslash;005C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1617
backslashmonospace;FF3C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1618
badeva;092C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1619
bagujarati;0AAC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1620
bagurmukhi;0A2C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1621
bahiragana;3070
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1622
bahtthai;0E3F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1623
bakatakana;30D0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1624
bar;007C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1625
barmonospace;FF5C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1626
bbopomofo;3105
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1627
bcircle;24D1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1628
bdotaccent;1E03
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1629
bdotbelow;1E05
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1630
beamedsixteenthnotes;266C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1631
because;2235
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1632
becyrillic;0431
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1633
beharabic;0628
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1634
behfinalarabic;FE90
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1635
behinitialarabic;FE91
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1636
behiragana;3079
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1637
behmedialarabic;FE92
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1638
behmeeminitialarabic;FC9F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1639
behmeemisolatedarabic;FC08
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1640
behnoonfinalarabic;FC6D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1641
bekatakana;30D9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1642
benarmenian;0562
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1643
bet;05D1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1644
beta;03B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1645
betasymbolgreek;03D0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1646
betdagesh;FB31
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1647
betdageshhebrew;FB31
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1648
bethebrew;05D1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1649
betrafehebrew;FB4C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1650
bhabengali;09AD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1651
bhadeva;092D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1652
bhagujarati;0AAD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1653
bhagurmukhi;0A2D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1654
bhook;0253
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1655
bihiragana;3073
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1656
bikatakana;30D3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1657
bilabialclick;0298
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1658
bindigurmukhi;0A02
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1659
birusquare;3331
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1660
blackcircle;25CF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1661
blackdiamond;25C6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1662
blackdownpointingtriangle;25BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1663
blackleftpointingpointer;25C4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1664
blackleftpointingtriangle;25C0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1665
blacklenticularbracketleft;3010
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1666
blacklenticularbracketleftvertical;FE3B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1667
blacklenticularbracketright;3011
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1668
blacklenticularbracketrightvertical;FE3C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1669
blacklowerlefttriangle;25E3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1670
blacklowerrighttriangle;25E2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1671
blackrectangle;25AC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1672
blackrightpointingpointer;25BA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1673
blackrightpointingtriangle;25B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1674
blacksmallsquare;25AA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1675
blacksmilingface;263B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1676
blacksquare;25A0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1677
blackstar;2605
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1678
blackupperlefttriangle;25E4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1679
blackupperrighttriangle;25E5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1680
blackuppointingsmalltriangle;25B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1681
blackuppointingtriangle;25B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1682
blank;2423
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1683
blinebelow;1E07
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1684
block;2588
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1685
bmonospace;FF42
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1686
bobaimaithai;0E1A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1687
bohiragana;307C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1688
bokatakana;30DC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1689
bparen;249D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1690
bqsquare;33C3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1691
braceex;F8F4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1692
braceleft;007B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1693
braceleftbt;F8F3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1694
braceleftmid;F8F2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1695
braceleftmonospace;FF5B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1696
braceleftsmall;FE5B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1697
bracelefttp;F8F1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1698
braceleftvertical;FE37
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1699
braceright;007D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1700
bracerightbt;F8FE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1701
bracerightmid;F8FD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1702
bracerightmonospace;FF5D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1703
bracerightsmall;FE5C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1704
bracerighttp;F8FC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1705
bracerightvertical;FE38
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1706
bracketleft;005B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1707
bracketleftbt;F8F0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1708
bracketleftex;F8EF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1709
bracketleftmonospace;FF3B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1710
bracketlefttp;F8EE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1711
bracketright;005D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1712
bracketrightbt;F8FB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1713
bracketrightex;F8FA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1714
bracketrightmonospace;FF3D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1715
bracketrighttp;F8F9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1716
breve;02D8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1717
brevebelowcmb;032E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1718
brevecmb;0306
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1719
breveinvertedbelowcmb;032F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1720
breveinvertedcmb;0311
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1721
breveinverteddoublecmb;0361
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1722
bridgebelowcmb;032A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1723
bridgeinvertedbelowcmb;033A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1724
brokenbar;00A6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1725
bstroke;0180
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1726
bsuperior;F6EA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1727
btopbar;0183
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1728
buhiragana;3076
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1729
bukatakana;30D6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1730
bullet;2022
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1731
bulletinverse;25D8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1732
bulletoperator;2219
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1733
bullseye;25CE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1734
c;0063
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1735
caarmenian;056E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1736
cabengali;099A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1737
cacute;0107
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1738
cadeva;091A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1739
cagujarati;0A9A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1740
cagurmukhi;0A1A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1741
calsquare;3388
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1742
candrabindubengali;0981
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1743
candrabinducmb;0310
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1744
candrabindudeva;0901
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1745
candrabindugujarati;0A81
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1746
capslock;21EA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1747
careof;2105
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1748
caron;02C7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1749
caronbelowcmb;032C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1750
caroncmb;030C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1751
carriagereturn;21B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1752
cbopomofo;3118
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1753
ccaron;010D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1754
ccedilla;00E7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1755
ccedillaacute;1E09
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1756
ccircle;24D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1757
ccircumflex;0109
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1758
ccurl;0255
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1759
cdot;010B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1760
cdotaccent;010B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1761
cdsquare;33C5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1762
cedilla;00B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1763
cedillacmb;0327
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1764
cent;00A2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1765
centigrade;2103
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1766
centinferior;F6DF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1767
centmonospace;FFE0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1768
centoldstyle;F7A2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1769
centsuperior;F6E0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1770
chaarmenian;0579
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1771
chabengali;099B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1772
chadeva;091B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1773
chagujarati;0A9B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1774
chagurmukhi;0A1B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1775
chbopomofo;3114
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1776
cheabkhasiancyrillic;04BD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1777
checkmark;2713
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1778
checyrillic;0447
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1779
chedescenderabkhasiancyrillic;04BF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1780
chedescendercyrillic;04B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1781
chedieresiscyrillic;04F5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1782
cheharmenian;0573
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1783
chekhakassiancyrillic;04CC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1784
cheverticalstrokecyrillic;04B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1785
chi;03C7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1786
chieuchacirclekorean;3277
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1787
chieuchaparenkorean;3217
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1788
chieuchcirclekorean;3269
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1789
chieuchkorean;314A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1790
chieuchparenkorean;3209
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1791
chochangthai;0E0A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1792
chochanthai;0E08
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1793
chochingthai;0E09
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1794
chochoethai;0E0C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1795
chook;0188
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1796
cieucacirclekorean;3276
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1797
cieucaparenkorean;3216
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1798
cieuccirclekorean;3268
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1799
cieuckorean;3148
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1800
cieucparenkorean;3208
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1801
cieucuparenkorean;321C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1802
circle;25CB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1803
circlemultiply;2297
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1804
circleot;2299
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1805
circleplus;2295
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1806
circlepostalmark;3036
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1807
circlewithlefthalfblack;25D0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1808
circlewithrighthalfblack;25D1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1809
circumflex;02C6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1810
circumflexbelowcmb;032D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1811
circumflexcmb;0302
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1812
clear;2327
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1813
clickalveolar;01C2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1814
clickdental;01C0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1815
clicklateral;01C1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1816
clickretroflex;01C3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1817
club;2663
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1818
clubsuitblack;2663
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1819
clubsuitwhite;2667
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1820
cmcubedsquare;33A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1821
cmonospace;FF43
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1822
cmsquaredsquare;33A0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1823
coarmenian;0581
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1824
colon;003A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1825
colonmonetary;20A1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1826
colonmonospace;FF1A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1827
colonsign;20A1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1828
colonsmall;FE55
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1829
colontriangularhalfmod;02D1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1830
colontriangularmod;02D0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1831
comma;002C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1832
commaabovecmb;0313
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1833
commaaboverightcmb;0315
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1834
commaaccent;F6C3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1835
commaarabic;060C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1836
commaarmenian;055D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1837
commainferior;F6E1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1838
commamonospace;FF0C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1839
commareversedabovecmb;0314
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1840
commareversedmod;02BD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1841
commasmall;FE50
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1842
commasuperior;F6E2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1843
commaturnedabovecmb;0312
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1844
commaturnedmod;02BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1845
compass;263C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1846
congruent;2245
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1847
contourintegral;222E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1848
control;2303
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1849
controlACK;0006
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1850
controlBEL;0007
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1851
controlBS;0008
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1852
controlCAN;0018
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1853
controlCR;000D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1854
controlDC1;0011
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1855
controlDC2;0012
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1856
controlDC3;0013
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1857
controlDC4;0014
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1858
controlDEL;007F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1859
controlDLE;0010
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1860
controlEM;0019
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1861
controlENQ;0005
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1862
controlEOT;0004
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1863
controlESC;001B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1864
controlETB;0017
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1865
controlETX;0003
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1866
controlFF;000C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1867
controlFS;001C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1868
controlGS;001D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1869
controlHT;0009
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1870
controlLF;000A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1871
controlNAK;0015
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1872
controlRS;001E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1873
controlSI;000F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1874
controlSO;000E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1875
controlSOT;0002
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1876
controlSTX;0001
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1877
controlSUB;001A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1878
controlSYN;0016
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1879
controlUS;001F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1880
controlVT;000B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1881
copyright;00A9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1882
copyrightsans;F8E9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1883
copyrightserif;F6D9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1884
cornerbracketleft;300C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1885
cornerbracketlefthalfwidth;FF62
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1886
cornerbracketleftvertical;FE41
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1887
cornerbracketright;300D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1888
cornerbracketrighthalfwidth;FF63
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1889
cornerbracketrightvertical;FE42
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1890
corporationsquare;337F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1891
cosquare;33C7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1892
coverkgsquare;33C6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1893
cparen;249E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1894
cruzeiro;20A2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1895
cstretched;0297
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1896
curlyand;22CF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1897
curlyor;22CE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1898
currency;00A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1899
cyrBreve;F6D1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1900
cyrFlex;F6D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1901
cyrbreve;F6D4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1902
cyrflex;F6D5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1903
d;0064
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1904
daarmenian;0564
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1905
dabengali;09A6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1906
dadarabic;0636
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1907
dadeva;0926
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1908
dadfinalarabic;FEBE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1909
dadinitialarabic;FEBF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1910
dadmedialarabic;FEC0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1911
dagesh;05BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1912
dageshhebrew;05BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1913
dagger;2020
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1914
daggerdbl;2021
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1915
dagujarati;0AA6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1916
dagurmukhi;0A26
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1917
dahiragana;3060
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1918
dakatakana;30C0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1919
dalarabic;062F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1920
dalet;05D3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1921
daletdagesh;FB33
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1922
daletdageshhebrew;FB33
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1923
dalethatafpatah;05D3 05B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1924
dalethatafpatahhebrew;05D3 05B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1925
dalethatafsegol;05D3 05B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1926
dalethatafsegolhebrew;05D3 05B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1927
dalethebrew;05D3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1928
dalethiriq;05D3 05B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1929
dalethiriqhebrew;05D3 05B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1930
daletholam;05D3 05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1931
daletholamhebrew;05D3 05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1932
daletpatah;05D3 05B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1933
daletpatahhebrew;05D3 05B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1934
daletqamats;05D3 05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1935
daletqamatshebrew;05D3 05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1936
daletqubuts;05D3 05BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1937
daletqubutshebrew;05D3 05BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1938
daletsegol;05D3 05B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1939
daletsegolhebrew;05D3 05B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1940
daletsheva;05D3 05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1941
daletshevahebrew;05D3 05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1942
dalettsere;05D3 05B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1943
dalettserehebrew;05D3 05B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1944
dalfinalarabic;FEAA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1945
dammaarabic;064F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1946
dammalowarabic;064F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1947
dammatanaltonearabic;064C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1948
dammatanarabic;064C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1949
danda;0964
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1950
dargahebrew;05A7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1951
dargalefthebrew;05A7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1952
dasiapneumatacyrilliccmb;0485
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1953
dblGrave;F6D3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1954
dblanglebracketleft;300A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1955
dblanglebracketleftvertical;FE3D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1956
dblanglebracketright;300B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1957
dblanglebracketrightvertical;FE3E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1958
dblarchinvertedbelowcmb;032B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1959
dblarrowleft;21D4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1960
dblarrowright;21D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1961
dbldanda;0965
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1962
dblgrave;F6D6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1963
dblgravecmb;030F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1964
dblintegral;222C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1965
dbllowline;2017
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1966
dbllowlinecmb;0333
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1967
dbloverlinecmb;033F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1968
dblprimemod;02BA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1969
dblverticalbar;2016
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1970
dblverticallineabovecmb;030E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1971
dbopomofo;3109
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1972
dbsquare;33C8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1973
dcaron;010F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1974
dcedilla;1E11
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1975
dcircle;24D3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1976
dcircumflexbelow;1E13
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1977
dcroat;0111
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1978
ddabengali;09A1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1979
ddadeva;0921
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1980
ddagujarati;0AA1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1981
ddagurmukhi;0A21
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1982
ddalarabic;0688
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1983
ddalfinalarabic;FB89
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1984
dddhadeva;095C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1985
ddhabengali;09A2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1986
ddhadeva;0922
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1987
ddhagujarati;0AA2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1988
ddhagurmukhi;0A22
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1989
ddotaccent;1E0B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1990
ddotbelow;1E0D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1991
decimalseparatorarabic;066B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1992
decimalseparatorpersian;066B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1993
decyrillic;0434
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1994
degree;00B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1995
dehihebrew;05AD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1996
dehiragana;3067
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1997
deicoptic;03EF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1998
dekatakana;30C7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  1999
deleteleft;232B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2000
deleteright;2326
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2001
delta;03B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2002
deltaturned;018D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2003
denominatorminusonenumeratorbengali;09F8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2004
dezh;02A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2005
dhabengali;09A7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2006
dhadeva;0927
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2007
dhagujarati;0AA7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2008
dhagurmukhi;0A27
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2009
dhook;0257
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2010
dialytikatonos;0385
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2011
dialytikatonoscmb;0344
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2012
diamond;2666
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2013
diamondsuitwhite;2662
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2014
dieresis;00A8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2015
dieresisacute;F6D7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2016
dieresisbelowcmb;0324
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2017
dieresiscmb;0308
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2018
dieresisgrave;F6D8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2019
dieresistonos;0385
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2020
dihiragana;3062
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2021
dikatakana;30C2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2022
dittomark;3003
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2023
divide;00F7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2024
divides;2223
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2025
divisionslash;2215
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2026
djecyrillic;0452
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2027
dkshade;2593
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2028
dlinebelow;1E0F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2029
dlsquare;3397
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2030
dmacron;0111
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2031
dmonospace;FF44
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2032
dnblock;2584
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2033
dochadathai;0E0E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2034
dodekthai;0E14
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2035
dohiragana;3069
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2036
dokatakana;30C9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2037
dollar;0024
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2038
dollarinferior;F6E3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2039
dollarmonospace;FF04
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2040
dollaroldstyle;F724
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2041
dollarsmall;FE69
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2042
dollarsuperior;F6E4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2043
dong;20AB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2044
dorusquare;3326
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2045
dotaccent;02D9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2046
dotaccentcmb;0307
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2047
dotbelowcmb;0323
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2048
dotbelowcomb;0323
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2049
dotkatakana;30FB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2050
dotlessi;0131
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2051
dotlessj;F6BE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2052
dotlessjstrokehook;0284
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2053
dotmath;22C5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2054
dottedcircle;25CC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2055
doubleyodpatah;FB1F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2056
doubleyodpatahhebrew;FB1F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2057
downtackbelowcmb;031E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2058
downtackmod;02D5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2059
dparen;249F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2060
dsuperior;F6EB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2061
dtail;0256
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2062
dtopbar;018C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2063
duhiragana;3065
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2064
dukatakana;30C5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2065
dz;01F3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2066
dzaltone;02A3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2067
dzcaron;01C6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2068
dzcurl;02A5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2069
dzeabkhasiancyrillic;04E1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2070
dzecyrillic;0455
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2071
dzhecyrillic;045F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2072
e;0065
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2073
eacute;00E9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2074
earth;2641
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2075
ebengali;098F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2076
ebopomofo;311C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2077
ebreve;0115
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2078
ecandradeva;090D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2079
ecandragujarati;0A8D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2080
ecandravowelsigndeva;0945
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2081
ecandravowelsigngujarati;0AC5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2082
ecaron;011B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2083
ecedillabreve;1E1D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2084
echarmenian;0565
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2085
echyiwnarmenian;0587
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2086
ecircle;24D4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2087
ecircumflex;00EA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2088
ecircumflexacute;1EBF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2089
ecircumflexbelow;1E19
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2090
ecircumflexdotbelow;1EC7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2091
ecircumflexgrave;1EC1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2092
ecircumflexhookabove;1EC3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2093
ecircumflextilde;1EC5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2094
ecyrillic;0454
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2095
edblgrave;0205
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2096
edeva;090F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2097
edieresis;00EB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2098
edot;0117
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2099
edotaccent;0117
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2100
edotbelow;1EB9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2101
eegurmukhi;0A0F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2102
eematragurmukhi;0A47
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2103
efcyrillic;0444
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2104
egrave;00E8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2105
egujarati;0A8F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2106
eharmenian;0567
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2107
ehbopomofo;311D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2108
ehiragana;3048
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2109
ehookabove;1EBB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2110
eibopomofo;311F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2111
eight;0038
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2112
eightarabic;0668
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2113
eightbengali;09EE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2114
eightcircle;2467
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2115
eightcircleinversesansserif;2791
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2116
eightdeva;096E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2117
eighteencircle;2471
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2118
eighteenparen;2485
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2119
eighteenperiod;2499
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2120
eightgujarati;0AEE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2121
eightgurmukhi;0A6E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2122
eighthackarabic;0668
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2123
eighthangzhou;3028
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2124
eighthnotebeamed;266B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2125
eightideographicparen;3227
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2126
eightinferior;2088
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2127
eightmonospace;FF18
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2128
eightoldstyle;F738
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2129
eightparen;247B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2130
eightperiod;248F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2131
eightpersian;06F8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2132
eightroman;2177
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2133
eightsuperior;2078
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2134
eightthai;0E58
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2135
einvertedbreve;0207
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2136
eiotifiedcyrillic;0465
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2137
ekatakana;30A8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2138
ekatakanahalfwidth;FF74
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2139
ekonkargurmukhi;0A74
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2140
ekorean;3154
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2141
elcyrillic;043B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2142
element;2208
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2143
elevencircle;246A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2144
elevenparen;247E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2145
elevenperiod;2492
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2146
elevenroman;217A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2147
ellipsis;2026
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2148
ellipsisvertical;22EE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2149
emacron;0113
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2150
emacronacute;1E17
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2151
emacrongrave;1E15
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2152
emcyrillic;043C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2153
emdash;2014
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2154
emdashvertical;FE31
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2155
emonospace;FF45
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2156
emphasismarkarmenian;055B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2157
emptyset;2205
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2158
enbopomofo;3123
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2159
encyrillic;043D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2160
endash;2013
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2161
endashvertical;FE32
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2162
endescendercyrillic;04A3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2163
eng;014B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2164
engbopomofo;3125
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2165
enghecyrillic;04A5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2166
enhookcyrillic;04C8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2167
enspace;2002
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2168
eogonek;0119
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2169
eokorean;3153
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2170
eopen;025B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2171
eopenclosed;029A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2172
eopenreversed;025C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2173
eopenreversedclosed;025E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2174
eopenreversedhook;025D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2175
eparen;24A0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2176
epsilon;03B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2177
epsilontonos;03AD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2178
equal;003D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2179
equalmonospace;FF1D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2180
equalsmall;FE66
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2181
equalsuperior;207C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2182
equivalence;2261
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2183
erbopomofo;3126
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2184
ercyrillic;0440
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2185
ereversed;0258
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2186
ereversedcyrillic;044D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2187
escyrillic;0441
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2188
esdescendercyrillic;04AB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2189
esh;0283
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2190
eshcurl;0286
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2191
eshortdeva;090E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2192
eshortvowelsigndeva;0946
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2193
eshreversedloop;01AA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2194
eshsquatreversed;0285
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2195
esmallhiragana;3047
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2196
esmallkatakana;30A7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2197
esmallkatakanahalfwidth;FF6A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2198
estimated;212E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2199
esuperior;F6EC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2200
eta;03B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2201
etarmenian;0568
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2202
etatonos;03AE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2203
eth;00F0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2204
etilde;1EBD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2205
etildebelow;1E1B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2206
etnahtafoukhhebrew;0591
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2207
etnahtafoukhlefthebrew;0591
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2208
etnahtahebrew;0591
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2209
etnahtalefthebrew;0591
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2210
eturned;01DD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2211
eukorean;3161
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2212
euro;20AC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2213
evowelsignbengali;09C7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2214
evowelsigndeva;0947
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2215
evowelsigngujarati;0AC7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2216
exclam;0021
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2217
exclamarmenian;055C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2218
exclamdbl;203C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2219
exclamdown;00A1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2220
exclamdownsmall;F7A1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2221
exclammonospace;FF01
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2222
exclamsmall;F721
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2223
existential;2203
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2224
ezh;0292
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2225
ezhcaron;01EF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2226
ezhcurl;0293
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2227
ezhreversed;01B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2228
ezhtail;01BA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2229
f;0066
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2230
fadeva;095E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2231
fagurmukhi;0A5E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2232
fahrenheit;2109
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2233
fathaarabic;064E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2234
fathalowarabic;064E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2235
fathatanarabic;064B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2236
fbopomofo;3108
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2237
fcircle;24D5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2238
fdotaccent;1E1F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2239
feharabic;0641
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2240
feharmenian;0586
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2241
fehfinalarabic;FED2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2242
fehinitialarabic;FED3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2243
fehmedialarabic;FED4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2244
feicoptic;03E5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2245
female;2640
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2246
ff;FB00
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2247
ffi;FB03
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2248
ffl;FB04
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2249
fi;FB01
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2250
fifteencircle;246E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2251
fifteenparen;2482
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2252
fifteenperiod;2496
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2253
figuredash;2012
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2254
filledbox;25A0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2255
filledrect;25AC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2256
finalkaf;05DA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2257
finalkafdagesh;FB3A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2258
finalkafdageshhebrew;FB3A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2259
finalkafhebrew;05DA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2260
finalkafqamats;05DA 05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2261
finalkafqamatshebrew;05DA 05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2262
finalkafsheva;05DA 05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2263
finalkafshevahebrew;05DA 05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2264
finalmem;05DD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2265
finalmemhebrew;05DD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2266
finalnun;05DF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2267
finalnunhebrew;05DF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2268
finalpe;05E3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2269
finalpehebrew;05E3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2270
finaltsadi;05E5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2271
finaltsadihebrew;05E5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2272
firsttonechinese;02C9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2273
fisheye;25C9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2274
fitacyrillic;0473
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2275
five;0035
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2276
fivearabic;0665
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2277
fivebengali;09EB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2278
fivecircle;2464
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2279
fivecircleinversesansserif;278E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2280
fivedeva;096B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2281
fiveeighths;215D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2282
fivegujarati;0AEB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2283
fivegurmukhi;0A6B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2284
fivehackarabic;0665
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2285
fivehangzhou;3025
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2286
fiveideographicparen;3224
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2287
fiveinferior;2085
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2288
fivemonospace;FF15
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2289
fiveoldstyle;F735
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2290
fiveparen;2478
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2291
fiveperiod;248C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2292
fivepersian;06F5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2293
fiveroman;2174
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2294
fivesuperior;2075
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2295
fivethai;0E55
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2296
fl;FB02
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2297
florin;0192
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2298
fmonospace;FF46
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2299
fmsquare;3399
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2300
fofanthai;0E1F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2301
fofathai;0E1D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2302
fongmanthai;0E4F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2303
forall;2200
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2304
four;0034
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2305
fourarabic;0664
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2306
fourbengali;09EA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2307
fourcircle;2463
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2308
fourcircleinversesansserif;278D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2309
fourdeva;096A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2310
fourgujarati;0AEA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2311
fourgurmukhi;0A6A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2312
fourhackarabic;0664
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2313
fourhangzhou;3024
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2314
fourideographicparen;3223
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2315
fourinferior;2084
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2316
fourmonospace;FF14
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2317
fournumeratorbengali;09F7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2318
fouroldstyle;F734
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2319
fourparen;2477
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2320
fourperiod;248B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2321
fourpersian;06F4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2322
fourroman;2173
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2323
foursuperior;2074
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2324
fourteencircle;246D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2325
fourteenparen;2481
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2326
fourteenperiod;2495
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2327
fourthai;0E54
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2328
fourthtonechinese;02CB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2329
fparen;24A1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2330
fraction;2044
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2331
franc;20A3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2332
g;0067
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2333
gabengali;0997
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2334
gacute;01F5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2335
gadeva;0917
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2336
gafarabic;06AF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2337
gaffinalarabic;FB93
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2338
gafinitialarabic;FB94
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2339
gafmedialarabic;FB95
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2340
gagujarati;0A97
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2341
gagurmukhi;0A17
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2342
gahiragana;304C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2343
gakatakana;30AC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2344
gamma;03B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2345
gammalatinsmall;0263
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2346
gammasuperior;02E0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2347
gangiacoptic;03EB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2348
gbopomofo;310D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2349
gbreve;011F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2350
gcaron;01E7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2351
gcedilla;0123
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2352
gcircle;24D6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2353
gcircumflex;011D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2354
gcommaaccent;0123
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2355
gdot;0121
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2356
gdotaccent;0121
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2357
gecyrillic;0433
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2358
gehiragana;3052
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2359
gekatakana;30B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2360
geometricallyequal;2251
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2361
gereshaccenthebrew;059C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2362
gereshhebrew;05F3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2363
gereshmuqdamhebrew;059D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2364
germandbls;00DF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2365
gershayimaccenthebrew;059E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2366
gershayimhebrew;05F4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2367
getamark;3013
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2368
ghabengali;0998
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2369
ghadarmenian;0572
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2370
ghadeva;0918
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2371
ghagujarati;0A98
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2372
ghagurmukhi;0A18
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2373
ghainarabic;063A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2374
ghainfinalarabic;FECE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2375
ghaininitialarabic;FECF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2376
ghainmedialarabic;FED0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2377
ghemiddlehookcyrillic;0495
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2378
ghestrokecyrillic;0493
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2379
gheupturncyrillic;0491
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2380
ghhadeva;095A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2381
ghhagurmukhi;0A5A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2382
ghook;0260
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2383
ghzsquare;3393
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2384
gihiragana;304E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2385
gikatakana;30AE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2386
gimarmenian;0563
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2387
gimel;05D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2388
gimeldagesh;FB32
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2389
gimeldageshhebrew;FB32
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2390
gimelhebrew;05D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2391
gjecyrillic;0453
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2392
glottalinvertedstroke;01BE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2393
glottalstop;0294
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2394
glottalstopinverted;0296
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2395
glottalstopmod;02C0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2396
glottalstopreversed;0295
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2397
glottalstopreversedmod;02C1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2398
glottalstopreversedsuperior;02E4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2399
glottalstopstroke;02A1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2400
glottalstopstrokereversed;02A2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2401
gmacron;1E21
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2402
gmonospace;FF47
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2403
gohiragana;3054
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2404
gokatakana;30B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2405
gparen;24A2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2406
gpasquare;33AC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2407
gradient;2207
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2408
grave;0060
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2409
gravebelowcmb;0316
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2410
gravecmb;0300
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2411
gravecomb;0300
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2412
gravedeva;0953
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2413
gravelowmod;02CE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2414
gravemonospace;FF40
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2415
gravetonecmb;0340
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2416
greater;003E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2417
greaterequal;2265
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2418
greaterequalorless;22DB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2419
greatermonospace;FF1E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2420
greaterorequivalent;2273
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2421
greaterorless;2277
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2422
greateroverequal;2267
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2423
greatersmall;FE65
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2424
gscript;0261
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2425
gstroke;01E5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2426
guhiragana;3050
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2427
guillemotleft;00AB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2428
guillemotright;00BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2429
guilsinglleft;2039
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2430
guilsinglright;203A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2431
gukatakana;30B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2432
guramusquare;3318
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2433
gysquare;33C9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2434
h;0068
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2435
haabkhasiancyrillic;04A9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2436
haaltonearabic;06C1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2437
habengali;09B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2438
hadescendercyrillic;04B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2439
hadeva;0939
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2440
hagujarati;0AB9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2441
hagurmukhi;0A39
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2442
haharabic;062D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2443
hahfinalarabic;FEA2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2444
hahinitialarabic;FEA3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2445
hahiragana;306F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2446
hahmedialarabic;FEA4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2447
haitusquare;332A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2448
hakatakana;30CF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2449
hakatakanahalfwidth;FF8A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2450
halantgurmukhi;0A4D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2451
hamzaarabic;0621
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2452
hamzadammaarabic;0621 064F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2453
hamzadammatanarabic;0621 064C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2454
hamzafathaarabic;0621 064E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2455
hamzafathatanarabic;0621 064B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2456
hamzalowarabic;0621
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2457
hamzalowkasraarabic;0621 0650
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2458
hamzalowkasratanarabic;0621 064D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2459
hamzasukunarabic;0621 0652
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2460
hangulfiller;3164
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2461
hardsigncyrillic;044A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2462
harpoonleftbarbup;21BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2463
harpoonrightbarbup;21C0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2464
hasquare;33CA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2465
hatafpatah;05B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2466
hatafpatah16;05B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2467
hatafpatah23;05B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2468
hatafpatah2f;05B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2469
hatafpatahhebrew;05B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2470
hatafpatahnarrowhebrew;05B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2471
hatafpatahquarterhebrew;05B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2472
hatafpatahwidehebrew;05B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2473
hatafqamats;05B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2474
hatafqamats1b;05B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2475
hatafqamats28;05B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2476
hatafqamats34;05B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2477
hatafqamatshebrew;05B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2478
hatafqamatsnarrowhebrew;05B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2479
hatafqamatsquarterhebrew;05B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2480
hatafqamatswidehebrew;05B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2481
hatafsegol;05B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2482
hatafsegol17;05B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2483
hatafsegol24;05B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2484
hatafsegol30;05B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2485
hatafsegolhebrew;05B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2486
hatafsegolnarrowhebrew;05B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2487
hatafsegolquarterhebrew;05B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2488
hatafsegolwidehebrew;05B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2489
hbar;0127
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2490
hbopomofo;310F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2491
hbrevebelow;1E2B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2492
hcedilla;1E29
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2493
hcircle;24D7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2494
hcircumflex;0125
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2495
hdieresis;1E27
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2496
hdotaccent;1E23
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2497
hdotbelow;1E25
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2498
he;05D4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2499
heart;2665
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2500
heartsuitblack;2665
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2501
heartsuitwhite;2661
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2502
hedagesh;FB34
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2503
hedageshhebrew;FB34
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2504
hehaltonearabic;06C1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2505
heharabic;0647
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2506
hehebrew;05D4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2507
hehfinalaltonearabic;FBA7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2508
hehfinalalttwoarabic;FEEA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2509
hehfinalarabic;FEEA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2510
hehhamzaabovefinalarabic;FBA5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2511
hehhamzaaboveisolatedarabic;FBA4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2512
hehinitialaltonearabic;FBA8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2513
hehinitialarabic;FEEB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2514
hehiragana;3078
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2515
hehmedialaltonearabic;FBA9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2516
hehmedialarabic;FEEC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2517
heiseierasquare;337B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2518
hekatakana;30D8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2519
hekatakanahalfwidth;FF8D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2520
hekutaarusquare;3336
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2521
henghook;0267
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2522
herutusquare;3339
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2523
het;05D7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2524
hethebrew;05D7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2525
hhook;0266
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2526
hhooksuperior;02B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2527
hieuhacirclekorean;327B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2528
hieuhaparenkorean;321B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2529
hieuhcirclekorean;326D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2530
hieuhkorean;314E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2531
hieuhparenkorean;320D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2532
hihiragana;3072
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2533
hikatakana;30D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2534
hikatakanahalfwidth;FF8B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2535
hiriq;05B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2536
hiriq14;05B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2537
hiriq21;05B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2538
hiriq2d;05B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2539
hiriqhebrew;05B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2540
hiriqnarrowhebrew;05B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2541
hiriqquarterhebrew;05B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2542
hiriqwidehebrew;05B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2543
hlinebelow;1E96
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2544
hmonospace;FF48
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2545
hoarmenian;0570
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2546
hohipthai;0E2B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2547
hohiragana;307B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2548
hokatakana;30DB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2549
hokatakanahalfwidth;FF8E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2550
holam;05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2551
holam19;05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2552
holam26;05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2553
holam32;05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2554
holamhebrew;05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2555
holamnarrowhebrew;05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2556
holamquarterhebrew;05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2557
holamwidehebrew;05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2558
honokhukthai;0E2E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2559
hookabovecomb;0309
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2560
hookcmb;0309
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2561
hookpalatalizedbelowcmb;0321
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2562
hookretroflexbelowcmb;0322
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2563
hoonsquare;3342
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2564
horicoptic;03E9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2565
horizontalbar;2015
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2566
horncmb;031B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2567
hotsprings;2668
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2568
house;2302
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2569
hparen;24A3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2570
hsuperior;02B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2571
hturned;0265
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2572
huhiragana;3075
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2573
huiitosquare;3333
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2574
hukatakana;30D5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2575
hukatakanahalfwidth;FF8C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2576
hungarumlaut;02DD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2577
hungarumlautcmb;030B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2578
hv;0195
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2579
hyphen;002D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2580
hypheninferior;F6E5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2581
hyphenmonospace;FF0D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2582
hyphensmall;FE63
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2583
hyphensuperior;F6E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2584
hyphentwo;2010
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2585
i;0069
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2586
iacute;00ED
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2587
iacyrillic;044F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2588
ibengali;0987
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2589
ibopomofo;3127
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2590
ibreve;012D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2591
icaron;01D0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2592
icircle;24D8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2593
icircumflex;00EE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2594
icyrillic;0456
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2595
idblgrave;0209
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2596
ideographearthcircle;328F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2597
ideographfirecircle;328B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2598
ideographicallianceparen;323F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2599
ideographiccallparen;323A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2600
ideographiccentrecircle;32A5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2601
ideographicclose;3006
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2602
ideographiccomma;3001
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2603
ideographiccommaleft;FF64
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2604
ideographiccongratulationparen;3237
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2605
ideographiccorrectcircle;32A3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2606
ideographicearthparen;322F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2607
ideographicenterpriseparen;323D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2608
ideographicexcellentcircle;329D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2609
ideographicfestivalparen;3240
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2610
ideographicfinancialcircle;3296
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2611
ideographicfinancialparen;3236
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2612
ideographicfireparen;322B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2613
ideographichaveparen;3232
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2614
ideographichighcircle;32A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2615
ideographiciterationmark;3005
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2616
ideographiclaborcircle;3298
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2617
ideographiclaborparen;3238
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2618
ideographicleftcircle;32A7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2619
ideographiclowcircle;32A6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2620
ideographicmedicinecircle;32A9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2621
ideographicmetalparen;322E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2622
ideographicmoonparen;322A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2623
ideographicnameparen;3234
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2624
ideographicperiod;3002
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2625
ideographicprintcircle;329E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2626
ideographicreachparen;3243
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2627
ideographicrepresentparen;3239
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2628
ideographicresourceparen;323E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2629
ideographicrightcircle;32A8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2630
ideographicsecretcircle;3299
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2631
ideographicselfparen;3242
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2632
ideographicsocietyparen;3233
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2633
ideographicspace;3000
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2634
ideographicspecialparen;3235
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2635
ideographicstockparen;3231
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2636
ideographicstudyparen;323B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2637
ideographicsunparen;3230
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2638
ideographicsuperviseparen;323C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2639
ideographicwaterparen;322C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2640
ideographicwoodparen;322D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2641
ideographiczero;3007
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2642
ideographmetalcircle;328E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2643
ideographmooncircle;328A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2644
ideographnamecircle;3294
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2645
ideographsuncircle;3290
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2646
ideographwatercircle;328C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2647
ideographwoodcircle;328D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2648
ideva;0907
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2649
idieresis;00EF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2650
idieresisacute;1E2F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2651
idieresiscyrillic;04E5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2652
idotbelow;1ECB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2653
iebrevecyrillic;04D7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2654
iecyrillic;0435
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2655
ieungacirclekorean;3275
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2656
ieungaparenkorean;3215
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2657
ieungcirclekorean;3267
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2658
ieungkorean;3147
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2659
ieungparenkorean;3207
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2660
igrave;00EC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2661
igujarati;0A87
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2662
igurmukhi;0A07
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2663
ihiragana;3044
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2664
ihookabove;1EC9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2665
iibengali;0988
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2666
iicyrillic;0438
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2667
iideva;0908
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2668
iigujarati;0A88
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2669
iigurmukhi;0A08
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2670
iimatragurmukhi;0A40
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2671
iinvertedbreve;020B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2672
iishortcyrillic;0439
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2673
iivowelsignbengali;09C0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2674
iivowelsigndeva;0940
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2675
iivowelsigngujarati;0AC0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2676
ij;0133
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2677
ikatakana;30A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2678
ikatakanahalfwidth;FF72
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2679
ikorean;3163
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2680
ilde;02DC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2681
iluyhebrew;05AC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2682
imacron;012B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2683
imacroncyrillic;04E3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2684
imageorapproximatelyequal;2253
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2685
imatragurmukhi;0A3F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2686
imonospace;FF49
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2687
increment;2206
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2688
infinity;221E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2689
iniarmenian;056B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2690
integral;222B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2691
integralbottom;2321
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2692
integralbt;2321
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2693
integralex;F8F5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2694
integraltop;2320
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2695
integraltp;2320
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2696
intersection;2229
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2697
intisquare;3305
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2698
invbullet;25D8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2699
invcircle;25D9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2700
invsmileface;263B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2701
iocyrillic;0451
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2702
iogonek;012F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2703
iota;03B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2704
iotadieresis;03CA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2705
iotadieresistonos;0390
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2706
iotalatin;0269
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2707
iotatonos;03AF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2708
iparen;24A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2709
irigurmukhi;0A72
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2710
ismallhiragana;3043
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2711
ismallkatakana;30A3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2712
ismallkatakanahalfwidth;FF68
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2713
issharbengali;09FA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2714
istroke;0268
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2715
isuperior;F6ED
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2716
iterationhiragana;309D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2717
iterationkatakana;30FD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2718
itilde;0129
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2719
itildebelow;1E2D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2720
iubopomofo;3129
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2721
iucyrillic;044E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2722
ivowelsignbengali;09BF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2723
ivowelsigndeva;093F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2724
ivowelsigngujarati;0ABF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2725
izhitsacyrillic;0475
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2726
izhitsadblgravecyrillic;0477
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2727
j;006A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2728
jaarmenian;0571
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2729
jabengali;099C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2730
jadeva;091C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2731
jagujarati;0A9C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2732
jagurmukhi;0A1C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2733
jbopomofo;3110
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2734
jcaron;01F0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2735
jcircle;24D9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2736
jcircumflex;0135
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2737
jcrossedtail;029D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2738
jdotlessstroke;025F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2739
jecyrillic;0458
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2740
jeemarabic;062C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2741
jeemfinalarabic;FE9E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2742
jeeminitialarabic;FE9F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2743
jeemmedialarabic;FEA0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2744
jeharabic;0698
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2745
jehfinalarabic;FB8B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2746
jhabengali;099D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2747
jhadeva;091D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2748
jhagujarati;0A9D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2749
jhagurmukhi;0A1D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2750
jheharmenian;057B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2751
jis;3004
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2752
jmonospace;FF4A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2753
jparen;24A5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2754
jsuperior;02B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2755
k;006B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2756
kabashkircyrillic;04A1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2757
kabengali;0995
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2758
kacute;1E31
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2759
kacyrillic;043A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2760
kadescendercyrillic;049B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2761
kadeva;0915
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2762
kaf;05DB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2763
kafarabic;0643
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2764
kafdagesh;FB3B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2765
kafdageshhebrew;FB3B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2766
kaffinalarabic;FEDA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2767
kafhebrew;05DB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2768
kafinitialarabic;FEDB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2769
kafmedialarabic;FEDC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2770
kafrafehebrew;FB4D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2771
kagujarati;0A95
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2772
kagurmukhi;0A15
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2773
kahiragana;304B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2774
kahookcyrillic;04C4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2775
kakatakana;30AB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2776
kakatakanahalfwidth;FF76
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2777
kappa;03BA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2778
kappasymbolgreek;03F0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2779
kapyeounmieumkorean;3171
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2780
kapyeounphieuphkorean;3184
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2781
kapyeounpieupkorean;3178
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2782
kapyeounssangpieupkorean;3179
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2783
karoriisquare;330D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2784
kashidaautoarabic;0640
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2785
kashidaautonosidebearingarabic;0640
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2786
kasmallkatakana;30F5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2787
kasquare;3384
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2788
kasraarabic;0650
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2789
kasratanarabic;064D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2790
kastrokecyrillic;049F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2791
katahiraprolongmarkhalfwidth;FF70
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2792
kaverticalstrokecyrillic;049D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2793
kbopomofo;310E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2794
kcalsquare;3389
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2795
kcaron;01E9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2796
kcedilla;0137
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2797
kcircle;24DA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2798
kcommaaccent;0137
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2799
kdotbelow;1E33
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2800
keharmenian;0584
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2801
kehiragana;3051
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2802
kekatakana;30B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2803
kekatakanahalfwidth;FF79
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2804
kenarmenian;056F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2805
kesmallkatakana;30F6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2806
kgreenlandic;0138
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2807
khabengali;0996
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2808
khacyrillic;0445
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2809
khadeva;0916
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2810
khagujarati;0A96
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2811
khagurmukhi;0A16
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2812
khaharabic;062E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2813
khahfinalarabic;FEA6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2814
khahinitialarabic;FEA7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2815
khahmedialarabic;FEA8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2816
kheicoptic;03E7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2817
khhadeva;0959
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2818
khhagurmukhi;0A59
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2819
khieukhacirclekorean;3278
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2820
khieukhaparenkorean;3218
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2821
khieukhcirclekorean;326A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2822
khieukhkorean;314B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2823
khieukhparenkorean;320A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2824
khokhaithai;0E02
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2825
khokhonthai;0E05
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2826
khokhuatthai;0E03
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2827
khokhwaithai;0E04
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2828
khomutthai;0E5B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2829
khook;0199
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2830
khorakhangthai;0E06
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2831
khzsquare;3391
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2832
kihiragana;304D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2833
kikatakana;30AD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2834
kikatakanahalfwidth;FF77
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2835
kiroguramusquare;3315
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2836
kiromeetorusquare;3316
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2837
kirosquare;3314
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2838
kiyeokacirclekorean;326E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2839
kiyeokaparenkorean;320E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2840
kiyeokcirclekorean;3260
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2841
kiyeokkorean;3131
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2842
kiyeokparenkorean;3200
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2843
kiyeoksioskorean;3133
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2844
kjecyrillic;045C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2845
klinebelow;1E35
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2846
klsquare;3398
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2847
kmcubedsquare;33A6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2848
kmonospace;FF4B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2849
kmsquaredsquare;33A2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2850
kohiragana;3053
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2851
kohmsquare;33C0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2852
kokaithai;0E01
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2853
kokatakana;30B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2854
kokatakanahalfwidth;FF7A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2855
kooposquare;331E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2856
koppacyrillic;0481
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2857
koreanstandardsymbol;327F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2858
koroniscmb;0343
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2859
kparen;24A6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2860
kpasquare;33AA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2861
ksicyrillic;046F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2862
ktsquare;33CF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2863
kturned;029E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2864
kuhiragana;304F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2865
kukatakana;30AF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2866
kukatakanahalfwidth;FF78
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2867
kvsquare;33B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2868
kwsquare;33BE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2869
l;006C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2870
labengali;09B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2871
lacute;013A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2872
ladeva;0932
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2873
lagujarati;0AB2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2874
lagurmukhi;0A32
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2875
lakkhangyaothai;0E45
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2876
lamaleffinalarabic;FEFC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2877
lamalefhamzaabovefinalarabic;FEF8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2878
lamalefhamzaaboveisolatedarabic;FEF7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2879
lamalefhamzabelowfinalarabic;FEFA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2880
lamalefhamzabelowisolatedarabic;FEF9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2881
lamalefisolatedarabic;FEFB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2882
lamalefmaddaabovefinalarabic;FEF6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2883
lamalefmaddaaboveisolatedarabic;FEF5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2884
lamarabic;0644
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2885
lambda;03BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2886
lambdastroke;019B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2887
lamed;05DC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2888
lameddagesh;FB3C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2889
lameddageshhebrew;FB3C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2890
lamedhebrew;05DC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2891
lamedholam;05DC 05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2892
lamedholamdagesh;05DC 05B9 05BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2893
lamedholamdageshhebrew;05DC 05B9 05BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2894
lamedholamhebrew;05DC 05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2895
lamfinalarabic;FEDE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2896
lamhahinitialarabic;FCCA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2897
laminitialarabic;FEDF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2898
lamjeeminitialarabic;FCC9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2899
lamkhahinitialarabic;FCCB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2900
lamlamhehisolatedarabic;FDF2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2901
lammedialarabic;FEE0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2902
lammeemhahinitialarabic;FD88
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2903
lammeeminitialarabic;FCCC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2904
lammeemjeeminitialarabic;FEDF FEE4 FEA0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2905
lammeemkhahinitialarabic;FEDF FEE4 FEA8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2906
largecircle;25EF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2907
lbar;019A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2908
lbelt;026C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2909
lbopomofo;310C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2910
lcaron;013E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2911
lcedilla;013C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2912
lcircle;24DB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2913
lcircumflexbelow;1E3D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2914
lcommaaccent;013C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2915
ldot;0140
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2916
ldotaccent;0140
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2917
ldotbelow;1E37
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2918
ldotbelowmacron;1E39
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2919
leftangleabovecmb;031A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2920
lefttackbelowcmb;0318
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2921
less;003C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2922
lessequal;2264
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2923
lessequalorgreater;22DA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2924
lessmonospace;FF1C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2925
lessorequivalent;2272
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2926
lessorgreater;2276
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2927
lessoverequal;2266
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2928
lesssmall;FE64
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2929
lezh;026E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2930
lfblock;258C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2931
lhookretroflex;026D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2932
lira;20A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2933
liwnarmenian;056C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2934
lj;01C9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2935
ljecyrillic;0459
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2936
ll;F6C0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2937
lladeva;0933
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2938
llagujarati;0AB3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2939
llinebelow;1E3B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2940
llladeva;0934
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2941
llvocalicbengali;09E1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2942
llvocalicdeva;0961
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2943
llvocalicvowelsignbengali;09E3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2944
llvocalicvowelsigndeva;0963
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2945
lmiddletilde;026B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2946
lmonospace;FF4C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2947
lmsquare;33D0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2948
lochulathai;0E2C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2949
logicaland;2227
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2950
logicalnot;00AC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2951
logicalnotreversed;2310
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2952
logicalor;2228
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2953
lolingthai;0E25
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2954
longs;017F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2955
lowlinecenterline;FE4E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2956
lowlinecmb;0332
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2957
lowlinedashed;FE4D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2958
lozenge;25CA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2959
lparen;24A7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2960
lslash;0142
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2961
lsquare;2113
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2962
lsuperior;F6EE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2963
ltshade;2591
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2964
luthai;0E26
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2965
lvocalicbengali;098C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2966
lvocalicdeva;090C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2967
lvocalicvowelsignbengali;09E2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2968
lvocalicvowelsigndeva;0962
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2969
lxsquare;33D3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2970
m;006D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2971
mabengali;09AE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2972
macron;00AF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2973
macronbelowcmb;0331
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2974
macroncmb;0304
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2975
macronlowmod;02CD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2976
macronmonospace;FFE3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2977
macute;1E3F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2978
madeva;092E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2979
magujarati;0AAE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2980
magurmukhi;0A2E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2981
mahapakhhebrew;05A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2982
mahapakhlefthebrew;05A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2983
mahiragana;307E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2984
maichattawalowleftthai;F895
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2985
maichattawalowrightthai;F894
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2986
maichattawathai;0E4B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2987
maichattawaupperleftthai;F893
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2988
maieklowleftthai;F88C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2989
maieklowrightthai;F88B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2990
maiekthai;0E48
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2991
maiekupperleftthai;F88A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2992
maihanakatleftthai;F884
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2993
maihanakatthai;0E31
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2994
maitaikhuleftthai;F889
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2995
maitaikhuthai;0E47
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2996
maitholowleftthai;F88F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2997
maitholowrightthai;F88E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2998
maithothai;0E49
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  2999
maithoupperleftthai;F88D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3000
maitrilowleftthai;F892
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3001
maitrilowrightthai;F891
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3002
maitrithai;0E4A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3003
maitriupperleftthai;F890
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3004
maiyamokthai;0E46
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3005
makatakana;30DE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3006
makatakanahalfwidth;FF8F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3007
male;2642
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3008
mansyonsquare;3347
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3009
maqafhebrew;05BE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3010
mars;2642
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3011
masoracirclehebrew;05AF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3012
masquare;3383
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3013
mbopomofo;3107
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3014
mbsquare;33D4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3015
mcircle;24DC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3016
mcubedsquare;33A5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3017
mdotaccent;1E41
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3018
mdotbelow;1E43
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3019
meemarabic;0645
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3020
meemfinalarabic;FEE2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3021
meeminitialarabic;FEE3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3022
meemmedialarabic;FEE4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3023
meemmeeminitialarabic;FCD1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3024
meemmeemisolatedarabic;FC48
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3025
meetorusquare;334D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3026
mehiragana;3081
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3027
meizierasquare;337E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3028
mekatakana;30E1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3029
mekatakanahalfwidth;FF92
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3030
mem;05DE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3031
memdagesh;FB3E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3032
memdageshhebrew;FB3E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3033
memhebrew;05DE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3034
menarmenian;0574
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3035
merkhahebrew;05A5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3036
merkhakefulahebrew;05A6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3037
merkhakefulalefthebrew;05A6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3038
merkhalefthebrew;05A5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3039
mhook;0271
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3040
mhzsquare;3392
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3041
middledotkatakanahalfwidth;FF65
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3042
middot;00B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3043
mieumacirclekorean;3272
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3044
mieumaparenkorean;3212
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3045
mieumcirclekorean;3264
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3046
mieumkorean;3141
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3047
mieumpansioskorean;3170
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3048
mieumparenkorean;3204
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3049
mieumpieupkorean;316E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3050
mieumsioskorean;316F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3051
mihiragana;307F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3052
mikatakana;30DF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3053
mikatakanahalfwidth;FF90
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3054
minus;2212
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3055
minusbelowcmb;0320
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3056
minuscircle;2296
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3057
minusmod;02D7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3058
minusplus;2213
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3059
minute;2032
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3060
miribaarusquare;334A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3061
mirisquare;3349
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3062
mlonglegturned;0270
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3063
mlsquare;3396
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3064
mmcubedsquare;33A3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3065
mmonospace;FF4D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3066
mmsquaredsquare;339F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3067
mohiragana;3082
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3068
mohmsquare;33C1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3069
mokatakana;30E2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3070
mokatakanahalfwidth;FF93
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3071
molsquare;33D6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3072
momathai;0E21
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3073
moverssquare;33A7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3074
moverssquaredsquare;33A8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3075
mparen;24A8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3076
mpasquare;33AB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3077
mssquare;33B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3078
msuperior;F6EF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3079
mturned;026F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3080
mu;00B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3081
mu1;00B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3082
muasquare;3382
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3083
muchgreater;226B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3084
muchless;226A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3085
mufsquare;338C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3086
mugreek;03BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3087
mugsquare;338D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3088
muhiragana;3080
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3089
mukatakana;30E0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3090
mukatakanahalfwidth;FF91
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3091
mulsquare;3395
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3092
multiply;00D7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3093
mumsquare;339B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3094
munahhebrew;05A3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3095
munahlefthebrew;05A3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3096
musicalnote;266A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3097
musicalnotedbl;266B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3098
musicflatsign;266D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3099
musicsharpsign;266F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3100
mussquare;33B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3101
muvsquare;33B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3102
muwsquare;33BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3103
mvmegasquare;33B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3104
mvsquare;33B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3105
mwmegasquare;33BF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3106
mwsquare;33BD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3107
n;006E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3108
nabengali;09A8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3109
nabla;2207
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3110
nacute;0144
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3111
nadeva;0928
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3112
nagujarati;0AA8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3113
nagurmukhi;0A28
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3114
nahiragana;306A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3115
nakatakana;30CA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3116
nakatakanahalfwidth;FF85
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3117
napostrophe;0149
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3118
nasquare;3381
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3119
nbopomofo;310B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3120
nbspace;00A0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3121
ncaron;0148
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3122
ncedilla;0146
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3123
ncircle;24DD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3124
ncircumflexbelow;1E4B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3125
ncommaaccent;0146
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3126
ndotaccent;1E45
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3127
ndotbelow;1E47
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3128
nehiragana;306D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3129
nekatakana;30CD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3130
nekatakanahalfwidth;FF88
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3131
newsheqelsign;20AA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3132
nfsquare;338B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3133
ngabengali;0999
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3134
ngadeva;0919
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3135
ngagujarati;0A99
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3136
ngagurmukhi;0A19
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3137
ngonguthai;0E07
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3138
nhiragana;3093
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3139
nhookleft;0272
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3140
nhookretroflex;0273
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3141
nieunacirclekorean;326F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3142
nieunaparenkorean;320F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3143
nieuncieuckorean;3135
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3144
nieuncirclekorean;3261
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3145
nieunhieuhkorean;3136
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3146
nieunkorean;3134
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3147
nieunpansioskorean;3168
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3148
nieunparenkorean;3201
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3149
nieunsioskorean;3167
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3150
nieuntikeutkorean;3166
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3151
nihiragana;306B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3152
nikatakana;30CB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3153
nikatakanahalfwidth;FF86
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3154
nikhahitleftthai;F899
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3155
nikhahitthai;0E4D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3156
nine;0039
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3157
ninearabic;0669
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3158
ninebengali;09EF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3159
ninecircle;2468
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3160
ninecircleinversesansserif;2792
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3161
ninedeva;096F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3162
ninegujarati;0AEF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3163
ninegurmukhi;0A6F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3164
ninehackarabic;0669
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3165
ninehangzhou;3029
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3166
nineideographicparen;3228
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3167
nineinferior;2089
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3168
ninemonospace;FF19
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3169
nineoldstyle;F739
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3170
nineparen;247C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3171
nineperiod;2490
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3172
ninepersian;06F9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3173
nineroman;2178
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3174
ninesuperior;2079
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3175
nineteencircle;2472
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3176
nineteenparen;2486
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3177
nineteenperiod;249A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3178
ninethai;0E59
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3179
nj;01CC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3180
njecyrillic;045A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3181
nkatakana;30F3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3182
nkatakanahalfwidth;FF9D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3183
nlegrightlong;019E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3184
nlinebelow;1E49
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3185
nmonospace;FF4E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3186
nmsquare;339A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3187
nnabengali;09A3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3188
nnadeva;0923
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3189
nnagujarati;0AA3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3190
nnagurmukhi;0A23
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3191
nnnadeva;0929
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3192
nohiragana;306E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3193
nokatakana;30CE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3194
nokatakanahalfwidth;FF89
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3195
nonbreakingspace;00A0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3196
nonenthai;0E13
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3197
nonuthai;0E19
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3198
noonarabic;0646
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3199
noonfinalarabic;FEE6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3200
noonghunnaarabic;06BA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3201
noonghunnafinalarabic;FB9F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3202
noonhehinitialarabic;FEE7 FEEC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3203
nooninitialarabic;FEE7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3204
noonjeeminitialarabic;FCD2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3205
noonjeemisolatedarabic;FC4B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3206
noonmedialarabic;FEE8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3207
noonmeeminitialarabic;FCD5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3208
noonmeemisolatedarabic;FC4E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3209
noonnoonfinalarabic;FC8D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3210
notcontains;220C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3211
notelement;2209
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3212
notelementof;2209
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3213
notequal;2260
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3214
notgreater;226F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3215
notgreaternorequal;2271
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3216
notgreaternorless;2279
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3217
notidentical;2262
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3218
notless;226E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3219
notlessnorequal;2270
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3220
notparallel;2226
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3221
notprecedes;2280
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3222
notsubset;2284
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3223
notsucceeds;2281
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3224
notsuperset;2285
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3225
nowarmenian;0576
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3226
nparen;24A9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3227
nssquare;33B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3228
nsuperior;207F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3229
ntilde;00F1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3230
nu;03BD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3231
nuhiragana;306C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3232
nukatakana;30CC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3233
nukatakanahalfwidth;FF87
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3234
nuktabengali;09BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3235
nuktadeva;093C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3236
nuktagujarati;0ABC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3237
nuktagurmukhi;0A3C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3238
numbersign;0023
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3239
numbersignmonospace;FF03
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3240
numbersignsmall;FE5F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3241
numeralsigngreek;0374
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3242
numeralsignlowergreek;0375
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3243
numero;2116
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3244
nun;05E0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3245
nundagesh;FB40
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3246
nundageshhebrew;FB40
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3247
nunhebrew;05E0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3248
nvsquare;33B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3249
nwsquare;33BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3250
nyabengali;099E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3251
nyadeva;091E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3252
nyagujarati;0A9E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3253
nyagurmukhi;0A1E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3254
o;006F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3255
oacute;00F3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3256
oangthai;0E2D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3257
obarred;0275
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3258
obarredcyrillic;04E9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3259
obarreddieresiscyrillic;04EB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3260
obengali;0993
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3261
obopomofo;311B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3262
obreve;014F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3263
ocandradeva;0911
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3264
ocandragujarati;0A91
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3265
ocandravowelsigndeva;0949
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3266
ocandravowelsigngujarati;0AC9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3267
ocaron;01D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3268
ocircle;24DE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3269
ocircumflex;00F4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3270
ocircumflexacute;1ED1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3271
ocircumflexdotbelow;1ED9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3272
ocircumflexgrave;1ED3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3273
ocircumflexhookabove;1ED5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3274
ocircumflextilde;1ED7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3275
ocyrillic;043E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3276
odblacute;0151
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3277
odblgrave;020D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3278
odeva;0913
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3279
odieresis;00F6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3280
odieresiscyrillic;04E7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3281
odotbelow;1ECD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3282
oe;0153
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3283
oekorean;315A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3284
ogonek;02DB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3285
ogonekcmb;0328
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3286
ograve;00F2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3287
ogujarati;0A93
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3288
oharmenian;0585
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3289
ohiragana;304A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3290
ohookabove;1ECF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3291
ohorn;01A1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3292
ohornacute;1EDB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3293
ohorndotbelow;1EE3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3294
ohorngrave;1EDD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3295
ohornhookabove;1EDF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3296
ohorntilde;1EE1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3297
ohungarumlaut;0151
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3298
oi;01A3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3299
oinvertedbreve;020F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3300
okatakana;30AA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3301
okatakanahalfwidth;FF75
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3302
okorean;3157
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3303
olehebrew;05AB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3304
omacron;014D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3305
omacronacute;1E53
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3306
omacrongrave;1E51
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3307
omdeva;0950
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3308
omega;03C9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3309
omega1;03D6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3310
omegacyrillic;0461
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3311
omegalatinclosed;0277
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3312
omegaroundcyrillic;047B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3313
omegatitlocyrillic;047D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3314
omegatonos;03CE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3315
omgujarati;0AD0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3316
omicron;03BF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3317
omicrontonos;03CC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3318
omonospace;FF4F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3319
one;0031
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3320
onearabic;0661
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3321
onebengali;09E7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3322
onecircle;2460
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3323
onecircleinversesansserif;278A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3324
onedeva;0967
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3325
onedotenleader;2024
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3326
oneeighth;215B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3327
onefitted;F6DC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3328
onegujarati;0AE7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3329
onegurmukhi;0A67
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3330
onehackarabic;0661
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3331
onehalf;00BD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3332
onehangzhou;3021
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3333
oneideographicparen;3220
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3334
oneinferior;2081
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3335
onemonospace;FF11
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3336
onenumeratorbengali;09F4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3337
oneoldstyle;F731
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3338
oneparen;2474
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3339
oneperiod;2488
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3340
onepersian;06F1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3341
onequarter;00BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3342
oneroman;2170
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3343
onesuperior;00B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3344
onethai;0E51
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3345
onethird;2153
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3346
oogonek;01EB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3347
oogonekmacron;01ED
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3348
oogurmukhi;0A13
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3349
oomatragurmukhi;0A4B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3350
oopen;0254
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3351
oparen;24AA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3352
openbullet;25E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3353
option;2325
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3354
ordfeminine;00AA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3355
ordmasculine;00BA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3356
orthogonal;221F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3357
oshortdeva;0912
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3358
oshortvowelsigndeva;094A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3359
oslash;00F8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3360
oslashacute;01FF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3361
osmallhiragana;3049
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3362
osmallkatakana;30A9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3363
osmallkatakanahalfwidth;FF6B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3364
ostrokeacute;01FF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3365
osuperior;F6F0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3366
otcyrillic;047F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3367
otilde;00F5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3368
otildeacute;1E4D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3369
otildedieresis;1E4F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3370
oubopomofo;3121
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3371
overline;203E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3372
overlinecenterline;FE4A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3373
overlinecmb;0305
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3374
overlinedashed;FE49
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3375
overlinedblwavy;FE4C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3376
overlinewavy;FE4B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3377
overscore;00AF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3378
ovowelsignbengali;09CB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3379
ovowelsigndeva;094B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3380
ovowelsigngujarati;0ACB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3381
p;0070
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3382
paampssquare;3380
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3383
paasentosquare;332B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3384
pabengali;09AA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3385
pacute;1E55
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3386
padeva;092A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3387
pagedown;21DF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3388
pageup;21DE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3389
pagujarati;0AAA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3390
pagurmukhi;0A2A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3391
pahiragana;3071
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3392
paiyannoithai;0E2F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3393
pakatakana;30D1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3394
palatalizationcyrilliccmb;0484
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3395
palochkacyrillic;04C0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3396
pansioskorean;317F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3397
paragraph;00B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3398
parallel;2225
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3399
parenleft;0028
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3400
parenleftaltonearabic;FD3E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3401
parenleftbt;F8ED
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3402
parenleftex;F8EC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3403
parenleftinferior;208D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3404
parenleftmonospace;FF08
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3405
parenleftsmall;FE59
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3406
parenleftsuperior;207D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3407
parenlefttp;F8EB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3408
parenleftvertical;FE35
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3409
parenright;0029
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3410
parenrightaltonearabic;FD3F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3411
parenrightbt;F8F8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3412
parenrightex;F8F7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3413
parenrightinferior;208E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3414
parenrightmonospace;FF09
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3415
parenrightsmall;FE5A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3416
parenrightsuperior;207E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3417
parenrighttp;F8F6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3418
parenrightvertical;FE36
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3419
partialdiff;2202
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3420
paseqhebrew;05C0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3421
pashtahebrew;0599
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3422
pasquare;33A9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3423
patah;05B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3424
patah11;05B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3425
patah1d;05B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3426
patah2a;05B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3427
patahhebrew;05B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3428
patahnarrowhebrew;05B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3429
patahquarterhebrew;05B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3430
patahwidehebrew;05B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3431
pazerhebrew;05A1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3432
pbopomofo;3106
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3433
pcircle;24DF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3434
pdotaccent;1E57
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3435
pe;05E4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3436
pecyrillic;043F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3437
pedagesh;FB44
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3438
pedageshhebrew;FB44
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3439
peezisquare;333B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3440
pefinaldageshhebrew;FB43
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3441
peharabic;067E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3442
peharmenian;057A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3443
pehebrew;05E4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3444
pehfinalarabic;FB57
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3445
pehinitialarabic;FB58
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3446
pehiragana;307A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3447
pehmedialarabic;FB59
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3448
pekatakana;30DA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3449
pemiddlehookcyrillic;04A7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3450
perafehebrew;FB4E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3451
percent;0025
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3452
percentarabic;066A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3453
percentmonospace;FF05
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3454
percentsmall;FE6A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3455
period;002E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3456
periodarmenian;0589
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3457
periodcentered;00B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3458
periodhalfwidth;FF61
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3459
periodinferior;F6E7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3460
periodmonospace;FF0E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3461
periodsmall;FE52
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3462
periodsuperior;F6E8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3463
perispomenigreekcmb;0342
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3464
perpendicular;22A5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3465
perthousand;2030
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3466
peseta;20A7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3467
pfsquare;338A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3468
phabengali;09AB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3469
phadeva;092B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3470
phagujarati;0AAB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3471
phagurmukhi;0A2B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3472
phi;03C6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3473
phi1;03D5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3474
phieuphacirclekorean;327A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3475
phieuphaparenkorean;321A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3476
phieuphcirclekorean;326C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3477
phieuphkorean;314D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3478
phieuphparenkorean;320C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3479
philatin;0278
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3480
phinthuthai;0E3A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3481
phisymbolgreek;03D5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3482
phook;01A5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3483
phophanthai;0E1E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3484
phophungthai;0E1C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3485
phosamphaothai;0E20
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3486
pi;03C0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3487
pieupacirclekorean;3273
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3488
pieupaparenkorean;3213
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3489
pieupcieuckorean;3176
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3490
pieupcirclekorean;3265
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3491
pieupkiyeokkorean;3172
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3492
pieupkorean;3142
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3493
pieupparenkorean;3205
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3494
pieupsioskiyeokkorean;3174
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3495
pieupsioskorean;3144
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3496
pieupsiostikeutkorean;3175
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3497
pieupthieuthkorean;3177
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3498
pieuptikeutkorean;3173
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3499
pihiragana;3074
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3500
pikatakana;30D4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3501
pisymbolgreek;03D6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3502
piwrarmenian;0583
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3503
plus;002B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3504
plusbelowcmb;031F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3505
pluscircle;2295
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3506
plusminus;00B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3507
plusmod;02D6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3508
plusmonospace;FF0B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3509
plussmall;FE62
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3510
plussuperior;207A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3511
pmonospace;FF50
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3512
pmsquare;33D8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3513
pohiragana;307D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3514
pointingindexdownwhite;261F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3515
pointingindexleftwhite;261C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3516
pointingindexrightwhite;261E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3517
pointingindexupwhite;261D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3518
pokatakana;30DD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3519
poplathai;0E1B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3520
postalmark;3012
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3521
postalmarkface;3020
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3522
pparen;24AB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3523
precedes;227A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3524
prescription;211E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3525
primemod;02B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3526
primereversed;2035
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3527
product;220F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3528
projective;2305
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3529
prolongedkana;30FC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3530
propellor;2318
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3531
propersubset;2282
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3532
propersuperset;2283
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3533
proportion;2237
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3534
proportional;221D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3535
psi;03C8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3536
psicyrillic;0471
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3537
psilipneumatacyrilliccmb;0486
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3538
pssquare;33B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3539
puhiragana;3077
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3540
pukatakana;30D7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3541
pvsquare;33B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3542
pwsquare;33BA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3543
q;0071
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3544
qadeva;0958
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3545
qadmahebrew;05A8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3546
qafarabic;0642
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3547
qaffinalarabic;FED6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3548
qafinitialarabic;FED7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3549
qafmedialarabic;FED8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3550
qamats;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3551
qamats10;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3552
qamats1a;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3553
qamats1c;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3554
qamats27;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3555
qamats29;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3556
qamats33;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3557
qamatsde;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3558
qamatshebrew;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3559
qamatsnarrowhebrew;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3560
qamatsqatanhebrew;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3561
qamatsqatannarrowhebrew;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3562
qamatsqatanquarterhebrew;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3563
qamatsqatanwidehebrew;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3564
qamatsquarterhebrew;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3565
qamatswidehebrew;05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3566
qarneyparahebrew;059F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3567
qbopomofo;3111
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3568
qcircle;24E0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3569
qhook;02A0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3570
qmonospace;FF51
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3571
qof;05E7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3572
qofdagesh;FB47
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3573
qofdageshhebrew;FB47
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3574
qofhatafpatah;05E7 05B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3575
qofhatafpatahhebrew;05E7 05B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3576
qofhatafsegol;05E7 05B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3577
qofhatafsegolhebrew;05E7 05B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3578
qofhebrew;05E7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3579
qofhiriq;05E7 05B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3580
qofhiriqhebrew;05E7 05B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3581
qofholam;05E7 05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3582
qofholamhebrew;05E7 05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3583
qofpatah;05E7 05B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3584
qofpatahhebrew;05E7 05B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3585
qofqamats;05E7 05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3586
qofqamatshebrew;05E7 05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3587
qofqubuts;05E7 05BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3588
qofqubutshebrew;05E7 05BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3589
qofsegol;05E7 05B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3590
qofsegolhebrew;05E7 05B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3591
qofsheva;05E7 05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3592
qofshevahebrew;05E7 05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3593
qoftsere;05E7 05B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3594
qoftserehebrew;05E7 05B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3595
qparen;24AC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3596
quarternote;2669
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3597
qubuts;05BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3598
qubuts18;05BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3599
qubuts25;05BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3600
qubuts31;05BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3601
qubutshebrew;05BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3602
qubutsnarrowhebrew;05BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3603
qubutsquarterhebrew;05BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3604
qubutswidehebrew;05BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3605
question;003F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3606
questionarabic;061F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3607
questionarmenian;055E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3608
questiondown;00BF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3609
questiondownsmall;F7BF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3610
questiongreek;037E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3611
questionmonospace;FF1F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3612
questionsmall;F73F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3613
quotedbl;0022
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3614
quotedblbase;201E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3615
quotedblleft;201C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3616
quotedblmonospace;FF02
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3617
quotedblprime;301E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3618
quotedblprimereversed;301D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3619
quotedblright;201D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3620
quoteleft;2018
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3621
quoteleftreversed;201B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3622
quotereversed;201B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3623
quoteright;2019
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3624
quoterightn;0149
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3625
quotesinglbase;201A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3626
quotesingle;0027
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3627
quotesinglemonospace;FF07
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3628
r;0072
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3629
raarmenian;057C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3630
rabengali;09B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3631
racute;0155
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3632
radeva;0930
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3633
radical;221A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3634
radicalex;F8E5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3635
radoverssquare;33AE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3636
radoverssquaredsquare;33AF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3637
radsquare;33AD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3638
rafe;05BF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3639
rafehebrew;05BF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3640
ragujarati;0AB0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3641
ragurmukhi;0A30
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3642
rahiragana;3089
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3643
rakatakana;30E9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3644
rakatakanahalfwidth;FF97
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3645
ralowerdiagonalbengali;09F1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3646
ramiddlediagonalbengali;09F0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3647
ramshorn;0264
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3648
ratio;2236
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3649
rbopomofo;3116
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3650
rcaron;0159
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3651
rcedilla;0157
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3652
rcircle;24E1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3653
rcommaaccent;0157
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3654
rdblgrave;0211
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3655
rdotaccent;1E59
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3656
rdotbelow;1E5B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3657
rdotbelowmacron;1E5D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3658
referencemark;203B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3659
reflexsubset;2286
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3660
reflexsuperset;2287
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3661
registered;00AE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3662
registersans;F8E8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3663
registerserif;F6DA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3664
reharabic;0631
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3665
reharmenian;0580
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3666
rehfinalarabic;FEAE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3667
rehiragana;308C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3668
rehyehaleflamarabic;0631 FEF3 FE8E 0644
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3669
rekatakana;30EC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3670
rekatakanahalfwidth;FF9A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3671
resh;05E8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3672
reshdageshhebrew;FB48
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3673
reshhatafpatah;05E8 05B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3674
reshhatafpatahhebrew;05E8 05B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3675
reshhatafsegol;05E8 05B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3676
reshhatafsegolhebrew;05E8 05B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3677
reshhebrew;05E8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3678
reshhiriq;05E8 05B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3679
reshhiriqhebrew;05E8 05B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3680
reshholam;05E8 05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3681
reshholamhebrew;05E8 05B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3682
reshpatah;05E8 05B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3683
reshpatahhebrew;05E8 05B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3684
reshqamats;05E8 05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3685
reshqamatshebrew;05E8 05B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3686
reshqubuts;05E8 05BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3687
reshqubutshebrew;05E8 05BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3688
reshsegol;05E8 05B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3689
reshsegolhebrew;05E8 05B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3690
reshsheva;05E8 05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3691
reshshevahebrew;05E8 05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3692
reshtsere;05E8 05B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3693
reshtserehebrew;05E8 05B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3694
reversedtilde;223D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3695
reviahebrew;0597
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3696
reviamugrashhebrew;0597
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3697
revlogicalnot;2310
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3698
rfishhook;027E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3699
rfishhookreversed;027F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3700
rhabengali;09DD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3701
rhadeva;095D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3702
rho;03C1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3703
rhook;027D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3704
rhookturned;027B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3705
rhookturnedsuperior;02B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3706
rhosymbolgreek;03F1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3707
rhotichookmod;02DE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3708
rieulacirclekorean;3271
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3709
rieulaparenkorean;3211
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3710
rieulcirclekorean;3263
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3711
rieulhieuhkorean;3140
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3712
rieulkiyeokkorean;313A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3713
rieulkiyeoksioskorean;3169
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3714
rieulkorean;3139
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3715
rieulmieumkorean;313B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3716
rieulpansioskorean;316C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3717
rieulparenkorean;3203
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3718
rieulphieuphkorean;313F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3719
rieulpieupkorean;313C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3720
rieulpieupsioskorean;316B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3721
rieulsioskorean;313D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3722
rieulthieuthkorean;313E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3723
rieultikeutkorean;316A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3724
rieulyeorinhieuhkorean;316D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3725
rightangle;221F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3726
righttackbelowcmb;0319
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3727
righttriangle;22BF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3728
rihiragana;308A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3729
rikatakana;30EA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3730
rikatakanahalfwidth;FF98
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3731
ring;02DA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3732
ringbelowcmb;0325
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3733
ringcmb;030A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3734
ringhalfleft;02BF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3735
ringhalfleftarmenian;0559
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3736
ringhalfleftbelowcmb;031C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3737
ringhalfleftcentered;02D3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3738
ringhalfright;02BE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3739
ringhalfrightbelowcmb;0339
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3740
ringhalfrightcentered;02D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3741
rinvertedbreve;0213
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3742
rittorusquare;3351
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3743
rlinebelow;1E5F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3744
rlongleg;027C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3745
rlonglegturned;027A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3746
rmonospace;FF52
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3747
rohiragana;308D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3748
rokatakana;30ED
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3749
rokatakanahalfwidth;FF9B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3750
roruathai;0E23
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3751
rparen;24AD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3752
rrabengali;09DC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3753
rradeva;0931
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3754
rragurmukhi;0A5C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3755
rreharabic;0691
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3756
rrehfinalarabic;FB8D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3757
rrvocalicbengali;09E0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3758
rrvocalicdeva;0960
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3759
rrvocalicgujarati;0AE0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3760
rrvocalicvowelsignbengali;09C4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3761
rrvocalicvowelsigndeva;0944
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3762
rrvocalicvowelsigngujarati;0AC4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3763
rsuperior;F6F1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3764
rtblock;2590
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3765
rturned;0279
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3766
rturnedsuperior;02B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3767
ruhiragana;308B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3768
rukatakana;30EB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3769
rukatakanahalfwidth;FF99
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3770
rupeemarkbengali;09F2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3771
rupeesignbengali;09F3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3772
rupiah;F6DD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3773
ruthai;0E24
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3774
rvocalicbengali;098B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3775
rvocalicdeva;090B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3776
rvocalicgujarati;0A8B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3777
rvocalicvowelsignbengali;09C3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3778
rvocalicvowelsigndeva;0943
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3779
rvocalicvowelsigngujarati;0AC3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3780
s;0073
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3781
sabengali;09B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3782
sacute;015B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3783
sacutedotaccent;1E65
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3784
sadarabic;0635
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3785
sadeva;0938
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3786
sadfinalarabic;FEBA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3787
sadinitialarabic;FEBB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3788
sadmedialarabic;FEBC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3789
sagujarati;0AB8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3790
sagurmukhi;0A38
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3791
sahiragana;3055
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3792
sakatakana;30B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3793
sakatakanahalfwidth;FF7B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3794
sallallahoualayhewasallamarabic;FDFA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3795
samekh;05E1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3796
samekhdagesh;FB41
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3797
samekhdageshhebrew;FB41
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3798
samekhhebrew;05E1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3799
saraaathai;0E32
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3800
saraaethai;0E41
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3801
saraaimaimalaithai;0E44
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3802
saraaimaimuanthai;0E43
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3803
saraamthai;0E33
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3804
saraathai;0E30
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3805
saraethai;0E40
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3806
saraiileftthai;F886
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3807
saraiithai;0E35
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3808
saraileftthai;F885
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3809
saraithai;0E34
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3810
saraothai;0E42
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3811
saraueeleftthai;F888
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3812
saraueethai;0E37
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3813
saraueleftthai;F887
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3814
sarauethai;0E36
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3815
sarauthai;0E38
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3816
sarauuthai;0E39
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3817
sbopomofo;3119
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3818
scaron;0161
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3819
scarondotaccent;1E67
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3820
scedilla;015F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3821
schwa;0259
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3822
schwacyrillic;04D9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3823
schwadieresiscyrillic;04DB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3824
schwahook;025A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3825
scircle;24E2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3826
scircumflex;015D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3827
scommaaccent;0219
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3828
sdotaccent;1E61
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3829
sdotbelow;1E63
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3830
sdotbelowdotaccent;1E69
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3831
seagullbelowcmb;033C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3832
second;2033
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3833
secondtonechinese;02CA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3834
section;00A7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3835
seenarabic;0633
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3836
seenfinalarabic;FEB2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3837
seeninitialarabic;FEB3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3838
seenmedialarabic;FEB4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3839
segol;05B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3840
segol13;05B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3841
segol1f;05B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3842
segol2c;05B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3843
segolhebrew;05B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3844
segolnarrowhebrew;05B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3845
segolquarterhebrew;05B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3846
segoltahebrew;0592
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3847
segolwidehebrew;05B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3848
seharmenian;057D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3849
sehiragana;305B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3850
sekatakana;30BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3851
sekatakanahalfwidth;FF7E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3852
semicolon;003B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3853
semicolonarabic;061B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3854
semicolonmonospace;FF1B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3855
semicolonsmall;FE54
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3856
semivoicedmarkkana;309C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3857
semivoicedmarkkanahalfwidth;FF9F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3858
sentisquare;3322
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3859
sentosquare;3323
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3860
seven;0037
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3861
sevenarabic;0667
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3862
sevenbengali;09ED
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3863
sevencircle;2466
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3864
sevencircleinversesansserif;2790
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3865
sevendeva;096D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3866
seveneighths;215E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3867
sevengujarati;0AED
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3868
sevengurmukhi;0A6D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3869
sevenhackarabic;0667
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3870
sevenhangzhou;3027
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3871
sevenideographicparen;3226
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3872
seveninferior;2087
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3873
sevenmonospace;FF17
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3874
sevenoldstyle;F737
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3875
sevenparen;247A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3876
sevenperiod;248E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3877
sevenpersian;06F7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3878
sevenroman;2176
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3879
sevensuperior;2077
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3880
seventeencircle;2470
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3881
seventeenparen;2484
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3882
seventeenperiod;2498
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3883
seventhai;0E57
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3884
sfthyphen;00AD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3885
shaarmenian;0577
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3886
shabengali;09B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3887
shacyrillic;0448
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3888
shaddaarabic;0651
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3889
shaddadammaarabic;FC61
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3890
shaddadammatanarabic;FC5E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3891
shaddafathaarabic;FC60
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3892
shaddafathatanarabic;0651 064B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3893
shaddakasraarabic;FC62
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3894
shaddakasratanarabic;FC5F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3895
shade;2592
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3896
shadedark;2593
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3897
shadelight;2591
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3898
shademedium;2592
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3899
shadeva;0936
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3900
shagujarati;0AB6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3901
shagurmukhi;0A36
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3902
shalshelethebrew;0593
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3903
shbopomofo;3115
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3904
shchacyrillic;0449
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3905
sheenarabic;0634
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3906
sheenfinalarabic;FEB6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3907
sheeninitialarabic;FEB7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3908
sheenmedialarabic;FEB8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3909
sheicoptic;03E3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3910
sheqel;20AA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3911
sheqelhebrew;20AA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3912
sheva;05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3913
sheva115;05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3914
sheva15;05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3915
sheva22;05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3916
sheva2e;05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3917
shevahebrew;05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3918
shevanarrowhebrew;05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3919
shevaquarterhebrew;05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3920
shevawidehebrew;05B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3921
shhacyrillic;04BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3922
shimacoptic;03ED
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3923
shin;05E9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3924
shindagesh;FB49
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3925
shindageshhebrew;FB49
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3926
shindageshshindot;FB2C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3927
shindageshshindothebrew;FB2C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3928
shindageshsindot;FB2D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3929
shindageshsindothebrew;FB2D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3930
shindothebrew;05C1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3931
shinhebrew;05E9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3932
shinshindot;FB2A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3933
shinshindothebrew;FB2A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3934
shinsindot;FB2B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3935
shinsindothebrew;FB2B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3936
shook;0282
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3937
sigma;03C3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3938
sigma1;03C2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3939
sigmafinal;03C2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3940
sigmalunatesymbolgreek;03F2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3941
sihiragana;3057
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3942
sikatakana;30B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3943
sikatakanahalfwidth;FF7C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3944
siluqhebrew;05BD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3945
siluqlefthebrew;05BD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3946
similar;223C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3947
sindothebrew;05C2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3948
siosacirclekorean;3274
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3949
siosaparenkorean;3214
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3950
sioscieuckorean;317E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3951
sioscirclekorean;3266
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3952
sioskiyeokkorean;317A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3953
sioskorean;3145
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3954
siosnieunkorean;317B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3955
siosparenkorean;3206
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3956
siospieupkorean;317D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3957
siostikeutkorean;317C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3958
six;0036
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3959
sixarabic;0666
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3960
sixbengali;09EC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3961
sixcircle;2465
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3962
sixcircleinversesansserif;278F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3963
sixdeva;096C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3964
sixgujarati;0AEC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3965
sixgurmukhi;0A6C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3966
sixhackarabic;0666
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3967
sixhangzhou;3026
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3968
sixideographicparen;3225
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3969
sixinferior;2086
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3970
sixmonospace;FF16
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3971
sixoldstyle;F736
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3972
sixparen;2479
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3973
sixperiod;248D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3974
sixpersian;06F6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3975
sixroman;2175
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3976
sixsuperior;2076
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3977
sixteencircle;246F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3978
sixteencurrencydenominatorbengali;09F9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3979
sixteenparen;2483
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3980
sixteenperiod;2497
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3981
sixthai;0E56
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3982
slash;002F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3983
slashmonospace;FF0F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3984
slong;017F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3985
slongdotaccent;1E9B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3986
smileface;263A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3987
smonospace;FF53
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3988
sofpasuqhebrew;05C3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3989
softhyphen;00AD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3990
softsigncyrillic;044C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3991
sohiragana;305D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3992
sokatakana;30BD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3993
sokatakanahalfwidth;FF7F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3994
soliduslongoverlaycmb;0338
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3995
solidusshortoverlaycmb;0337
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3996
sorusithai;0E29
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3997
sosalathai;0E28
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3998
sosothai;0E0B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  3999
sosuathai;0E2A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4000
space;0020
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4001
spacehackarabic;0020
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4002
spade;2660
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4003
spadesuitblack;2660
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4004
spadesuitwhite;2664
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4005
sparen;24AE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4006
squarebelowcmb;033B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4007
squarecc;33C4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4008
squarecm;339D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4009
squarediagonalcrosshatchfill;25A9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4010
squarehorizontalfill;25A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4011
squarekg;338F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4012
squarekm;339E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4013
squarekmcapital;33CE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4014
squareln;33D1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4015
squarelog;33D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4016
squaremg;338E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4017
squaremil;33D5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4018
squaremm;339C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4019
squaremsquared;33A1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4020
squareorthogonalcrosshatchfill;25A6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4021
squareupperlefttolowerrightfill;25A7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4022
squareupperrighttolowerleftfill;25A8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4023
squareverticalfill;25A5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4024
squarewhitewithsmallblack;25A3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4025
srsquare;33DB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4026
ssabengali;09B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4027
ssadeva;0937
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4028
ssagujarati;0AB7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4029
ssangcieuckorean;3149
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4030
ssanghieuhkorean;3185
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4031
ssangieungkorean;3180
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4032
ssangkiyeokkorean;3132
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4033
ssangnieunkorean;3165
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4034
ssangpieupkorean;3143
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4035
ssangsioskorean;3146
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4036
ssangtikeutkorean;3138
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4037
ssuperior;F6F2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4038
sterling;00A3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4039
sterlingmonospace;FFE1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4040
strokelongoverlaycmb;0336
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4041
strokeshortoverlaycmb;0335
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4042
subset;2282
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4043
subsetnotequal;228A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4044
subsetorequal;2286
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4045
succeeds;227B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4046
suchthat;220B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4047
suhiragana;3059
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4048
sukatakana;30B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4049
sukatakanahalfwidth;FF7D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4050
sukunarabic;0652
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4051
summation;2211
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4052
sun;263C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4053
superset;2283
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4054
supersetnotequal;228B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4055
supersetorequal;2287
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4056
svsquare;33DC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4057
syouwaerasquare;337C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4058
t;0074
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4059
tabengali;09A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4060
tackdown;22A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4061
tackleft;22A3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4062
tadeva;0924
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4063
tagujarati;0AA4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4064
tagurmukhi;0A24
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4065
taharabic;0637
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4066
tahfinalarabic;FEC2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4067
tahinitialarabic;FEC3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4068
tahiragana;305F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4069
tahmedialarabic;FEC4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4070
taisyouerasquare;337D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4071
takatakana;30BF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4072
takatakanahalfwidth;FF80
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4073
tatweelarabic;0640
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4074
tau;03C4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4075
tav;05EA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4076
tavdages;FB4A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4077
tavdagesh;FB4A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4078
tavdageshhebrew;FB4A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4079
tavhebrew;05EA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4080
tbar;0167
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4081
tbopomofo;310A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4082
tcaron;0165
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4083
tccurl;02A8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4084
tcedilla;0163
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4085
tcheharabic;0686
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4086
tchehfinalarabic;FB7B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4087
tchehinitialarabic;FB7C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4088
tchehmedialarabic;FB7D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4089
tchehmeeminitialarabic;FB7C FEE4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4090
tcircle;24E3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4091
tcircumflexbelow;1E71
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4092
tcommaaccent;0163
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4093
tdieresis;1E97
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4094
tdotaccent;1E6B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4095
tdotbelow;1E6D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4096
tecyrillic;0442
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4097
tedescendercyrillic;04AD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4098
teharabic;062A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4099
tehfinalarabic;FE96
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4100
tehhahinitialarabic;FCA2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4101
tehhahisolatedarabic;FC0C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4102
tehinitialarabic;FE97
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4103
tehiragana;3066
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4104
tehjeeminitialarabic;FCA1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4105
tehjeemisolatedarabic;FC0B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4106
tehmarbutaarabic;0629
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4107
tehmarbutafinalarabic;FE94
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4108
tehmedialarabic;FE98
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4109
tehmeeminitialarabic;FCA4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4110
tehmeemisolatedarabic;FC0E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4111
tehnoonfinalarabic;FC73
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4112
tekatakana;30C6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4113
tekatakanahalfwidth;FF83
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4114
telephone;2121
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4115
telephoneblack;260E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4116
telishagedolahebrew;05A0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4117
telishaqetanahebrew;05A9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4118
tencircle;2469
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4119
tenideographicparen;3229
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4120
tenparen;247D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4121
tenperiod;2491
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4122
tenroman;2179
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4123
tesh;02A7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4124
tet;05D8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4125
tetdagesh;FB38
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4126
tetdageshhebrew;FB38
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4127
tethebrew;05D8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4128
tetsecyrillic;04B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4129
tevirhebrew;059B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4130
tevirlefthebrew;059B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4131
thabengali;09A5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4132
thadeva;0925
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4133
thagujarati;0AA5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4134
thagurmukhi;0A25
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4135
thalarabic;0630
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4136
thalfinalarabic;FEAC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4137
thanthakhatlowleftthai;F898
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4138
thanthakhatlowrightthai;F897
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4139
thanthakhatthai;0E4C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4140
thanthakhatupperleftthai;F896
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4141
theharabic;062B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4142
thehfinalarabic;FE9A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4143
thehinitialarabic;FE9B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4144
thehmedialarabic;FE9C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4145
thereexists;2203
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4146
therefore;2234
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4147
theta;03B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4148
theta1;03D1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4149
thetasymbolgreek;03D1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4150
thieuthacirclekorean;3279
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4151
thieuthaparenkorean;3219
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4152
thieuthcirclekorean;326B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4153
thieuthkorean;314C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4154
thieuthparenkorean;320B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4155
thirteencircle;246C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4156
thirteenparen;2480
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4157
thirteenperiod;2494
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4158
thonangmonthothai;0E11
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4159
thook;01AD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4160
thophuthaothai;0E12
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4161
thorn;00FE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4162
thothahanthai;0E17
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4163
thothanthai;0E10
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4164
thothongthai;0E18
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4165
thothungthai;0E16
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4166
thousandcyrillic;0482
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4167
thousandsseparatorarabic;066C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4168
thousandsseparatorpersian;066C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4169
three;0033
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4170
threearabic;0663
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4171
threebengali;09E9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4172
threecircle;2462
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4173
threecircleinversesansserif;278C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4174
threedeva;0969
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4175
threeeighths;215C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4176
threegujarati;0AE9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4177
threegurmukhi;0A69
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4178
threehackarabic;0663
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4179
threehangzhou;3023
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4180
threeideographicparen;3222
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4181
threeinferior;2083
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4182
threemonospace;FF13
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4183
threenumeratorbengali;09F6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4184
threeoldstyle;F733
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4185
threeparen;2476
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4186
threeperiod;248A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4187
threepersian;06F3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4188
threequarters;00BE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4189
threequartersemdash;F6DE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4190
threeroman;2172
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4191
threesuperior;00B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4192
threethai;0E53
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4193
thzsquare;3394
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4194
tihiragana;3061
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4195
tikatakana;30C1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4196
tikatakanahalfwidth;FF81
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4197
tikeutacirclekorean;3270
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4198
tikeutaparenkorean;3210
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4199
tikeutcirclekorean;3262
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4200
tikeutkorean;3137
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4201
tikeutparenkorean;3202
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4202
tilde;02DC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4203
tildebelowcmb;0330
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4204
tildecmb;0303
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4205
tildecomb;0303
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4206
tildedoublecmb;0360
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4207
tildeoperator;223C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4208
tildeoverlaycmb;0334
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4209
tildeverticalcmb;033E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4210
timescircle;2297
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4211
tipehahebrew;0596
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4212
tipehalefthebrew;0596
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4213
tippigurmukhi;0A70
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4214
titlocyrilliccmb;0483
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4215
tiwnarmenian;057F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4216
tlinebelow;1E6F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4217
tmonospace;FF54
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4218
toarmenian;0569
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4219
tohiragana;3068
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4220
tokatakana;30C8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4221
tokatakanahalfwidth;FF84
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4222
tonebarextrahighmod;02E5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4223
tonebarextralowmod;02E9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4224
tonebarhighmod;02E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4225
tonebarlowmod;02E8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4226
tonebarmidmod;02E7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4227
tonefive;01BD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4228
tonesix;0185
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4229
tonetwo;01A8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4230
tonos;0384
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4231
tonsquare;3327
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4232
topatakthai;0E0F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4233
tortoiseshellbracketleft;3014
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4234
tortoiseshellbracketleftsmall;FE5D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4235
tortoiseshellbracketleftvertical;FE39
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4236
tortoiseshellbracketright;3015
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4237
tortoiseshellbracketrightsmall;FE5E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4238
tortoiseshellbracketrightvertical;FE3A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4239
totaothai;0E15
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4240
tpalatalhook;01AB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4241
tparen;24AF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4242
trademark;2122
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4243
trademarksans;F8EA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4244
trademarkserif;F6DB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4245
tretroflexhook;0288
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4246
triagdn;25BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4247
triaglf;25C4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4248
triagrt;25BA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4249
triagup;25B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4250
ts;02A6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4251
tsadi;05E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4252
tsadidagesh;FB46
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4253
tsadidageshhebrew;FB46
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4254
tsadihebrew;05E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4255
tsecyrillic;0446
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4256
tsere;05B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4257
tsere12;05B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4258
tsere1e;05B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4259
tsere2b;05B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4260
tserehebrew;05B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4261
tserenarrowhebrew;05B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4262
tserequarterhebrew;05B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4263
tserewidehebrew;05B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4264
tshecyrillic;045B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4265
tsuperior;F6F3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4266
ttabengali;099F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4267
ttadeva;091F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4268
ttagujarati;0A9F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4269
ttagurmukhi;0A1F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4270
tteharabic;0679
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4271
ttehfinalarabic;FB67
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4272
ttehinitialarabic;FB68
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4273
ttehmedialarabic;FB69
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4274
tthabengali;09A0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4275
tthadeva;0920
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4276
tthagujarati;0AA0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4277
tthagurmukhi;0A20
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4278
tturned;0287
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4279
tuhiragana;3064
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4280
tukatakana;30C4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4281
tukatakanahalfwidth;FF82
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4282
tusmallhiragana;3063
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4283
tusmallkatakana;30C3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4284
tusmallkatakanahalfwidth;FF6F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4285
twelvecircle;246B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4286
twelveparen;247F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4287
twelveperiod;2493
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4288
twelveroman;217B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4289
twentycircle;2473
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4290
twentyhangzhou;5344
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4291
twentyparen;2487
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4292
twentyperiod;249B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4293
two;0032
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4294
twoarabic;0662
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4295
twobengali;09E8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4296
twocircle;2461
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4297
twocircleinversesansserif;278B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4298
twodeva;0968
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4299
twodotenleader;2025
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4300
twodotleader;2025
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4301
twodotleadervertical;FE30
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4302
twogujarati;0AE8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4303
twogurmukhi;0A68
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4304
twohackarabic;0662
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4305
twohangzhou;3022
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4306
twoideographicparen;3221
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4307
twoinferior;2082
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4308
twomonospace;FF12
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4309
twonumeratorbengali;09F5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4310
twooldstyle;F732
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4311
twoparen;2475
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4312
twoperiod;2489
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4313
twopersian;06F2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4314
tworoman;2171
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4315
twostroke;01BB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4316
twosuperior;00B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4317
twothai;0E52
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4318
twothirds;2154
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4319
u;0075
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4320
uacute;00FA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4321
ubar;0289
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4322
ubengali;0989
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4323
ubopomofo;3128
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4324
ubreve;016D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4325
ucaron;01D4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4326
ucircle;24E4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4327
ucircumflex;00FB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4328
ucircumflexbelow;1E77
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4329
ucyrillic;0443
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4330
udattadeva;0951
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4331
udblacute;0171
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4332
udblgrave;0215
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4333
udeva;0909
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4334
udieresis;00FC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4335
udieresisacute;01D8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4336
udieresisbelow;1E73
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4337
udieresiscaron;01DA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4338
udieresiscyrillic;04F1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4339
udieresisgrave;01DC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4340
udieresismacron;01D6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4341
udotbelow;1EE5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4342
ugrave;00F9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4343
ugujarati;0A89
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4344
ugurmukhi;0A09
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4345
uhiragana;3046
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4346
uhookabove;1EE7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4347
uhorn;01B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4348
uhornacute;1EE9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4349
uhorndotbelow;1EF1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4350
uhorngrave;1EEB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4351
uhornhookabove;1EED
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4352
uhorntilde;1EEF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4353
uhungarumlaut;0171
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4354
uhungarumlautcyrillic;04F3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4355
uinvertedbreve;0217
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4356
ukatakana;30A6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4357
ukatakanahalfwidth;FF73
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4358
ukcyrillic;0479
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4359
ukorean;315C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4360
umacron;016B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4361
umacroncyrillic;04EF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4362
umacrondieresis;1E7B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4363
umatragurmukhi;0A41
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4364
umonospace;FF55
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4365
underscore;005F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4366
underscoredbl;2017
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4367
underscoremonospace;FF3F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4368
underscorevertical;FE33
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4369
underscorewavy;FE4F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4370
union;222A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4371
universal;2200
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4372
uogonek;0173
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4373
uparen;24B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4374
upblock;2580
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4375
upperdothebrew;05C4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4376
upsilon;03C5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4377
upsilondieresis;03CB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4378
upsilondieresistonos;03B0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4379
upsilonlatin;028A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4380
upsilontonos;03CD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4381
uptackbelowcmb;031D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4382
uptackmod;02D4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4383
uragurmukhi;0A73
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4384
uring;016F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4385
ushortcyrillic;045E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4386
usmallhiragana;3045
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4387
usmallkatakana;30A5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4388
usmallkatakanahalfwidth;FF69
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4389
ustraightcyrillic;04AF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4390
ustraightstrokecyrillic;04B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4391
utilde;0169
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4392
utildeacute;1E79
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4393
utildebelow;1E75
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4394
uubengali;098A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4395
uudeva;090A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4396
uugujarati;0A8A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4397
uugurmukhi;0A0A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4398
uumatragurmukhi;0A42
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4399
uuvowelsignbengali;09C2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4400
uuvowelsigndeva;0942
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4401
uuvowelsigngujarati;0AC2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4402
uvowelsignbengali;09C1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4403
uvowelsigndeva;0941
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4404
uvowelsigngujarati;0AC1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4405
v;0076
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4406
vadeva;0935
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4407
vagujarati;0AB5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4408
vagurmukhi;0A35
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4409
vakatakana;30F7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4410
vav;05D5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4411
vavdagesh;FB35
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4412
vavdagesh65;FB35
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4413
vavdageshhebrew;FB35
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4414
vavhebrew;05D5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4415
vavholam;FB4B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4416
vavholamhebrew;FB4B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4417
vavvavhebrew;05F0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4418
vavyodhebrew;05F1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4419
vcircle;24E5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4420
vdotbelow;1E7F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4421
vecyrillic;0432
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4422
veharabic;06A4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4423
vehfinalarabic;FB6B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4424
vehinitialarabic;FB6C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4425
vehmedialarabic;FB6D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4426
vekatakana;30F9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4427
venus;2640
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4428
verticalbar;007C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4429
verticallineabovecmb;030D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4430
verticallinebelowcmb;0329
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4431
verticallinelowmod;02CC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4432
verticallinemod;02C8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4433
vewarmenian;057E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4434
vhook;028B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4435
vikatakana;30F8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4436
viramabengali;09CD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4437
viramadeva;094D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4438
viramagujarati;0ACD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4439
visargabengali;0983
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4440
visargadeva;0903
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4441
visargagujarati;0A83
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4442
vmonospace;FF56
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4443
voarmenian;0578
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4444
voicediterationhiragana;309E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4445
voicediterationkatakana;30FE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4446
voicedmarkkana;309B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4447
voicedmarkkanahalfwidth;FF9E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4448
vokatakana;30FA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4449
vparen;24B1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4450
vtilde;1E7D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4451
vturned;028C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4452
vuhiragana;3094
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4453
vukatakana;30F4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4454
w;0077
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4455
wacute;1E83
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4456
waekorean;3159
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4457
wahiragana;308F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4458
wakatakana;30EF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4459
wakatakanahalfwidth;FF9C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4460
wakorean;3158
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4461
wasmallhiragana;308E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4462
wasmallkatakana;30EE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4463
wattosquare;3357
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4464
wavedash;301C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4465
wavyunderscorevertical;FE34
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4466
wawarabic;0648
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4467
wawfinalarabic;FEEE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4468
wawhamzaabovearabic;0624
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4469
wawhamzaabovefinalarabic;FE86
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4470
wbsquare;33DD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4471
wcircle;24E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4472
wcircumflex;0175
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4473
wdieresis;1E85
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4474
wdotaccent;1E87
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4475
wdotbelow;1E89
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4476
wehiragana;3091
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4477
weierstrass;2118
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4478
wekatakana;30F1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4479
wekorean;315E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4480
weokorean;315D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4481
wgrave;1E81
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4482
whitebullet;25E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4483
whitecircle;25CB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4484
whitecircleinverse;25D9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4485
whitecornerbracketleft;300E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4486
whitecornerbracketleftvertical;FE43
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4487
whitecornerbracketright;300F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4488
whitecornerbracketrightvertical;FE44
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4489
whitediamond;25C7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4490
whitediamondcontainingblacksmalldiamond;25C8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4491
whitedownpointingsmalltriangle;25BF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4492
whitedownpointingtriangle;25BD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4493
whiteleftpointingsmalltriangle;25C3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4494
whiteleftpointingtriangle;25C1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4495
whitelenticularbracketleft;3016
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4496
whitelenticularbracketright;3017
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4497
whiterightpointingsmalltriangle;25B9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4498
whiterightpointingtriangle;25B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4499
whitesmallsquare;25AB
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4500
whitesmilingface;263A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4501
whitesquare;25A1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4502
whitestar;2606
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4503
whitetelephone;260F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4504
whitetortoiseshellbracketleft;3018
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4505
whitetortoiseshellbracketright;3019
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4506
whiteuppointingsmalltriangle;25B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4507
whiteuppointingtriangle;25B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4508
wihiragana;3090
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4509
wikatakana;30F0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4510
wikorean;315F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4511
wmonospace;FF57
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4512
wohiragana;3092
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4513
wokatakana;30F2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4514
wokatakanahalfwidth;FF66
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4515
won;20A9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4516
wonmonospace;FFE6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4517
wowaenthai;0E27
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4518
wparen;24B2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4519
wring;1E98
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4520
wsuperior;02B7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4521
wturned;028D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4522
wynn;01BF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4523
x;0078
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4524
xabovecmb;033D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4525
xbopomofo;3112
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4526
xcircle;24E7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4527
xdieresis;1E8D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4528
xdotaccent;1E8B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4529
xeharmenian;056D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4530
xi;03BE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4531
xmonospace;FF58
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4532
xparen;24B3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4533
xsuperior;02E3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4534
y;0079
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4535
yaadosquare;334E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4536
yabengali;09AF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4537
yacute;00FD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4538
yadeva;092F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4539
yaekorean;3152
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4540
yagujarati;0AAF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4541
yagurmukhi;0A2F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4542
yahiragana;3084
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4543
yakatakana;30E4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4544
yakatakanahalfwidth;FF94
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4545
yakorean;3151
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4546
yamakkanthai;0E4E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4547
yasmallhiragana;3083
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4548
yasmallkatakana;30E3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4549
yasmallkatakanahalfwidth;FF6C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4550
yatcyrillic;0463
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4551
ycircle;24E8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4552
ycircumflex;0177
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4553
ydieresis;00FF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4554
ydotaccent;1E8F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4555
ydotbelow;1EF5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4556
yeharabic;064A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4557
yehbarreearabic;06D2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4558
yehbarreefinalarabic;FBAF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4559
yehfinalarabic;FEF2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4560
yehhamzaabovearabic;0626
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4561
yehhamzaabovefinalarabic;FE8A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4562
yehhamzaaboveinitialarabic;FE8B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4563
yehhamzaabovemedialarabic;FE8C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4564
yehinitialarabic;FEF3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4565
yehmedialarabic;FEF4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4566
yehmeeminitialarabic;FCDD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4567
yehmeemisolatedarabic;FC58
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4568
yehnoonfinalarabic;FC94
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4569
yehthreedotsbelowarabic;06D1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4570
yekorean;3156
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4571
yen;00A5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4572
yenmonospace;FFE5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4573
yeokorean;3155
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4574
yeorinhieuhkorean;3186
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4575
yerahbenyomohebrew;05AA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4576
yerahbenyomolefthebrew;05AA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4577
yericyrillic;044B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4578
yerudieresiscyrillic;04F9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4579
yesieungkorean;3181
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4580
yesieungpansioskorean;3183
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4581
yesieungsioskorean;3182
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4582
yetivhebrew;059A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4583
ygrave;1EF3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4584
yhook;01B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4585
yhookabove;1EF7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4586
yiarmenian;0575
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4587
yicyrillic;0457
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4588
yikorean;3162
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4589
yinyang;262F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4590
yiwnarmenian;0582
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4591
ymonospace;FF59
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4592
yod;05D9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4593
yoddagesh;FB39
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4594
yoddageshhebrew;FB39
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4595
yodhebrew;05D9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4596
yodyodhebrew;05F2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4597
yodyodpatahhebrew;FB1F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4598
yohiragana;3088
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4599
yoikorean;3189
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4600
yokatakana;30E8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4601
yokatakanahalfwidth;FF96
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4602
yokorean;315B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4603
yosmallhiragana;3087
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4604
yosmallkatakana;30E7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4605
yosmallkatakanahalfwidth;FF6E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4606
yotgreek;03F3
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4607
yoyaekorean;3188
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4608
yoyakorean;3187
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4609
yoyakthai;0E22
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4610
yoyingthai;0E0D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4611
yparen;24B4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4612
ypogegrammeni;037A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4613
ypogegrammenigreekcmb;0345
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4614
yr;01A6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4615
yring;1E99
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4616
ysuperior;02B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4617
ytilde;1EF9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4618
yturned;028E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4619
yuhiragana;3086
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4620
yuikorean;318C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4621
yukatakana;30E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4622
yukatakanahalfwidth;FF95
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4623
yukorean;3160
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4624
yusbigcyrillic;046B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4625
yusbigiotifiedcyrillic;046D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4626
yuslittlecyrillic;0467
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4627
yuslittleiotifiedcyrillic;0469
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4628
yusmallhiragana;3085
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4629
yusmallkatakana;30E5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4630
yusmallkatakanahalfwidth;FF6D
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4631
yuyekorean;318B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4632
yuyeokorean;318A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4633
yyabengali;09DF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4634
yyadeva;095F
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4635
z;007A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4636
zaarmenian;0566
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4637
zacute;017A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4638
zadeva;095B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4639
zagurmukhi;0A5B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4640
zaharabic;0638
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4641
zahfinalarabic;FEC6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4642
zahinitialarabic;FEC7
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4643
zahiragana;3056
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4644
zahmedialarabic;FEC8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4645
zainarabic;0632
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4646
zainfinalarabic;FEB0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4647
zakatakana;30B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4648
zaqefgadolhebrew;0595
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4649
zaqefqatanhebrew;0594
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4650
zarqahebrew;0598
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4651
zayin;05D6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4652
zayindagesh;FB36
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4653
zayindageshhebrew;FB36
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4654
zayinhebrew;05D6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4655
zbopomofo;3117
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4656
zcaron;017E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4657
zcircle;24E9
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4658
zcircumflex;1E91
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4659
zcurl;0291
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4660
zdot;017C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4661
zdotaccent;017C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4662
zdotbelow;1E93
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4663
zecyrillic;0437
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4664
zedescendercyrillic;0499
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4665
zedieresiscyrillic;04DF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4666
zehiragana;305C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4667
zekatakana;30BC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4668
zero;0030
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4669
zeroarabic;0660
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4670
zerobengali;09E6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4671
zerodeva;0966
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4672
zerogujarati;0AE6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4673
zerogurmukhi;0A66
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4674
zerohackarabic;0660
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4675
zeroinferior;2080
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4676
zeromonospace;FF10
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4677
zerooldstyle;F730
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4678
zeropersian;06F0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4679
zerosuperior;2070
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4680
zerothai;0E50
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4681
zerowidthjoiner;FEFF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4682
zerowidthnonjoiner;200C
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4683
zerowidthspace;200B
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4684
zeta;03B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4685
zhbopomofo;3113
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4686
zhearmenian;056A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4687
zhebrevecyrillic;04C2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4688
zhecyrillic;0436
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4689
zhedescendercyrillic;0497
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4690
zhedieresiscyrillic;04DD
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4691
zihiragana;3058
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4692
zikatakana;30B8
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4693
zinorhebrew;05AE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4694
zlinebelow;1E95
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4695
zmonospace;FF5A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4696
zohiragana;305E
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4697
zokatakana;30BE
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4698
zparen;24B5
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4699
zretroflexhook;0290
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4700
zstroke;01B6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4701
zuhiragana;305A
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4702
zukatakana;30BA
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4703
"""
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4704
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4705
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4706
# string table management
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4707
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4708
class StringTable:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4709
  def __init__( self, name_list, master_table_name ):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4710
    self.names        = name_list
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4711
    self.master_table = master_table_name
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4712
    self.indices      = {}
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4713
    index             = 0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4714
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4715
    for name in name_list:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4716
      self.indices[name] = index
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4717
      index += len( name ) + 1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4718
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4719
    self.total = index
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4720
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4721
  def dump( self, file ):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4722
    write = file.write
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4723
    write( "  static const char  " + self.master_table +
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4724
           "[" + repr( self.total ) + "] =\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4725
    write( "  {\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4726
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4727
    line = ""
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4728
    for name in self.names:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4729
      line += "    '"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4730
      line += string.join( ( re.findall( ".", name ) ), "','" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4731
      line += "', 0,\n"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4732
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4733
    write( line + "  };\n\n\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4734
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4735
  def dump_sublist( self, file, table_name, macro_name, sublist ):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4736
    write = file.write
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4737
    write( "#define " + macro_name + "  " + repr( len( sublist ) ) + "\n\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4738
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4739
    write( "  /* Values are offsets into the `" +
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4740
           self.master_table + "' table */\n\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4741
    write( "  static const short  " + table_name +
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4742
           "[" + macro_name + "] =\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4743
    write( "  {\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4744
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4745
    line  = "    "
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4746
    comma = ""
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4747
    col   = 0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4748
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4749
    for name in sublist:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4750
      line += comma
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4751
      line += "%4d" % self.indices[name]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4752
      col  += 1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4753
      comma = ","
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4754
      if col == 14:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4755
        col   = 0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4756
        comma = ",\n    "
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4757
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4758
    write( line + "\n  };\n\n\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4759
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4760
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4761
# We now store the Adobe Glyph List in compressed form.  The list is put
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4762
# into a data structure called `trie' (because it has a tree-like
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4763
# appearance).  Consider, for example, that you want to store the
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4764
# following name mapping:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4765
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4766
#   A        => 1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4767
#   Aacute   => 6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4768
#   Abalon   => 2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4769
#   Abstract => 4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4770
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4771
# It is possible to store the entries as follows.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4772
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4773
#   A => 1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4774
#   |
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4775
#   +-acute => 6
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4776
#   |
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4777
#   +-b
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4778
#     |
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4779
#     +-alon => 2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4780
#     |
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4781
#     +-stract => 4
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4782
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4783
# We see that each node in the trie has:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4784
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4785
# - one or more `letters'
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4786
# - an optional value
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4787
# - zero or more child nodes
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4788
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4789
# The first step is to call
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4790
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4791
#   root = StringNode( "", 0 )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4792
#   for word in map.values():
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4793
#     root.add( word, map[word] )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4794
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4795
# which creates a large trie where each node has only one children.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4796
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4797
# Executing
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4798
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4799
#   root = root.optimize()
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4800
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4801
# optimizes the trie by merging the letters of successive nodes whenever
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4802
# possible.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4803
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4804
# Each node of the trie is stored as follows.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4805
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4806
# - First the node's letter, according to the following scheme.  We
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4807
#   use the fact that in the AGL no name contains character codes > 127.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4808
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4809
#     name         bitsize     description
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4810
#     ----------------------------------------------------------------
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4811
#     notlast            1     Set to 1 if this is not the last letter
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4812
#                              in the word.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4813
#     ascii              7     The letter's ASCII value.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4814
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4815
# - The letter is followed by a children count and the value of the
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4816
#   current key (if any).  Again we can do some optimization because all
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4817
#   AGL entries are from the BMP; this means that 16 bits are sufficient
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4818
#   to store its Unicode values.  Additionally, no node has more than
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4819
#   127 children.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4820
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4821
#     name         bitsize     description
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4822
#     -----------------------------------------
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4823
#     hasvalue           1     Set to 1 if a 16-bit Unicode value follows.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4824
#     num_children       7     Number of children.  Can be 0 only if
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4825
#                              `hasvalue' is set to 1.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4826
#     value             16     Optional Unicode value.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4827
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4828
# - A node is finished by a list of 16bit absolute offsets to the
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4829
#   children, which must be sorted in increasing order of their first
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4830
#   letter.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4831
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4832
# For simplicity, all 16bit quantities are stored in big-endian order.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4833
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4834
# The root node has first letter = 0, and no value.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4835
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4836
class StringNode:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4837
  def __init__( self, letter, value ):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4838
    self.letter   = letter
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4839
    self.value    = value
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4840
    self.children = {}
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4841
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4842
  def __cmp__( self, other ):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4843
    return ord( self.letter[0] ) - ord( other.letter[0] )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4844
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4845
  def add( self, word, value ):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4846
    if len( word ) == 0:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4847
      self.value = value
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4848
      return
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4849
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4850
    letter = word[0]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4851
    word   = word[1:]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4852
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4853
    if self.children.has_key( letter ):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4854
      child = self.children[letter]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4855
    else:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4856
      child = StringNode( letter, 0 )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4857
      self.children[letter] = child
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4858
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4859
    child.add( word, value )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4860
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4861
  def optimize( self ):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4862
    # optimize all children first
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4863
    children      = self.children.values()
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4864
    self.children = {}
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4865
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4866
    for child in children:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4867
      self.children[child.letter[0]] = child.optimize()
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4868
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4869
    # don't optimize if there's a value,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4870
    # if we don't have any child or if we
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4871
    # have more than one child
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4872
    if ( self.value != 0 ) or ( not children ) or len( children ) > 1:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4873
      return self
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4874
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4875
    child = children[0]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4876
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4877
    self.letter  += child.letter
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4878
    self.value    = child.value
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4879
    self.children = child.children
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4880
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4881
    return self
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4882
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4883
  def dump_debug( self, write, margin ):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4884
    # this is used during debugging
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4885
    line = margin + "+-"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4886
    if len( self.letter ) == 0:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4887
      line += "<NOLETTER>"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4888
    else:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4889
      line += self.letter
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4890
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4891
    if self.value:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4892
      line += " => " + repr( self.value )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4893
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4894
    write( line + "\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4895
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4896
    if self.children:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4897
      margin += "| "
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4898
      for child in self.children.values():
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4899
        child.dump_debug( write, margin )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4900
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4901
  def locate( self, index ):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4902
    self.index = index
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4903
    if len( self.letter ) > 0:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4904
      index += len( self.letter ) + 1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4905
    else:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4906
      index += 2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4907
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4908
    if self.value != 0:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4909
      index += 2
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4910
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4911
    children = self.children.values()
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4912
    children.sort()
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4913
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4914
    index += 2 * len( children )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4915
    for child in children:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4916
      index = child.locate( index )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4917
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4918
    return index
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4919
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4920
  def store( self, storage ):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4921
    # write the letters
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4922
    l = len( self.letter )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4923
    if l == 0:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4924
      storage += struct.pack( "B", 0 )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4925
    else:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4926
      for n in range( l ):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4927
        val = ord( self.letter[n] )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4928
        if n < l - 1:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4929
          val += 128
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4930
        storage += struct.pack( "B", val )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4931
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4932
    # write the count
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4933
    children = self.children.values()
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4934
    children.sort()
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4935
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4936
    count = len( children )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4937
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4938
    if self.value != 0:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4939
      storage += struct.pack( "!BH", count + 128, self.value )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4940
    else:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4941
      storage += struct.pack( "B", count )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4942
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4943
    for child in children:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4944
      storage += struct.pack( "!H", child.index )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4945
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4946
    for child in children:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4947
      storage = child.store( storage )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4948
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4949
    return storage
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4950
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4951
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4952
def adobe_glyph_values():
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4953
  """return the list of glyph names and their unicode values"""
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4954
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4955
  lines  = string.split( adobe_glyph_list, '\n' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4956
  glyphs = []
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4957
  values = []
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4958
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4959
  for line in lines:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4960
    if line:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4961
      fields = string.split( line, ';' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4962
#     print fields[1] + ' - ' + fields[0]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4963
      subfields = string.split( fields[1], ' ' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4964
      if len( subfields ) == 1:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4965
        glyphs.append( fields[0] )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4966
        values.append( fields[1] )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4967
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4968
  return glyphs, values
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4969
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4970
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4971
def filter_glyph_names( alist, filter ):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4972
  """filter `alist' by taking _out_ all glyph names that are in `filter'"""
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4973
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4974
  count  = 0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4975
  extras = []
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4976
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4977
  for name in alist:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4978
    try:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4979
      filtered_index = filter.index( name )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4980
    except:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4981
      extras.append( name )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4982
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4983
  return extras
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4984
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4985
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4986
def dump_encoding( file, encoding_name, encoding_list ):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4987
  """dump a given encoding"""
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4988
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4989
  write = file.write
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4990
  write( "  /* the following are indices into the SID name table */\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4991
  write( "  static const unsigned short  " + encoding_name +
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4992
         "[" + repr( len( encoding_list ) ) + "] =\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4993
  write( "  {\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4994
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4995
  line  = "    "
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4996
  comma = ""
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4997
  col   = 0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4998
  for value in encoding_list:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  4999
    line += comma
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5000
    line += "%3d" % value
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5001
    comma = ","
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5002
    col  += 1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5003
    if col == 16:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5004
      col = 0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5005
      comma = ",\n    "
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5006
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5007
  write( line + "\n  };\n\n\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5008
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5009
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5010
def dump_array( the_array, write, array_name ):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5011
  """dumps a given encoding"""
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5012
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5013
  write( "  static const unsigned char  " + array_name +
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5014
         "[" + repr( len( the_array ) ) + "L] =\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5015
  write( "  {\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5016
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5017
  line  = ""
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5018
  comma = "    "
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5019
  col   = 0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5020
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5021
  for value in the_array:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5022
    line += comma
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5023
    line += "%3d" % ord( value )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5024
    comma = ","
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5025
    col  += 1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5026
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5027
    if col == 16:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5028
      col   = 0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5029
      comma = ",\n    "
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5030
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5031
    if len( line ) > 1024:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5032
      write( line )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5033
      line = ""
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5034
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5035
  write( line + "\n  };\n\n\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5036
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5037
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5038
def main():
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5039
  """main program body"""
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5040
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5041
  if len( sys.argv ) != 2:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5042
    print __doc__ % sys.argv[0]
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5043
    sys.exit( 1 )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5044
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5045
  file  = open( sys.argv[1], "w\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5046
  write = file.write
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5047
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5048
  count_sid = len( sid_standard_names )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5049
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5050
  # `mac_extras' contains the list of glyph names in the Macintosh standard
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5051
  # encoding which are not in the SID Standard Names.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5052
  #
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5053
  mac_extras = filter_glyph_names( mac_standard_names, sid_standard_names )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5054
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5055
  # `base_list' contains the names of our final glyph names table.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5056
  # It consists of the `mac_extras' glyph names, followed by the SID
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5057
  # standard names.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5058
  #
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5059
  mac_extras_count = len( mac_extras )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5060
  base_list        = mac_extras + sid_standard_names
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5061
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5062
  write( "/***************************************************************************/\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5063
  write( "/*                                                                         */\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5064
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5065
  write( "/*  %-71s*/\n" % os.path.basename( sys.argv[1] ) )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5066
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5067
  write( "/*                                                                         */\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5068
  write( "/*    PostScript glyph names.                                              */\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5069
  write( "/*                                                                         */\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5070
  write( "/*  Copyright 2005, 2008 by                                                */\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5071
  write( "/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5072
  write( "/*                                                                         */\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5073
  write( "/*  This file is part of the FreeType project, and may only be used,       */\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5074
  write( "/*  modified, and distributed under the terms of the FreeType project      */\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5075
  write( "/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5076
  write( "/*  this file you indicate that you have read the license and              */\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5077
  write( "/*  understand and accept it fully.                                        */\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5078
  write( "/*                                                                         */\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5079
  write( "/***************************************************************************/\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5080
  write( "\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5081
  write( "\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5082
  write( "  /* This file has been generated automatically -- do not edit! */\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5083
  write( "\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5084
  write( "\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5085
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5086
  # dump final glyph list (mac extras + sid standard names)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5087
  #
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5088
  st = StringTable( base_list, "ft_standard_glyph_names" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5089
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5090
  st.dump( file )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5091
  st.dump_sublist( file, "ft_mac_names",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5092
                   "FT_NUM_MAC_NAMES", mac_standard_names )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5093
  st.dump_sublist( file, "ft_sid_names",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5094
                   "FT_NUM_SID_NAMES", sid_standard_names )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5095
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5096
  dump_encoding( file, "t1_standard_encoding", t1_standard_encoding )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5097
  dump_encoding( file, "t1_expert_encoding", t1_expert_encoding )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5098
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5099
  # dump the AGL in its compressed form
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5100
  #
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5101
  agl_glyphs, agl_values = adobe_glyph_values()
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5102
  dict = StringNode( "", 0 )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5103
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5104
  for g in range( len( agl_glyphs ) ):
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5105
    dict.add( agl_glyphs[g], eval( "0x" + agl_values[g] ) )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5106
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5107
  dict       = dict.optimize()
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5108
  dict_len   = dict.locate( 0 )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5109
  dict_array = dict.store( "" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5110
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5111
  write( """\
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5112
  /*
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5113
   *  This table is a compressed version of the Adobe Glyph List (AGL),
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5114
   *  optimized for efficient searching.  It has been generated by the
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5115
   *  `glnames.py' python script located in the `src/tools' directory.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5116
   *
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5117
   *  The lookup function to get the Unicode value for a given string
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5118
   *  is defined below the table.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5119
   */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5120
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5121
#ifdef FT_CONFIG_OPTION_ADOBE_GLYPH_LIST
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5122
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5123
""" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5124
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5125
  dump_array( dict_array, write, "ft_adobe_glyph_list" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5126
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5127
  # write the lookup routine now
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5128
  #
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5129
  write( """\
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5130
  /*
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5131
   *  This function searches the compressed table efficiently.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5132
   */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5133
  static unsigned long
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5134
  ft_get_adobe_glyph_index( const char*  name,
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5135
                            const char*  limit )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5136
  {
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5137
    int                   c = 0;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5138
    int                   count, min, max;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5139
    const unsigned char*  p = ft_adobe_glyph_list;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5140
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5141
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5142
    if ( name == 0 || name >= limit )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5143
      goto NotFound;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5144
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5145
    c     = *name++;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5146
    count = p[1];
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5147
    p    += 2;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5148
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5149
    min = 0;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5150
    max = count;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5151
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5152
    while ( min < max )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5153
    {
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5154
      int                   mid = ( min + max ) >> 1;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5155
      const unsigned char*  q   = p + mid * 2;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5156
      int                   c2;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5157
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5158
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5159
      q = ft_adobe_glyph_list + ( ( (int)q[0] << 8 ) | q[1] );
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5160
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5161
      c2 = q[0] & 127;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5162
      if ( c2 == c )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5163
      {
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5164
        p = q;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5165
        goto Found;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5166
      }
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5167
      if ( c2 < c )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5168
        min = mid + 1;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5169
      else
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5170
        max = mid;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5171
    }
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5172
    goto NotFound;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5173
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5174
  Found:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5175
    for (;;)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5176
    {
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5177
      /* assert (*p & 127) == c */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5178
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5179
      if ( name >= limit )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5180
      {
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5181
        if ( (p[0] & 128) == 0 &&
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5182
             (p[1] & 128) != 0 )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5183
          return (unsigned long)( ( (int)p[2] << 8 ) | p[3] );
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5184
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5185
        goto NotFound;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5186
      }
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5187
      c = *name++;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5188
      if ( p[0] & 128 )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5189
      {
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5190
        p++;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5191
        if ( c != (p[0] & 127) )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5192
          goto NotFound;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5193
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5194
        continue;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5195
      }
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5196
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5197
      p++;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5198
      count = p[0] & 127;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5199
      if ( p[0] & 128 )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5200
        p += 2;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5201
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5202
      p++;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5203
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5204
      for ( ; count > 0; count--, p += 2 )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5205
      {
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5206
        int                   offset = ( (int)p[0] << 8 ) | p[1];
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5207
        const unsigned char*  q      = ft_adobe_glyph_list + offset;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5208
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5209
        if ( c == ( q[0] & 127 ) )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5210
        {
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5211
          p = q;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5212
          goto NextIter;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5213
        }
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5214
      }
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5215
      goto NotFound;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5216
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5217
    NextIter:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5218
      ;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5219
    }
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5220
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5221
  NotFound:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5222
    return 0;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5223
  }
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5224
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5225
#endif /* FT_CONFIG_OPTION_ADOBE_GLYPH_LIST */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5226
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5227
""" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5228
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5229
  if 0:  # generate unit test, or don't
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5230
    #
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5231
    # now write the unit test to check that everything works OK
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5232
    #
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5233
    write( "#ifdef TEST\n\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5234
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5235
    write( "static const char* const  the_names[] = {\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5236
    for name in agl_glyphs:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5237
      write( '  "' + name + '",\n' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5238
    write( "  0\n};\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5239
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5240
    write( "static const unsigned long  the_values[] = {\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5241
    for val in agl_values:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5242
      write( '  0x' + val + ',\n' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5243
    write( "  0\n};\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5244
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5245
    write( """
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5246
#include <stdlib.h>
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5247
#include <stdio.h>
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5248
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5249
  int
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5250
  main( void )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5251
  {
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5252
    int                   result = 0;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5253
    const char* const*    names  = the_names;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5254
    const unsigned long*  values = the_values;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5255
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5256
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5257
    for ( ; *names; names++, values++ )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5258
    {
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5259
      const char*    name      = *names;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5260
      unsigned long  reference = *values;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5261
      unsigned long  value;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5262
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5263
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5264
      value = ft_get_adobe_glyph_index( name, name + strlen( name ) );
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5265
      if ( value != reference )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5266
      {
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5267
        result = 1;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5268
        fprintf( stderr, "name '%s' => %04x instead of %04x\\n",
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5269
                         name, value, reference );
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5270
      }
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5271
    }
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5272
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5273
    return result;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5274
  }
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5275
""" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5276
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5277
    write( "#endif /* TEST */\n" )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5278
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5279
  write("\n/* END */\n")
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5280
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5281
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5282
# Now run the main routine
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5283
#
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5284
main()
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5285
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5286
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
  5287
# END