alphasights-prawn 0.10.0

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