prawn-layout 0.2.1 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/examples/example_helper.rb +5 -1
- data/examples/grid/bounding_boxes.rb +21 -0
- data/examples/grid/column_gutter_grid.rb +20 -0
- data/examples/grid/multi_boxes.rb +51 -0
- data/examples/grid/show_grid.rb +13 -0
- data/lib/prawn/layout.rb +1 -1
- data/lib/prawn/layout/grid.rb +36 -18
- data/lib/prawn/table.rb +20 -8
- data/lib/prawn/table/cell.rb +24 -15
- data/spec/spec_helper.rb +2 -1
- data/spec/table_spec.rb +32 -0
- data/vendor/prawn-core/COPYING +340 -0
- data/vendor/prawn-core/HACKING +46 -0
- data/vendor/prawn-core/LICENSE +56 -0
- data/vendor/prawn-core/README +142 -0
- data/vendor/prawn-core/Rakefile +75 -0
- data/vendor/prawn-core/bench/afm_text_bench.rb +18 -0
- data/vendor/prawn-core/bench/png_type_6.rb +15 -0
- data/vendor/prawn-core/bench/ttf_text_bench.rb +19 -0
- data/vendor/prawn-core/bugs/canvas_sets_y_to_0.rb +15 -0
- data/vendor/prawn-core/bugs/png_barcode_issue.rb +11 -0
- data/vendor/prawn-core/bugs/resolved/canvas_sets_y_to_0.rb +15 -0
- data/vendor/prawn-core/data/encodings/win_ansi.txt +29 -0
- data/vendor/prawn-core/data/fonts/Action Man.dfont +0 -0
- data/vendor/prawn-core/data/fonts/Activa.ttf +0 -0
- data/vendor/prawn-core/data/fonts/Chalkboard.ttf +0 -0
- data/vendor/prawn-core/data/fonts/Courier-Bold.afm +342 -0
- data/vendor/prawn-core/data/fonts/Courier-BoldOblique.afm +342 -0
- data/vendor/prawn-core/data/fonts/Courier-Oblique.afm +342 -0
- data/vendor/prawn-core/data/fonts/Courier.afm +342 -0
- data/vendor/prawn-core/data/fonts/DejaVuSans.ttf +0 -0
- data/vendor/prawn-core/data/fonts/Dustismo_Roman.ttf +0 -0
- data/vendor/prawn-core/data/fonts/Helvetica-Bold.afm +2827 -0
- data/vendor/prawn-core/data/fonts/Helvetica-BoldOblique.afm +2827 -0
- data/vendor/prawn-core/data/fonts/Helvetica-Oblique.afm +3051 -0
- data/vendor/prawn-core/data/fonts/Helvetica.afm +3051 -0
- data/vendor/prawn-core/data/fonts/MustRead.html +19 -0
- data/vendor/prawn-core/data/fonts/Symbol.afm +213 -0
- data/vendor/prawn-core/data/fonts/Times-Bold.afm +2588 -0
- data/vendor/prawn-core/data/fonts/Times-BoldItalic.afm +2384 -0
- data/vendor/prawn-core/data/fonts/Times-Italic.afm +2667 -0
- data/vendor/prawn-core/data/fonts/Times-Roman.afm +2419 -0
- data/vendor/prawn-core/data/fonts/ZapfDingbats.afm +225 -0
- data/vendor/prawn-core/data/fonts/comicsans.ttf +0 -0
- data/vendor/prawn-core/data/fonts/gkai00mp.ttf +0 -0
- data/vendor/prawn-core/data/images/16bit.alpha +0 -0
- data/vendor/prawn-core/data/images/16bit.dat +0 -0
- data/vendor/prawn-core/data/images/16bit.png +0 -0
- data/vendor/prawn-core/data/images/arrow.png +0 -0
- data/vendor/prawn-core/data/images/arrow2.png +0 -0
- data/vendor/prawn-core/data/images/barcode_issue.png +0 -0
- data/vendor/prawn-core/data/images/dice.alpha +0 -0
- data/vendor/prawn-core/data/images/dice.dat +0 -0
- data/vendor/prawn-core/data/images/dice.png +0 -0
- data/vendor/prawn-core/data/images/dice_interlaced.png +0 -0
- data/vendor/prawn-core/data/images/fractal.jpg +0 -0
- data/vendor/prawn-core/data/images/letterhead.jpg +0 -0
- data/vendor/prawn-core/data/images/page_white_text.alpha +0 -0
- data/vendor/prawn-core/data/images/page_white_text.dat +0 -0
- data/vendor/prawn-core/data/images/page_white_text.png +0 -0
- data/vendor/prawn-core/data/images/pigs.jpg +0 -0
- data/vendor/prawn-core/data/images/rails.dat +0 -0
- data/vendor/prawn-core/data/images/rails.png +0 -0
- data/vendor/prawn-core/data/images/ruport.png +0 -0
- data/vendor/prawn-core/data/images/ruport_data.dat +0 -0
- data/vendor/prawn-core/data/images/ruport_transparent.png +0 -0
- data/vendor/prawn-core/data/images/ruport_type0.png +0 -0
- data/vendor/prawn-core/data/images/stef.jpg +0 -0
- data/vendor/prawn-core/data/images/tru256.bmp +0 -0
- data/vendor/prawn-core/data/images/web-links.dat +1 -0
- data/vendor/prawn-core/data/images/web-links.png +0 -0
- data/vendor/prawn-core/data/shift_jis_text.txt +1 -0
- data/vendor/prawn-core/examples/bounding_box/bounding_boxes.rb +43 -0
- data/vendor/prawn-core/examples/bounding_box/indentation.rb +34 -0
- data/vendor/prawn-core/examples/bounding_box/russian_boxes.rb +36 -0
- data/vendor/prawn-core/examples/bounding_box/stretched_nesting.rb +67 -0
- data/vendor/prawn-core/examples/column_box/column_box_example.rb +43 -0
- data/vendor/prawn-core/examples/example_helper.rb +3 -0
- data/vendor/prawn-core/examples/general/background.rb +23 -0
- data/vendor/prawn-core/examples/general/canvas.rb +15 -0
- data/vendor/prawn-core/examples/general/margin.rb +36 -0
- data/vendor/prawn-core/examples/general/measurement_units.rb +51 -0
- data/vendor/prawn-core/examples/general/metadata-info.rb +16 -0
- data/vendor/prawn-core/examples/general/multi_page_layout.rb +18 -0
- data/vendor/prawn-core/examples/general/page_geometry.rb +31 -0
- data/vendor/prawn-core/examples/general/page_numbering.rb +15 -0
- data/vendor/prawn-core/examples/general/stamp.rb +45 -0
- data/vendor/prawn-core/examples/graphics/basic_images.rb +23 -0
- data/vendor/prawn-core/examples/graphics/cmyk.rb +12 -0
- data/vendor/prawn-core/examples/graphics/curves.rb +11 -0
- data/vendor/prawn-core/examples/graphics/hexagon.rb +13 -0
- data/vendor/prawn-core/examples/graphics/image_fit.rb +15 -0
- data/vendor/prawn-core/examples/graphics/image_flow.rb +37 -0
- data/vendor/prawn-core/examples/graphics/image_position.rb +17 -0
- data/vendor/prawn-core/examples/graphics/line.rb +32 -0
- data/vendor/prawn-core/examples/graphics/png_types.rb +22 -0
- data/vendor/prawn-core/examples/graphics/polygons.rb +16 -0
- data/vendor/prawn-core/examples/graphics/remote_images.rb +12 -0
- data/vendor/prawn-core/examples/graphics/ruport_style_helpers.rb +19 -0
- data/vendor/prawn-core/examples/graphics/stroke_bounds.rb +20 -0
- data/vendor/prawn-core/examples/graphics/stroke_cap_and_join.rb +45 -0
- data/vendor/prawn-core/examples/graphics/stroke_dash.rb +42 -0
- data/vendor/prawn-core/examples/graphics/transparency.rb +26 -0
- data/vendor/prawn-core/examples/m17n/chinese_text_wrapping.rb +19 -0
- data/vendor/prawn-core/examples/m17n/euro.rb +15 -0
- data/vendor/prawn-core/examples/m17n/sjis.rb +28 -0
- data/vendor/prawn-core/examples/m17n/utf8.rb +13 -0
- data/vendor/prawn-core/examples/m17n/win_ansi_charset.rb +54 -0
- data/vendor/prawn-core/examples/text/alignment.rb +18 -0
- data/vendor/prawn-core/examples/text/dfont.rb +48 -0
- data/vendor/prawn-core/examples/text/family_based_styling.rb +24 -0
- data/vendor/prawn-core/examples/text/font_calculations.rb +91 -0
- data/vendor/prawn-core/examples/text/font_size.rb +33 -0
- data/vendor/prawn-core/examples/text/kerning.rb +30 -0
- data/vendor/prawn-core/examples/text/simple_text.rb +17 -0
- data/vendor/prawn-core/examples/text/simple_text_ttf.rb +17 -0
- data/vendor/prawn-core/examples/text/span.rb +29 -0
- data/vendor/prawn-core/examples/text/text_box.rb +25 -0
- data/vendor/prawn-core/examples/text/text_box_returning_excess.rb +51 -0
- data/vendor/prawn-core/examples/text/text_flow.rb +67 -0
- data/vendor/prawn-core/lib/prawn/byte_string.rb +7 -0
- data/vendor/prawn-core/lib/prawn/compatibility.rb +38 -0
- data/vendor/prawn-core/lib/prawn/core.rb +85 -0
- data/vendor/prawn-core/lib/prawn/document.rb +534 -0
- data/vendor/prawn-core/lib/prawn/document/annotations.rb +65 -0
- data/vendor/prawn-core/lib/prawn/document/bounding_box.rb +390 -0
- data/vendor/prawn-core/lib/prawn/document/column_box.rb +102 -0
- data/vendor/prawn-core/lib/prawn/document/destinations.rb +92 -0
- data/vendor/prawn-core/lib/prawn/document/internals.rb +180 -0
- data/vendor/prawn-core/lib/prawn/document/page_geometry.rb +153 -0
- data/vendor/prawn-core/lib/prawn/document/snapshot.rb +71 -0
- data/vendor/prawn-core/lib/prawn/document/span.rb +55 -0
- data/vendor/prawn-core/lib/prawn/document/text.rb +184 -0
- data/vendor/prawn-core/lib/prawn/document/text/box.rb +90 -0
- data/vendor/prawn-core/lib/prawn/document/text/wrapping.rb +62 -0
- data/vendor/prawn-core/lib/prawn/encoding.rb +121 -0
- data/vendor/prawn-core/lib/prawn/errors.rb +61 -0
- data/vendor/prawn-core/lib/prawn/font.rb +297 -0
- data/vendor/prawn-core/lib/prawn/font/afm.rb +202 -0
- data/vendor/prawn-core/lib/prawn/font/dfont.rb +34 -0
- data/vendor/prawn-core/lib/prawn/font/ttf.rb +329 -0
- data/vendor/prawn-core/lib/prawn/graphics.rb +264 -0
- data/vendor/prawn-core/lib/prawn/graphics/cap_style.rb +35 -0
- data/vendor/prawn-core/lib/prawn/graphics/color.rb +141 -0
- data/vendor/prawn-core/lib/prawn/graphics/dash.rb +69 -0
- data/vendor/prawn-core/lib/prawn/graphics/join_style.rb +35 -0
- data/vendor/prawn-core/lib/prawn/graphics/transparency.rb +56 -0
- data/vendor/prawn-core/lib/prawn/images.rb +339 -0
- data/vendor/prawn-core/lib/prawn/images/jpg.rb +46 -0
- data/vendor/prawn-core/lib/prawn/images/png.rb +219 -0
- data/vendor/prawn-core/lib/prawn/literal_string.rb +14 -0
- data/vendor/prawn-core/lib/prawn/measurement_extensions.rb +46 -0
- data/vendor/prawn-core/lib/prawn/measurements.rb +71 -0
- data/vendor/prawn-core/lib/prawn/name_tree.rb +166 -0
- data/vendor/prawn-core/lib/prawn/object_store.rb +63 -0
- data/vendor/prawn-core/lib/prawn/pdf_object.rb +81 -0
- data/vendor/prawn-core/lib/prawn/reference.rb +72 -0
- data/vendor/prawn-core/lib/prawn/stamp.rb +87 -0
- data/vendor/prawn-core/meta/Rakefile +62 -0
- data/vendor/prawn-core/meta/lib/prawn.rb +2 -0
- data/vendor/prawn-core/reference_pdfs/alignment.pdf +229 -0
- data/vendor/prawn-core/reference_pdfs/background.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/basic_images.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/bounding_boxes.pdf +128 -0
- data/vendor/prawn-core/reference_pdfs/canvas.pdf +78 -0
- data/vendor/prawn-core/reference_pdfs/chinese_flow.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/cmyk.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/column_box.pdf +3671 -0
- data/vendor/prawn-core/reference_pdfs/curves.pdf +62 -0
- data/vendor/prawn-core/reference_pdfs/dfont.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/euro.pdf +75 -0
- data/vendor/prawn-core/reference_pdfs/family_style.pdf +286 -0
- data/vendor/prawn-core/reference_pdfs/flow.pdf +964 -0
- data/vendor/prawn-core/reference_pdfs/font_calculations.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/font_size.pdf +142 -0
- data/vendor/prawn-core/reference_pdfs/hexagon.pdf +61 -0
- data/vendor/prawn-core/reference_pdfs/image-flow.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/image_fit.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/image_position.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/indentation.pdf +124 -0
- data/vendor/prawn-core/reference_pdfs/kerning.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/landscape_a4.pdf +52 -0
- data/vendor/prawn-core/reference_pdfs/landscape_legal.pdf +52 -0
- data/vendor/prawn-core/reference_pdfs/landscape_letter.pdf +52 -0
- data/vendor/prawn-core/reference_pdfs/lines.pdf +116 -0
- data/vendor/prawn-core/reference_pdfs/margin.pdf +3850 -0
- data/vendor/prawn-core/reference_pdfs/measurement_units.pdf +4667 -0
- data/vendor/prawn-core/reference_pdfs/metadata-info.pdf +88 -0
- data/vendor/prawn-core/reference_pdfs/multi-layout.pdf +209 -0
- data/vendor/prawn-core/reference_pdfs/page_with_numbering.pdf +156 -0
- data/vendor/prawn-core/reference_pdfs/png_types.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/portrait_a4.pdf +52 -0
- data/vendor/prawn-core/reference_pdfs/portrait_legal.pdf +52 -0
- data/vendor/prawn-core/reference_pdfs/portrait_letter.pdf +52 -0
- data/vendor/prawn-core/reference_pdfs/pretty_polygons.pdf +122 -0
- data/vendor/prawn-core/reference_pdfs/remote_images.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/ruport.pdf +101 -0
- data/vendor/prawn-core/reference_pdfs/russian_boxes.pdf +2780 -0
- data/vendor/prawn-core/reference_pdfs/simple_text.pdf +136 -0
- data/vendor/prawn-core/reference_pdfs/simple_text_ttf.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/sjis.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/span.pdf +1975 -0
- data/vendor/prawn-core/reference_pdfs/stamp.pdf +696 -0
- data/vendor/prawn-core/reference_pdfs/stretched_nesting.pdf +200 -0
- data/vendor/prawn-core/reference_pdfs/stroke_bounds.pdf +135 -0
- data/vendor/prawn-core/reference_pdfs/stroke_cap_and_join.pdf +80 -0
- data/vendor/prawn-core/reference_pdfs/stroke_dash.pdf +457 -0
- data/vendor/prawn-core/reference_pdfs/text_box.pdf +315 -0
- data/vendor/prawn-core/reference_pdfs/text_box_returning_excess.pdf +271 -0
- data/vendor/prawn-core/reference_pdfs/transparency.pdf +347 -0
- data/vendor/prawn-core/reference_pdfs/utf8.pdf +0 -0
- data/vendor/prawn-core/reference_pdfs/win-ansi.pdf +6172 -0
- data/vendor/prawn-core/spec/annotations_spec.rb +90 -0
- data/vendor/prawn-core/spec/bounding_box_spec.rb +185 -0
- data/vendor/prawn-core/spec/destinations_spec.rb +15 -0
- data/vendor/prawn-core/spec/document_spec.rb +231 -0
- data/vendor/prawn-core/spec/font_spec.rb +273 -0
- data/vendor/prawn-core/spec/graphics_spec.rb +209 -0
- data/vendor/prawn-core/spec/images_spec.rb +79 -0
- data/vendor/prawn-core/spec/jpg_spec.rb +25 -0
- data/vendor/prawn-core/spec/measurement_units_spec.rb +23 -0
- data/vendor/prawn-core/spec/name_tree_spec.rb +112 -0
- data/vendor/prawn-core/spec/object_store_spec.rb +42 -0
- data/vendor/prawn-core/spec/pdf_object_spec.rb +122 -0
- data/vendor/prawn-core/spec/png_spec.rb +236 -0
- data/vendor/prawn-core/spec/reference_spec.rb +82 -0
- data/vendor/prawn-core/spec/snapshot_spec.rb +115 -0
- data/vendor/prawn-core/spec/span_spec.rb +45 -0
- data/vendor/prawn-core/spec/spec_helper.rb +20 -0
- data/vendor/prawn-core/spec/stamp_spec.rb +98 -0
- data/vendor/prawn-core/spec/stroke_styles_spec.rb +152 -0
- data/vendor/prawn-core/spec/text_box_spec.rb +109 -0
- data/vendor/prawn-core/spec/text_spec.rb +185 -0
- data/vendor/prawn-core/spec/transparency_spec.rb +61 -0
- data/vendor/prawn-core/vendor/pdf-inspector/README +18 -0
- data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector.rb +26 -0
- data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector/extgstate.rb +18 -0
- data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector/graphics.rb +119 -0
- data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector/page.rb +25 -0
- data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector/text.rb +31 -0
- data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector/xobject.rb +19 -0
- data/vendor/prawn-core/vendor/ttfunk/data/fonts/DejaVuSans.ttf +0 -0
- data/vendor/prawn-core/vendor/ttfunk/data/fonts/comicsans.ttf +0 -0
- data/vendor/prawn-core/vendor/ttfunk/example.rb +45 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk.rb +102 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/directory.rb +17 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/encoding/mac_roman.rb +88 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/encoding/windows_1252.rb +69 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/reader.rb +44 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/resource_file.rb +78 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset.rb +18 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset/base.rb +141 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset/mac_roman.rb +46 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset/unicode.rb +48 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset/unicode_8bit.rb +63 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset/windows_1252.rb +51 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset_collection.rb +72 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table.rb +46 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/cmap.rb +34 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb +54 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/cmap/format04.rb +126 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/cmap/subtable.rb +79 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/glyf.rb +64 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/glyf/compound.rb +81 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/glyf/simple.rb +37 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/head.rb +44 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/hhea.rb +41 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/hmtx.rb +47 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/kern.rb +79 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/kern/format0.rb +62 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/loca.rb +43 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/maxp.rb +40 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/name.rb +119 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/os2.rb +78 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post.rb +91 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post/format10.rb +43 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post/format20.rb +35 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post/format25.rb +23 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post/format30.rb +17 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post/format40.rb +17 -0
- data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/simple.rb +14 -0
- data/vendor/prawn-core/www/index.html +196 -0
- data/vendor/prawn-core/www/media/bounding_boxes.pdf +146 -0
- data/vendor/prawn-core/www/media/bounding_boxes.png +0 -0
- data/vendor/prawn-core/www/media/bounding_boxes_out.png +0 -0
- data/vendor/prawn-core/www/media/fancy_table.pdf +350 -0
- data/vendor/prawn-core/www/media/image.pdf +0 -0
- data/vendor/prawn-core/www/media/images.png +0 -0
- data/vendor/prawn-core/www/media/prawn_logo.png +0 -0
- data/vendor/prawn-core/www/media/tables.png +0 -0
- data/vendor/prawn-core/www/media/utf8.pdf +0 -0
- data/vendor/prawn-core/www/media/utf8.png +0 -0
- data/vendor/prawn-core/www/prawn-Chinese.html +113 -0
- data/vendor/prawn-core/www/prawn.css +86 -0
- data/vendor/prawn-core/www/twilight.css +266 -0
- metadata +291 -3
@@ -0,0 +1,2827 @@
|
|
1
|
+
StartFontMetrics 4.1
|
2
|
+
Comment Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved.
|
3
|
+
Comment Creation Date: Thu May 1 12:45:12 1997
|
4
|
+
Comment UniqueID 43053
|
5
|
+
Comment VMusage 14482 68586
|
6
|
+
FontName Helvetica-BoldOblique
|
7
|
+
FullName Helvetica Bold Oblique
|
8
|
+
FamilyName Helvetica
|
9
|
+
Weight Bold
|
10
|
+
ItalicAngle -12
|
11
|
+
IsFixedPitch false
|
12
|
+
CharacterSet ExtendedRoman
|
13
|
+
FontBBox -174 -228 1114 962
|
14
|
+
UnderlinePosition -100
|
15
|
+
UnderlineThickness 50
|
16
|
+
Version 002.000
|
17
|
+
Notice Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved.Helvetica is a trademark of Linotype-Hell AG and/or its subsidiaries.
|
18
|
+
EncodingScheme AdobeStandardEncoding
|
19
|
+
CapHeight 718
|
20
|
+
XHeight 532
|
21
|
+
Ascender 718
|
22
|
+
Descender -207
|
23
|
+
StdHW 118
|
24
|
+
StdVW 140
|
25
|
+
StartCharMetrics 315
|
26
|
+
C 32 ; WX 278 ; N space ; B 0 0 0 0 ;
|
27
|
+
C 33 ; WX 333 ; N exclam ; B 94 0 397 718 ;
|
28
|
+
C 34 ; WX 474 ; N quotedbl ; B 193 447 529 718 ;
|
29
|
+
C 35 ; WX 556 ; N numbersign ; B 60 0 644 698 ;
|
30
|
+
C 36 ; WX 556 ; N dollar ; B 67 -115 622 775 ;
|
31
|
+
C 37 ; WX 889 ; N percent ; B 136 -19 901 710 ;
|
32
|
+
C 38 ; WX 722 ; N ampersand ; B 89 -19 732 718 ;
|
33
|
+
C 39 ; WX 278 ; N quoteright ; B 167 445 362 718 ;
|
34
|
+
C 40 ; WX 333 ; N parenleft ; B 76 -208 470 734 ;
|
35
|
+
C 41 ; WX 333 ; N parenright ; B -25 -208 369 734 ;
|
36
|
+
C 42 ; WX 389 ; N asterisk ; B 146 387 481 718 ;
|
37
|
+
C 43 ; WX 584 ; N plus ; B 82 0 610 506 ;
|
38
|
+
C 44 ; WX 278 ; N comma ; B 28 -168 245 146 ;
|
39
|
+
C 45 ; WX 333 ; N hyphen ; B 73 215 379 345 ;
|
40
|
+
C 46 ; WX 278 ; N period ; B 64 0 245 146 ;
|
41
|
+
C 47 ; WX 278 ; N slash ; B -37 -19 468 737 ;
|
42
|
+
C 48 ; WX 556 ; N zero ; B 86 -19 617 710 ;
|
43
|
+
C 49 ; WX 556 ; N one ; B 173 0 529 710 ;
|
44
|
+
C 50 ; WX 556 ; N two ; B 26 0 619 710 ;
|
45
|
+
C 51 ; WX 556 ; N three ; B 65 -19 608 710 ;
|
46
|
+
C 52 ; WX 556 ; N four ; B 60 0 598 710 ;
|
47
|
+
C 53 ; WX 556 ; N five ; B 64 -19 636 698 ;
|
48
|
+
C 54 ; WX 556 ; N six ; B 85 -19 619 710 ;
|
49
|
+
C 55 ; WX 556 ; N seven ; B 125 0 676 698 ;
|
50
|
+
C 56 ; WX 556 ; N eight ; B 69 -19 616 710 ;
|
51
|
+
C 57 ; WX 556 ; N nine ; B 78 -19 615 710 ;
|
52
|
+
C 58 ; WX 333 ; N colon ; B 92 0 351 512 ;
|
53
|
+
C 59 ; WX 333 ; N semicolon ; B 56 -168 351 512 ;
|
54
|
+
C 60 ; WX 584 ; N less ; B 82 -8 655 514 ;
|
55
|
+
C 61 ; WX 584 ; N equal ; B 58 87 633 419 ;
|
56
|
+
C 62 ; WX 584 ; N greater ; B 36 -8 609 514 ;
|
57
|
+
C 63 ; WX 611 ; N question ; B 165 0 671 727 ;
|
58
|
+
C 64 ; WX 975 ; N at ; B 186 -19 954 737 ;
|
59
|
+
C 65 ; WX 722 ; N A ; B 20 0 702 718 ;
|
60
|
+
C 66 ; WX 722 ; N B ; B 76 0 764 718 ;
|
61
|
+
C 67 ; WX 722 ; N C ; B 107 -19 789 737 ;
|
62
|
+
C 68 ; WX 722 ; N D ; B 76 0 777 718 ;
|
63
|
+
C 69 ; WX 667 ; N E ; B 76 0 757 718 ;
|
64
|
+
C 70 ; WX 611 ; N F ; B 76 0 740 718 ;
|
65
|
+
C 71 ; WX 778 ; N G ; B 108 -19 817 737 ;
|
66
|
+
C 72 ; WX 722 ; N H ; B 71 0 804 718 ;
|
67
|
+
C 73 ; WX 278 ; N I ; B 64 0 367 718 ;
|
68
|
+
C 74 ; WX 556 ; N J ; B 60 -18 637 718 ;
|
69
|
+
C 75 ; WX 722 ; N K ; B 87 0 858 718 ;
|
70
|
+
C 76 ; WX 611 ; N L ; B 76 0 611 718 ;
|
71
|
+
C 77 ; WX 833 ; N M ; B 69 0 918 718 ;
|
72
|
+
C 78 ; WX 722 ; N N ; B 69 0 807 718 ;
|
73
|
+
C 79 ; WX 778 ; N O ; B 107 -19 823 737 ;
|
74
|
+
C 80 ; WX 667 ; N P ; B 76 0 738 718 ;
|
75
|
+
C 81 ; WX 778 ; N Q ; B 107 -52 823 737 ;
|
76
|
+
C 82 ; WX 722 ; N R ; B 76 0 778 718 ;
|
77
|
+
C 83 ; WX 667 ; N S ; B 81 -19 718 737 ;
|
78
|
+
C 84 ; WX 611 ; N T ; B 140 0 751 718 ;
|
79
|
+
C 85 ; WX 722 ; N U ; B 116 -19 804 718 ;
|
80
|
+
C 86 ; WX 667 ; N V ; B 172 0 801 718 ;
|
81
|
+
C 87 ; WX 944 ; N W ; B 169 0 1082 718 ;
|
82
|
+
C 88 ; WX 667 ; N X ; B 14 0 791 718 ;
|
83
|
+
C 89 ; WX 667 ; N Y ; B 168 0 806 718 ;
|
84
|
+
C 90 ; WX 611 ; N Z ; B 25 0 737 718 ;
|
85
|
+
C 91 ; WX 333 ; N bracketleft ; B 21 -196 462 722 ;
|
86
|
+
C 92 ; WX 278 ; N backslash ; B 124 -19 307 737 ;
|
87
|
+
C 93 ; WX 333 ; N bracketright ; B -18 -196 423 722 ;
|
88
|
+
C 94 ; WX 584 ; N asciicircum ; B 131 323 591 698 ;
|
89
|
+
C 95 ; WX 556 ; N underscore ; B -27 -125 540 -75 ;
|
90
|
+
C 96 ; WX 278 ; N quoteleft ; B 165 454 361 727 ;
|
91
|
+
C 97 ; WX 556 ; N a ; B 55 -14 583 546 ;
|
92
|
+
C 98 ; WX 611 ; N b ; B 61 -14 645 718 ;
|
93
|
+
C 99 ; WX 556 ; N c ; B 79 -14 599 546 ;
|
94
|
+
C 100 ; WX 611 ; N d ; B 82 -14 704 718 ;
|
95
|
+
C 101 ; WX 556 ; N e ; B 70 -14 593 546 ;
|
96
|
+
C 102 ; WX 333 ; N f ; B 87 0 469 727 ; L i fi ; L l fl ;
|
97
|
+
C 103 ; WX 611 ; N g ; B 38 -217 666 546 ;
|
98
|
+
C 104 ; WX 611 ; N h ; B 65 0 629 718 ;
|
99
|
+
C 105 ; WX 278 ; N i ; B 69 0 363 725 ;
|
100
|
+
C 106 ; WX 278 ; N j ; B -42 -214 363 725 ;
|
101
|
+
C 107 ; WX 556 ; N k ; B 69 0 670 718 ;
|
102
|
+
C 108 ; WX 278 ; N l ; B 69 0 362 718 ;
|
103
|
+
C 109 ; WX 889 ; N m ; B 64 0 909 546 ;
|
104
|
+
C 110 ; WX 611 ; N n ; B 65 0 629 546 ;
|
105
|
+
C 111 ; WX 611 ; N o ; B 82 -14 643 546 ;
|
106
|
+
C 112 ; WX 611 ; N p ; B 18 -207 645 546 ;
|
107
|
+
C 113 ; WX 611 ; N q ; B 80 -207 665 546 ;
|
108
|
+
C 114 ; WX 389 ; N r ; B 64 0 489 546 ;
|
109
|
+
C 115 ; WX 556 ; N s ; B 63 -14 584 546 ;
|
110
|
+
C 116 ; WX 333 ; N t ; B 100 -6 422 676 ;
|
111
|
+
C 117 ; WX 611 ; N u ; B 98 -14 658 532 ;
|
112
|
+
C 118 ; WX 556 ; N v ; B 126 0 656 532 ;
|
113
|
+
C 119 ; WX 778 ; N w ; B 123 0 882 532 ;
|
114
|
+
C 120 ; WX 556 ; N x ; B 15 0 648 532 ;
|
115
|
+
C 121 ; WX 556 ; N y ; B 42 -214 652 532 ;
|
116
|
+
C 122 ; WX 500 ; N z ; B 20 0 583 532 ;
|
117
|
+
C 123 ; WX 389 ; N braceleft ; B 94 -196 518 722 ;
|
118
|
+
C 124 ; WX 280 ; N bar ; B 36 -225 361 775 ;
|
119
|
+
C 125 ; WX 389 ; N braceright ; B -18 -196 407 722 ;
|
120
|
+
C 126 ; WX 584 ; N asciitilde ; B 115 163 577 343 ;
|
121
|
+
C 161 ; WX 333 ; N exclamdown ; B 50 -186 353 532 ;
|
122
|
+
C 162 ; WX 556 ; N cent ; B 79 -118 599 628 ;
|
123
|
+
C 163 ; WX 556 ; N sterling ; B 50 -16 635 718 ;
|
124
|
+
C 164 ; WX 167 ; N fraction ; B -174 -19 487 710 ;
|
125
|
+
C 165 ; WX 556 ; N yen ; B 60 0 713 698 ;
|
126
|
+
C 166 ; WX 556 ; N florin ; B -50 -210 669 737 ;
|
127
|
+
C 167 ; WX 556 ; N section ; B 61 -184 598 727 ;
|
128
|
+
C 168 ; WX 556 ; N currency ; B 27 76 680 636 ;
|
129
|
+
C 169 ; WX 238 ; N quotesingle ; B 165 447 321 718 ;
|
130
|
+
C 170 ; WX 500 ; N quotedblleft ; B 160 454 588 727 ;
|
131
|
+
C 171 ; WX 556 ; N guillemotleft ; B 135 76 571 484 ;
|
132
|
+
C 172 ; WX 333 ; N guilsinglleft ; B 130 76 353 484 ;
|
133
|
+
C 173 ; WX 333 ; N guilsinglright ; B 99 76 322 484 ;
|
134
|
+
C 174 ; WX 611 ; N fi ; B 87 0 696 727 ;
|
135
|
+
C 175 ; WX 611 ; N fl ; B 87 0 695 727 ;
|
136
|
+
C 177 ; WX 556 ; N endash ; B 48 227 627 333 ;
|
137
|
+
C 178 ; WX 556 ; N dagger ; B 118 -171 626 718 ;
|
138
|
+
C 179 ; WX 556 ; N daggerdbl ; B 46 -171 628 718 ;
|
139
|
+
C 180 ; WX 278 ; N periodcentered ; B 110 172 276 334 ;
|
140
|
+
C 182 ; WX 556 ; N paragraph ; B 98 -191 688 700 ;
|
141
|
+
C 183 ; WX 350 ; N bullet ; B 83 194 420 524 ;
|
142
|
+
C 184 ; WX 278 ; N quotesinglbase ; B 41 -146 236 127 ;
|
143
|
+
C 185 ; WX 500 ; N quotedblbase ; B 36 -146 463 127 ;
|
144
|
+
C 186 ; WX 500 ; N quotedblright ; B 162 445 589 718 ;
|
145
|
+
C 187 ; WX 556 ; N guillemotright ; B 104 76 540 484 ;
|
146
|
+
C 188 ; WX 1000 ; N ellipsis ; B 92 0 939 146 ;
|
147
|
+
C 189 ; WX 1000 ; N perthousand ; B 76 -19 1038 710 ;
|
148
|
+
C 191 ; WX 611 ; N questiondown ; B 53 -195 559 532 ;
|
149
|
+
C 193 ; WX 333 ; N grave ; B 136 604 353 750 ;
|
150
|
+
C 194 ; WX 333 ; N acute ; B 236 604 515 750 ;
|
151
|
+
C 195 ; WX 333 ; N circumflex ; B 118 604 471 750 ;
|
152
|
+
C 196 ; WX 333 ; N tilde ; B 113 610 507 737 ;
|
153
|
+
C 197 ; WX 333 ; N macron ; B 122 604 483 678 ;
|
154
|
+
C 198 ; WX 333 ; N breve ; B 156 604 494 750 ;
|
155
|
+
C 199 ; WX 333 ; N dotaccent ; B 235 614 385 729 ;
|
156
|
+
C 200 ; WX 333 ; N dieresis ; B 137 614 482 729 ;
|
157
|
+
C 202 ; WX 333 ; N ring ; B 200 568 420 776 ;
|
158
|
+
C 203 ; WX 333 ; N cedilla ; B -37 -228 220 0 ;
|
159
|
+
C 205 ; WX 333 ; N hungarumlaut ; B 137 604 645 750 ;
|
160
|
+
C 206 ; WX 333 ; N ogonek ; B 41 -228 264 0 ;
|
161
|
+
C 207 ; WX 333 ; N caron ; B 149 604 502 750 ;
|
162
|
+
C 208 ; WX 1000 ; N emdash ; B 48 227 1071 333 ;
|
163
|
+
C 225 ; WX 1000 ; N AE ; B 5 0 1100 718 ;
|
164
|
+
C 227 ; WX 370 ; N ordfeminine ; B 125 401 465 737 ;
|
165
|
+
C 232 ; WX 611 ; N Lslash ; B 34 0 611 718 ;
|
166
|
+
C 233 ; WX 778 ; N Oslash ; B 35 -27 894 745 ;
|
167
|
+
C 234 ; WX 1000 ; N OE ; B 99 -19 1114 737 ;
|
168
|
+
C 235 ; WX 365 ; N ordmasculine ; B 123 401 485 737 ;
|
169
|
+
C 241 ; WX 889 ; N ae ; B 56 -14 923 546 ;
|
170
|
+
C 245 ; WX 278 ; N dotlessi ; B 69 0 322 532 ;
|
171
|
+
C 248 ; WX 278 ; N lslash ; B 40 0 407 718 ;
|
172
|
+
C 249 ; WX 611 ; N oslash ; B 22 -29 701 560 ;
|
173
|
+
C 250 ; WX 944 ; N oe ; B 82 -14 977 546 ;
|
174
|
+
C 251 ; WX 611 ; N germandbls ; B 69 -14 657 731 ;
|
175
|
+
C -1 ; WX 278 ; N Idieresis ; B 64 0 494 915 ;
|
176
|
+
C -1 ; WX 556 ; N eacute ; B 70 -14 627 750 ;
|
177
|
+
C -1 ; WX 556 ; N abreve ; B 55 -14 606 750 ;
|
178
|
+
C -1 ; WX 611 ; N uhungarumlaut ; B 98 -14 784 750 ;
|
179
|
+
C -1 ; WX 556 ; N ecaron ; B 70 -14 614 750 ;
|
180
|
+
C -1 ; WX 667 ; N Ydieresis ; B 168 0 806 915 ;
|
181
|
+
C -1 ; WX 584 ; N divide ; B 82 -42 610 548 ;
|
182
|
+
C -1 ; WX 667 ; N Yacute ; B 168 0 806 936 ;
|
183
|
+
C -1 ; WX 722 ; N Acircumflex ; B 20 0 706 936 ;
|
184
|
+
C -1 ; WX 556 ; N aacute ; B 55 -14 627 750 ;
|
185
|
+
C -1 ; WX 722 ; N Ucircumflex ; B 116 -19 804 936 ;
|
186
|
+
C -1 ; WX 556 ; N yacute ; B 42 -214 652 750 ;
|
187
|
+
C -1 ; WX 556 ; N scommaaccent ; B 63 -228 584 546 ;
|
188
|
+
C -1 ; WX 556 ; N ecircumflex ; B 70 -14 593 750 ;
|
189
|
+
C -1 ; WX 722 ; N Uring ; B 116 -19 804 962 ;
|
190
|
+
C -1 ; WX 722 ; N Udieresis ; B 116 -19 804 915 ;
|
191
|
+
C -1 ; WX 556 ; N aogonek ; B 55 -224 583 546 ;
|
192
|
+
C -1 ; WX 722 ; N Uacute ; B 116 -19 804 936 ;
|
193
|
+
C -1 ; WX 611 ; N uogonek ; B 98 -228 658 532 ;
|
194
|
+
C -1 ; WX 667 ; N Edieresis ; B 76 0 757 915 ;
|
195
|
+
C -1 ; WX 722 ; N Dcroat ; B 62 0 777 718 ;
|
196
|
+
C -1 ; WX 250 ; N commaaccent ; B 16 -228 188 -50 ;
|
197
|
+
C -1 ; WX 737 ; N copyright ; B 56 -19 835 737 ;
|
198
|
+
C -1 ; WX 667 ; N Emacron ; B 76 0 757 864 ;
|
199
|
+
C -1 ; WX 556 ; N ccaron ; B 79 -14 614 750 ;
|
200
|
+
C -1 ; WX 556 ; N aring ; B 55 -14 583 776 ;
|
201
|
+
C -1 ; WX 722 ; N Ncommaaccent ; B 69 -228 807 718 ;
|
202
|
+
C -1 ; WX 278 ; N lacute ; B 69 0 528 936 ;
|
203
|
+
C -1 ; WX 556 ; N agrave ; B 55 -14 583 750 ;
|
204
|
+
C -1 ; WX 611 ; N Tcommaaccent ; B 140 -228 751 718 ;
|
205
|
+
C -1 ; WX 722 ; N Cacute ; B 107 -19 789 936 ;
|
206
|
+
C -1 ; WX 556 ; N atilde ; B 55 -14 619 737 ;
|
207
|
+
C -1 ; WX 667 ; N Edotaccent ; B 76 0 757 915 ;
|
208
|
+
C -1 ; WX 556 ; N scaron ; B 63 -14 614 750 ;
|
209
|
+
C -1 ; WX 556 ; N scedilla ; B 63 -228 584 546 ;
|
210
|
+
C -1 ; WX 278 ; N iacute ; B 69 0 488 750 ;
|
211
|
+
C -1 ; WX 494 ; N lozenge ; B 90 0 564 745 ;
|
212
|
+
C -1 ; WX 722 ; N Rcaron ; B 76 0 778 936 ;
|
213
|
+
C -1 ; WX 778 ; N Gcommaaccent ; B 108 -228 817 737 ;
|
214
|
+
C -1 ; WX 611 ; N ucircumflex ; B 98 -14 658 750 ;
|
215
|
+
C -1 ; WX 556 ; N acircumflex ; B 55 -14 583 750 ;
|
216
|
+
C -1 ; WX 722 ; N Amacron ; B 20 0 718 864 ;
|
217
|
+
C -1 ; WX 389 ; N rcaron ; B 64 0 530 750 ;
|
218
|
+
C -1 ; WX 556 ; N ccedilla ; B 79 -228 599 546 ;
|
219
|
+
C -1 ; WX 611 ; N Zdotaccent ; B 25 0 737 915 ;
|
220
|
+
C -1 ; WX 667 ; N Thorn ; B 76 0 716 718 ;
|
221
|
+
C -1 ; WX 778 ; N Omacron ; B 107 -19 823 864 ;
|
222
|
+
C -1 ; WX 722 ; N Racute ; B 76 0 778 936 ;
|
223
|
+
C -1 ; WX 667 ; N Sacute ; B 81 -19 722 936 ;
|
224
|
+
C -1 ; WX 743 ; N dcaron ; B 82 -14 903 718 ;
|
225
|
+
C -1 ; WX 722 ; N Umacron ; B 116 -19 804 864 ;
|
226
|
+
C -1 ; WX 611 ; N uring ; B 98 -14 658 776 ;
|
227
|
+
C -1 ; WX 333 ; N threesuperior ; B 91 271 441 710 ;
|
228
|
+
C -1 ; WX 778 ; N Ograve ; B 107 -19 823 936 ;
|
229
|
+
C -1 ; WX 722 ; N Agrave ; B 20 0 702 936 ;
|
230
|
+
C -1 ; WX 722 ; N Abreve ; B 20 0 729 936 ;
|
231
|
+
C -1 ; WX 584 ; N multiply ; B 57 1 635 505 ;
|
232
|
+
C -1 ; WX 611 ; N uacute ; B 98 -14 658 750 ;
|
233
|
+
C -1 ; WX 611 ; N Tcaron ; B 140 0 751 936 ;
|
234
|
+
C -1 ; WX 494 ; N partialdiff ; B 43 -21 585 750 ;
|
235
|
+
C -1 ; WX 556 ; N ydieresis ; B 42 -214 652 729 ;
|
236
|
+
C -1 ; WX 722 ; N Nacute ; B 69 0 807 936 ;
|
237
|
+
C -1 ; WX 278 ; N icircumflex ; B 69 0 444 750 ;
|
238
|
+
C -1 ; WX 667 ; N Ecircumflex ; B 76 0 757 936 ;
|
239
|
+
C -1 ; WX 556 ; N adieresis ; B 55 -14 594 729 ;
|
240
|
+
C -1 ; WX 556 ; N edieresis ; B 70 -14 594 729 ;
|
241
|
+
C -1 ; WX 556 ; N cacute ; B 79 -14 627 750 ;
|
242
|
+
C -1 ; WX 611 ; N nacute ; B 65 0 654 750 ;
|
243
|
+
C -1 ; WX 611 ; N umacron ; B 98 -14 658 678 ;
|
244
|
+
C -1 ; WX 722 ; N Ncaron ; B 69 0 807 936 ;
|
245
|
+
C -1 ; WX 278 ; N Iacute ; B 64 0 528 936 ;
|
246
|
+
C -1 ; WX 584 ; N plusminus ; B 40 0 625 506 ;
|
247
|
+
C -1 ; WX 280 ; N brokenbar ; B 52 -150 345 700 ;
|
248
|
+
C -1 ; WX 737 ; N registered ; B 55 -19 834 737 ;
|
249
|
+
C -1 ; WX 778 ; N Gbreve ; B 108 -19 817 936 ;
|
250
|
+
C -1 ; WX 278 ; N Idotaccent ; B 64 0 397 915 ;
|
251
|
+
C -1 ; WX 600 ; N summation ; B 14 -10 670 706 ;
|
252
|
+
C -1 ; WX 667 ; N Egrave ; B 76 0 757 936 ;
|
253
|
+
C -1 ; WX 389 ; N racute ; B 64 0 543 750 ;
|
254
|
+
C -1 ; WX 611 ; N omacron ; B 82 -14 643 678 ;
|
255
|
+
C -1 ; WX 611 ; N Zacute ; B 25 0 737 936 ;
|
256
|
+
C -1 ; WX 611 ; N Zcaron ; B 25 0 737 936 ;
|
257
|
+
C -1 ; WX 549 ; N greaterequal ; B 26 0 629 704 ;
|
258
|
+
C -1 ; WX 722 ; N Eth ; B 62 0 777 718 ;
|
259
|
+
C -1 ; WX 722 ; N Ccedilla ; B 107 -228 789 737 ;
|
260
|
+
C -1 ; WX 278 ; N lcommaaccent ; B 30 -228 362 718 ;
|
261
|
+
C -1 ; WX 389 ; N tcaron ; B 100 -6 608 878 ;
|
262
|
+
C -1 ; WX 556 ; N eogonek ; B 70 -228 593 546 ;
|
263
|
+
C -1 ; WX 722 ; N Uogonek ; B 116 -228 804 718 ;
|
264
|
+
C -1 ; WX 722 ; N Aacute ; B 20 0 750 936 ;
|
265
|
+
C -1 ; WX 722 ; N Adieresis ; B 20 0 716 915 ;
|
266
|
+
C -1 ; WX 556 ; N egrave ; B 70 -14 593 750 ;
|
267
|
+
C -1 ; WX 500 ; N zacute ; B 20 0 599 750 ;
|
268
|
+
C -1 ; WX 278 ; N iogonek ; B -14 -224 363 725 ;
|
269
|
+
C -1 ; WX 778 ; N Oacute ; B 107 -19 823 936 ;
|
270
|
+
C -1 ; WX 611 ; N oacute ; B 82 -14 654 750 ;
|
271
|
+
C -1 ; WX 556 ; N amacron ; B 55 -14 595 678 ;
|
272
|
+
C -1 ; WX 556 ; N sacute ; B 63 -14 627 750 ;
|
273
|
+
C -1 ; WX 278 ; N idieresis ; B 69 0 455 729 ;
|
274
|
+
C -1 ; WX 778 ; N Ocircumflex ; B 107 -19 823 936 ;
|
275
|
+
C -1 ; WX 722 ; N Ugrave ; B 116 -19 804 936 ;
|
276
|
+
C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ;
|
277
|
+
C -1 ; WX 611 ; N thorn ; B 18 -208 645 718 ;
|
278
|
+
C -1 ; WX 333 ; N twosuperior ; B 69 283 449 710 ;
|
279
|
+
C -1 ; WX 778 ; N Odieresis ; B 107 -19 823 915 ;
|
280
|
+
C -1 ; WX 611 ; N mu ; B 22 -207 658 532 ;
|
281
|
+
C -1 ; WX 278 ; N igrave ; B 69 0 326 750 ;
|
282
|
+
C -1 ; WX 611 ; N ohungarumlaut ; B 82 -14 784 750 ;
|
283
|
+
C -1 ; WX 667 ; N Eogonek ; B 76 -224 757 718 ;
|
284
|
+
C -1 ; WX 611 ; N dcroat ; B 82 -14 789 718 ;
|
285
|
+
C -1 ; WX 834 ; N threequarters ; B 99 -19 839 710 ;
|
286
|
+
C -1 ; WX 667 ; N Scedilla ; B 81 -228 718 737 ;
|
287
|
+
C -1 ; WX 400 ; N lcaron ; B 69 0 561 718 ;
|
288
|
+
C -1 ; WX 722 ; N Kcommaaccent ; B 87 -228 858 718 ;
|
289
|
+
C -1 ; WX 611 ; N Lacute ; B 76 0 611 936 ;
|
290
|
+
C -1 ; WX 1000 ; N trademark ; B 179 306 1109 718 ;
|
291
|
+
C -1 ; WX 556 ; N edotaccent ; B 70 -14 593 729 ;
|
292
|
+
C -1 ; WX 278 ; N Igrave ; B 64 0 367 936 ;
|
293
|
+
C -1 ; WX 278 ; N Imacron ; B 64 0 496 864 ;
|
294
|
+
C -1 ; WX 611 ; N Lcaron ; B 76 0 643 718 ;
|
295
|
+
C -1 ; WX 834 ; N onehalf ; B 132 -19 858 710 ;
|
296
|
+
C -1 ; WX 549 ; N lessequal ; B 29 0 676 704 ;
|
297
|
+
C -1 ; WX 611 ; N ocircumflex ; B 82 -14 643 750 ;
|
298
|
+
C -1 ; WX 611 ; N ntilde ; B 65 0 646 737 ;
|
299
|
+
C -1 ; WX 722 ; N Uhungarumlaut ; B 116 -19 880 936 ;
|
300
|
+
C -1 ; WX 667 ; N Eacute ; B 76 0 757 936 ;
|
301
|
+
C -1 ; WX 556 ; N emacron ; B 70 -14 595 678 ;
|
302
|
+
C -1 ; WX 611 ; N gbreve ; B 38 -217 666 750 ;
|
303
|
+
C -1 ; WX 834 ; N onequarter ; B 132 -19 806 710 ;
|
304
|
+
C -1 ; WX 667 ; N Scaron ; B 81 -19 718 936 ;
|
305
|
+
C -1 ; WX 667 ; N Scommaaccent ; B 81 -228 718 737 ;
|
306
|
+
C -1 ; WX 778 ; N Ohungarumlaut ; B 107 -19 908 936 ;
|
307
|
+
C -1 ; WX 400 ; N degree ; B 175 426 467 712 ;
|
308
|
+
C -1 ; WX 611 ; N ograve ; B 82 -14 643 750 ;
|
309
|
+
C -1 ; WX 722 ; N Ccaron ; B 107 -19 789 936 ;
|
310
|
+
C -1 ; WX 611 ; N ugrave ; B 98 -14 658 750 ;
|
311
|
+
C -1 ; WX 549 ; N radical ; B 112 -46 689 850 ;
|
312
|
+
C -1 ; WX 722 ; N Dcaron ; B 76 0 777 936 ;
|
313
|
+
C -1 ; WX 389 ; N rcommaaccent ; B 26 -228 489 546 ;
|
314
|
+
C -1 ; WX 722 ; N Ntilde ; B 69 0 807 923 ;
|
315
|
+
C -1 ; WX 611 ; N otilde ; B 82 -14 646 737 ;
|
316
|
+
C -1 ; WX 722 ; N Rcommaaccent ; B 76 -228 778 718 ;
|
317
|
+
C -1 ; WX 611 ; N Lcommaaccent ; B 76 -228 611 718 ;
|
318
|
+
C -1 ; WX 722 ; N Atilde ; B 20 0 741 923 ;
|
319
|
+
C -1 ; WX 722 ; N Aogonek ; B 20 -224 702 718 ;
|
320
|
+
C -1 ; WX 722 ; N Aring ; B 20 0 702 962 ;
|
321
|
+
C -1 ; WX 778 ; N Otilde ; B 107 -19 823 923 ;
|
322
|
+
C -1 ; WX 500 ; N zdotaccent ; B 20 0 583 729 ;
|
323
|
+
C -1 ; WX 667 ; N Ecaron ; B 76 0 757 936 ;
|
324
|
+
C -1 ; WX 278 ; N Iogonek ; B -41 -228 367 718 ;
|
325
|
+
C -1 ; WX 556 ; N kcommaaccent ; B 69 -228 670 718 ;
|
326
|
+
C -1 ; WX 584 ; N minus ; B 82 197 610 309 ;
|
327
|
+
C -1 ; WX 278 ; N Icircumflex ; B 64 0 484 936 ;
|
328
|
+
C -1 ; WX 611 ; N ncaron ; B 65 0 641 750 ;
|
329
|
+
C -1 ; WX 333 ; N tcommaaccent ; B 58 -228 422 676 ;
|
330
|
+
C -1 ; WX 584 ; N logicalnot ; B 105 108 633 419 ;
|
331
|
+
C -1 ; WX 611 ; N odieresis ; B 82 -14 643 729 ;
|
332
|
+
C -1 ; WX 611 ; N udieresis ; B 98 -14 658 729 ;
|
333
|
+
C -1 ; WX 549 ; N notequal ; B 32 -49 630 570 ;
|
334
|
+
C -1 ; WX 611 ; N gcommaaccent ; B 38 -217 666 850 ;
|
335
|
+
C -1 ; WX 611 ; N eth ; B 82 -14 670 737 ;
|
336
|
+
C -1 ; WX 500 ; N zcaron ; B 20 0 586 750 ;
|
337
|
+
C -1 ; WX 611 ; N ncommaaccent ; B 65 -228 629 546 ;
|
338
|
+
C -1 ; WX 333 ; N onesuperior ; B 148 283 388 710 ;
|
339
|
+
C -1 ; WX 278 ; N imacron ; B 69 0 429 678 ;
|
340
|
+
C -1 ; WX 556 ; N Euro ; B 0 0 0 0 ;
|
341
|
+
EndCharMetrics
|
342
|
+
StartKernData
|
343
|
+
StartKernPairs 2481
|
344
|
+
KPX A C -40
|
345
|
+
KPX A Cacute -40
|
346
|
+
KPX A Ccaron -40
|
347
|
+
KPX A Ccedilla -40
|
348
|
+
KPX A G -50
|
349
|
+
KPX A Gbreve -50
|
350
|
+
KPX A Gcommaaccent -50
|
351
|
+
KPX A O -40
|
352
|
+
KPX A Oacute -40
|
353
|
+
KPX A Ocircumflex -40
|
354
|
+
KPX A Odieresis -40
|
355
|
+
KPX A Ograve -40
|
356
|
+
KPX A Ohungarumlaut -40
|
357
|
+
KPX A Omacron -40
|
358
|
+
KPX A Oslash -40
|
359
|
+
KPX A Otilde -40
|
360
|
+
KPX A Q -40
|
361
|
+
KPX A T -90
|
362
|
+
KPX A Tcaron -90
|
363
|
+
KPX A Tcommaaccent -90
|
364
|
+
KPX A U -50
|
365
|
+
KPX A Uacute -50
|
366
|
+
KPX A Ucircumflex -50
|
367
|
+
KPX A Udieresis -50
|
368
|
+
KPX A Ugrave -50
|
369
|
+
KPX A Uhungarumlaut -50
|
370
|
+
KPX A Umacron -50
|
371
|
+
KPX A Uogonek -50
|
372
|
+
KPX A Uring -50
|
373
|
+
KPX A V -80
|
374
|
+
KPX A W -60
|
375
|
+
KPX A Y -110
|
376
|
+
KPX A Yacute -110
|
377
|
+
KPX A Ydieresis -110
|
378
|
+
KPX A u -30
|
379
|
+
KPX A uacute -30
|
380
|
+
KPX A ucircumflex -30
|
381
|
+
KPX A udieresis -30
|
382
|
+
KPX A ugrave -30
|
383
|
+
KPX A uhungarumlaut -30
|
384
|
+
KPX A umacron -30
|
385
|
+
KPX A uogonek -30
|
386
|
+
KPX A uring -30
|
387
|
+
KPX A v -40
|
388
|
+
KPX A w -30
|
389
|
+
KPX A y -30
|
390
|
+
KPX A yacute -30
|
391
|
+
KPX A ydieresis -30
|
392
|
+
KPX Aacute C -40
|
393
|
+
KPX Aacute Cacute -40
|
394
|
+
KPX Aacute Ccaron -40
|
395
|
+
KPX Aacute Ccedilla -40
|
396
|
+
KPX Aacute G -50
|
397
|
+
KPX Aacute Gbreve -50
|
398
|
+
KPX Aacute Gcommaaccent -50
|
399
|
+
KPX Aacute O -40
|
400
|
+
KPX Aacute Oacute -40
|
401
|
+
KPX Aacute Ocircumflex -40
|
402
|
+
KPX Aacute Odieresis -40
|
403
|
+
KPX Aacute Ograve -40
|
404
|
+
KPX Aacute Ohungarumlaut -40
|
405
|
+
KPX Aacute Omacron -40
|
406
|
+
KPX Aacute Oslash -40
|
407
|
+
KPX Aacute Otilde -40
|
408
|
+
KPX Aacute Q -40
|
409
|
+
KPX Aacute T -90
|
410
|
+
KPX Aacute Tcaron -90
|
411
|
+
KPX Aacute Tcommaaccent -90
|
412
|
+
KPX Aacute U -50
|
413
|
+
KPX Aacute Uacute -50
|
414
|
+
KPX Aacute Ucircumflex -50
|
415
|
+
KPX Aacute Udieresis -50
|
416
|
+
KPX Aacute Ugrave -50
|
417
|
+
KPX Aacute Uhungarumlaut -50
|
418
|
+
KPX Aacute Umacron -50
|
419
|
+
KPX Aacute Uogonek -50
|
420
|
+
KPX Aacute Uring -50
|
421
|
+
KPX Aacute V -80
|
422
|
+
KPX Aacute W -60
|
423
|
+
KPX Aacute Y -110
|
424
|
+
KPX Aacute Yacute -110
|
425
|
+
KPX Aacute Ydieresis -110
|
426
|
+
KPX Aacute u -30
|
427
|
+
KPX Aacute uacute -30
|
428
|
+
KPX Aacute ucircumflex -30
|
429
|
+
KPX Aacute udieresis -30
|
430
|
+
KPX Aacute ugrave -30
|
431
|
+
KPX Aacute uhungarumlaut -30
|
432
|
+
KPX Aacute umacron -30
|
433
|
+
KPX Aacute uogonek -30
|
434
|
+
KPX Aacute uring -30
|
435
|
+
KPX Aacute v -40
|
436
|
+
KPX Aacute w -30
|
437
|
+
KPX Aacute y -30
|
438
|
+
KPX Aacute yacute -30
|
439
|
+
KPX Aacute ydieresis -30
|
440
|
+
KPX Abreve C -40
|
441
|
+
KPX Abreve Cacute -40
|
442
|
+
KPX Abreve Ccaron -40
|
443
|
+
KPX Abreve Ccedilla -40
|
444
|
+
KPX Abreve G -50
|
445
|
+
KPX Abreve Gbreve -50
|
446
|
+
KPX Abreve Gcommaaccent -50
|
447
|
+
KPX Abreve O -40
|
448
|
+
KPX Abreve Oacute -40
|
449
|
+
KPX Abreve Ocircumflex -40
|
450
|
+
KPX Abreve Odieresis -40
|
451
|
+
KPX Abreve Ograve -40
|
452
|
+
KPX Abreve Ohungarumlaut -40
|
453
|
+
KPX Abreve Omacron -40
|
454
|
+
KPX Abreve Oslash -40
|
455
|
+
KPX Abreve Otilde -40
|
456
|
+
KPX Abreve Q -40
|
457
|
+
KPX Abreve T -90
|
458
|
+
KPX Abreve Tcaron -90
|
459
|
+
KPX Abreve Tcommaaccent -90
|
460
|
+
KPX Abreve U -50
|
461
|
+
KPX Abreve Uacute -50
|
462
|
+
KPX Abreve Ucircumflex -50
|
463
|
+
KPX Abreve Udieresis -50
|
464
|
+
KPX Abreve Ugrave -50
|
465
|
+
KPX Abreve Uhungarumlaut -50
|
466
|
+
KPX Abreve Umacron -50
|
467
|
+
KPX Abreve Uogonek -50
|
468
|
+
KPX Abreve Uring -50
|
469
|
+
KPX Abreve V -80
|
470
|
+
KPX Abreve W -60
|
471
|
+
KPX Abreve Y -110
|
472
|
+
KPX Abreve Yacute -110
|
473
|
+
KPX Abreve Ydieresis -110
|
474
|
+
KPX Abreve u -30
|
475
|
+
KPX Abreve uacute -30
|
476
|
+
KPX Abreve ucircumflex -30
|
477
|
+
KPX Abreve udieresis -30
|
478
|
+
KPX Abreve ugrave -30
|
479
|
+
KPX Abreve uhungarumlaut -30
|
480
|
+
KPX Abreve umacron -30
|
481
|
+
KPX Abreve uogonek -30
|
482
|
+
KPX Abreve uring -30
|
483
|
+
KPX Abreve v -40
|
484
|
+
KPX Abreve w -30
|
485
|
+
KPX Abreve y -30
|
486
|
+
KPX Abreve yacute -30
|
487
|
+
KPX Abreve ydieresis -30
|
488
|
+
KPX Acircumflex C -40
|
489
|
+
KPX Acircumflex Cacute -40
|
490
|
+
KPX Acircumflex Ccaron -40
|
491
|
+
KPX Acircumflex Ccedilla -40
|
492
|
+
KPX Acircumflex G -50
|
493
|
+
KPX Acircumflex Gbreve -50
|
494
|
+
KPX Acircumflex Gcommaaccent -50
|
495
|
+
KPX Acircumflex O -40
|
496
|
+
KPX Acircumflex Oacute -40
|
497
|
+
KPX Acircumflex Ocircumflex -40
|
498
|
+
KPX Acircumflex Odieresis -40
|
499
|
+
KPX Acircumflex Ograve -40
|
500
|
+
KPX Acircumflex Ohungarumlaut -40
|
501
|
+
KPX Acircumflex Omacron -40
|
502
|
+
KPX Acircumflex Oslash -40
|
503
|
+
KPX Acircumflex Otilde -40
|
504
|
+
KPX Acircumflex Q -40
|
505
|
+
KPX Acircumflex T -90
|
506
|
+
KPX Acircumflex Tcaron -90
|
507
|
+
KPX Acircumflex Tcommaaccent -90
|
508
|
+
KPX Acircumflex U -50
|
509
|
+
KPX Acircumflex Uacute -50
|
510
|
+
KPX Acircumflex Ucircumflex -50
|
511
|
+
KPX Acircumflex Udieresis -50
|
512
|
+
KPX Acircumflex Ugrave -50
|
513
|
+
KPX Acircumflex Uhungarumlaut -50
|
514
|
+
KPX Acircumflex Umacron -50
|
515
|
+
KPX Acircumflex Uogonek -50
|
516
|
+
KPX Acircumflex Uring -50
|
517
|
+
KPX Acircumflex V -80
|
518
|
+
KPX Acircumflex W -60
|
519
|
+
KPX Acircumflex Y -110
|
520
|
+
KPX Acircumflex Yacute -110
|
521
|
+
KPX Acircumflex Ydieresis -110
|
522
|
+
KPX Acircumflex u -30
|
523
|
+
KPX Acircumflex uacute -30
|
524
|
+
KPX Acircumflex ucircumflex -30
|
525
|
+
KPX Acircumflex udieresis -30
|
526
|
+
KPX Acircumflex ugrave -30
|
527
|
+
KPX Acircumflex uhungarumlaut -30
|
528
|
+
KPX Acircumflex umacron -30
|
529
|
+
KPX Acircumflex uogonek -30
|
530
|
+
KPX Acircumflex uring -30
|
531
|
+
KPX Acircumflex v -40
|
532
|
+
KPX Acircumflex w -30
|
533
|
+
KPX Acircumflex y -30
|
534
|
+
KPX Acircumflex yacute -30
|
535
|
+
KPX Acircumflex ydieresis -30
|
536
|
+
KPX Adieresis C -40
|
537
|
+
KPX Adieresis Cacute -40
|
538
|
+
KPX Adieresis Ccaron -40
|
539
|
+
KPX Adieresis Ccedilla -40
|
540
|
+
KPX Adieresis G -50
|
541
|
+
KPX Adieresis Gbreve -50
|
542
|
+
KPX Adieresis Gcommaaccent -50
|
543
|
+
KPX Adieresis O -40
|
544
|
+
KPX Adieresis Oacute -40
|
545
|
+
KPX Adieresis Ocircumflex -40
|
546
|
+
KPX Adieresis Odieresis -40
|
547
|
+
KPX Adieresis Ograve -40
|
548
|
+
KPX Adieresis Ohungarumlaut -40
|
549
|
+
KPX Adieresis Omacron -40
|
550
|
+
KPX Adieresis Oslash -40
|
551
|
+
KPX Adieresis Otilde -40
|
552
|
+
KPX Adieresis Q -40
|
553
|
+
KPX Adieresis T -90
|
554
|
+
KPX Adieresis Tcaron -90
|
555
|
+
KPX Adieresis Tcommaaccent -90
|
556
|
+
KPX Adieresis U -50
|
557
|
+
KPX Adieresis Uacute -50
|
558
|
+
KPX Adieresis Ucircumflex -50
|
559
|
+
KPX Adieresis Udieresis -50
|
560
|
+
KPX Adieresis Ugrave -50
|
561
|
+
KPX Adieresis Uhungarumlaut -50
|
562
|
+
KPX Adieresis Umacron -50
|
563
|
+
KPX Adieresis Uogonek -50
|
564
|
+
KPX Adieresis Uring -50
|
565
|
+
KPX Adieresis V -80
|
566
|
+
KPX Adieresis W -60
|
567
|
+
KPX Adieresis Y -110
|
568
|
+
KPX Adieresis Yacute -110
|
569
|
+
KPX Adieresis Ydieresis -110
|
570
|
+
KPX Adieresis u -30
|
571
|
+
KPX Adieresis uacute -30
|
572
|
+
KPX Adieresis ucircumflex -30
|
573
|
+
KPX Adieresis udieresis -30
|
574
|
+
KPX Adieresis ugrave -30
|
575
|
+
KPX Adieresis uhungarumlaut -30
|
576
|
+
KPX Adieresis umacron -30
|
577
|
+
KPX Adieresis uogonek -30
|
578
|
+
KPX Adieresis uring -30
|
579
|
+
KPX Adieresis v -40
|
580
|
+
KPX Adieresis w -30
|
581
|
+
KPX Adieresis y -30
|
582
|
+
KPX Adieresis yacute -30
|
583
|
+
KPX Adieresis ydieresis -30
|
584
|
+
KPX Agrave C -40
|
585
|
+
KPX Agrave Cacute -40
|
586
|
+
KPX Agrave Ccaron -40
|
587
|
+
KPX Agrave Ccedilla -40
|
588
|
+
KPX Agrave G -50
|
589
|
+
KPX Agrave Gbreve -50
|
590
|
+
KPX Agrave Gcommaaccent -50
|
591
|
+
KPX Agrave O -40
|
592
|
+
KPX Agrave Oacute -40
|
593
|
+
KPX Agrave Ocircumflex -40
|
594
|
+
KPX Agrave Odieresis -40
|
595
|
+
KPX Agrave Ograve -40
|
596
|
+
KPX Agrave Ohungarumlaut -40
|
597
|
+
KPX Agrave Omacron -40
|
598
|
+
KPX Agrave Oslash -40
|
599
|
+
KPX Agrave Otilde -40
|
600
|
+
KPX Agrave Q -40
|
601
|
+
KPX Agrave T -90
|
602
|
+
KPX Agrave Tcaron -90
|
603
|
+
KPX Agrave Tcommaaccent -90
|
604
|
+
KPX Agrave U -50
|
605
|
+
KPX Agrave Uacute -50
|
606
|
+
KPX Agrave Ucircumflex -50
|
607
|
+
KPX Agrave Udieresis -50
|
608
|
+
KPX Agrave Ugrave -50
|
609
|
+
KPX Agrave Uhungarumlaut -50
|
610
|
+
KPX Agrave Umacron -50
|
611
|
+
KPX Agrave Uogonek -50
|
612
|
+
KPX Agrave Uring -50
|
613
|
+
KPX Agrave V -80
|
614
|
+
KPX Agrave W -60
|
615
|
+
KPX Agrave Y -110
|
616
|
+
KPX Agrave Yacute -110
|
617
|
+
KPX Agrave Ydieresis -110
|
618
|
+
KPX Agrave u -30
|
619
|
+
KPX Agrave uacute -30
|
620
|
+
KPX Agrave ucircumflex -30
|
621
|
+
KPX Agrave udieresis -30
|
622
|
+
KPX Agrave ugrave -30
|
623
|
+
KPX Agrave uhungarumlaut -30
|
624
|
+
KPX Agrave umacron -30
|
625
|
+
KPX Agrave uogonek -30
|
626
|
+
KPX Agrave uring -30
|
627
|
+
KPX Agrave v -40
|
628
|
+
KPX Agrave w -30
|
629
|
+
KPX Agrave y -30
|
630
|
+
KPX Agrave yacute -30
|
631
|
+
KPX Agrave ydieresis -30
|
632
|
+
KPX Amacron C -40
|
633
|
+
KPX Amacron Cacute -40
|
634
|
+
KPX Amacron Ccaron -40
|
635
|
+
KPX Amacron Ccedilla -40
|
636
|
+
KPX Amacron G -50
|
637
|
+
KPX Amacron Gbreve -50
|
638
|
+
KPX Amacron Gcommaaccent -50
|
639
|
+
KPX Amacron O -40
|
640
|
+
KPX Amacron Oacute -40
|
641
|
+
KPX Amacron Ocircumflex -40
|
642
|
+
KPX Amacron Odieresis -40
|
643
|
+
KPX Amacron Ograve -40
|
644
|
+
KPX Amacron Ohungarumlaut -40
|
645
|
+
KPX Amacron Omacron -40
|
646
|
+
KPX Amacron Oslash -40
|
647
|
+
KPX Amacron Otilde -40
|
648
|
+
KPX Amacron Q -40
|
649
|
+
KPX Amacron T -90
|
650
|
+
KPX Amacron Tcaron -90
|
651
|
+
KPX Amacron Tcommaaccent -90
|
652
|
+
KPX Amacron U -50
|
653
|
+
KPX Amacron Uacute -50
|
654
|
+
KPX Amacron Ucircumflex -50
|
655
|
+
KPX Amacron Udieresis -50
|
656
|
+
KPX Amacron Ugrave -50
|
657
|
+
KPX Amacron Uhungarumlaut -50
|
658
|
+
KPX Amacron Umacron -50
|
659
|
+
KPX Amacron Uogonek -50
|
660
|
+
KPX Amacron Uring -50
|
661
|
+
KPX Amacron V -80
|
662
|
+
KPX Amacron W -60
|
663
|
+
KPX Amacron Y -110
|
664
|
+
KPX Amacron Yacute -110
|
665
|
+
KPX Amacron Ydieresis -110
|
666
|
+
KPX Amacron u -30
|
667
|
+
KPX Amacron uacute -30
|
668
|
+
KPX Amacron ucircumflex -30
|
669
|
+
KPX Amacron udieresis -30
|
670
|
+
KPX Amacron ugrave -30
|
671
|
+
KPX Amacron uhungarumlaut -30
|
672
|
+
KPX Amacron umacron -30
|
673
|
+
KPX Amacron uogonek -30
|
674
|
+
KPX Amacron uring -30
|
675
|
+
KPX Amacron v -40
|
676
|
+
KPX Amacron w -30
|
677
|
+
KPX Amacron y -30
|
678
|
+
KPX Amacron yacute -30
|
679
|
+
KPX Amacron ydieresis -30
|
680
|
+
KPX Aogonek C -40
|
681
|
+
KPX Aogonek Cacute -40
|
682
|
+
KPX Aogonek Ccaron -40
|
683
|
+
KPX Aogonek Ccedilla -40
|
684
|
+
KPX Aogonek G -50
|
685
|
+
KPX Aogonek Gbreve -50
|
686
|
+
KPX Aogonek Gcommaaccent -50
|
687
|
+
KPX Aogonek O -40
|
688
|
+
KPX Aogonek Oacute -40
|
689
|
+
KPX Aogonek Ocircumflex -40
|
690
|
+
KPX Aogonek Odieresis -40
|
691
|
+
KPX Aogonek Ograve -40
|
692
|
+
KPX Aogonek Ohungarumlaut -40
|
693
|
+
KPX Aogonek Omacron -40
|
694
|
+
KPX Aogonek Oslash -40
|
695
|
+
KPX Aogonek Otilde -40
|
696
|
+
KPX Aogonek Q -40
|
697
|
+
KPX Aogonek T -90
|
698
|
+
KPX Aogonek Tcaron -90
|
699
|
+
KPX Aogonek Tcommaaccent -90
|
700
|
+
KPX Aogonek U -50
|
701
|
+
KPX Aogonek Uacute -50
|
702
|
+
KPX Aogonek Ucircumflex -50
|
703
|
+
KPX Aogonek Udieresis -50
|
704
|
+
KPX Aogonek Ugrave -50
|
705
|
+
KPX Aogonek Uhungarumlaut -50
|
706
|
+
KPX Aogonek Umacron -50
|
707
|
+
KPX Aogonek Uogonek -50
|
708
|
+
KPX Aogonek Uring -50
|
709
|
+
KPX Aogonek V -80
|
710
|
+
KPX Aogonek W -60
|
711
|
+
KPX Aogonek Y -110
|
712
|
+
KPX Aogonek Yacute -110
|
713
|
+
KPX Aogonek Ydieresis -110
|
714
|
+
KPX Aogonek u -30
|
715
|
+
KPX Aogonek uacute -30
|
716
|
+
KPX Aogonek ucircumflex -30
|
717
|
+
KPX Aogonek udieresis -30
|
718
|
+
KPX Aogonek ugrave -30
|
719
|
+
KPX Aogonek uhungarumlaut -30
|
720
|
+
KPX Aogonek umacron -30
|
721
|
+
KPX Aogonek uogonek -30
|
722
|
+
KPX Aogonek uring -30
|
723
|
+
KPX Aogonek v -40
|
724
|
+
KPX Aogonek w -30
|
725
|
+
KPX Aogonek y -30
|
726
|
+
KPX Aogonek yacute -30
|
727
|
+
KPX Aogonek ydieresis -30
|
728
|
+
KPX Aring C -40
|
729
|
+
KPX Aring Cacute -40
|
730
|
+
KPX Aring Ccaron -40
|
731
|
+
KPX Aring Ccedilla -40
|
732
|
+
KPX Aring G -50
|
733
|
+
KPX Aring Gbreve -50
|
734
|
+
KPX Aring Gcommaaccent -50
|
735
|
+
KPX Aring O -40
|
736
|
+
KPX Aring Oacute -40
|
737
|
+
KPX Aring Ocircumflex -40
|
738
|
+
KPX Aring Odieresis -40
|
739
|
+
KPX Aring Ograve -40
|
740
|
+
KPX Aring Ohungarumlaut -40
|
741
|
+
KPX Aring Omacron -40
|
742
|
+
KPX Aring Oslash -40
|
743
|
+
KPX Aring Otilde -40
|
744
|
+
KPX Aring Q -40
|
745
|
+
KPX Aring T -90
|
746
|
+
KPX Aring Tcaron -90
|
747
|
+
KPX Aring Tcommaaccent -90
|
748
|
+
KPX Aring U -50
|
749
|
+
KPX Aring Uacute -50
|
750
|
+
KPX Aring Ucircumflex -50
|
751
|
+
KPX Aring Udieresis -50
|
752
|
+
KPX Aring Ugrave -50
|
753
|
+
KPX Aring Uhungarumlaut -50
|
754
|
+
KPX Aring Umacron -50
|
755
|
+
KPX Aring Uogonek -50
|
756
|
+
KPX Aring Uring -50
|
757
|
+
KPX Aring V -80
|
758
|
+
KPX Aring W -60
|
759
|
+
KPX Aring Y -110
|
760
|
+
KPX Aring Yacute -110
|
761
|
+
KPX Aring Ydieresis -110
|
762
|
+
KPX Aring u -30
|
763
|
+
KPX Aring uacute -30
|
764
|
+
KPX Aring ucircumflex -30
|
765
|
+
KPX Aring udieresis -30
|
766
|
+
KPX Aring ugrave -30
|
767
|
+
KPX Aring uhungarumlaut -30
|
768
|
+
KPX Aring umacron -30
|
769
|
+
KPX Aring uogonek -30
|
770
|
+
KPX Aring uring -30
|
771
|
+
KPX Aring v -40
|
772
|
+
KPX Aring w -30
|
773
|
+
KPX Aring y -30
|
774
|
+
KPX Aring yacute -30
|
775
|
+
KPX Aring ydieresis -30
|
776
|
+
KPX Atilde C -40
|
777
|
+
KPX Atilde Cacute -40
|
778
|
+
KPX Atilde Ccaron -40
|
779
|
+
KPX Atilde Ccedilla -40
|
780
|
+
KPX Atilde G -50
|
781
|
+
KPX Atilde Gbreve -50
|
782
|
+
KPX Atilde Gcommaaccent -50
|
783
|
+
KPX Atilde O -40
|
784
|
+
KPX Atilde Oacute -40
|
785
|
+
KPX Atilde Ocircumflex -40
|
786
|
+
KPX Atilde Odieresis -40
|
787
|
+
KPX Atilde Ograve -40
|
788
|
+
KPX Atilde Ohungarumlaut -40
|
789
|
+
KPX Atilde Omacron -40
|
790
|
+
KPX Atilde Oslash -40
|
791
|
+
KPX Atilde Otilde -40
|
792
|
+
KPX Atilde Q -40
|
793
|
+
KPX Atilde T -90
|
794
|
+
KPX Atilde Tcaron -90
|
795
|
+
KPX Atilde Tcommaaccent -90
|
796
|
+
KPX Atilde U -50
|
797
|
+
KPX Atilde Uacute -50
|
798
|
+
KPX Atilde Ucircumflex -50
|
799
|
+
KPX Atilde Udieresis -50
|
800
|
+
KPX Atilde Ugrave -50
|
801
|
+
KPX Atilde Uhungarumlaut -50
|
802
|
+
KPX Atilde Umacron -50
|
803
|
+
KPX Atilde Uogonek -50
|
804
|
+
KPX Atilde Uring -50
|
805
|
+
KPX Atilde V -80
|
806
|
+
KPX Atilde W -60
|
807
|
+
KPX Atilde Y -110
|
808
|
+
KPX Atilde Yacute -110
|
809
|
+
KPX Atilde Ydieresis -110
|
810
|
+
KPX Atilde u -30
|
811
|
+
KPX Atilde uacute -30
|
812
|
+
KPX Atilde ucircumflex -30
|
813
|
+
KPX Atilde udieresis -30
|
814
|
+
KPX Atilde ugrave -30
|
815
|
+
KPX Atilde uhungarumlaut -30
|
816
|
+
KPX Atilde umacron -30
|
817
|
+
KPX Atilde uogonek -30
|
818
|
+
KPX Atilde uring -30
|
819
|
+
KPX Atilde v -40
|
820
|
+
KPX Atilde w -30
|
821
|
+
KPX Atilde y -30
|
822
|
+
KPX Atilde yacute -30
|
823
|
+
KPX Atilde ydieresis -30
|
824
|
+
KPX B A -30
|
825
|
+
KPX B Aacute -30
|
826
|
+
KPX B Abreve -30
|
827
|
+
KPX B Acircumflex -30
|
828
|
+
KPX B Adieresis -30
|
829
|
+
KPX B Agrave -30
|
830
|
+
KPX B Amacron -30
|
831
|
+
KPX B Aogonek -30
|
832
|
+
KPX B Aring -30
|
833
|
+
KPX B Atilde -30
|
834
|
+
KPX B U -10
|
835
|
+
KPX B Uacute -10
|
836
|
+
KPX B Ucircumflex -10
|
837
|
+
KPX B Udieresis -10
|
838
|
+
KPX B Ugrave -10
|
839
|
+
KPX B Uhungarumlaut -10
|
840
|
+
KPX B Umacron -10
|
841
|
+
KPX B Uogonek -10
|
842
|
+
KPX B Uring -10
|
843
|
+
KPX D A -40
|
844
|
+
KPX D Aacute -40
|
845
|
+
KPX D Abreve -40
|
846
|
+
KPX D Acircumflex -40
|
847
|
+
KPX D Adieresis -40
|
848
|
+
KPX D Agrave -40
|
849
|
+
KPX D Amacron -40
|
850
|
+
KPX D Aogonek -40
|
851
|
+
KPX D Aring -40
|
852
|
+
KPX D Atilde -40
|
853
|
+
KPX D V -40
|
854
|
+
KPX D W -40
|
855
|
+
KPX D Y -70
|
856
|
+
KPX D Yacute -70
|
857
|
+
KPX D Ydieresis -70
|
858
|
+
KPX D comma -30
|
859
|
+
KPX D period -30
|
860
|
+
KPX Dcaron A -40
|
861
|
+
KPX Dcaron Aacute -40
|
862
|
+
KPX Dcaron Abreve -40
|
863
|
+
KPX Dcaron Acircumflex -40
|
864
|
+
KPX Dcaron Adieresis -40
|
865
|
+
KPX Dcaron Agrave -40
|
866
|
+
KPX Dcaron Amacron -40
|
867
|
+
KPX Dcaron Aogonek -40
|
868
|
+
KPX Dcaron Aring -40
|
869
|
+
KPX Dcaron Atilde -40
|
870
|
+
KPX Dcaron V -40
|
871
|
+
KPX Dcaron W -40
|
872
|
+
KPX Dcaron Y -70
|
873
|
+
KPX Dcaron Yacute -70
|
874
|
+
KPX Dcaron Ydieresis -70
|
875
|
+
KPX Dcaron comma -30
|
876
|
+
KPX Dcaron period -30
|
877
|
+
KPX Dcroat A -40
|
878
|
+
KPX Dcroat Aacute -40
|
879
|
+
KPX Dcroat Abreve -40
|
880
|
+
KPX Dcroat Acircumflex -40
|
881
|
+
KPX Dcroat Adieresis -40
|
882
|
+
KPX Dcroat Agrave -40
|
883
|
+
KPX Dcroat Amacron -40
|
884
|
+
KPX Dcroat Aogonek -40
|
885
|
+
KPX Dcroat Aring -40
|
886
|
+
KPX Dcroat Atilde -40
|
887
|
+
KPX Dcroat V -40
|
888
|
+
KPX Dcroat W -40
|
889
|
+
KPX Dcroat Y -70
|
890
|
+
KPX Dcroat Yacute -70
|
891
|
+
KPX Dcroat Ydieresis -70
|
892
|
+
KPX Dcroat comma -30
|
893
|
+
KPX Dcroat period -30
|
894
|
+
KPX F A -80
|
895
|
+
KPX F Aacute -80
|
896
|
+
KPX F Abreve -80
|
897
|
+
KPX F Acircumflex -80
|
898
|
+
KPX F Adieresis -80
|
899
|
+
KPX F Agrave -80
|
900
|
+
KPX F Amacron -80
|
901
|
+
KPX F Aogonek -80
|
902
|
+
KPX F Aring -80
|
903
|
+
KPX F Atilde -80
|
904
|
+
KPX F a -20
|
905
|
+
KPX F aacute -20
|
906
|
+
KPX F abreve -20
|
907
|
+
KPX F acircumflex -20
|
908
|
+
KPX F adieresis -20
|
909
|
+
KPX F agrave -20
|
910
|
+
KPX F amacron -20
|
911
|
+
KPX F aogonek -20
|
912
|
+
KPX F aring -20
|
913
|
+
KPX F atilde -20
|
914
|
+
KPX F comma -100
|
915
|
+
KPX F period -100
|
916
|
+
KPX J A -20
|
917
|
+
KPX J Aacute -20
|
918
|
+
KPX J Abreve -20
|
919
|
+
KPX J Acircumflex -20
|
920
|
+
KPX J Adieresis -20
|
921
|
+
KPX J Agrave -20
|
922
|
+
KPX J Amacron -20
|
923
|
+
KPX J Aogonek -20
|
924
|
+
KPX J Aring -20
|
925
|
+
KPX J Atilde -20
|
926
|
+
KPX J comma -20
|
927
|
+
KPX J period -20
|
928
|
+
KPX J u -20
|
929
|
+
KPX J uacute -20
|
930
|
+
KPX J ucircumflex -20
|
931
|
+
KPX J udieresis -20
|
932
|
+
KPX J ugrave -20
|
933
|
+
KPX J uhungarumlaut -20
|
934
|
+
KPX J umacron -20
|
935
|
+
KPX J uogonek -20
|
936
|
+
KPX J uring -20
|
937
|
+
KPX K O -30
|
938
|
+
KPX K Oacute -30
|
939
|
+
KPX K Ocircumflex -30
|
940
|
+
KPX K Odieresis -30
|
941
|
+
KPX K Ograve -30
|
942
|
+
KPX K Ohungarumlaut -30
|
943
|
+
KPX K Omacron -30
|
944
|
+
KPX K Oslash -30
|
945
|
+
KPX K Otilde -30
|
946
|
+
KPX K e -15
|
947
|
+
KPX K eacute -15
|
948
|
+
KPX K ecaron -15
|
949
|
+
KPX K ecircumflex -15
|
950
|
+
KPX K edieresis -15
|
951
|
+
KPX K edotaccent -15
|
952
|
+
KPX K egrave -15
|
953
|
+
KPX K emacron -15
|
954
|
+
KPX K eogonek -15
|
955
|
+
KPX K o -35
|
956
|
+
KPX K oacute -35
|
957
|
+
KPX K ocircumflex -35
|
958
|
+
KPX K odieresis -35
|
959
|
+
KPX K ograve -35
|
960
|
+
KPX K ohungarumlaut -35
|
961
|
+
KPX K omacron -35
|
962
|
+
KPX K oslash -35
|
963
|
+
KPX K otilde -35
|
964
|
+
KPX K u -30
|
965
|
+
KPX K uacute -30
|
966
|
+
KPX K ucircumflex -30
|
967
|
+
KPX K udieresis -30
|
968
|
+
KPX K ugrave -30
|
969
|
+
KPX K uhungarumlaut -30
|
970
|
+
KPX K umacron -30
|
971
|
+
KPX K uogonek -30
|
972
|
+
KPX K uring -30
|
973
|
+
KPX K y -40
|
974
|
+
KPX K yacute -40
|
975
|
+
KPX K ydieresis -40
|
976
|
+
KPX Kcommaaccent O -30
|
977
|
+
KPX Kcommaaccent Oacute -30
|
978
|
+
KPX Kcommaaccent Ocircumflex -30
|
979
|
+
KPX Kcommaaccent Odieresis -30
|
980
|
+
KPX Kcommaaccent Ograve -30
|
981
|
+
KPX Kcommaaccent Ohungarumlaut -30
|
982
|
+
KPX Kcommaaccent Omacron -30
|
983
|
+
KPX Kcommaaccent Oslash -30
|
984
|
+
KPX Kcommaaccent Otilde -30
|
985
|
+
KPX Kcommaaccent e -15
|
986
|
+
KPX Kcommaaccent eacute -15
|
987
|
+
KPX Kcommaaccent ecaron -15
|
988
|
+
KPX Kcommaaccent ecircumflex -15
|
989
|
+
KPX Kcommaaccent edieresis -15
|
990
|
+
KPX Kcommaaccent edotaccent -15
|
991
|
+
KPX Kcommaaccent egrave -15
|
992
|
+
KPX Kcommaaccent emacron -15
|
993
|
+
KPX Kcommaaccent eogonek -15
|
994
|
+
KPX Kcommaaccent o -35
|
995
|
+
KPX Kcommaaccent oacute -35
|
996
|
+
KPX Kcommaaccent ocircumflex -35
|
997
|
+
KPX Kcommaaccent odieresis -35
|
998
|
+
KPX Kcommaaccent ograve -35
|
999
|
+
KPX Kcommaaccent ohungarumlaut -35
|
1000
|
+
KPX Kcommaaccent omacron -35
|
1001
|
+
KPX Kcommaaccent oslash -35
|
1002
|
+
KPX Kcommaaccent otilde -35
|
1003
|
+
KPX Kcommaaccent u -30
|
1004
|
+
KPX Kcommaaccent uacute -30
|
1005
|
+
KPX Kcommaaccent ucircumflex -30
|
1006
|
+
KPX Kcommaaccent udieresis -30
|
1007
|
+
KPX Kcommaaccent ugrave -30
|
1008
|
+
KPX Kcommaaccent uhungarumlaut -30
|
1009
|
+
KPX Kcommaaccent umacron -30
|
1010
|
+
KPX Kcommaaccent uogonek -30
|
1011
|
+
KPX Kcommaaccent uring -30
|
1012
|
+
KPX Kcommaaccent y -40
|
1013
|
+
KPX Kcommaaccent yacute -40
|
1014
|
+
KPX Kcommaaccent ydieresis -40
|
1015
|
+
KPX L T -90
|
1016
|
+
KPX L Tcaron -90
|
1017
|
+
KPX L Tcommaaccent -90
|
1018
|
+
KPX L V -110
|
1019
|
+
KPX L W -80
|
1020
|
+
KPX L Y -120
|
1021
|
+
KPX L Yacute -120
|
1022
|
+
KPX L Ydieresis -120
|
1023
|
+
KPX L quotedblright -140
|
1024
|
+
KPX L quoteright -140
|
1025
|
+
KPX L y -30
|
1026
|
+
KPX L yacute -30
|
1027
|
+
KPX L ydieresis -30
|
1028
|
+
KPX Lacute T -90
|
1029
|
+
KPX Lacute Tcaron -90
|
1030
|
+
KPX Lacute Tcommaaccent -90
|
1031
|
+
KPX Lacute V -110
|
1032
|
+
KPX Lacute W -80
|
1033
|
+
KPX Lacute Y -120
|
1034
|
+
KPX Lacute Yacute -120
|
1035
|
+
KPX Lacute Ydieresis -120
|
1036
|
+
KPX Lacute quotedblright -140
|
1037
|
+
KPX Lacute quoteright -140
|
1038
|
+
KPX Lacute y -30
|
1039
|
+
KPX Lacute yacute -30
|
1040
|
+
KPX Lacute ydieresis -30
|
1041
|
+
KPX Lcommaaccent T -90
|
1042
|
+
KPX Lcommaaccent Tcaron -90
|
1043
|
+
KPX Lcommaaccent Tcommaaccent -90
|
1044
|
+
KPX Lcommaaccent V -110
|
1045
|
+
KPX Lcommaaccent W -80
|
1046
|
+
KPX Lcommaaccent Y -120
|
1047
|
+
KPX Lcommaaccent Yacute -120
|
1048
|
+
KPX Lcommaaccent Ydieresis -120
|
1049
|
+
KPX Lcommaaccent quotedblright -140
|
1050
|
+
KPX Lcommaaccent quoteright -140
|
1051
|
+
KPX Lcommaaccent y -30
|
1052
|
+
KPX Lcommaaccent yacute -30
|
1053
|
+
KPX Lcommaaccent ydieresis -30
|
1054
|
+
KPX Lslash T -90
|
1055
|
+
KPX Lslash Tcaron -90
|
1056
|
+
KPX Lslash Tcommaaccent -90
|
1057
|
+
KPX Lslash V -110
|
1058
|
+
KPX Lslash W -80
|
1059
|
+
KPX Lslash Y -120
|
1060
|
+
KPX Lslash Yacute -120
|
1061
|
+
KPX Lslash Ydieresis -120
|
1062
|
+
KPX Lslash quotedblright -140
|
1063
|
+
KPX Lslash quoteright -140
|
1064
|
+
KPX Lslash y -30
|
1065
|
+
KPX Lslash yacute -30
|
1066
|
+
KPX Lslash ydieresis -30
|
1067
|
+
KPX O A -50
|
1068
|
+
KPX O Aacute -50
|
1069
|
+
KPX O Abreve -50
|
1070
|
+
KPX O Acircumflex -50
|
1071
|
+
KPX O Adieresis -50
|
1072
|
+
KPX O Agrave -50
|
1073
|
+
KPX O Amacron -50
|
1074
|
+
KPX O Aogonek -50
|
1075
|
+
KPX O Aring -50
|
1076
|
+
KPX O Atilde -50
|
1077
|
+
KPX O T -40
|
1078
|
+
KPX O Tcaron -40
|
1079
|
+
KPX O Tcommaaccent -40
|
1080
|
+
KPX O V -50
|
1081
|
+
KPX O W -50
|
1082
|
+
KPX O X -50
|
1083
|
+
KPX O Y -70
|
1084
|
+
KPX O Yacute -70
|
1085
|
+
KPX O Ydieresis -70
|
1086
|
+
KPX O comma -40
|
1087
|
+
KPX O period -40
|
1088
|
+
KPX Oacute A -50
|
1089
|
+
KPX Oacute Aacute -50
|
1090
|
+
KPX Oacute Abreve -50
|
1091
|
+
KPX Oacute Acircumflex -50
|
1092
|
+
KPX Oacute Adieresis -50
|
1093
|
+
KPX Oacute Agrave -50
|
1094
|
+
KPX Oacute Amacron -50
|
1095
|
+
KPX Oacute Aogonek -50
|
1096
|
+
KPX Oacute Aring -50
|
1097
|
+
KPX Oacute Atilde -50
|
1098
|
+
KPX Oacute T -40
|
1099
|
+
KPX Oacute Tcaron -40
|
1100
|
+
KPX Oacute Tcommaaccent -40
|
1101
|
+
KPX Oacute V -50
|
1102
|
+
KPX Oacute W -50
|
1103
|
+
KPX Oacute X -50
|
1104
|
+
KPX Oacute Y -70
|
1105
|
+
KPX Oacute Yacute -70
|
1106
|
+
KPX Oacute Ydieresis -70
|
1107
|
+
KPX Oacute comma -40
|
1108
|
+
KPX Oacute period -40
|
1109
|
+
KPX Ocircumflex A -50
|
1110
|
+
KPX Ocircumflex Aacute -50
|
1111
|
+
KPX Ocircumflex Abreve -50
|
1112
|
+
KPX Ocircumflex Acircumflex -50
|
1113
|
+
KPX Ocircumflex Adieresis -50
|
1114
|
+
KPX Ocircumflex Agrave -50
|
1115
|
+
KPX Ocircumflex Amacron -50
|
1116
|
+
KPX Ocircumflex Aogonek -50
|
1117
|
+
KPX Ocircumflex Aring -50
|
1118
|
+
KPX Ocircumflex Atilde -50
|
1119
|
+
KPX Ocircumflex T -40
|
1120
|
+
KPX Ocircumflex Tcaron -40
|
1121
|
+
KPX Ocircumflex Tcommaaccent -40
|
1122
|
+
KPX Ocircumflex V -50
|
1123
|
+
KPX Ocircumflex W -50
|
1124
|
+
KPX Ocircumflex X -50
|
1125
|
+
KPX Ocircumflex Y -70
|
1126
|
+
KPX Ocircumflex Yacute -70
|
1127
|
+
KPX Ocircumflex Ydieresis -70
|
1128
|
+
KPX Ocircumflex comma -40
|
1129
|
+
KPX Ocircumflex period -40
|
1130
|
+
KPX Odieresis A -50
|
1131
|
+
KPX Odieresis Aacute -50
|
1132
|
+
KPX Odieresis Abreve -50
|
1133
|
+
KPX Odieresis Acircumflex -50
|
1134
|
+
KPX Odieresis Adieresis -50
|
1135
|
+
KPX Odieresis Agrave -50
|
1136
|
+
KPX Odieresis Amacron -50
|
1137
|
+
KPX Odieresis Aogonek -50
|
1138
|
+
KPX Odieresis Aring -50
|
1139
|
+
KPX Odieresis Atilde -50
|
1140
|
+
KPX Odieresis T -40
|
1141
|
+
KPX Odieresis Tcaron -40
|
1142
|
+
KPX Odieresis Tcommaaccent -40
|
1143
|
+
KPX Odieresis V -50
|
1144
|
+
KPX Odieresis W -50
|
1145
|
+
KPX Odieresis X -50
|
1146
|
+
KPX Odieresis Y -70
|
1147
|
+
KPX Odieresis Yacute -70
|
1148
|
+
KPX Odieresis Ydieresis -70
|
1149
|
+
KPX Odieresis comma -40
|
1150
|
+
KPX Odieresis period -40
|
1151
|
+
KPX Ograve A -50
|
1152
|
+
KPX Ograve Aacute -50
|
1153
|
+
KPX Ograve Abreve -50
|
1154
|
+
KPX Ograve Acircumflex -50
|
1155
|
+
KPX Ograve Adieresis -50
|
1156
|
+
KPX Ograve Agrave -50
|
1157
|
+
KPX Ograve Amacron -50
|
1158
|
+
KPX Ograve Aogonek -50
|
1159
|
+
KPX Ograve Aring -50
|
1160
|
+
KPX Ograve Atilde -50
|
1161
|
+
KPX Ograve T -40
|
1162
|
+
KPX Ograve Tcaron -40
|
1163
|
+
KPX Ograve Tcommaaccent -40
|
1164
|
+
KPX Ograve V -50
|
1165
|
+
KPX Ograve W -50
|
1166
|
+
KPX Ograve X -50
|
1167
|
+
KPX Ograve Y -70
|
1168
|
+
KPX Ograve Yacute -70
|
1169
|
+
KPX Ograve Ydieresis -70
|
1170
|
+
KPX Ograve comma -40
|
1171
|
+
KPX Ograve period -40
|
1172
|
+
KPX Ohungarumlaut A -50
|
1173
|
+
KPX Ohungarumlaut Aacute -50
|
1174
|
+
KPX Ohungarumlaut Abreve -50
|
1175
|
+
KPX Ohungarumlaut Acircumflex -50
|
1176
|
+
KPX Ohungarumlaut Adieresis -50
|
1177
|
+
KPX Ohungarumlaut Agrave -50
|
1178
|
+
KPX Ohungarumlaut Amacron -50
|
1179
|
+
KPX Ohungarumlaut Aogonek -50
|
1180
|
+
KPX Ohungarumlaut Aring -50
|
1181
|
+
KPX Ohungarumlaut Atilde -50
|
1182
|
+
KPX Ohungarumlaut T -40
|
1183
|
+
KPX Ohungarumlaut Tcaron -40
|
1184
|
+
KPX Ohungarumlaut Tcommaaccent -40
|
1185
|
+
KPX Ohungarumlaut V -50
|
1186
|
+
KPX Ohungarumlaut W -50
|
1187
|
+
KPX Ohungarumlaut X -50
|
1188
|
+
KPX Ohungarumlaut Y -70
|
1189
|
+
KPX Ohungarumlaut Yacute -70
|
1190
|
+
KPX Ohungarumlaut Ydieresis -70
|
1191
|
+
KPX Ohungarumlaut comma -40
|
1192
|
+
KPX Ohungarumlaut period -40
|
1193
|
+
KPX Omacron A -50
|
1194
|
+
KPX Omacron Aacute -50
|
1195
|
+
KPX Omacron Abreve -50
|
1196
|
+
KPX Omacron Acircumflex -50
|
1197
|
+
KPX Omacron Adieresis -50
|
1198
|
+
KPX Omacron Agrave -50
|
1199
|
+
KPX Omacron Amacron -50
|
1200
|
+
KPX Omacron Aogonek -50
|
1201
|
+
KPX Omacron Aring -50
|
1202
|
+
KPX Omacron Atilde -50
|
1203
|
+
KPX Omacron T -40
|
1204
|
+
KPX Omacron Tcaron -40
|
1205
|
+
KPX Omacron Tcommaaccent -40
|
1206
|
+
KPX Omacron V -50
|
1207
|
+
KPX Omacron W -50
|
1208
|
+
KPX Omacron X -50
|
1209
|
+
KPX Omacron Y -70
|
1210
|
+
KPX Omacron Yacute -70
|
1211
|
+
KPX Omacron Ydieresis -70
|
1212
|
+
KPX Omacron comma -40
|
1213
|
+
KPX Omacron period -40
|
1214
|
+
KPX Oslash A -50
|
1215
|
+
KPX Oslash Aacute -50
|
1216
|
+
KPX Oslash Abreve -50
|
1217
|
+
KPX Oslash Acircumflex -50
|
1218
|
+
KPX Oslash Adieresis -50
|
1219
|
+
KPX Oslash Agrave -50
|
1220
|
+
KPX Oslash Amacron -50
|
1221
|
+
KPX Oslash Aogonek -50
|
1222
|
+
KPX Oslash Aring -50
|
1223
|
+
KPX Oslash Atilde -50
|
1224
|
+
KPX Oslash T -40
|
1225
|
+
KPX Oslash Tcaron -40
|
1226
|
+
KPX Oslash Tcommaaccent -40
|
1227
|
+
KPX Oslash V -50
|
1228
|
+
KPX Oslash W -50
|
1229
|
+
KPX Oslash X -50
|
1230
|
+
KPX Oslash Y -70
|
1231
|
+
KPX Oslash Yacute -70
|
1232
|
+
KPX Oslash Ydieresis -70
|
1233
|
+
KPX Oslash comma -40
|
1234
|
+
KPX Oslash period -40
|
1235
|
+
KPX Otilde A -50
|
1236
|
+
KPX Otilde Aacute -50
|
1237
|
+
KPX Otilde Abreve -50
|
1238
|
+
KPX Otilde Acircumflex -50
|
1239
|
+
KPX Otilde Adieresis -50
|
1240
|
+
KPX Otilde Agrave -50
|
1241
|
+
KPX Otilde Amacron -50
|
1242
|
+
KPX Otilde Aogonek -50
|
1243
|
+
KPX Otilde Aring -50
|
1244
|
+
KPX Otilde Atilde -50
|
1245
|
+
KPX Otilde T -40
|
1246
|
+
KPX Otilde Tcaron -40
|
1247
|
+
KPX Otilde Tcommaaccent -40
|
1248
|
+
KPX Otilde V -50
|
1249
|
+
KPX Otilde W -50
|
1250
|
+
KPX Otilde X -50
|
1251
|
+
KPX Otilde Y -70
|
1252
|
+
KPX Otilde Yacute -70
|
1253
|
+
KPX Otilde Ydieresis -70
|
1254
|
+
KPX Otilde comma -40
|
1255
|
+
KPX Otilde period -40
|
1256
|
+
KPX P A -100
|
1257
|
+
KPX P Aacute -100
|
1258
|
+
KPX P Abreve -100
|
1259
|
+
KPX P Acircumflex -100
|
1260
|
+
KPX P Adieresis -100
|
1261
|
+
KPX P Agrave -100
|
1262
|
+
KPX P Amacron -100
|
1263
|
+
KPX P Aogonek -100
|
1264
|
+
KPX P Aring -100
|
1265
|
+
KPX P Atilde -100
|
1266
|
+
KPX P a -30
|
1267
|
+
KPX P aacute -30
|
1268
|
+
KPX P abreve -30
|
1269
|
+
KPX P acircumflex -30
|
1270
|
+
KPX P adieresis -30
|
1271
|
+
KPX P agrave -30
|
1272
|
+
KPX P amacron -30
|
1273
|
+
KPX P aogonek -30
|
1274
|
+
KPX P aring -30
|
1275
|
+
KPX P atilde -30
|
1276
|
+
KPX P comma -120
|
1277
|
+
KPX P e -30
|
1278
|
+
KPX P eacute -30
|
1279
|
+
KPX P ecaron -30
|
1280
|
+
KPX P ecircumflex -30
|
1281
|
+
KPX P edieresis -30
|
1282
|
+
KPX P edotaccent -30
|
1283
|
+
KPX P egrave -30
|
1284
|
+
KPX P emacron -30
|
1285
|
+
KPX P eogonek -30
|
1286
|
+
KPX P o -40
|
1287
|
+
KPX P oacute -40
|
1288
|
+
KPX P ocircumflex -40
|
1289
|
+
KPX P odieresis -40
|
1290
|
+
KPX P ograve -40
|
1291
|
+
KPX P ohungarumlaut -40
|
1292
|
+
KPX P omacron -40
|
1293
|
+
KPX P oslash -40
|
1294
|
+
KPX P otilde -40
|
1295
|
+
KPX P period -120
|
1296
|
+
KPX Q U -10
|
1297
|
+
KPX Q Uacute -10
|
1298
|
+
KPX Q Ucircumflex -10
|
1299
|
+
KPX Q Udieresis -10
|
1300
|
+
KPX Q Ugrave -10
|
1301
|
+
KPX Q Uhungarumlaut -10
|
1302
|
+
KPX Q Umacron -10
|
1303
|
+
KPX Q Uogonek -10
|
1304
|
+
KPX Q Uring -10
|
1305
|
+
KPX Q comma 20
|
1306
|
+
KPX Q period 20
|
1307
|
+
KPX R O -20
|
1308
|
+
KPX R Oacute -20
|
1309
|
+
KPX R Ocircumflex -20
|
1310
|
+
KPX R Odieresis -20
|
1311
|
+
KPX R Ograve -20
|
1312
|
+
KPX R Ohungarumlaut -20
|
1313
|
+
KPX R Omacron -20
|
1314
|
+
KPX R Oslash -20
|
1315
|
+
KPX R Otilde -20
|
1316
|
+
KPX R T -20
|
1317
|
+
KPX R Tcaron -20
|
1318
|
+
KPX R Tcommaaccent -20
|
1319
|
+
KPX R U -20
|
1320
|
+
KPX R Uacute -20
|
1321
|
+
KPX R Ucircumflex -20
|
1322
|
+
KPX R Udieresis -20
|
1323
|
+
KPX R Ugrave -20
|
1324
|
+
KPX R Uhungarumlaut -20
|
1325
|
+
KPX R Umacron -20
|
1326
|
+
KPX R Uogonek -20
|
1327
|
+
KPX R Uring -20
|
1328
|
+
KPX R V -50
|
1329
|
+
KPX R W -40
|
1330
|
+
KPX R Y -50
|
1331
|
+
KPX R Yacute -50
|
1332
|
+
KPX R Ydieresis -50
|
1333
|
+
KPX Racute O -20
|
1334
|
+
KPX Racute Oacute -20
|
1335
|
+
KPX Racute Ocircumflex -20
|
1336
|
+
KPX Racute Odieresis -20
|
1337
|
+
KPX Racute Ograve -20
|
1338
|
+
KPX Racute Ohungarumlaut -20
|
1339
|
+
KPX Racute Omacron -20
|
1340
|
+
KPX Racute Oslash -20
|
1341
|
+
KPX Racute Otilde -20
|
1342
|
+
KPX Racute T -20
|
1343
|
+
KPX Racute Tcaron -20
|
1344
|
+
KPX Racute Tcommaaccent -20
|
1345
|
+
KPX Racute U -20
|
1346
|
+
KPX Racute Uacute -20
|
1347
|
+
KPX Racute Ucircumflex -20
|
1348
|
+
KPX Racute Udieresis -20
|
1349
|
+
KPX Racute Ugrave -20
|
1350
|
+
KPX Racute Uhungarumlaut -20
|
1351
|
+
KPX Racute Umacron -20
|
1352
|
+
KPX Racute Uogonek -20
|
1353
|
+
KPX Racute Uring -20
|
1354
|
+
KPX Racute V -50
|
1355
|
+
KPX Racute W -40
|
1356
|
+
KPX Racute Y -50
|
1357
|
+
KPX Racute Yacute -50
|
1358
|
+
KPX Racute Ydieresis -50
|
1359
|
+
KPX Rcaron O -20
|
1360
|
+
KPX Rcaron Oacute -20
|
1361
|
+
KPX Rcaron Ocircumflex -20
|
1362
|
+
KPX Rcaron Odieresis -20
|
1363
|
+
KPX Rcaron Ograve -20
|
1364
|
+
KPX Rcaron Ohungarumlaut -20
|
1365
|
+
KPX Rcaron Omacron -20
|
1366
|
+
KPX Rcaron Oslash -20
|
1367
|
+
KPX Rcaron Otilde -20
|
1368
|
+
KPX Rcaron T -20
|
1369
|
+
KPX Rcaron Tcaron -20
|
1370
|
+
KPX Rcaron Tcommaaccent -20
|
1371
|
+
KPX Rcaron U -20
|
1372
|
+
KPX Rcaron Uacute -20
|
1373
|
+
KPX Rcaron Ucircumflex -20
|
1374
|
+
KPX Rcaron Udieresis -20
|
1375
|
+
KPX Rcaron Ugrave -20
|
1376
|
+
KPX Rcaron Uhungarumlaut -20
|
1377
|
+
KPX Rcaron Umacron -20
|
1378
|
+
KPX Rcaron Uogonek -20
|
1379
|
+
KPX Rcaron Uring -20
|
1380
|
+
KPX Rcaron V -50
|
1381
|
+
KPX Rcaron W -40
|
1382
|
+
KPX Rcaron Y -50
|
1383
|
+
KPX Rcaron Yacute -50
|
1384
|
+
KPX Rcaron Ydieresis -50
|
1385
|
+
KPX Rcommaaccent O -20
|
1386
|
+
KPX Rcommaaccent Oacute -20
|
1387
|
+
KPX Rcommaaccent Ocircumflex -20
|
1388
|
+
KPX Rcommaaccent Odieresis -20
|
1389
|
+
KPX Rcommaaccent Ograve -20
|
1390
|
+
KPX Rcommaaccent Ohungarumlaut -20
|
1391
|
+
KPX Rcommaaccent Omacron -20
|
1392
|
+
KPX Rcommaaccent Oslash -20
|
1393
|
+
KPX Rcommaaccent Otilde -20
|
1394
|
+
KPX Rcommaaccent T -20
|
1395
|
+
KPX Rcommaaccent Tcaron -20
|
1396
|
+
KPX Rcommaaccent Tcommaaccent -20
|
1397
|
+
KPX Rcommaaccent U -20
|
1398
|
+
KPX Rcommaaccent Uacute -20
|
1399
|
+
KPX Rcommaaccent Ucircumflex -20
|
1400
|
+
KPX Rcommaaccent Udieresis -20
|
1401
|
+
KPX Rcommaaccent Ugrave -20
|
1402
|
+
KPX Rcommaaccent Uhungarumlaut -20
|
1403
|
+
KPX Rcommaaccent Umacron -20
|
1404
|
+
KPX Rcommaaccent Uogonek -20
|
1405
|
+
KPX Rcommaaccent Uring -20
|
1406
|
+
KPX Rcommaaccent V -50
|
1407
|
+
KPX Rcommaaccent W -40
|
1408
|
+
KPX Rcommaaccent Y -50
|
1409
|
+
KPX Rcommaaccent Yacute -50
|
1410
|
+
KPX Rcommaaccent Ydieresis -50
|
1411
|
+
KPX T A -90
|
1412
|
+
KPX T Aacute -90
|
1413
|
+
KPX T Abreve -90
|
1414
|
+
KPX T Acircumflex -90
|
1415
|
+
KPX T Adieresis -90
|
1416
|
+
KPX T Agrave -90
|
1417
|
+
KPX T Amacron -90
|
1418
|
+
KPX T Aogonek -90
|
1419
|
+
KPX T Aring -90
|
1420
|
+
KPX T Atilde -90
|
1421
|
+
KPX T O -40
|
1422
|
+
KPX T Oacute -40
|
1423
|
+
KPX T Ocircumflex -40
|
1424
|
+
KPX T Odieresis -40
|
1425
|
+
KPX T Ograve -40
|
1426
|
+
KPX T Ohungarumlaut -40
|
1427
|
+
KPX T Omacron -40
|
1428
|
+
KPX T Oslash -40
|
1429
|
+
KPX T Otilde -40
|
1430
|
+
KPX T a -80
|
1431
|
+
KPX T aacute -80
|
1432
|
+
KPX T abreve -80
|
1433
|
+
KPX T acircumflex -80
|
1434
|
+
KPX T adieresis -80
|
1435
|
+
KPX T agrave -80
|
1436
|
+
KPX T amacron -80
|
1437
|
+
KPX T aogonek -80
|
1438
|
+
KPX T aring -80
|
1439
|
+
KPX T atilde -80
|
1440
|
+
KPX T colon -40
|
1441
|
+
KPX T comma -80
|
1442
|
+
KPX T e -60
|
1443
|
+
KPX T eacute -60
|
1444
|
+
KPX T ecaron -60
|
1445
|
+
KPX T ecircumflex -60
|
1446
|
+
KPX T edieresis -60
|
1447
|
+
KPX T edotaccent -60
|
1448
|
+
KPX T egrave -60
|
1449
|
+
KPX T emacron -60
|
1450
|
+
KPX T eogonek -60
|
1451
|
+
KPX T hyphen -120
|
1452
|
+
KPX T o -80
|
1453
|
+
KPX T oacute -80
|
1454
|
+
KPX T ocircumflex -80
|
1455
|
+
KPX T odieresis -80
|
1456
|
+
KPX T ograve -80
|
1457
|
+
KPX T ohungarumlaut -80
|
1458
|
+
KPX T omacron -80
|
1459
|
+
KPX T oslash -80
|
1460
|
+
KPX T otilde -80
|
1461
|
+
KPX T period -80
|
1462
|
+
KPX T r -80
|
1463
|
+
KPX T racute -80
|
1464
|
+
KPX T rcommaaccent -80
|
1465
|
+
KPX T semicolon -40
|
1466
|
+
KPX T u -90
|
1467
|
+
KPX T uacute -90
|
1468
|
+
KPX T ucircumflex -90
|
1469
|
+
KPX T udieresis -90
|
1470
|
+
KPX T ugrave -90
|
1471
|
+
KPX T uhungarumlaut -90
|
1472
|
+
KPX T umacron -90
|
1473
|
+
KPX T uogonek -90
|
1474
|
+
KPX T uring -90
|
1475
|
+
KPX T w -60
|
1476
|
+
KPX T y -60
|
1477
|
+
KPX T yacute -60
|
1478
|
+
KPX T ydieresis -60
|
1479
|
+
KPX Tcaron A -90
|
1480
|
+
KPX Tcaron Aacute -90
|
1481
|
+
KPX Tcaron Abreve -90
|
1482
|
+
KPX Tcaron Acircumflex -90
|
1483
|
+
KPX Tcaron Adieresis -90
|
1484
|
+
KPX Tcaron Agrave -90
|
1485
|
+
KPX Tcaron Amacron -90
|
1486
|
+
KPX Tcaron Aogonek -90
|
1487
|
+
KPX Tcaron Aring -90
|
1488
|
+
KPX Tcaron Atilde -90
|
1489
|
+
KPX Tcaron O -40
|
1490
|
+
KPX Tcaron Oacute -40
|
1491
|
+
KPX Tcaron Ocircumflex -40
|
1492
|
+
KPX Tcaron Odieresis -40
|
1493
|
+
KPX Tcaron Ograve -40
|
1494
|
+
KPX Tcaron Ohungarumlaut -40
|
1495
|
+
KPX Tcaron Omacron -40
|
1496
|
+
KPX Tcaron Oslash -40
|
1497
|
+
KPX Tcaron Otilde -40
|
1498
|
+
KPX Tcaron a -80
|
1499
|
+
KPX Tcaron aacute -80
|
1500
|
+
KPX Tcaron abreve -80
|
1501
|
+
KPX Tcaron acircumflex -80
|
1502
|
+
KPX Tcaron adieresis -80
|
1503
|
+
KPX Tcaron agrave -80
|
1504
|
+
KPX Tcaron amacron -80
|
1505
|
+
KPX Tcaron aogonek -80
|
1506
|
+
KPX Tcaron aring -80
|
1507
|
+
KPX Tcaron atilde -80
|
1508
|
+
KPX Tcaron colon -40
|
1509
|
+
KPX Tcaron comma -80
|
1510
|
+
KPX Tcaron e -60
|
1511
|
+
KPX Tcaron eacute -60
|
1512
|
+
KPX Tcaron ecaron -60
|
1513
|
+
KPX Tcaron ecircumflex -60
|
1514
|
+
KPX Tcaron edieresis -60
|
1515
|
+
KPX Tcaron edotaccent -60
|
1516
|
+
KPX Tcaron egrave -60
|
1517
|
+
KPX Tcaron emacron -60
|
1518
|
+
KPX Tcaron eogonek -60
|
1519
|
+
KPX Tcaron hyphen -120
|
1520
|
+
KPX Tcaron o -80
|
1521
|
+
KPX Tcaron oacute -80
|
1522
|
+
KPX Tcaron ocircumflex -80
|
1523
|
+
KPX Tcaron odieresis -80
|
1524
|
+
KPX Tcaron ograve -80
|
1525
|
+
KPX Tcaron ohungarumlaut -80
|
1526
|
+
KPX Tcaron omacron -80
|
1527
|
+
KPX Tcaron oslash -80
|
1528
|
+
KPX Tcaron otilde -80
|
1529
|
+
KPX Tcaron period -80
|
1530
|
+
KPX Tcaron r -80
|
1531
|
+
KPX Tcaron racute -80
|
1532
|
+
KPX Tcaron rcommaaccent -80
|
1533
|
+
KPX Tcaron semicolon -40
|
1534
|
+
KPX Tcaron u -90
|
1535
|
+
KPX Tcaron uacute -90
|
1536
|
+
KPX Tcaron ucircumflex -90
|
1537
|
+
KPX Tcaron udieresis -90
|
1538
|
+
KPX Tcaron ugrave -90
|
1539
|
+
KPX Tcaron uhungarumlaut -90
|
1540
|
+
KPX Tcaron umacron -90
|
1541
|
+
KPX Tcaron uogonek -90
|
1542
|
+
KPX Tcaron uring -90
|
1543
|
+
KPX Tcaron w -60
|
1544
|
+
KPX Tcaron y -60
|
1545
|
+
KPX Tcaron yacute -60
|
1546
|
+
KPX Tcaron ydieresis -60
|
1547
|
+
KPX Tcommaaccent A -90
|
1548
|
+
KPX Tcommaaccent Aacute -90
|
1549
|
+
KPX Tcommaaccent Abreve -90
|
1550
|
+
KPX Tcommaaccent Acircumflex -90
|
1551
|
+
KPX Tcommaaccent Adieresis -90
|
1552
|
+
KPX Tcommaaccent Agrave -90
|
1553
|
+
KPX Tcommaaccent Amacron -90
|
1554
|
+
KPX Tcommaaccent Aogonek -90
|
1555
|
+
KPX Tcommaaccent Aring -90
|
1556
|
+
KPX Tcommaaccent Atilde -90
|
1557
|
+
KPX Tcommaaccent O -40
|
1558
|
+
KPX Tcommaaccent Oacute -40
|
1559
|
+
KPX Tcommaaccent Ocircumflex -40
|
1560
|
+
KPX Tcommaaccent Odieresis -40
|
1561
|
+
KPX Tcommaaccent Ograve -40
|
1562
|
+
KPX Tcommaaccent Ohungarumlaut -40
|
1563
|
+
KPX Tcommaaccent Omacron -40
|
1564
|
+
KPX Tcommaaccent Oslash -40
|
1565
|
+
KPX Tcommaaccent Otilde -40
|
1566
|
+
KPX Tcommaaccent a -80
|
1567
|
+
KPX Tcommaaccent aacute -80
|
1568
|
+
KPX Tcommaaccent abreve -80
|
1569
|
+
KPX Tcommaaccent acircumflex -80
|
1570
|
+
KPX Tcommaaccent adieresis -80
|
1571
|
+
KPX Tcommaaccent agrave -80
|
1572
|
+
KPX Tcommaaccent amacron -80
|
1573
|
+
KPX Tcommaaccent aogonek -80
|
1574
|
+
KPX Tcommaaccent aring -80
|
1575
|
+
KPX Tcommaaccent atilde -80
|
1576
|
+
KPX Tcommaaccent colon -40
|
1577
|
+
KPX Tcommaaccent comma -80
|
1578
|
+
KPX Tcommaaccent e -60
|
1579
|
+
KPX Tcommaaccent eacute -60
|
1580
|
+
KPX Tcommaaccent ecaron -60
|
1581
|
+
KPX Tcommaaccent ecircumflex -60
|
1582
|
+
KPX Tcommaaccent edieresis -60
|
1583
|
+
KPX Tcommaaccent edotaccent -60
|
1584
|
+
KPX Tcommaaccent egrave -60
|
1585
|
+
KPX Tcommaaccent emacron -60
|
1586
|
+
KPX Tcommaaccent eogonek -60
|
1587
|
+
KPX Tcommaaccent hyphen -120
|
1588
|
+
KPX Tcommaaccent o -80
|
1589
|
+
KPX Tcommaaccent oacute -80
|
1590
|
+
KPX Tcommaaccent ocircumflex -80
|
1591
|
+
KPX Tcommaaccent odieresis -80
|
1592
|
+
KPX Tcommaaccent ograve -80
|
1593
|
+
KPX Tcommaaccent ohungarumlaut -80
|
1594
|
+
KPX Tcommaaccent omacron -80
|
1595
|
+
KPX Tcommaaccent oslash -80
|
1596
|
+
KPX Tcommaaccent otilde -80
|
1597
|
+
KPX Tcommaaccent period -80
|
1598
|
+
KPX Tcommaaccent r -80
|
1599
|
+
KPX Tcommaaccent racute -80
|
1600
|
+
KPX Tcommaaccent rcommaaccent -80
|
1601
|
+
KPX Tcommaaccent semicolon -40
|
1602
|
+
KPX Tcommaaccent u -90
|
1603
|
+
KPX Tcommaaccent uacute -90
|
1604
|
+
KPX Tcommaaccent ucircumflex -90
|
1605
|
+
KPX Tcommaaccent udieresis -90
|
1606
|
+
KPX Tcommaaccent ugrave -90
|
1607
|
+
KPX Tcommaaccent uhungarumlaut -90
|
1608
|
+
KPX Tcommaaccent umacron -90
|
1609
|
+
KPX Tcommaaccent uogonek -90
|
1610
|
+
KPX Tcommaaccent uring -90
|
1611
|
+
KPX Tcommaaccent w -60
|
1612
|
+
KPX Tcommaaccent y -60
|
1613
|
+
KPX Tcommaaccent yacute -60
|
1614
|
+
KPX Tcommaaccent ydieresis -60
|
1615
|
+
KPX U A -50
|
1616
|
+
KPX U Aacute -50
|
1617
|
+
KPX U Abreve -50
|
1618
|
+
KPX U Acircumflex -50
|
1619
|
+
KPX U Adieresis -50
|
1620
|
+
KPX U Agrave -50
|
1621
|
+
KPX U Amacron -50
|
1622
|
+
KPX U Aogonek -50
|
1623
|
+
KPX U Aring -50
|
1624
|
+
KPX U Atilde -50
|
1625
|
+
KPX U comma -30
|
1626
|
+
KPX U period -30
|
1627
|
+
KPX Uacute A -50
|
1628
|
+
KPX Uacute Aacute -50
|
1629
|
+
KPX Uacute Abreve -50
|
1630
|
+
KPX Uacute Acircumflex -50
|
1631
|
+
KPX Uacute Adieresis -50
|
1632
|
+
KPX Uacute Agrave -50
|
1633
|
+
KPX Uacute Amacron -50
|
1634
|
+
KPX Uacute Aogonek -50
|
1635
|
+
KPX Uacute Aring -50
|
1636
|
+
KPX Uacute Atilde -50
|
1637
|
+
KPX Uacute comma -30
|
1638
|
+
KPX Uacute period -30
|
1639
|
+
KPX Ucircumflex A -50
|
1640
|
+
KPX Ucircumflex Aacute -50
|
1641
|
+
KPX Ucircumflex Abreve -50
|
1642
|
+
KPX Ucircumflex Acircumflex -50
|
1643
|
+
KPX Ucircumflex Adieresis -50
|
1644
|
+
KPX Ucircumflex Agrave -50
|
1645
|
+
KPX Ucircumflex Amacron -50
|
1646
|
+
KPX Ucircumflex Aogonek -50
|
1647
|
+
KPX Ucircumflex Aring -50
|
1648
|
+
KPX Ucircumflex Atilde -50
|
1649
|
+
KPX Ucircumflex comma -30
|
1650
|
+
KPX Ucircumflex period -30
|
1651
|
+
KPX Udieresis A -50
|
1652
|
+
KPX Udieresis Aacute -50
|
1653
|
+
KPX Udieresis Abreve -50
|
1654
|
+
KPX Udieresis Acircumflex -50
|
1655
|
+
KPX Udieresis Adieresis -50
|
1656
|
+
KPX Udieresis Agrave -50
|
1657
|
+
KPX Udieresis Amacron -50
|
1658
|
+
KPX Udieresis Aogonek -50
|
1659
|
+
KPX Udieresis Aring -50
|
1660
|
+
KPX Udieresis Atilde -50
|
1661
|
+
KPX Udieresis comma -30
|
1662
|
+
KPX Udieresis period -30
|
1663
|
+
KPX Ugrave A -50
|
1664
|
+
KPX Ugrave Aacute -50
|
1665
|
+
KPX Ugrave Abreve -50
|
1666
|
+
KPX Ugrave Acircumflex -50
|
1667
|
+
KPX Ugrave Adieresis -50
|
1668
|
+
KPX Ugrave Agrave -50
|
1669
|
+
KPX Ugrave Amacron -50
|
1670
|
+
KPX Ugrave Aogonek -50
|
1671
|
+
KPX Ugrave Aring -50
|
1672
|
+
KPX Ugrave Atilde -50
|
1673
|
+
KPX Ugrave comma -30
|
1674
|
+
KPX Ugrave period -30
|
1675
|
+
KPX Uhungarumlaut A -50
|
1676
|
+
KPX Uhungarumlaut Aacute -50
|
1677
|
+
KPX Uhungarumlaut Abreve -50
|
1678
|
+
KPX Uhungarumlaut Acircumflex -50
|
1679
|
+
KPX Uhungarumlaut Adieresis -50
|
1680
|
+
KPX Uhungarumlaut Agrave -50
|
1681
|
+
KPX Uhungarumlaut Amacron -50
|
1682
|
+
KPX Uhungarumlaut Aogonek -50
|
1683
|
+
KPX Uhungarumlaut Aring -50
|
1684
|
+
KPX Uhungarumlaut Atilde -50
|
1685
|
+
KPX Uhungarumlaut comma -30
|
1686
|
+
KPX Uhungarumlaut period -30
|
1687
|
+
KPX Umacron A -50
|
1688
|
+
KPX Umacron Aacute -50
|
1689
|
+
KPX Umacron Abreve -50
|
1690
|
+
KPX Umacron Acircumflex -50
|
1691
|
+
KPX Umacron Adieresis -50
|
1692
|
+
KPX Umacron Agrave -50
|
1693
|
+
KPX Umacron Amacron -50
|
1694
|
+
KPX Umacron Aogonek -50
|
1695
|
+
KPX Umacron Aring -50
|
1696
|
+
KPX Umacron Atilde -50
|
1697
|
+
KPX Umacron comma -30
|
1698
|
+
KPX Umacron period -30
|
1699
|
+
KPX Uogonek A -50
|
1700
|
+
KPX Uogonek Aacute -50
|
1701
|
+
KPX Uogonek Abreve -50
|
1702
|
+
KPX Uogonek Acircumflex -50
|
1703
|
+
KPX Uogonek Adieresis -50
|
1704
|
+
KPX Uogonek Agrave -50
|
1705
|
+
KPX Uogonek Amacron -50
|
1706
|
+
KPX Uogonek Aogonek -50
|
1707
|
+
KPX Uogonek Aring -50
|
1708
|
+
KPX Uogonek Atilde -50
|
1709
|
+
KPX Uogonek comma -30
|
1710
|
+
KPX Uogonek period -30
|
1711
|
+
KPX Uring A -50
|
1712
|
+
KPX Uring Aacute -50
|
1713
|
+
KPX Uring Abreve -50
|
1714
|
+
KPX Uring Acircumflex -50
|
1715
|
+
KPX Uring Adieresis -50
|
1716
|
+
KPX Uring Agrave -50
|
1717
|
+
KPX Uring Amacron -50
|
1718
|
+
KPX Uring Aogonek -50
|
1719
|
+
KPX Uring Aring -50
|
1720
|
+
KPX Uring Atilde -50
|
1721
|
+
KPX Uring comma -30
|
1722
|
+
KPX Uring period -30
|
1723
|
+
KPX V A -80
|
1724
|
+
KPX V Aacute -80
|
1725
|
+
KPX V Abreve -80
|
1726
|
+
KPX V Acircumflex -80
|
1727
|
+
KPX V Adieresis -80
|
1728
|
+
KPX V Agrave -80
|
1729
|
+
KPX V Amacron -80
|
1730
|
+
KPX V Aogonek -80
|
1731
|
+
KPX V Aring -80
|
1732
|
+
KPX V Atilde -80
|
1733
|
+
KPX V G -50
|
1734
|
+
KPX V Gbreve -50
|
1735
|
+
KPX V Gcommaaccent -50
|
1736
|
+
KPX V O -50
|
1737
|
+
KPX V Oacute -50
|
1738
|
+
KPX V Ocircumflex -50
|
1739
|
+
KPX V Odieresis -50
|
1740
|
+
KPX V Ograve -50
|
1741
|
+
KPX V Ohungarumlaut -50
|
1742
|
+
KPX V Omacron -50
|
1743
|
+
KPX V Oslash -50
|
1744
|
+
KPX V Otilde -50
|
1745
|
+
KPX V a -60
|
1746
|
+
KPX V aacute -60
|
1747
|
+
KPX V abreve -60
|
1748
|
+
KPX V acircumflex -60
|
1749
|
+
KPX V adieresis -60
|
1750
|
+
KPX V agrave -60
|
1751
|
+
KPX V amacron -60
|
1752
|
+
KPX V aogonek -60
|
1753
|
+
KPX V aring -60
|
1754
|
+
KPX V atilde -60
|
1755
|
+
KPX V colon -40
|
1756
|
+
KPX V comma -120
|
1757
|
+
KPX V e -50
|
1758
|
+
KPX V eacute -50
|
1759
|
+
KPX V ecaron -50
|
1760
|
+
KPX V ecircumflex -50
|
1761
|
+
KPX V edieresis -50
|
1762
|
+
KPX V edotaccent -50
|
1763
|
+
KPX V egrave -50
|
1764
|
+
KPX V emacron -50
|
1765
|
+
KPX V eogonek -50
|
1766
|
+
KPX V hyphen -80
|
1767
|
+
KPX V o -90
|
1768
|
+
KPX V oacute -90
|
1769
|
+
KPX V ocircumflex -90
|
1770
|
+
KPX V odieresis -90
|
1771
|
+
KPX V ograve -90
|
1772
|
+
KPX V ohungarumlaut -90
|
1773
|
+
KPX V omacron -90
|
1774
|
+
KPX V oslash -90
|
1775
|
+
KPX V otilde -90
|
1776
|
+
KPX V period -120
|
1777
|
+
KPX V semicolon -40
|
1778
|
+
KPX V u -60
|
1779
|
+
KPX V uacute -60
|
1780
|
+
KPX V ucircumflex -60
|
1781
|
+
KPX V udieresis -60
|
1782
|
+
KPX V ugrave -60
|
1783
|
+
KPX V uhungarumlaut -60
|
1784
|
+
KPX V umacron -60
|
1785
|
+
KPX V uogonek -60
|
1786
|
+
KPX V uring -60
|
1787
|
+
KPX W A -60
|
1788
|
+
KPX W Aacute -60
|
1789
|
+
KPX W Abreve -60
|
1790
|
+
KPX W Acircumflex -60
|
1791
|
+
KPX W Adieresis -60
|
1792
|
+
KPX W Agrave -60
|
1793
|
+
KPX W Amacron -60
|
1794
|
+
KPX W Aogonek -60
|
1795
|
+
KPX W Aring -60
|
1796
|
+
KPX W Atilde -60
|
1797
|
+
KPX W O -20
|
1798
|
+
KPX W Oacute -20
|
1799
|
+
KPX W Ocircumflex -20
|
1800
|
+
KPX W Odieresis -20
|
1801
|
+
KPX W Ograve -20
|
1802
|
+
KPX W Ohungarumlaut -20
|
1803
|
+
KPX W Omacron -20
|
1804
|
+
KPX W Oslash -20
|
1805
|
+
KPX W Otilde -20
|
1806
|
+
KPX W a -40
|
1807
|
+
KPX W aacute -40
|
1808
|
+
KPX W abreve -40
|
1809
|
+
KPX W acircumflex -40
|
1810
|
+
KPX W adieresis -40
|
1811
|
+
KPX W agrave -40
|
1812
|
+
KPX W amacron -40
|
1813
|
+
KPX W aogonek -40
|
1814
|
+
KPX W aring -40
|
1815
|
+
KPX W atilde -40
|
1816
|
+
KPX W colon -10
|
1817
|
+
KPX W comma -80
|
1818
|
+
KPX W e -35
|
1819
|
+
KPX W eacute -35
|
1820
|
+
KPX W ecaron -35
|
1821
|
+
KPX W ecircumflex -35
|
1822
|
+
KPX W edieresis -35
|
1823
|
+
KPX W edotaccent -35
|
1824
|
+
KPX W egrave -35
|
1825
|
+
KPX W emacron -35
|
1826
|
+
KPX W eogonek -35
|
1827
|
+
KPX W hyphen -40
|
1828
|
+
KPX W o -60
|
1829
|
+
KPX W oacute -60
|
1830
|
+
KPX W ocircumflex -60
|
1831
|
+
KPX W odieresis -60
|
1832
|
+
KPX W ograve -60
|
1833
|
+
KPX W ohungarumlaut -60
|
1834
|
+
KPX W omacron -60
|
1835
|
+
KPX W oslash -60
|
1836
|
+
KPX W otilde -60
|
1837
|
+
KPX W period -80
|
1838
|
+
KPX W semicolon -10
|
1839
|
+
KPX W u -45
|
1840
|
+
KPX W uacute -45
|
1841
|
+
KPX W ucircumflex -45
|
1842
|
+
KPX W udieresis -45
|
1843
|
+
KPX W ugrave -45
|
1844
|
+
KPX W uhungarumlaut -45
|
1845
|
+
KPX W umacron -45
|
1846
|
+
KPX W uogonek -45
|
1847
|
+
KPX W uring -45
|
1848
|
+
KPX W y -20
|
1849
|
+
KPX W yacute -20
|
1850
|
+
KPX W ydieresis -20
|
1851
|
+
KPX Y A -110
|
1852
|
+
KPX Y Aacute -110
|
1853
|
+
KPX Y Abreve -110
|
1854
|
+
KPX Y Acircumflex -110
|
1855
|
+
KPX Y Adieresis -110
|
1856
|
+
KPX Y Agrave -110
|
1857
|
+
KPX Y Amacron -110
|
1858
|
+
KPX Y Aogonek -110
|
1859
|
+
KPX Y Aring -110
|
1860
|
+
KPX Y Atilde -110
|
1861
|
+
KPX Y O -70
|
1862
|
+
KPX Y Oacute -70
|
1863
|
+
KPX Y Ocircumflex -70
|
1864
|
+
KPX Y Odieresis -70
|
1865
|
+
KPX Y Ograve -70
|
1866
|
+
KPX Y Ohungarumlaut -70
|
1867
|
+
KPX Y Omacron -70
|
1868
|
+
KPX Y Oslash -70
|
1869
|
+
KPX Y Otilde -70
|
1870
|
+
KPX Y a -90
|
1871
|
+
KPX Y aacute -90
|
1872
|
+
KPX Y abreve -90
|
1873
|
+
KPX Y acircumflex -90
|
1874
|
+
KPX Y adieresis -90
|
1875
|
+
KPX Y agrave -90
|
1876
|
+
KPX Y amacron -90
|
1877
|
+
KPX Y aogonek -90
|
1878
|
+
KPX Y aring -90
|
1879
|
+
KPX Y atilde -90
|
1880
|
+
KPX Y colon -50
|
1881
|
+
KPX Y comma -100
|
1882
|
+
KPX Y e -80
|
1883
|
+
KPX Y eacute -80
|
1884
|
+
KPX Y ecaron -80
|
1885
|
+
KPX Y ecircumflex -80
|
1886
|
+
KPX Y edieresis -80
|
1887
|
+
KPX Y edotaccent -80
|
1888
|
+
KPX Y egrave -80
|
1889
|
+
KPX Y emacron -80
|
1890
|
+
KPX Y eogonek -80
|
1891
|
+
KPX Y o -100
|
1892
|
+
KPX Y oacute -100
|
1893
|
+
KPX Y ocircumflex -100
|
1894
|
+
KPX Y odieresis -100
|
1895
|
+
KPX Y ograve -100
|
1896
|
+
KPX Y ohungarumlaut -100
|
1897
|
+
KPX Y omacron -100
|
1898
|
+
KPX Y oslash -100
|
1899
|
+
KPX Y otilde -100
|
1900
|
+
KPX Y period -100
|
1901
|
+
KPX Y semicolon -50
|
1902
|
+
KPX Y u -100
|
1903
|
+
KPX Y uacute -100
|
1904
|
+
KPX Y ucircumflex -100
|
1905
|
+
KPX Y udieresis -100
|
1906
|
+
KPX Y ugrave -100
|
1907
|
+
KPX Y uhungarumlaut -100
|
1908
|
+
KPX Y umacron -100
|
1909
|
+
KPX Y uogonek -100
|
1910
|
+
KPX Y uring -100
|
1911
|
+
KPX Yacute A -110
|
1912
|
+
KPX Yacute Aacute -110
|
1913
|
+
KPX Yacute Abreve -110
|
1914
|
+
KPX Yacute Acircumflex -110
|
1915
|
+
KPX Yacute Adieresis -110
|
1916
|
+
KPX Yacute Agrave -110
|
1917
|
+
KPX Yacute Amacron -110
|
1918
|
+
KPX Yacute Aogonek -110
|
1919
|
+
KPX Yacute Aring -110
|
1920
|
+
KPX Yacute Atilde -110
|
1921
|
+
KPX Yacute O -70
|
1922
|
+
KPX Yacute Oacute -70
|
1923
|
+
KPX Yacute Ocircumflex -70
|
1924
|
+
KPX Yacute Odieresis -70
|
1925
|
+
KPX Yacute Ograve -70
|
1926
|
+
KPX Yacute Ohungarumlaut -70
|
1927
|
+
KPX Yacute Omacron -70
|
1928
|
+
KPX Yacute Oslash -70
|
1929
|
+
KPX Yacute Otilde -70
|
1930
|
+
KPX Yacute a -90
|
1931
|
+
KPX Yacute aacute -90
|
1932
|
+
KPX Yacute abreve -90
|
1933
|
+
KPX Yacute acircumflex -90
|
1934
|
+
KPX Yacute adieresis -90
|
1935
|
+
KPX Yacute agrave -90
|
1936
|
+
KPX Yacute amacron -90
|
1937
|
+
KPX Yacute aogonek -90
|
1938
|
+
KPX Yacute aring -90
|
1939
|
+
KPX Yacute atilde -90
|
1940
|
+
KPX Yacute colon -50
|
1941
|
+
KPX Yacute comma -100
|
1942
|
+
KPX Yacute e -80
|
1943
|
+
KPX Yacute eacute -80
|
1944
|
+
KPX Yacute ecaron -80
|
1945
|
+
KPX Yacute ecircumflex -80
|
1946
|
+
KPX Yacute edieresis -80
|
1947
|
+
KPX Yacute edotaccent -80
|
1948
|
+
KPX Yacute egrave -80
|
1949
|
+
KPX Yacute emacron -80
|
1950
|
+
KPX Yacute eogonek -80
|
1951
|
+
KPX Yacute o -100
|
1952
|
+
KPX Yacute oacute -100
|
1953
|
+
KPX Yacute ocircumflex -100
|
1954
|
+
KPX Yacute odieresis -100
|
1955
|
+
KPX Yacute ograve -100
|
1956
|
+
KPX Yacute ohungarumlaut -100
|
1957
|
+
KPX Yacute omacron -100
|
1958
|
+
KPX Yacute oslash -100
|
1959
|
+
KPX Yacute otilde -100
|
1960
|
+
KPX Yacute period -100
|
1961
|
+
KPX Yacute semicolon -50
|
1962
|
+
KPX Yacute u -100
|
1963
|
+
KPX Yacute uacute -100
|
1964
|
+
KPX Yacute ucircumflex -100
|
1965
|
+
KPX Yacute udieresis -100
|
1966
|
+
KPX Yacute ugrave -100
|
1967
|
+
KPX Yacute uhungarumlaut -100
|
1968
|
+
KPX Yacute umacron -100
|
1969
|
+
KPX Yacute uogonek -100
|
1970
|
+
KPX Yacute uring -100
|
1971
|
+
KPX Ydieresis A -110
|
1972
|
+
KPX Ydieresis Aacute -110
|
1973
|
+
KPX Ydieresis Abreve -110
|
1974
|
+
KPX Ydieresis Acircumflex -110
|
1975
|
+
KPX Ydieresis Adieresis -110
|
1976
|
+
KPX Ydieresis Agrave -110
|
1977
|
+
KPX Ydieresis Amacron -110
|
1978
|
+
KPX Ydieresis Aogonek -110
|
1979
|
+
KPX Ydieresis Aring -110
|
1980
|
+
KPX Ydieresis Atilde -110
|
1981
|
+
KPX Ydieresis O -70
|
1982
|
+
KPX Ydieresis Oacute -70
|
1983
|
+
KPX Ydieresis Ocircumflex -70
|
1984
|
+
KPX Ydieresis Odieresis -70
|
1985
|
+
KPX Ydieresis Ograve -70
|
1986
|
+
KPX Ydieresis Ohungarumlaut -70
|
1987
|
+
KPX Ydieresis Omacron -70
|
1988
|
+
KPX Ydieresis Oslash -70
|
1989
|
+
KPX Ydieresis Otilde -70
|
1990
|
+
KPX Ydieresis a -90
|
1991
|
+
KPX Ydieresis aacute -90
|
1992
|
+
KPX Ydieresis abreve -90
|
1993
|
+
KPX Ydieresis acircumflex -90
|
1994
|
+
KPX Ydieresis adieresis -90
|
1995
|
+
KPX Ydieresis agrave -90
|
1996
|
+
KPX Ydieresis amacron -90
|
1997
|
+
KPX Ydieresis aogonek -90
|
1998
|
+
KPX Ydieresis aring -90
|
1999
|
+
KPX Ydieresis atilde -90
|
2000
|
+
KPX Ydieresis colon -50
|
2001
|
+
KPX Ydieresis comma -100
|
2002
|
+
KPX Ydieresis e -80
|
2003
|
+
KPX Ydieresis eacute -80
|
2004
|
+
KPX Ydieresis ecaron -80
|
2005
|
+
KPX Ydieresis ecircumflex -80
|
2006
|
+
KPX Ydieresis edieresis -80
|
2007
|
+
KPX Ydieresis edotaccent -80
|
2008
|
+
KPX Ydieresis egrave -80
|
2009
|
+
KPX Ydieresis emacron -80
|
2010
|
+
KPX Ydieresis eogonek -80
|
2011
|
+
KPX Ydieresis o -100
|
2012
|
+
KPX Ydieresis oacute -100
|
2013
|
+
KPX Ydieresis ocircumflex -100
|
2014
|
+
KPX Ydieresis odieresis -100
|
2015
|
+
KPX Ydieresis ograve -100
|
2016
|
+
KPX Ydieresis ohungarumlaut -100
|
2017
|
+
KPX Ydieresis omacron -100
|
2018
|
+
KPX Ydieresis oslash -100
|
2019
|
+
KPX Ydieresis otilde -100
|
2020
|
+
KPX Ydieresis period -100
|
2021
|
+
KPX Ydieresis semicolon -50
|
2022
|
+
KPX Ydieresis u -100
|
2023
|
+
KPX Ydieresis uacute -100
|
2024
|
+
KPX Ydieresis ucircumflex -100
|
2025
|
+
KPX Ydieresis udieresis -100
|
2026
|
+
KPX Ydieresis ugrave -100
|
2027
|
+
KPX Ydieresis uhungarumlaut -100
|
2028
|
+
KPX Ydieresis umacron -100
|
2029
|
+
KPX Ydieresis uogonek -100
|
2030
|
+
KPX Ydieresis uring -100
|
2031
|
+
KPX a g -10
|
2032
|
+
KPX a gbreve -10
|
2033
|
+
KPX a gcommaaccent -10
|
2034
|
+
KPX a v -15
|
2035
|
+
KPX a w -15
|
2036
|
+
KPX a y -20
|
2037
|
+
KPX a yacute -20
|
2038
|
+
KPX a ydieresis -20
|
2039
|
+
KPX aacute g -10
|
2040
|
+
KPX aacute gbreve -10
|
2041
|
+
KPX aacute gcommaaccent -10
|
2042
|
+
KPX aacute v -15
|
2043
|
+
KPX aacute w -15
|
2044
|
+
KPX aacute y -20
|
2045
|
+
KPX aacute yacute -20
|
2046
|
+
KPX aacute ydieresis -20
|
2047
|
+
KPX abreve g -10
|
2048
|
+
KPX abreve gbreve -10
|
2049
|
+
KPX abreve gcommaaccent -10
|
2050
|
+
KPX abreve v -15
|
2051
|
+
KPX abreve w -15
|
2052
|
+
KPX abreve y -20
|
2053
|
+
KPX abreve yacute -20
|
2054
|
+
KPX abreve ydieresis -20
|
2055
|
+
KPX acircumflex g -10
|
2056
|
+
KPX acircumflex gbreve -10
|
2057
|
+
KPX acircumflex gcommaaccent -10
|
2058
|
+
KPX acircumflex v -15
|
2059
|
+
KPX acircumflex w -15
|
2060
|
+
KPX acircumflex y -20
|
2061
|
+
KPX acircumflex yacute -20
|
2062
|
+
KPX acircumflex ydieresis -20
|
2063
|
+
KPX adieresis g -10
|
2064
|
+
KPX adieresis gbreve -10
|
2065
|
+
KPX adieresis gcommaaccent -10
|
2066
|
+
KPX adieresis v -15
|
2067
|
+
KPX adieresis w -15
|
2068
|
+
KPX adieresis y -20
|
2069
|
+
KPX adieresis yacute -20
|
2070
|
+
KPX adieresis ydieresis -20
|
2071
|
+
KPX agrave g -10
|
2072
|
+
KPX agrave gbreve -10
|
2073
|
+
KPX agrave gcommaaccent -10
|
2074
|
+
KPX agrave v -15
|
2075
|
+
KPX agrave w -15
|
2076
|
+
KPX agrave y -20
|
2077
|
+
KPX agrave yacute -20
|
2078
|
+
KPX agrave ydieresis -20
|
2079
|
+
KPX amacron g -10
|
2080
|
+
KPX amacron gbreve -10
|
2081
|
+
KPX amacron gcommaaccent -10
|
2082
|
+
KPX amacron v -15
|
2083
|
+
KPX amacron w -15
|
2084
|
+
KPX amacron y -20
|
2085
|
+
KPX amacron yacute -20
|
2086
|
+
KPX amacron ydieresis -20
|
2087
|
+
KPX aogonek g -10
|
2088
|
+
KPX aogonek gbreve -10
|
2089
|
+
KPX aogonek gcommaaccent -10
|
2090
|
+
KPX aogonek v -15
|
2091
|
+
KPX aogonek w -15
|
2092
|
+
KPX aogonek y -20
|
2093
|
+
KPX aogonek yacute -20
|
2094
|
+
KPX aogonek ydieresis -20
|
2095
|
+
KPX aring g -10
|
2096
|
+
KPX aring gbreve -10
|
2097
|
+
KPX aring gcommaaccent -10
|
2098
|
+
KPX aring v -15
|
2099
|
+
KPX aring w -15
|
2100
|
+
KPX aring y -20
|
2101
|
+
KPX aring yacute -20
|
2102
|
+
KPX aring ydieresis -20
|
2103
|
+
KPX atilde g -10
|
2104
|
+
KPX atilde gbreve -10
|
2105
|
+
KPX atilde gcommaaccent -10
|
2106
|
+
KPX atilde v -15
|
2107
|
+
KPX atilde w -15
|
2108
|
+
KPX atilde y -20
|
2109
|
+
KPX atilde yacute -20
|
2110
|
+
KPX atilde ydieresis -20
|
2111
|
+
KPX b l -10
|
2112
|
+
KPX b lacute -10
|
2113
|
+
KPX b lcommaaccent -10
|
2114
|
+
KPX b lslash -10
|
2115
|
+
KPX b u -20
|
2116
|
+
KPX b uacute -20
|
2117
|
+
KPX b ucircumflex -20
|
2118
|
+
KPX b udieresis -20
|
2119
|
+
KPX b ugrave -20
|
2120
|
+
KPX b uhungarumlaut -20
|
2121
|
+
KPX b umacron -20
|
2122
|
+
KPX b uogonek -20
|
2123
|
+
KPX b uring -20
|
2124
|
+
KPX b v -20
|
2125
|
+
KPX b y -20
|
2126
|
+
KPX b yacute -20
|
2127
|
+
KPX b ydieresis -20
|
2128
|
+
KPX c h -10
|
2129
|
+
KPX c k -20
|
2130
|
+
KPX c kcommaaccent -20
|
2131
|
+
KPX c l -20
|
2132
|
+
KPX c lacute -20
|
2133
|
+
KPX c lcommaaccent -20
|
2134
|
+
KPX c lslash -20
|
2135
|
+
KPX c y -10
|
2136
|
+
KPX c yacute -10
|
2137
|
+
KPX c ydieresis -10
|
2138
|
+
KPX cacute h -10
|
2139
|
+
KPX cacute k -20
|
2140
|
+
KPX cacute kcommaaccent -20
|
2141
|
+
KPX cacute l -20
|
2142
|
+
KPX cacute lacute -20
|
2143
|
+
KPX cacute lcommaaccent -20
|
2144
|
+
KPX cacute lslash -20
|
2145
|
+
KPX cacute y -10
|
2146
|
+
KPX cacute yacute -10
|
2147
|
+
KPX cacute ydieresis -10
|
2148
|
+
KPX ccaron h -10
|
2149
|
+
KPX ccaron k -20
|
2150
|
+
KPX ccaron kcommaaccent -20
|
2151
|
+
KPX ccaron l -20
|
2152
|
+
KPX ccaron lacute -20
|
2153
|
+
KPX ccaron lcommaaccent -20
|
2154
|
+
KPX ccaron lslash -20
|
2155
|
+
KPX ccaron y -10
|
2156
|
+
KPX ccaron yacute -10
|
2157
|
+
KPX ccaron ydieresis -10
|
2158
|
+
KPX ccedilla h -10
|
2159
|
+
KPX ccedilla k -20
|
2160
|
+
KPX ccedilla kcommaaccent -20
|
2161
|
+
KPX ccedilla l -20
|
2162
|
+
KPX ccedilla lacute -20
|
2163
|
+
KPX ccedilla lcommaaccent -20
|
2164
|
+
KPX ccedilla lslash -20
|
2165
|
+
KPX ccedilla y -10
|
2166
|
+
KPX ccedilla yacute -10
|
2167
|
+
KPX ccedilla ydieresis -10
|
2168
|
+
KPX colon space -40
|
2169
|
+
KPX comma quotedblright -120
|
2170
|
+
KPX comma quoteright -120
|
2171
|
+
KPX comma space -40
|
2172
|
+
KPX d d -10
|
2173
|
+
KPX d dcroat -10
|
2174
|
+
KPX d v -15
|
2175
|
+
KPX d w -15
|
2176
|
+
KPX d y -15
|
2177
|
+
KPX d yacute -15
|
2178
|
+
KPX d ydieresis -15
|
2179
|
+
KPX dcroat d -10
|
2180
|
+
KPX dcroat dcroat -10
|
2181
|
+
KPX dcroat v -15
|
2182
|
+
KPX dcroat w -15
|
2183
|
+
KPX dcroat y -15
|
2184
|
+
KPX dcroat yacute -15
|
2185
|
+
KPX dcroat ydieresis -15
|
2186
|
+
KPX e comma 10
|
2187
|
+
KPX e period 20
|
2188
|
+
KPX e v -15
|
2189
|
+
KPX e w -15
|
2190
|
+
KPX e x -15
|
2191
|
+
KPX e y -15
|
2192
|
+
KPX e yacute -15
|
2193
|
+
KPX e ydieresis -15
|
2194
|
+
KPX eacute comma 10
|
2195
|
+
KPX eacute period 20
|
2196
|
+
KPX eacute v -15
|
2197
|
+
KPX eacute w -15
|
2198
|
+
KPX eacute x -15
|
2199
|
+
KPX eacute y -15
|
2200
|
+
KPX eacute yacute -15
|
2201
|
+
KPX eacute ydieresis -15
|
2202
|
+
KPX ecaron comma 10
|
2203
|
+
KPX ecaron period 20
|
2204
|
+
KPX ecaron v -15
|
2205
|
+
KPX ecaron w -15
|
2206
|
+
KPX ecaron x -15
|
2207
|
+
KPX ecaron y -15
|
2208
|
+
KPX ecaron yacute -15
|
2209
|
+
KPX ecaron ydieresis -15
|
2210
|
+
KPX ecircumflex comma 10
|
2211
|
+
KPX ecircumflex period 20
|
2212
|
+
KPX ecircumflex v -15
|
2213
|
+
KPX ecircumflex w -15
|
2214
|
+
KPX ecircumflex x -15
|
2215
|
+
KPX ecircumflex y -15
|
2216
|
+
KPX ecircumflex yacute -15
|
2217
|
+
KPX ecircumflex ydieresis -15
|
2218
|
+
KPX edieresis comma 10
|
2219
|
+
KPX edieresis period 20
|
2220
|
+
KPX edieresis v -15
|
2221
|
+
KPX edieresis w -15
|
2222
|
+
KPX edieresis x -15
|
2223
|
+
KPX edieresis y -15
|
2224
|
+
KPX edieresis yacute -15
|
2225
|
+
KPX edieresis ydieresis -15
|
2226
|
+
KPX edotaccent comma 10
|
2227
|
+
KPX edotaccent period 20
|
2228
|
+
KPX edotaccent v -15
|
2229
|
+
KPX edotaccent w -15
|
2230
|
+
KPX edotaccent x -15
|
2231
|
+
KPX edotaccent y -15
|
2232
|
+
KPX edotaccent yacute -15
|
2233
|
+
KPX edotaccent ydieresis -15
|
2234
|
+
KPX egrave comma 10
|
2235
|
+
KPX egrave period 20
|
2236
|
+
KPX egrave v -15
|
2237
|
+
KPX egrave w -15
|
2238
|
+
KPX egrave x -15
|
2239
|
+
KPX egrave y -15
|
2240
|
+
KPX egrave yacute -15
|
2241
|
+
KPX egrave ydieresis -15
|
2242
|
+
KPX emacron comma 10
|
2243
|
+
KPX emacron period 20
|
2244
|
+
KPX emacron v -15
|
2245
|
+
KPX emacron w -15
|
2246
|
+
KPX emacron x -15
|
2247
|
+
KPX emacron y -15
|
2248
|
+
KPX emacron yacute -15
|
2249
|
+
KPX emacron ydieresis -15
|
2250
|
+
KPX eogonek comma 10
|
2251
|
+
KPX eogonek period 20
|
2252
|
+
KPX eogonek v -15
|
2253
|
+
KPX eogonek w -15
|
2254
|
+
KPX eogonek x -15
|
2255
|
+
KPX eogonek y -15
|
2256
|
+
KPX eogonek yacute -15
|
2257
|
+
KPX eogonek ydieresis -15
|
2258
|
+
KPX f comma -10
|
2259
|
+
KPX f e -10
|
2260
|
+
KPX f eacute -10
|
2261
|
+
KPX f ecaron -10
|
2262
|
+
KPX f ecircumflex -10
|
2263
|
+
KPX f edieresis -10
|
2264
|
+
KPX f edotaccent -10
|
2265
|
+
KPX f egrave -10
|
2266
|
+
KPX f emacron -10
|
2267
|
+
KPX f eogonek -10
|
2268
|
+
KPX f o -20
|
2269
|
+
KPX f oacute -20
|
2270
|
+
KPX f ocircumflex -20
|
2271
|
+
KPX f odieresis -20
|
2272
|
+
KPX f ograve -20
|
2273
|
+
KPX f ohungarumlaut -20
|
2274
|
+
KPX f omacron -20
|
2275
|
+
KPX f oslash -20
|
2276
|
+
KPX f otilde -20
|
2277
|
+
KPX f period -10
|
2278
|
+
KPX f quotedblright 30
|
2279
|
+
KPX f quoteright 30
|
2280
|
+
KPX g e 10
|
2281
|
+
KPX g eacute 10
|
2282
|
+
KPX g ecaron 10
|
2283
|
+
KPX g ecircumflex 10
|
2284
|
+
KPX g edieresis 10
|
2285
|
+
KPX g edotaccent 10
|
2286
|
+
KPX g egrave 10
|
2287
|
+
KPX g emacron 10
|
2288
|
+
KPX g eogonek 10
|
2289
|
+
KPX g g -10
|
2290
|
+
KPX g gbreve -10
|
2291
|
+
KPX g gcommaaccent -10
|
2292
|
+
KPX gbreve e 10
|
2293
|
+
KPX gbreve eacute 10
|
2294
|
+
KPX gbreve ecaron 10
|
2295
|
+
KPX gbreve ecircumflex 10
|
2296
|
+
KPX gbreve edieresis 10
|
2297
|
+
KPX gbreve edotaccent 10
|
2298
|
+
KPX gbreve egrave 10
|
2299
|
+
KPX gbreve emacron 10
|
2300
|
+
KPX gbreve eogonek 10
|
2301
|
+
KPX gbreve g -10
|
2302
|
+
KPX gbreve gbreve -10
|
2303
|
+
KPX gbreve gcommaaccent -10
|
2304
|
+
KPX gcommaaccent e 10
|
2305
|
+
KPX gcommaaccent eacute 10
|
2306
|
+
KPX gcommaaccent ecaron 10
|
2307
|
+
KPX gcommaaccent ecircumflex 10
|
2308
|
+
KPX gcommaaccent edieresis 10
|
2309
|
+
KPX gcommaaccent edotaccent 10
|
2310
|
+
KPX gcommaaccent egrave 10
|
2311
|
+
KPX gcommaaccent emacron 10
|
2312
|
+
KPX gcommaaccent eogonek 10
|
2313
|
+
KPX gcommaaccent g -10
|
2314
|
+
KPX gcommaaccent gbreve -10
|
2315
|
+
KPX gcommaaccent gcommaaccent -10
|
2316
|
+
KPX h y -20
|
2317
|
+
KPX h yacute -20
|
2318
|
+
KPX h ydieresis -20
|
2319
|
+
KPX k o -15
|
2320
|
+
KPX k oacute -15
|
2321
|
+
KPX k ocircumflex -15
|
2322
|
+
KPX k odieresis -15
|
2323
|
+
KPX k ograve -15
|
2324
|
+
KPX k ohungarumlaut -15
|
2325
|
+
KPX k omacron -15
|
2326
|
+
KPX k oslash -15
|
2327
|
+
KPX k otilde -15
|
2328
|
+
KPX kcommaaccent o -15
|
2329
|
+
KPX kcommaaccent oacute -15
|
2330
|
+
KPX kcommaaccent ocircumflex -15
|
2331
|
+
KPX kcommaaccent odieresis -15
|
2332
|
+
KPX kcommaaccent ograve -15
|
2333
|
+
KPX kcommaaccent ohungarumlaut -15
|
2334
|
+
KPX kcommaaccent omacron -15
|
2335
|
+
KPX kcommaaccent oslash -15
|
2336
|
+
KPX kcommaaccent otilde -15
|
2337
|
+
KPX l w -15
|
2338
|
+
KPX l y -15
|
2339
|
+
KPX l yacute -15
|
2340
|
+
KPX l ydieresis -15
|
2341
|
+
KPX lacute w -15
|
2342
|
+
KPX lacute y -15
|
2343
|
+
KPX lacute yacute -15
|
2344
|
+
KPX lacute ydieresis -15
|
2345
|
+
KPX lcommaaccent w -15
|
2346
|
+
KPX lcommaaccent y -15
|
2347
|
+
KPX lcommaaccent yacute -15
|
2348
|
+
KPX lcommaaccent ydieresis -15
|
2349
|
+
KPX lslash w -15
|
2350
|
+
KPX lslash y -15
|
2351
|
+
KPX lslash yacute -15
|
2352
|
+
KPX lslash ydieresis -15
|
2353
|
+
KPX m u -20
|
2354
|
+
KPX m uacute -20
|
2355
|
+
KPX m ucircumflex -20
|
2356
|
+
KPX m udieresis -20
|
2357
|
+
KPX m ugrave -20
|
2358
|
+
KPX m uhungarumlaut -20
|
2359
|
+
KPX m umacron -20
|
2360
|
+
KPX m uogonek -20
|
2361
|
+
KPX m uring -20
|
2362
|
+
KPX m y -30
|
2363
|
+
KPX m yacute -30
|
2364
|
+
KPX m ydieresis -30
|
2365
|
+
KPX n u -10
|
2366
|
+
KPX n uacute -10
|
2367
|
+
KPX n ucircumflex -10
|
2368
|
+
KPX n udieresis -10
|
2369
|
+
KPX n ugrave -10
|
2370
|
+
KPX n uhungarumlaut -10
|
2371
|
+
KPX n umacron -10
|
2372
|
+
KPX n uogonek -10
|
2373
|
+
KPX n uring -10
|
2374
|
+
KPX n v -40
|
2375
|
+
KPX n y -20
|
2376
|
+
KPX n yacute -20
|
2377
|
+
KPX n ydieresis -20
|
2378
|
+
KPX nacute u -10
|
2379
|
+
KPX nacute uacute -10
|
2380
|
+
KPX nacute ucircumflex -10
|
2381
|
+
KPX nacute udieresis -10
|
2382
|
+
KPX nacute ugrave -10
|
2383
|
+
KPX nacute uhungarumlaut -10
|
2384
|
+
KPX nacute umacron -10
|
2385
|
+
KPX nacute uogonek -10
|
2386
|
+
KPX nacute uring -10
|
2387
|
+
KPX nacute v -40
|
2388
|
+
KPX nacute y -20
|
2389
|
+
KPX nacute yacute -20
|
2390
|
+
KPX nacute ydieresis -20
|
2391
|
+
KPX ncaron u -10
|
2392
|
+
KPX ncaron uacute -10
|
2393
|
+
KPX ncaron ucircumflex -10
|
2394
|
+
KPX ncaron udieresis -10
|
2395
|
+
KPX ncaron ugrave -10
|
2396
|
+
KPX ncaron uhungarumlaut -10
|
2397
|
+
KPX ncaron umacron -10
|
2398
|
+
KPX ncaron uogonek -10
|
2399
|
+
KPX ncaron uring -10
|
2400
|
+
KPX ncaron v -40
|
2401
|
+
KPX ncaron y -20
|
2402
|
+
KPX ncaron yacute -20
|
2403
|
+
KPX ncaron ydieresis -20
|
2404
|
+
KPX ncommaaccent u -10
|
2405
|
+
KPX ncommaaccent uacute -10
|
2406
|
+
KPX ncommaaccent ucircumflex -10
|
2407
|
+
KPX ncommaaccent udieresis -10
|
2408
|
+
KPX ncommaaccent ugrave -10
|
2409
|
+
KPX ncommaaccent uhungarumlaut -10
|
2410
|
+
KPX ncommaaccent umacron -10
|
2411
|
+
KPX ncommaaccent uogonek -10
|
2412
|
+
KPX ncommaaccent uring -10
|
2413
|
+
KPX ncommaaccent v -40
|
2414
|
+
KPX ncommaaccent y -20
|
2415
|
+
KPX ncommaaccent yacute -20
|
2416
|
+
KPX ncommaaccent ydieresis -20
|
2417
|
+
KPX ntilde u -10
|
2418
|
+
KPX ntilde uacute -10
|
2419
|
+
KPX ntilde ucircumflex -10
|
2420
|
+
KPX ntilde udieresis -10
|
2421
|
+
KPX ntilde ugrave -10
|
2422
|
+
KPX ntilde uhungarumlaut -10
|
2423
|
+
KPX ntilde umacron -10
|
2424
|
+
KPX ntilde uogonek -10
|
2425
|
+
KPX ntilde uring -10
|
2426
|
+
KPX ntilde v -40
|
2427
|
+
KPX ntilde y -20
|
2428
|
+
KPX ntilde yacute -20
|
2429
|
+
KPX ntilde ydieresis -20
|
2430
|
+
KPX o v -20
|
2431
|
+
KPX o w -15
|
2432
|
+
KPX o x -30
|
2433
|
+
KPX o y -20
|
2434
|
+
KPX o yacute -20
|
2435
|
+
KPX o ydieresis -20
|
2436
|
+
KPX oacute v -20
|
2437
|
+
KPX oacute w -15
|
2438
|
+
KPX oacute x -30
|
2439
|
+
KPX oacute y -20
|
2440
|
+
KPX oacute yacute -20
|
2441
|
+
KPX oacute ydieresis -20
|
2442
|
+
KPX ocircumflex v -20
|
2443
|
+
KPX ocircumflex w -15
|
2444
|
+
KPX ocircumflex x -30
|
2445
|
+
KPX ocircumflex y -20
|
2446
|
+
KPX ocircumflex yacute -20
|
2447
|
+
KPX ocircumflex ydieresis -20
|
2448
|
+
KPX odieresis v -20
|
2449
|
+
KPX odieresis w -15
|
2450
|
+
KPX odieresis x -30
|
2451
|
+
KPX odieresis y -20
|
2452
|
+
KPX odieresis yacute -20
|
2453
|
+
KPX odieresis ydieresis -20
|
2454
|
+
KPX ograve v -20
|
2455
|
+
KPX ograve w -15
|
2456
|
+
KPX ograve x -30
|
2457
|
+
KPX ograve y -20
|
2458
|
+
KPX ograve yacute -20
|
2459
|
+
KPX ograve ydieresis -20
|
2460
|
+
KPX ohungarumlaut v -20
|
2461
|
+
KPX ohungarumlaut w -15
|
2462
|
+
KPX ohungarumlaut x -30
|
2463
|
+
KPX ohungarumlaut y -20
|
2464
|
+
KPX ohungarumlaut yacute -20
|
2465
|
+
KPX ohungarumlaut ydieresis -20
|
2466
|
+
KPX omacron v -20
|
2467
|
+
KPX omacron w -15
|
2468
|
+
KPX omacron x -30
|
2469
|
+
KPX omacron y -20
|
2470
|
+
KPX omacron yacute -20
|
2471
|
+
KPX omacron ydieresis -20
|
2472
|
+
KPX oslash v -20
|
2473
|
+
KPX oslash w -15
|
2474
|
+
KPX oslash x -30
|
2475
|
+
KPX oslash y -20
|
2476
|
+
KPX oslash yacute -20
|
2477
|
+
KPX oslash ydieresis -20
|
2478
|
+
KPX otilde v -20
|
2479
|
+
KPX otilde w -15
|
2480
|
+
KPX otilde x -30
|
2481
|
+
KPX otilde y -20
|
2482
|
+
KPX otilde yacute -20
|
2483
|
+
KPX otilde ydieresis -20
|
2484
|
+
KPX p y -15
|
2485
|
+
KPX p yacute -15
|
2486
|
+
KPX p ydieresis -15
|
2487
|
+
KPX period quotedblright -120
|
2488
|
+
KPX period quoteright -120
|
2489
|
+
KPX period space -40
|
2490
|
+
KPX quotedblright space -80
|
2491
|
+
KPX quoteleft quoteleft -46
|
2492
|
+
KPX quoteright d -80
|
2493
|
+
KPX quoteright dcroat -80
|
2494
|
+
KPX quoteright l -20
|
2495
|
+
KPX quoteright lacute -20
|
2496
|
+
KPX quoteright lcommaaccent -20
|
2497
|
+
KPX quoteright lslash -20
|
2498
|
+
KPX quoteright quoteright -46
|
2499
|
+
KPX quoteright r -40
|
2500
|
+
KPX quoteright racute -40
|
2501
|
+
KPX quoteright rcaron -40
|
2502
|
+
KPX quoteright rcommaaccent -40
|
2503
|
+
KPX quoteright s -60
|
2504
|
+
KPX quoteright sacute -60
|
2505
|
+
KPX quoteright scaron -60
|
2506
|
+
KPX quoteright scedilla -60
|
2507
|
+
KPX quoteright scommaaccent -60
|
2508
|
+
KPX quoteright space -80
|
2509
|
+
KPX quoteright v -20
|
2510
|
+
KPX r c -20
|
2511
|
+
KPX r cacute -20
|
2512
|
+
KPX r ccaron -20
|
2513
|
+
KPX r ccedilla -20
|
2514
|
+
KPX r comma -60
|
2515
|
+
KPX r d -20
|
2516
|
+
KPX r dcroat -20
|
2517
|
+
KPX r g -15
|
2518
|
+
KPX r gbreve -15
|
2519
|
+
KPX r gcommaaccent -15
|
2520
|
+
KPX r hyphen -20
|
2521
|
+
KPX r o -20
|
2522
|
+
KPX r oacute -20
|
2523
|
+
KPX r ocircumflex -20
|
2524
|
+
KPX r odieresis -20
|
2525
|
+
KPX r ograve -20
|
2526
|
+
KPX r ohungarumlaut -20
|
2527
|
+
KPX r omacron -20
|
2528
|
+
KPX r oslash -20
|
2529
|
+
KPX r otilde -20
|
2530
|
+
KPX r period -60
|
2531
|
+
KPX r q -20
|
2532
|
+
KPX r s -15
|
2533
|
+
KPX r sacute -15
|
2534
|
+
KPX r scaron -15
|
2535
|
+
KPX r scedilla -15
|
2536
|
+
KPX r scommaaccent -15
|
2537
|
+
KPX r t 20
|
2538
|
+
KPX r tcommaaccent 20
|
2539
|
+
KPX r v 10
|
2540
|
+
KPX r y 10
|
2541
|
+
KPX r yacute 10
|
2542
|
+
KPX r ydieresis 10
|
2543
|
+
KPX racute c -20
|
2544
|
+
KPX racute cacute -20
|
2545
|
+
KPX racute ccaron -20
|
2546
|
+
KPX racute ccedilla -20
|
2547
|
+
KPX racute comma -60
|
2548
|
+
KPX racute d -20
|
2549
|
+
KPX racute dcroat -20
|
2550
|
+
KPX racute g -15
|
2551
|
+
KPX racute gbreve -15
|
2552
|
+
KPX racute gcommaaccent -15
|
2553
|
+
KPX racute hyphen -20
|
2554
|
+
KPX racute o -20
|
2555
|
+
KPX racute oacute -20
|
2556
|
+
KPX racute ocircumflex -20
|
2557
|
+
KPX racute odieresis -20
|
2558
|
+
KPX racute ograve -20
|
2559
|
+
KPX racute ohungarumlaut -20
|
2560
|
+
KPX racute omacron -20
|
2561
|
+
KPX racute oslash -20
|
2562
|
+
KPX racute otilde -20
|
2563
|
+
KPX racute period -60
|
2564
|
+
KPX racute q -20
|
2565
|
+
KPX racute s -15
|
2566
|
+
KPX racute sacute -15
|
2567
|
+
KPX racute scaron -15
|
2568
|
+
KPX racute scedilla -15
|
2569
|
+
KPX racute scommaaccent -15
|
2570
|
+
KPX racute t 20
|
2571
|
+
KPX racute tcommaaccent 20
|
2572
|
+
KPX racute v 10
|
2573
|
+
KPX racute y 10
|
2574
|
+
KPX racute yacute 10
|
2575
|
+
KPX racute ydieresis 10
|
2576
|
+
KPX rcaron c -20
|
2577
|
+
KPX rcaron cacute -20
|
2578
|
+
KPX rcaron ccaron -20
|
2579
|
+
KPX rcaron ccedilla -20
|
2580
|
+
KPX rcaron comma -60
|
2581
|
+
KPX rcaron d -20
|
2582
|
+
KPX rcaron dcroat -20
|
2583
|
+
KPX rcaron g -15
|
2584
|
+
KPX rcaron gbreve -15
|
2585
|
+
KPX rcaron gcommaaccent -15
|
2586
|
+
KPX rcaron hyphen -20
|
2587
|
+
KPX rcaron o -20
|
2588
|
+
KPX rcaron oacute -20
|
2589
|
+
KPX rcaron ocircumflex -20
|
2590
|
+
KPX rcaron odieresis -20
|
2591
|
+
KPX rcaron ograve -20
|
2592
|
+
KPX rcaron ohungarumlaut -20
|
2593
|
+
KPX rcaron omacron -20
|
2594
|
+
KPX rcaron oslash -20
|
2595
|
+
KPX rcaron otilde -20
|
2596
|
+
KPX rcaron period -60
|
2597
|
+
KPX rcaron q -20
|
2598
|
+
KPX rcaron s -15
|
2599
|
+
KPX rcaron sacute -15
|
2600
|
+
KPX rcaron scaron -15
|
2601
|
+
KPX rcaron scedilla -15
|
2602
|
+
KPX rcaron scommaaccent -15
|
2603
|
+
KPX rcaron t 20
|
2604
|
+
KPX rcaron tcommaaccent 20
|
2605
|
+
KPX rcaron v 10
|
2606
|
+
KPX rcaron y 10
|
2607
|
+
KPX rcaron yacute 10
|
2608
|
+
KPX rcaron ydieresis 10
|
2609
|
+
KPX rcommaaccent c -20
|
2610
|
+
KPX rcommaaccent cacute -20
|
2611
|
+
KPX rcommaaccent ccaron -20
|
2612
|
+
KPX rcommaaccent ccedilla -20
|
2613
|
+
KPX rcommaaccent comma -60
|
2614
|
+
KPX rcommaaccent d -20
|
2615
|
+
KPX rcommaaccent dcroat -20
|
2616
|
+
KPX rcommaaccent g -15
|
2617
|
+
KPX rcommaaccent gbreve -15
|
2618
|
+
KPX rcommaaccent gcommaaccent -15
|
2619
|
+
KPX rcommaaccent hyphen -20
|
2620
|
+
KPX rcommaaccent o -20
|
2621
|
+
KPX rcommaaccent oacute -20
|
2622
|
+
KPX rcommaaccent ocircumflex -20
|
2623
|
+
KPX rcommaaccent odieresis -20
|
2624
|
+
KPX rcommaaccent ograve -20
|
2625
|
+
KPX rcommaaccent ohungarumlaut -20
|
2626
|
+
KPX rcommaaccent omacron -20
|
2627
|
+
KPX rcommaaccent oslash -20
|
2628
|
+
KPX rcommaaccent otilde -20
|
2629
|
+
KPX rcommaaccent period -60
|
2630
|
+
KPX rcommaaccent q -20
|
2631
|
+
KPX rcommaaccent s -15
|
2632
|
+
KPX rcommaaccent sacute -15
|
2633
|
+
KPX rcommaaccent scaron -15
|
2634
|
+
KPX rcommaaccent scedilla -15
|
2635
|
+
KPX rcommaaccent scommaaccent -15
|
2636
|
+
KPX rcommaaccent t 20
|
2637
|
+
KPX rcommaaccent tcommaaccent 20
|
2638
|
+
KPX rcommaaccent v 10
|
2639
|
+
KPX rcommaaccent y 10
|
2640
|
+
KPX rcommaaccent yacute 10
|
2641
|
+
KPX rcommaaccent ydieresis 10
|
2642
|
+
KPX s w -15
|
2643
|
+
KPX sacute w -15
|
2644
|
+
KPX scaron w -15
|
2645
|
+
KPX scedilla w -15
|
2646
|
+
KPX scommaaccent w -15
|
2647
|
+
KPX semicolon space -40
|
2648
|
+
KPX space T -100
|
2649
|
+
KPX space Tcaron -100
|
2650
|
+
KPX space Tcommaaccent -100
|
2651
|
+
KPX space V -80
|
2652
|
+
KPX space W -80
|
2653
|
+
KPX space Y -120
|
2654
|
+
KPX space Yacute -120
|
2655
|
+
KPX space Ydieresis -120
|
2656
|
+
KPX space quotedblleft -80
|
2657
|
+
KPX space quoteleft -60
|
2658
|
+
KPX v a -20
|
2659
|
+
KPX v aacute -20
|
2660
|
+
KPX v abreve -20
|
2661
|
+
KPX v acircumflex -20
|
2662
|
+
KPX v adieresis -20
|
2663
|
+
KPX v agrave -20
|
2664
|
+
KPX v amacron -20
|
2665
|
+
KPX v aogonek -20
|
2666
|
+
KPX v aring -20
|
2667
|
+
KPX v atilde -20
|
2668
|
+
KPX v comma -80
|
2669
|
+
KPX v o -30
|
2670
|
+
KPX v oacute -30
|
2671
|
+
KPX v ocircumflex -30
|
2672
|
+
KPX v odieresis -30
|
2673
|
+
KPX v ograve -30
|
2674
|
+
KPX v ohungarumlaut -30
|
2675
|
+
KPX v omacron -30
|
2676
|
+
KPX v oslash -30
|
2677
|
+
KPX v otilde -30
|
2678
|
+
KPX v period -80
|
2679
|
+
KPX w comma -40
|
2680
|
+
KPX w o -20
|
2681
|
+
KPX w oacute -20
|
2682
|
+
KPX w ocircumflex -20
|
2683
|
+
KPX w odieresis -20
|
2684
|
+
KPX w ograve -20
|
2685
|
+
KPX w ohungarumlaut -20
|
2686
|
+
KPX w omacron -20
|
2687
|
+
KPX w oslash -20
|
2688
|
+
KPX w otilde -20
|
2689
|
+
KPX w period -40
|
2690
|
+
KPX x e -10
|
2691
|
+
KPX x eacute -10
|
2692
|
+
KPX x ecaron -10
|
2693
|
+
KPX x ecircumflex -10
|
2694
|
+
KPX x edieresis -10
|
2695
|
+
KPX x edotaccent -10
|
2696
|
+
KPX x egrave -10
|
2697
|
+
KPX x emacron -10
|
2698
|
+
KPX x eogonek -10
|
2699
|
+
KPX y a -30
|
2700
|
+
KPX y aacute -30
|
2701
|
+
KPX y abreve -30
|
2702
|
+
KPX y acircumflex -30
|
2703
|
+
KPX y adieresis -30
|
2704
|
+
KPX y agrave -30
|
2705
|
+
KPX y amacron -30
|
2706
|
+
KPX y aogonek -30
|
2707
|
+
KPX y aring -30
|
2708
|
+
KPX y atilde -30
|
2709
|
+
KPX y comma -80
|
2710
|
+
KPX y e -10
|
2711
|
+
KPX y eacute -10
|
2712
|
+
KPX y ecaron -10
|
2713
|
+
KPX y ecircumflex -10
|
2714
|
+
KPX y edieresis -10
|
2715
|
+
KPX y edotaccent -10
|
2716
|
+
KPX y egrave -10
|
2717
|
+
KPX y emacron -10
|
2718
|
+
KPX y eogonek -10
|
2719
|
+
KPX y o -25
|
2720
|
+
KPX y oacute -25
|
2721
|
+
KPX y ocircumflex -25
|
2722
|
+
KPX y odieresis -25
|
2723
|
+
KPX y ograve -25
|
2724
|
+
KPX y ohungarumlaut -25
|
2725
|
+
KPX y omacron -25
|
2726
|
+
KPX y oslash -25
|
2727
|
+
KPX y otilde -25
|
2728
|
+
KPX y period -80
|
2729
|
+
KPX yacute a -30
|
2730
|
+
KPX yacute aacute -30
|
2731
|
+
KPX yacute abreve -30
|
2732
|
+
KPX yacute acircumflex -30
|
2733
|
+
KPX yacute adieresis -30
|
2734
|
+
KPX yacute agrave -30
|
2735
|
+
KPX yacute amacron -30
|
2736
|
+
KPX yacute aogonek -30
|
2737
|
+
KPX yacute aring -30
|
2738
|
+
KPX yacute atilde -30
|
2739
|
+
KPX yacute comma -80
|
2740
|
+
KPX yacute e -10
|
2741
|
+
KPX yacute eacute -10
|
2742
|
+
KPX yacute ecaron -10
|
2743
|
+
KPX yacute ecircumflex -10
|
2744
|
+
KPX yacute edieresis -10
|
2745
|
+
KPX yacute edotaccent -10
|
2746
|
+
KPX yacute egrave -10
|
2747
|
+
KPX yacute emacron -10
|
2748
|
+
KPX yacute eogonek -10
|
2749
|
+
KPX yacute o -25
|
2750
|
+
KPX yacute oacute -25
|
2751
|
+
KPX yacute ocircumflex -25
|
2752
|
+
KPX yacute odieresis -25
|
2753
|
+
KPX yacute ograve -25
|
2754
|
+
KPX yacute ohungarumlaut -25
|
2755
|
+
KPX yacute omacron -25
|
2756
|
+
KPX yacute oslash -25
|
2757
|
+
KPX yacute otilde -25
|
2758
|
+
KPX yacute period -80
|
2759
|
+
KPX ydieresis a -30
|
2760
|
+
KPX ydieresis aacute -30
|
2761
|
+
KPX ydieresis abreve -30
|
2762
|
+
KPX ydieresis acircumflex -30
|
2763
|
+
KPX ydieresis adieresis -30
|
2764
|
+
KPX ydieresis agrave -30
|
2765
|
+
KPX ydieresis amacron -30
|
2766
|
+
KPX ydieresis aogonek -30
|
2767
|
+
KPX ydieresis aring -30
|
2768
|
+
KPX ydieresis atilde -30
|
2769
|
+
KPX ydieresis comma -80
|
2770
|
+
KPX ydieresis e -10
|
2771
|
+
KPX ydieresis eacute -10
|
2772
|
+
KPX ydieresis ecaron -10
|
2773
|
+
KPX ydieresis ecircumflex -10
|
2774
|
+
KPX ydieresis edieresis -10
|
2775
|
+
KPX ydieresis edotaccent -10
|
2776
|
+
KPX ydieresis egrave -10
|
2777
|
+
KPX ydieresis emacron -10
|
2778
|
+
KPX ydieresis eogonek -10
|
2779
|
+
KPX ydieresis o -25
|
2780
|
+
KPX ydieresis oacute -25
|
2781
|
+
KPX ydieresis ocircumflex -25
|
2782
|
+
KPX ydieresis odieresis -25
|
2783
|
+
KPX ydieresis ograve -25
|
2784
|
+
KPX ydieresis ohungarumlaut -25
|
2785
|
+
KPX ydieresis omacron -25
|
2786
|
+
KPX ydieresis oslash -25
|
2787
|
+
KPX ydieresis otilde -25
|
2788
|
+
KPX ydieresis period -80
|
2789
|
+
KPX z e 10
|
2790
|
+
KPX z eacute 10
|
2791
|
+
KPX z ecaron 10
|
2792
|
+
KPX z ecircumflex 10
|
2793
|
+
KPX z edieresis 10
|
2794
|
+
KPX z edotaccent 10
|
2795
|
+
KPX z egrave 10
|
2796
|
+
KPX z emacron 10
|
2797
|
+
KPX z eogonek 10
|
2798
|
+
KPX zacute e 10
|
2799
|
+
KPX zacute eacute 10
|
2800
|
+
KPX zacute ecaron 10
|
2801
|
+
KPX zacute ecircumflex 10
|
2802
|
+
KPX zacute edieresis 10
|
2803
|
+
KPX zacute edotaccent 10
|
2804
|
+
KPX zacute egrave 10
|
2805
|
+
KPX zacute emacron 10
|
2806
|
+
KPX zacute eogonek 10
|
2807
|
+
KPX zcaron e 10
|
2808
|
+
KPX zcaron eacute 10
|
2809
|
+
KPX zcaron ecaron 10
|
2810
|
+
KPX zcaron ecircumflex 10
|
2811
|
+
KPX zcaron edieresis 10
|
2812
|
+
KPX zcaron edotaccent 10
|
2813
|
+
KPX zcaron egrave 10
|
2814
|
+
KPX zcaron emacron 10
|
2815
|
+
KPX zcaron eogonek 10
|
2816
|
+
KPX zdotaccent e 10
|
2817
|
+
KPX zdotaccent eacute 10
|
2818
|
+
KPX zdotaccent ecaron 10
|
2819
|
+
KPX zdotaccent ecircumflex 10
|
2820
|
+
KPX zdotaccent edieresis 10
|
2821
|
+
KPX zdotaccent edotaccent 10
|
2822
|
+
KPX zdotaccent egrave 10
|
2823
|
+
KPX zdotaccent emacron 10
|
2824
|
+
KPX zdotaccent eogonek 10
|
2825
|
+
EndKernPairs
|
2826
|
+
EndKernData
|
2827
|
+
EndFontMetrics
|