Add README
[Font7x5.git] / Font7x5.ps
blob95ba495c67048392ac282e44256275138e892021
1 %!
3 userdict /Font7x5Loaded known { exit } if
4 userdict /Font7x5Loaded true put
6 % font definition
8 16 dict
9 begin
11 /FontType 3 def
13 /FontMatrix [ 0.00125 0 0 0.00125 0 0 ] def
15 /Encoding StandardEncoding def
17 /$InvertedEncoding <<
18     0 1 Encoding length 1 sub {
19         dup Encoding exch get exch
20     } for
21 >> def
23 /$gridwidth   6 def
24 /$gridheight  8 def
25 /$cellsize  100 def
28 % radius => -
29 /$SetRoundDot {
30     /$dotradius exch def
31     /$dotradiuses [ $dotradius $dotradius ] def
33     % point is at the cell's center
34     /$DrawDot {
35         currentpoint $dotradius 0 360 arc
36     } bind def
37 } bind def
39 % radius => -
40 /$SetSquareDot {
41     /$dotradius exch def
42     /$dotradiuses [ $dotradius $dotradius ] def
44     /$DrawDot {
45         $dotradius neg dup rmoveto
46         $dotradius 2 mul 0 rlineto
47         0 $dotradius 2 mul rlineto
48         $dotradius 2 mul neg 0 rlineto
49         closepath
50     } bind def
51 } bind def
53 /$SetCRTLikeDot {
54     /$dotvradius $cellsize $cellsize 4 div sub  2 div def
55     /$dotradiuses [ $cellsize 2 div  $dotvradius add
56                     $dotvradius ] def
57     /$DrawDot {
58         $cellsize 2 div  $dotvradius  rmoveto
59         currentpoint exch $cellsize sub exch $dotvradius sub
60         $dotvradius 90 270 arc % top and left
61         currentpoint exch $cellsize add exch $dotvradius add
62         $dotvradius 270 90 arc % bottom and right
63     } bind def
64 } bind def
66 %$cellsize 1.9 div $SetRoundDot
68 %$cellsize 2 div $SetSquareDot
70 $SetCRTLikeDot
71     
72 /$RecalculateMetrics {
73     $cellsize 2 div
74     dup /$cellmargin-horiz exch $dotradiuses 0 get sub def
75         /$cellmargin-vert  exch $dotradiuses 1 get sub def
76     /$glyphwidth  $gridwidth  $cellsize mul def
77     /$glyphheight $gridheight $cellsize mul def
79     /FontBBox
80         [ $cellmargin-horiz $cellmargin-vert  % llx lly
81           $glyphwidth $cellmargin-horiz sub  $glyphheight $cellmargin-vert sub % urx ury
82         ] def
83 } bind def
85 $RecalculateMetrics
87 % fontdict charname => -
88 /BuildGlyph {
89     exch begin
90         GlyphDefinitions exch 2 copy
91         known { % ifelse
92             get $DrawBitmap
93         }
94         {
95             exch pop
96             $InvertedEncoding exch 2 copy
97             known {
98                 get $DrawHexCodeChar
99             }
100             {
101                 pop pop
102                 GlyphDefinitions /.notdef get $DrawBitmap
103             } ifelse
104         } ifelse
105     end
106 } bind def
108 % strdef => -
109 /$DrawBitmap {
110     dup 0 get  1 index 1 get   % st: strdef ll ur
111     $GetBoundingBox            % st: strdef x1' y1' x2' y2'
112     $glyphwidth 0  6 2 roll    % st: strdef w 0 x1' y1' x2' y2'
113     setcachedevice
114     2 6 getinterval $DrawMatrix
115 } bind def
117 % byte => nybble1 nybble2
118 /$SplitByte {
119     dup
120     16#F0 and -4 bitshift
121     exch
122     16#0F and
123 } bind def
125 % byte-ll byte-ur => llx lly urx ury
126 /$GetBoundingBox {
127     exch $SplitByte
128     exch $cellsize mul $cellmargin-horiz add
129     exch $cellsize mul $cellmargin-vert add
130     3 -1 roll
131     $SplitByte
132     exch 1 add $cellsize mul $cellmargin-horiz sub
133     exch 1 add $cellsize mul $cellmargin-vert sub
134 } bind def
135     
137 % chrdefstring => -
138 /$DrawMatrix {
139     newpath
140     0 % counter
141     exch { % forall
142         %(at forall start. stack:) = pstack
143         dup 0 ne % if
144         {
145             0 1 7 { % for
146                 %(at for start. stack:) = pstack
147                 2 copy               % st: counter char i char i
148                 1 exch bitshift      % st: counter char i char 1<<i
149                 and 0 ne { % ifelse
150                     2 index          % st: counter char i counter
151                     $cellsize mul $cellsize 2 div add  exch   % st: cntr char x i
152                     $cellsize mul $cellsize 2 div add         % st: cntr char x y
153                     moveto
154                     $DrawDot
155                 }
156                 { pop } ifelse
157             } for
158         } if
159         pop % the char
160         1 add
161         %(at forall end. stack:) = pstack
162     } forall
163     pop  % counter
164     fill
165 } bind def
167 % n => -
168 /$DrawHexCodeChar {
169     $glyphwidth  0
170     $cellmargin-horiz  $cellmargin-vert
171     $cellsize $gridwidth mul $cellmargin-horiz sub
172     $cellsize $gridheight mul $cellmargin-vert sub
173     setcachedevice
174     $DrawHexCode
175 } bind def
176     
177 % n str => -
178 % n is the nybble (0-15), str the prefix of the dictionary key
179 /$DrawNybble {
180     3 string  dup 3 1 roll copy pop  % st: n (pr )
181     dup 3 1 roll                     % st: (pr ) n (pr )
182     2 1 getinterval 16 exch cvrs pop % st: (prX)
183     GlyphDefinitions exch get 2 6 getinterval $DrawMatrix
184 } bind def
186 % n => -
187 /$DrawHexCode {
188     dup
189     16#F0 and -4 bitshift % st: n nybble1
190     (tl) $DrawNybble  % top left
191     16#0F and
192     (br) $DrawNybble  % bottom right
193 } bind def
195 /GlyphDefinitions 256 dict def
197 GlyphDefinitions begin
199 % .notdef
200 % ......
201 % .###..
202 % ...#..
203 % .###..
204 % .#....
205 % ......
206 % .#....
207 % ......
208 /.notdef  <1136 00 5A 50 70 00 00>  def
210 % space
211 % ......
212 % ......
213 % ......
214 % ......
215 % ......
216 % ......
217 % ......
218 % ......
219 /space  <0000 00 00 00 00 00 00>  def
221 % exclam
222 % ..#...
223 % ..#...
224 % ..#...
225 % ..#...
226 % ..#...
227 % ......
228 % ..#...
229 % ......
230 /exclam  <2127 00 00 FA 00 00 00>  def
232 % quotedbl
233 % .#.#..
234 % .#.#..
235 % ......
236 % ......
237 % ......
238 % ......
239 % ......
240 % ......
241 /quotedbl  <1637 00 C0 00 C0 00 00>  def
243 % numbersign
244 % .#.#..
245 % .#.#..
246 % #####.
247 % .#.#..
248 % #####.
249 % .#.#..
250 % .#.#..
251 % ......
252 /numbersign  <0147 28 FE 28 FE 28 00>  def
254 % dollar
255 % ..#...
256 % .###..
257 % #.#...
258 % .###..
259 % ..#.#.
260 % .###..
261 % ..#...
262 % ......
263 /dollar  <0147 20 54 FE 54 08 00>  def
265 % percent
266 % ##....
267 % ##..#.
268 % ...#..
269 % ..#...
270 % .#....
271 % #..##.
272 % ...##.
273 % ......
274 /percent  <0147 C4 C8 10 26 46 00>  def
276 % ampersand
277 % .##...
278 % #..#..
279 % #..#..
280 % .##...
281 % #..##.
282 % #..#..
283 % .##.#.
284 % ......
285 /ampersand  <0147 6C 92 92 6C 0A 00>  def
287 % quotesingle
288 % ..#...
289 % ..#...
290 % .#....
291 % ......
292 % ......
293 % ......
294 % ......
295 % ......
296 /quotesingle  <1527 00 20 C0 00 00 00>  def
297 /quoteright quotesingle def
299 % parenleft
300 % ....#.
301 % ...#..
302 % ..#...
303 % ..#...
304 % ..#...
305 % ...#..
306 % ....#.
307 % ......
308 /parenleft  <2147 00 00 38 44 82 00>  def
310 % parenright
311 % #.....
312 % .#....
313 % ..#...
314 % ..#...
315 % ..#...
316 % .#....
317 % #.....
318 % ......
319 /parenright  <0127 82 44 38 00 00 00>  def
321 % asterisk
322 % ......
323 % #...#.
324 % .#.#..
325 % #####.
326 % .#.#..
327 % #...#.
328 % ......
329 % ......
330 /asterisk  <0246 54 38 10 38 54 00>  def
332 % plus
333 % ......
334 % ..#...
335 % ..#...
336 % #####.
337 % ..#...
338 % ..#...
339 % ......
340 % ......
341 /plus  <0246 10 10 7C 10 10 00>  def
343 % comma
344 % ......
345 % ......
346 % ......
347 % ......
348 % .#....
349 % .#....
350 % #.....
351 % ......
352 /comma  <0113 02 0C 00 00 00 00>  def
354 % hyphen
355 % ......
356 % ......
357 % ......
358 % .###..
359 % ......
360 % ......
361 % ......
362 % ......
363 /hyphen  <1434 00 10 10 10 00 00>  def
365 % period
366 % ......
367 % ......
368 % ......
369 % ......
370 % ......
371 % .##...
372 % .##...
373 % ......
374 /period  <1122 00 06 06 00 00 00>  def
376 % slash
377 % ....#.
378 % ....#.
379 % ...#..
380 % ..#...
381 % .#....
382 % #.....
383 % #.....
384 % ......
385 /slash  <0147 06 08 10 20 C0 00>  def
387 % colon
388 % ......
389 % ......
390 % .#....
391 % ......
392 % ......
393 % .#....
394 % ......
395 % ......
396 /colon  <1215 00 24 00 00 00 00>  def
398 % semicolon
399 % ......
400 % ......
401 % .#....
402 % ......
403 % .#....
404 % .#....
405 % #.....
406 % ......
407 /semicolon  <0115 02 2C 00 00 00 00>  def
409 % less
410 % ...#..
411 % ..#...
412 % .#....
413 % #.....
414 % .#....
415 % ..#...
416 % ...#..
417 % ......
418 /less  <0137 10 28 44 82 00 00>  def
420 % equal
421 % ......
422 % ......
423 % #####.
424 % ......
425 % #####.
426 % ......
427 % ......
428 % ......
429 /equal  <0345 28 28 28 28 28 00>  def
431 % greater
432 % .#....
433 % ..#...
434 % ...#..
435 % ....#.
436 % ...#..
437 % ..#...
438 % .#....
439 % ......
440 /greater  <1147 00 82 44 28 10 00>  def
442 % question
443 % .###..
444 % #...#.
445 % ....#.
446 % ...#..
447 % ..#...
448 % ......
449 % ..#...
450 % ......
451 /question  <0147 40 80 8A 90 60 00>  def
453 % at
454 % .###..
455 % #...#.
456 % #..##.
457 % #.#.#.
458 % #..##.
459 % #.....
460 % .###..
461 % ......
462 /at  <0147 7C 82 92 AA 78 00>  def
464 % bracketleft
465 % ..###.
466 % ..#...
467 % ..#...
468 % ..#...
469 % ..#...
470 % ..#...
471 % ..###.
472 % ......
473 /bracketleft  <2147 00 00 FE 82 82 00>  def
475 % backslash
476 % ......
477 % ......
478 % #.....
479 % .#....
480 % ..#...
481 % ...#..
482 % ....#.
483 % ......
484 /backslash  <0145 20 10 08 04 02 00>  def
486 % bracketright
487 % ###...
488 % ..#...
489 % ..#...
490 % ..#...
491 % ..#...
492 % ..#...
493 % ###...
494 % ......
495 /bracketright  <0127 82 82 FE 00 00 00>  def
497 % asciicircum
498 % ..#...
499 % .#.#..
500 % #...#.
501 % ......
502 % ......
503 % ......
504 % ......
505 % ......
506 /asciicircum  <0547 20 40 80 40 20 00>  def
508 % underscore
509 % ......
510 % ......
511 % ......
512 % ......
513 % ......
514 % ......
515 % #####.
516 % ......
517 /underscore  <0141 02 02 02 02 02 00>  def
519 % grave
520 % ..#...
521 % ..#...
522 % ...#..
523 % ......
524 % ......
525 % ......
526 % ......
527 % ......
528 /grave  <2537 00 00 C0 20 00 00>  def
529 /quoteleft grave def
531 % braceleft
532 % ...##.
533 % ..#...
534 % ..#...
535 % .#....
536 % ..#...
537 % ..#...
538 % ...##.
539 % ......
540 /braceleft  <1147 00 10 6C 82 82 00>  def
542 % bar
543 % ..#...
544 % ..#...
545 % ..#...
546 % ......
547 % ..#...
548 % ..#...
549 % ..#...
550 % ......
551 /bar  <2127 00 00 EE 00 00 00>  def
553 % braceright
554 % ##....
555 % ..#...
556 % ..#...
557 % ...#..
558 % ..#...
559 % ..#...
560 % ##....
561 % ......
562 /braceright  <0137 82 82 6C 10 00 00>  def
564 % asciitilde
565 % .##.#.
566 % #..#..
567 % ......
568 % ......
569 % ......
570 % ......
571 % ......
572 % ......
573 /asciitilde  <0647 40 80 80 40 80 00>  def
575 % exclamdown
576 % ..#...
577 % ......
578 % ..#...
579 % ..#...
580 % ..#...
581 % ..#...
582 % ..#...
583 % ......
584 /exclamdown  <2127 00 00 BE 00 00 00>  def
586 % cent
587 % ......
588 % ..#...
589 % .###..
590 % #.#...
591 % #.#...
592 % .###..
593 % ..#...
594 % ......
595 /cent  <0136 18 24 7E 24 00 00>  def
597 % sterling
598 % ..##..
599 % .#..#.
600 % .#....
601 % ###...
602 % .#....
603 % .#....
604 % #####.
605 % ......
606 /sterling  <0147 12 7E 92 82 42 00>  def
608 % currency
609 % ......
610 % .#..#.
611 % ..##..
612 % .#..#.
613 % .#..#.
614 % ..##..
615 % .#..#.
616 % ......
617 /currency  <1146 00 5A 24 24 5A 00>  def
619 % yen
620 % #...#.
621 % #...#.
622 % .#.#..
623 % #####.
624 % ..#...
625 % #####.
626 % ..#...
627 % ......
628 /yen  <0147 D4 34 1E 34 D4 00>  def
630 % brokenbar
631 % ..#...
632 % ..#...
633 % ..#...
634 % ......
635 % ..#...
636 % ..#...
637 % ..#...
638 % ......
639 /brokenbar  <2127 00 00 EE 00 00 00>  def
641 % section
642 % .###..
643 % #.....
644 % ####..
645 % #...#.
646 % .####.
647 % ....#.
648 % .###..
649 % ......
650 /section  <0147 70 AA AA AA 1C 00>  def
652 % dieresis
653 % .#.#..
654 % ......
655 % ......
656 % ......
657 % ......
658 % ......
659 % ......
660 % ......
661 /dieresis  <1737 00 80 00 80 00 00>  def
663 % copyright
664 % .###..
665 % #...#.
666 % #.###.
667 % ##..#.
668 % #.###.
669 % #...#.
670 % .###..
671 % ......
672 /copyright  <0147 7C 92 AA AA 7C 00>  def
674 % ordfeminine
675 % .###..
676 % #..#..
677 % #..#..
678 % .###..
679 % ......
680 % ......
681 % ......
682 % ......
683 /ordfeminine  <0437 60 90 90 F0 00 00>  def
685 % guillemotleft
686 % ......
687 % ..#.#.
688 % .#.#..
689 % #.#...
690 % .#.#..
691 % ..#.#.
692 % ......
693 % ......
694 /guillemotleft  <0246 10 28 54 28 44 00>  def
696 % logicalnot
697 % ......
698 % ......
699 % ......
700 % #####.
701 % ....#.
702 % ......
703 % ......
704 % ......
705 /logicalnot  <0344 10 10 10 10 18 00>  def
707 % registered
708 % .###..
709 % #...#.
710 % ###.#.
711 % ##..#.
712 % ##..#.
713 % .###..
714 % ......
715 % ......
716 /registered  <0247 78 BC A4 84 78 00>  def
718 % macron
719 % #...#.
720 % .#.#..
721 % ..#...
722 % ......
723 % ......
724 % ......
725 % ......
726 % ......
727 /macron  <0547 80 40 20 40 80 00>  def
729 % degree
730 % .###..
731 % #...#.
732 % .###..
733 % ......
734 % ......
735 % ......
736 % ......
737 % ......
738 /degree  <0547 40 A0 A0 A0 40 00>  def
740 % plusminus
741 % ......
742 % ..#...
743 % .###..
744 % ..#...
745 % .###..
746 % ......
747 % ......
748 % ......
749 /plusminus  <1336 00 28 78 28 00 00>  def
751 % acute
752 % ...#..
753 % ..#...
754 % .#....
755 % ......
756 % ......
757 % ......
758 % ......
759 % ......
760 /acute  <1537 00 20 40 80 00 00>  def
762 % mu
763 % ......
764 % ......
765 % #...#.
766 % #...#.
767 % ##..#.
768 % #.##..
769 % #.....
770 % ......
771 /mu  <0145 3E 08 04 04 38 00>  def
773 % paragraph
774 % .####.
775 % #..##.
776 % #..##.
777 % .####.
778 % ...##.
779 % ...##.
780 % ...##.
781 % ......
782 /paragraph  <0147 60 90 90 FE FE 00>  def
784 % periodcentered
785 % ......
786 % ......
787 % ......
788 % ..#...
789 % ......
790 % ......
791 % ......
792 % ......
793 /periodcentered  <2424 00 00 10 00 00 00>  def
795 % cedilla
796 % ......
797 % ......
798 % ......
799 % ......
800 % ..#...
801 % ...#..
802 % .##...
803 % ......
804 /cedilla  <1133 00 02 0A 04 00 00>  def
806 % ordmasculine
807 % .##...
808 % #..#..
809 % #..#..
810 % .##...
811 % ......
812 % ......
813 % ......
814 % ......
815 /ordmasculine  <0437 60 90 90 60 00 00>  def
817 % guillemotright
818 % ......
819 % #.#...
820 % .#.#..
821 % ..#.#.
822 % .#.#..
823 % #.#...
824 % ......
825 % ......
826 /guillemotright  <0246 44 28 54 28 10 00>  def
828 % onequarter
829 % ##....
830 % .#....
831 % .#....
832 % .#.##.
833 % ..#.#.
834 % .####.
835 % ....#.
836 % ......
837 /onequarter  <0147 80 F4 0C 14 1E 00>  def
839 % onehalf
840 % ##....
841 % .#....
842 % .#.#..
843 % .#..#.
844 % ...#,.
845 % ..#...
846 % ..###.
847 % ......
848 /onehalf  <0147 80 F0 06 2A 12 00>  def
850 % threequarters
851 % ###...
852 % .##...
853 % ###...
854 % ...##.
855 % ..#.#.
856 % .####.
857 % ....#.
858 % ......
859 /threequarters  <0147 A0 E4 EC 14 1E 00>  def
861 % questiondown
862 % ..#...
863 % ......
864 % ..#...
865 % .#....
866 % #.....
867 % #...#.
868 % .###..
869 % ......
870 /questiondown  <0147 0C 12 A2 02 04 00>  def
872 % Agrave
873 % .#....
874 % ..#...
875 % .###..
876 % #...#.
877 % #####.
878 % #...#.
879 % #...#.
880 % ......
881 /Agrave  <0147 1E A8 68 28 1E 00>  def
883 % Aacute
884 % ...#..
885 % ..#...
886 % .###..
887 % #...#.
888 % #####.
889 % #...#.
890 % #...#.
891 % ......
892 /Aacute  <0147 1E 28 68 A8 1E 00>  def
894 % Acircumflex
895 % ..#...
896 % .#.#..
897 % .###..
898 % #...#.
899 % #####.
900 % #...#.
901 % #...#.
902 % ......
903 /Acircumflex  <0147 1E 68 A8 68 1E 00>  def
905 % Atilde
906 % .#..#.
907 % #.##..
908 % .###..
909 % #...#.
910 % #####.
911 % #...#.
912 % #...#.
913 % ......
914 /Atilde  <0147 5E A8 68 68 9E 00>  def
916 % Adieresis
917 % .#.#..
918 % ......
919 % .###..
920 % #...#.
921 % #####.
922 % #...#.
923 % #...#.
924 % ......
925 /Adieresis  <0147 1E A8 28 A8 1E 00>  def
927 % Aring
928 % ..#...
929 % .#.#..
930 % ..#...
931 % .###..
932 % #...#.
933 % #####.
934 % #...#.
935 % ......
936 /Aring  <0147 0E 54 B4 54 0E 00>  def
938 % AE
939 % .####.
940 % #..#..
941 % #..#..
942 % #####.
943 % #..#..
944 % #..#..
945 % #..##.
946 % ......
947 /AE  <0147 7E 90 90 FE 92 00>  def
949 % Ccedilla
950 % .###..
951 % #...#.
952 % #.....
953 % #...#.
954 % .###..
955 % ..#...
956 % .##...
957 % ......
958 /Ccedilla  <0147 70 8A 8E 88 50 00>  def
960 % Egrave
961 % .#....
962 % ..#...
963 % #####.
964 % #.....
965 % ###...
966 % #.....
967 % #####.
968 % ......
969 /Egrave  <0147 3E AA 6A 22 22 00>  def
971 % Eacute
972 % ...#..
973 % ..#...
974 % #####.
975 % #.....
976 % ###...
977 % #.....
978 % #####.
979 % ......
980 /Eacute  <0147 3E 2A 6A A2 22 00>  def
982 % Ecircumflex
983 % ..#...
984 % .#.#..
985 % #####.
986 % #.....
987 % ###...
988 % #.....
989 % #####.
990 % ......
991 /Ecircumflex  <0147 3E 6A AA 62 22 00>  def
993 % Edieresis
994 % .#.#..
995 % ......
996 % #####.
997 % #.....
998 % ###...
999 % #.....
1000 % #####.
1001 % ......
1002 /Edieresis  <0147 3E AA 2A A2 22 00>  def
1004 % Igrave
1005 % .#....
1006 % ..#...
1007 % .###..
1008 % ..#...
1009 % ..#...
1010 % ..#...
1011 % .###..
1012 % ......
1013 /Igrave  <1137 00 A2 7E 22 00 00>  def
1015 % Iacute
1016 % ...#..
1017 % ..#...
1018 % .###..
1019 % ..#...
1020 % ..#...
1021 % ..#...
1022 % .###..
1023 % ......
1024 /Iacute  <1137 00 22 7E A2 00 00>  def
1026 % Icircumflex
1027 % ..#...
1028 % .#.#..
1029 % .###..
1030 % ..#...
1031 % ..#...
1032 % ..#...
1033 % .###..
1034 % ......
1035 /Icircumflex  <1137 00 62 BE 62 00 00>  def
1037 % Idieresis
1038 % .#.#..
1039 % ......
1040 % .###..
1041 % ..#...
1042 % ..#...
1043 % ..#...
1044 % .###..
1045 % ......
1046 /Idieresis  <1137 00 A2 3E A2 00 00>  def
1048 % Eth
1049 % .##...
1050 % .#.#..
1051 % .#..#.
1052 % ###.#.
1053 % .#..#.
1054 % .#.#..
1055 % .##...
1056 % ......
1057 /Eth  <0147 10 FE 92 44 38 00>  def
1059 % Ntilde
1060 % .#..#.
1061 % #.##..
1062 % ......
1063 % ##..#.
1064 % #.#.#.
1065 % #..##.
1066 % #...#.
1067 % ......
1068 /Ntilde  <0147 5E 90 48 44 9E 00>  def
1070 % Ograve
1071 % .#....
1072 % ..#...
1073 % .###..
1074 % #...#.
1075 % #...#.
1076 % #...#.
1077 % .###..
1078 % ......
1079 /Ograve  <0147 1C A2 62 22 1C 00>  def
1081 % Oacute
1082 % ...#..
1083 % ..#...
1084 % .###..
1085 % #...#.
1086 % #...#.
1087 % #...#.
1088 % .###..
1089 % ......
1090 /Oacute  <0147 1C 22 62 A2 1C 00>  def
1092 % Ocircumflex
1093 % ..#...
1094 % .#.#..
1095 % .###..
1096 % #...#.
1097 % #...#.
1098 % #...#.
1099 % .###..
1100 % ......
1101 /Ocircumflex  <0147 1C 62 A2 62 1C 00>  def
1103 % Otilde
1104 % .#..#.
1105 % #.##..
1106 % .###..
1107 % #...#.
1108 % #...#.
1109 % #...#.
1110 % .###..
1111 % ......
1112 /Otilde  <0147 5C A2 62 62 9C 00>  def
1114 % Odieresis
1115 % .#.#..
1116 % ......
1117 % .###..
1118 % #...#.
1119 % #...#.
1120 % #...#.
1121 % .###..
1122 % ......
1123 /Odieresis  <0147 1C A2 22 A2 1C 00>  def
1125 % multiply
1126 % ......
1127 % #...#.
1128 % .#.#..
1129 % ..#...
1130 % .#.#..
1131 % #...#.
1132 % ......
1133 % ......
1134 /multiply  <0246 44 28 10 28 44 00>  def
1136 % Oslash
1137 % .####.
1138 % #..##.
1139 % #..##.
1140 % #.#.#.
1141 % ##..#.
1142 % ##..#.
1143 % ####..
1144 % ......
1145 /Oslash  <0147 7E 8E 92 E2 FC 00>  def
1147 % Ugrave
1148 % .#....
1149 % ..#...
1150 % #...#.
1151 % #...#.
1152 % #...#.
1153 % #...#.
1154 % .###..
1155 % ......
1156 /Ugrave  <0147 3C 82 42 02 3C 00>  def
1158 % Uacute
1159 % ...#..
1160 % ..#...
1161 % #...#.
1162 % #...#.
1163 % #...#.
1164 % #...#.
1165 % .###..
1166 % ......
1167 /Uacute  <0147 3C 02 42 82 3C 00>  def
1169 % Ucircumflex
1170 % ..#...
1171 % .#.#..
1172 % #...#.
1173 % #...#.
1174 % #...#.
1175 % #...#.
1176 % .###..
1177 % ......
1178 /Ucircumflex  <0147 3C 42 82 42 3C 00>  def
1180 % Udieresis
1181 % .#.#..
1182 % ......
1183 % #...#.
1184 % #...#.
1185 % #...#.
1186 % #...#.
1187 % .###..
1188 % ......
1189 /Udieresis  <0147 3C 82 02 82 3C 00>  def
1191 % Yacute
1192 % ...#..
1193 % ..#...
1194 % #...#.
1195 % #...#.
1196 % .#.#..
1197 % ..#...
1198 % ..#...
1199 % ......
1200 /Yacute  <0147 30 08 46 88 30 00>  def
1202 % Thorn
1203 % #.....
1204 % ####..
1205 % #...#.
1206 % #...#.
1207 % #...#.
1208 % ####..
1209 % #.....
1210 % ......
1211 /Thorn  <0147 FE 44 44 44 38 00>  def
1213 % germandbls
1214 % .##...
1215 % #..#..
1216 % #.#...
1217 % #.#...
1218 % #..#..
1219 % #...#.
1220 % #.##..
1221 % ......
1222 /germandbls  <0147 7E 80 B2 4A 04 00>  def
1224 % agrave
1225 % .#....
1226 % ..#...
1227 % .###..
1228 % ....#.
1229 % .####.
1230 % #...#.
1231 % .####.
1232 % ......
1233 /agrave  <0147 04 AA 6A 2A 1E 00>  def
1235 % aacute
1236 % ...#..
1237 % ..#...
1238 % .###..
1239 % ....#.
1240 % .####.
1241 % #...#.
1242 % .####.
1243 % ......
1244 /aacute  <0147 04 2A 6A AA 1E 00>  def
1246 % acircumflex
1247 % ..#...
1248 % .#.#..
1249 % .###..
1250 % ....#.
1251 % .####.
1252 % #...#.
1253 % .####.
1254 % ......
1255 /acircumflex  <0147 04 6A AA 6A 1E 00>  def
1257 % atilde
1258 % .#..#.
1259 % #.##..
1260 % .###..
1261 % ....#.
1262 % .####.
1263 % #...#.
1264 % .####.
1265 % ......
1266 /atilde  <0147 44 AA 6A 6A 9E 00>  def
1268 % adieresis
1269 % .#.#..
1270 % ......
1271 % .###..
1272 % ....#.
1273 % .####.
1274 % #...#.
1275 % .####.
1276 % ......
1277 /adieresis  <0147 04 AA 2A AA 1E 00>  def
1279 % aring
1280 % .##...
1281 % .##...
1282 % .###..
1283 % ....#.
1284 % .####.
1285 % #...#.
1286 % .####.
1287 % ......
1288 /aring  <0147 04 EA EA 2A 1E 00>  def
1290 % ae
1291 % ......
1292 % ......
1293 % ##.#..
1294 % ..#.#.
1295 % .####.
1296 % #.#...
1297 % .####.
1298 % ......
1299 /ae  <0145 24 2A 1E 2A 1A 00>  def
1301 % ccedilla
1302 % ......
1303 % ......
1304 % .####.
1305 % #.....
1306 % .####.
1307 % ..#...
1308 % .##...
1309 % ......
1310 /ccedilla  <0145 10 2A 2E 28 28 00>  def
1312 % egrave
1313 % .#....
1314 % ..#...
1315 % .###..
1316 % #...#.
1317 % #####.
1318 % #.....
1319 % .####.
1320 % ......
1321 /egrave  <0147 1C AA 6A 2A 1A 00>  def
1323 % eacute
1324 % ...#..
1325 % ..#...
1326 % .###..
1327 % #...#.
1328 % #####.
1329 % #.....
1330 % .####.
1331 % ......
1332 /eacute  <0147 1C 2A 6A AA 1A 00>  def
1334 % ecircumflex
1335 % ..#...
1336 % .#.#..
1337 % .###..
1338 % #...#.
1339 % #####.
1340 % #.....
1341 % .####.
1342 % ......
1343 /ecircumflex  <0147 1C 6A AA 6A 1A 00>  def
1345 % edieresis
1346 % .#.#..
1347 % ......
1348 % .###..
1349 % #...#.
1350 % #####.
1351 % #.....
1352 % .####.
1353 % ......
1354 /edieresis  <0147 1C AA 2A AA 1A 00>  def
1356 % A
1357 %  ###
1358 % #   #
1359 % #   #
1360 % #####
1361 % #   #
1362 % #   #
1363 % #   #
1365 /A  <0147 7E 90 90 90 7E 00>  def
1367 % B
1368 % ####..
1369 % #...#.
1370 % #...#.
1371 % ####..
1372 % #...#.
1373 % #...#.
1374 % ####..
1375 % ......
1376 /B  <0147 FE 92 92 92 6C 00>  def
1378 % C
1379 % .###..
1380 % #...#.
1381 % #.....
1382 % #.....
1383 % #.....
1384 % #...#.
1385 % .###..
1386 % ......
1387 /C  <0147 7C 82 82 82 44 00>  def
1389 % D
1390 % ###...
1391 % #..#..
1392 % #...#.
1393 % #...#.
1394 % #...#.
1395 % #..#..
1396 % ###...
1397 % ......
1398 /D  <0147 FE 82 82 44 38 00>  def
1400 % E
1401 % #####.
1402 % #.....
1403 % #.....
1404 % ###...
1405 % #.....
1406 % #.....
1407 % #####.
1408 % ......
1409 /E  <0147 FE 92 92 82 82 00>  def
1411 % F
1412 % #####.
1413 % #.....
1414 % #.....
1415 % ###...
1416 % #.....
1417 % #.....
1418 % #.....
1419 % ......
1420 /F  <0147 FE 90 90 80 80 00>  def
1422 % G
1423 % .###..
1424 % #...#.
1425 % #.....
1426 % #..##.
1427 % #...#.
1428 % #...#.
1429 % .###..
1430 % ......
1431 /G  <0147 7C 82 82 92 5C 00>  def
1433 % H
1434 % #...#.
1435 % #...#.
1436 % #...#.
1437 % #####.
1438 % #...#.
1439 % #...#.
1440 % #...#.
1441 % ......
1442 /H  <0147 FE 10 10 10 FE 00>  def
1444 % I
1445 % .###..
1446 % ..#...
1447 % ..#...
1448 % ..#...
1449 % ..#...
1450 % ..#...
1451 % .###..
1452 % ......
1453 /I  <1137 00 82 FE 82 00 00>  def
1455 % J
1456 % ..###.
1457 % ...#..
1458 % ...#..
1459 % ...#..
1460 % ...#..
1461 % #..#..
1462 % .##...
1463 % ......
1464 /J  <0147 04 02 82 FC 80 00>  def
1466 % K
1467 % #...#.
1468 % #..#..
1469 % #.#...
1470 % ##....
1471 % #.#...
1472 % #..#..
1473 % #...#.
1474 % ......
1475 /K  <0147 FE 10 28 44 82 00>  def
1477 % L
1478 % #.....
1479 % #.....
1480 % #.....
1481 % #.....
1482 % #.....
1483 % #.....
1484 % #####.
1485 % ......
1486 /L  <0147 FE 02 02 02 02 00>  def
1488 % M
1489 % #...#.
1490 % ##.##.
1491 % #.#.#.
1492 % #...#.
1493 % #...#.
1494 % #...#.
1495 % #...#.
1496 % ......
1497 /M  <0147 FE 40 20 40 FE 00>  def
1499 % N
1500 % #...#.
1501 % ##..#.
1502 % #.#.#.
1503 % #..##.
1504 % #...#.
1505 % #...#.
1506 % #...#.
1507 % ......
1508 /N  <0147 FE 40 20 10 FE 00>  def
1510 % O
1511 % .###..
1512 % #...#.
1513 % #...#.
1514 % #...#.
1515 % #...#.
1516 % #...#.
1517 % .###..
1518 % ......
1519 /O  <0147 7C 82 82 82 7C 00>  def
1521 % P
1522 % ####..
1523 % #...#.
1524 % #...#.
1525 % ####..
1526 % #.....
1527 % #.....
1528 % #.....
1529 % ......
1530 /P  <0147 FE 90 90 90 60 00>  def
1532 % Q
1533 % .###..
1534 % #...#.
1535 % #...#.
1536 % #...#.
1537 % #.#.#.
1538 % #..##.
1539 % .####.
1540 % ......
1541 /Q  <0147 7C 82 8A 86 7E 00>  def
1543 % R
1544 % ####..
1545 % #...#.
1546 % #...#.
1547 % ####..
1548 % #.#...
1549 % #..#..
1550 % #...#.
1551 % ......
1552 /R  <0147 FE 90 98 94 62 00>  def
1554 % S
1555 % .###..
1556 % #...#.
1557 % #.....
1558 % .###..
1559 % ....#.
1560 % #...#.
1561 % .###..
1562 % ......
1563 /S  <0147 64 92 92 92 4C 00>  def
1565 % T
1566 % #####.
1567 % ..#...
1568 % ..#...
1569 % ..#...
1570 % ..#...
1571 % ..#...
1572 % ..#...
1573 % ......
1574 /T  <0147 80 80 FE 80 80 00>  def
1576 % U
1577 % #...#.
1578 % #...#.
1579 % #...#.
1580 % #...#.
1581 % #...#.
1582 % #...#.
1583 % .###..
1584 % ......
1585 /U  <0147 FC 02 02 02 FC 00>  def
1587 % V
1588 % #...#.
1589 % #...#.
1590 % #...#.
1591 % #...#.
1592 % #...#.
1593 % .#.#..
1594 % ..#...
1595 % ......
1596 /V  <0147 F8 04 02 04 F8 00>  def
1598 % W
1599 % #...#.
1600 % #...#.
1601 % #...#.
1602 % #...#.
1603 % #.#.#.
1604 % #.#.#.
1605 % .#.#..
1606 % ......
1607 /W  <0147 FC 02 0C 02 FC 00>  def
1609 % X
1610 % #...#.
1611 % #...#.
1612 % .#.#..
1613 % ..#...
1614 % .#.#..
1615 % #...#.
1616 % #...#.
1617 % ......
1618 /X  <0147 C6 28 10 28 C6 00>  def
1620 % Y
1621 % #...#.
1622 % #...#.
1623 % .#.#..
1624 % ..#...
1625 % ..#...
1626 % ..#...
1627 % ..#...
1628 % ......
1629 /Y  <0147 C0 20 1E 20 C0 00>  def
1631 % Z
1632 % #####.
1633 % ....#.
1634 % ...#..
1635 % ..#...
1636 % .#....
1637 % #.....
1638 % #####.
1639 % ......
1640 /Z  <0147 86 8A 92 A2 C2 00>  def
1642 % a
1643 % ......
1644 % ......
1645 % .###..
1646 % ....#.
1647 % .####.
1648 % #...#.
1649 % .####.
1650 % ......
1651 /a  <0145 04 2A 2A 2A 1E 00>  def
1653 % b
1654 % #.....
1655 % #.....
1656 % #.##..
1657 % ##..#.
1658 % #...#.
1659 % #...#.
1660 % ####..
1661 % ......
1662 /b  <0147 FE 12 22 22 1C 00>  def
1664 % c
1665 % ......
1666 % ......
1667 % .###..
1668 % #...#.
1669 % #.....
1670 % #...#.
1671 % .###..
1672 % ......
1673 /c  <0145 1C 22 22 22 14 00>  def
1675 % d
1676 % ....#.
1677 % ....#.
1678 % .##.#.
1679 % #..##.
1680 % #...#.
1681 % #...#.
1682 % .####.
1683 % ......
1684 /d  <0147 1C 22 22 12 FE 00>  def
1686 % e
1687 % ......
1688 % ......
1689 % .###..
1690 % #...#.
1691 % #####.
1692 % #.....
1693 % .###..
1694 % ......
1695 /e  <0145 1C 2A 2A 2A 18 00>  def
1697 % f
1698 % ..##..
1699 % .#..#.
1700 % .#....
1701 % ###...
1702 % .#....
1703 % .#....
1704 % .#....
1705 % ......
1706 /f  <0147 10 7E 90 80 40 00>  def
1708 % g
1709 % ......
1710 % ......
1711 % .####.
1712 % #...#.
1713 % .####.
1714 % ....#.
1715 % ..##..
1716 % ......
1717 /g  <0145 10 28 2A 2A 3C 00>  def
1719 % h
1720 % #.....
1721 % #.....
1722 % #.##..
1723 % ##..#.
1724 % #...#.
1725 % #...#.
1726 % #...#.
1727 % ......
1728 /h  <0147 FE 10 20 20 1E 00>  def
1730 % i
1731 % ..#...
1732 % ......
1733 % .##...
1734 % ..#...
1735 % ..#...
1736 % ..#...
1737 % .###..
1738 % ......
1739 /i  <1137 00 22 BE 02 00 00>  def
1741 % j
1742 % ..#...
1743 % ......
1744 % .##...
1745 % ..#...
1746 % ..#...
1747 % ..#...
1748 % ##....
1749 % ......
1750 /j  <0127 02 22 BC 00 00 00>  def
1752 % k
1753 % #.....
1754 % #.....
1755 % #...#.
1756 % #..#..
1757 % #.#...
1758 % ##.#..
1759 % #...#.
1760 % ......
1761 /k  <0147 FE 04 08 14 22 00>  def
1763 % l
1764 % .##...
1765 % ..#...
1766 % ..#...
1767 % ..#...
1768 % ..#...
1769 % ..#...
1770 % .###..
1771 % ......
1772 /l  <1137 00 82 FE 02 00 00>  def
1774 % m
1775 % ......
1776 % ......
1777 % ####..
1778 % #.#.#.
1779 % #.#.#.
1780 % #.#.#.
1781 % #.#.#.
1782 % ......
1783 /m  <0145 3E 20 3E 20 1E 00>  def
1785 % n
1786 % ......
1787 % ......
1788 % ####..
1789 % #...#.
1790 % #...#.
1791 % #...#.
1792 % #...#.
1793 % ......
1794 /n  <0145 3E 20 20 20 1E 00>  def
1796 % o
1797 % ......
1798 % ......
1799 % .###..
1800 % #...#.
1801 % #...#.
1802 % #...#.
1803 % .###..
1804 % ......
1805 /o  <0145 1C 22 22 22 1C 00>  def
1807 % p
1808 % ......
1809 % ......
1810 % ####..
1811 % #...#.
1812 % ##..#.
1813 % #.##..
1814 % #.....
1815 % ......
1816 /p  <0145 3E 28 24 24 18 00>  def
1818 % q
1819 % ......
1820 % ......
1821 % .####.
1822 % #...#.
1823 % #..##.
1824 % .##.#.
1825 % ....#.
1826 % ......
1827 /q  <0145 18 24 24 28 3E 00>  def
1829 % r
1830 % ......
1831 % ......
1832 % #.##..
1833 % ##..#.
1834 % #.....
1835 % #.....
1836 % #.....
1837 % ......
1838 /r  <0145 3E 10 20 20 10 00>  def
1840 % s
1841 % ......
1842 % ......
1843 % .###..
1844 % #.....
1845 % .###..
1846 % ....#.
1847 % .###..
1848 % ......
1849 /s  <0145 10 2A 2A 2A 04 00>  def
1851 % t
1852 % ..#...
1853 % ..#...
1854 % .####.
1855 % ..#...
1856 % ..#...
1857 % ..#...
1858 % ...##.
1859 % ......
1860 /t  <1147 00 20 FC 22 22 00>  def
1862 % u
1863 % ......
1864 % ......
1865 % #...#.
1866 % #...#.
1867 % #...#.
1868 % #...#.
1869 % .####.
1870 % ......
1871 /u  <0145 3C 02 02 02 3E 00>  def
1873 % v
1874 % ......
1875 % ......
1876 % #...#.
1877 % #...#.
1878 % #...#.
1879 % .#.#..
1880 % ..#...
1881 % ......
1882 /v  <0145 38 04 02 04 38 00>  def
1884 % w
1885 % ......
1886 % ......
1887 % #...#.
1888 % #...#.
1889 % #.#.#.
1890 % #.#.#.
1891 % .#.#..
1892 % ......
1893 /w  <0145 3C 02 0C 02 3C 00>  def
1895 % x
1896 % ......
1897 % ......
1898 % #...#.
1899 % .#.#..
1900 % ..#...
1901 % .#.#..
1902 % #...#.
1903 % ......
1904 /x  <0145 22 14 08 14 22 00>  def
1906 % y
1907 % ......
1908 % ......
1909 % #...#.
1910 % #...#.
1911 % .####.
1912 % ....#.
1913 % .###..
1914 % ......
1915 /y  <0145 30 0A 0A 0A 3C 00>  def
1917 % z
1918 % ......
1919 % ......
1920 % #####.
1921 % ...#..
1922 % ..#...
1923 % .#....
1924 % #####.
1925 % ......
1926 /z  <0145 22 26 2A 32 22 00>  def
1928 % zero
1929 % .###..
1930 % #...#.
1931 % #..##.
1932 % #.#.#.
1933 % ##..#.
1934 % #...#.
1935 % .###..
1936 % ......
1937 /zero  <0147 7C 8A 92 A2 7C 00>  def
1939 % one
1940 % ..#...
1941 % .##...
1942 % ..#...
1943 % ..#...
1944 % ..#...
1945 % ..#...
1946 % .###..
1947 % ......
1948 /one  <1137 00 42 FE 02 00 00>  def
1950 % two
1951 % .###..
1952 % #...#.
1953 % ....#.
1954 % .###..
1955 % #.....
1956 % #.....
1957 % #####.
1958 % ......
1959 /two  <0147 4E 92 92 92 62 00>  def
1961 % three
1962 % .###..
1963 % #...#.
1964 % ....#.
1965 % ..##..
1966 % ....#.
1967 % #...#.
1968 % .###..
1969 % ......
1970 /three  <0147 44 82 92 92 6C 00>  def
1972 % four
1973 % ...#..
1974 % ..##..
1975 % .#.#..
1976 % #..#..
1977 % #####.
1978 % ...#..
1979 % ...#..
1980 % ......
1981 /four  <0147 18 28 48 FE 08 00>  def
1983 % five
1984 % #####.
1985 % #.....
1986 % ####..
1987 % ....#.
1988 % ....#.
1989 % #...#.
1990 % .###..
1991 % ......
1992 /five  <0147 E4 A2 A2 A2 9C 00>  def
1994 % six
1995 % .###..
1996 % #...#.
1997 % #.....
1998 % ####..
1999 % #...#.
2000 % #...#.
2001 % .###..
2002 % ......
2003 /six  <0147 7C 92 92 92 4C 00>  def
2005 % seven
2006 % #####.
2007 % ....#.
2008 % ....#.
2009 % ...#..
2010 % ..#...
2011 % .#....
2012 % .#....
2013 % ......
2014 /seven  <0147 80 86 88 90 E0 00>  def
2016 % eight
2017 % .###..
2018 % #...#.
2019 % #...#.
2020 % .###..
2021 % #...#.
2022 % #...#.
2023 % .###..
2024 % ......
2025 /eight  <0147 6C 92 92 92 6C 00>  def
2027 % nine
2028 % .###..
2029 % #...#.
2030 % #...#.
2031 % .####.
2032 % ....#.
2033 % ....#.
2034 % .###..
2035 % ......
2036 /nine  <0147 60 92 92 92 7C 00>  def
2038 % emdash
2039 % ......
2040 % ......
2041 % ......
2042 % ######
2043 % ......
2044 % ......
2045 % ......
2046 % ......
2047 /emdash  <0454 10 10 10 10 10 10>  def
2049 % box
2050 % ######
2051 % #....#
2052 % #....#
2053 % #....#
2054 % #....#
2055 % #....#
2056 % #....#
2057 % ######
2058 /box  <0057 FF 81 81 81 81 FF>  def
2060 % gray
2061 % #.#.#.
2062 % .#.#.#
2063 % #.#.#.
2064 % .#.#.#
2065 % #.#.#.
2066 % .#.#.#
2067 % #.#.#.
2068 % .#.#.#
2069 /gray  <0057 AA 55 AA 55 AA 55>  def
2071 % filledbox
2072 % ######
2073 % ######
2074 % ######
2075 % ######
2076 % ######
2077 % ######
2078 % ######
2079 % ######
2080 /filledbox  <0057 FF FF FF FF FF FF>  def
2082 % tl0
2083 % .#....
2084 % #.#...
2085 % #.#...
2086 % .#....
2087 % ......
2088 % ......
2089 % ......
2090 % ......
2091 /tl0  <0427 60 90 60 00 00 00>  def
2093 % tl1
2094 % .#....
2095 % ##....
2096 % .#....
2097 % ###...
2098 % ......
2099 % ......
2100 % ......
2101 % ......
2102 /tl1  <0427 50 F0 10 00 00 00>  def
2104 % tl2
2105 % ##....
2106 % ..#...
2107 % .#....
2108 % ###...
2109 % ......
2110 % ......
2111 % ......
2112 % ......
2113 /tl2  <0427 90 B0 50 00 00 00>  def
2115 % tl3
2116 % ###...
2117 % .#....
2118 % ..#...
2119 % ##....
2120 % ......
2121 % ......
2122 % ......
2123 % ......
2124 /tl3  <0427 90 D0 A0 00 00 00>  def
2126 % tl4
2127 % .##...
2128 % #.#...
2129 % ###...
2130 % ..#...
2131 % ......
2132 % ......
2133 % ......
2134 % ......
2135 /tl4  <0427 60 A0 F0 00 00 00>  def
2137 % tl5
2138 % ###...
2139 % ##....
2140 % ..#...
2141 % ##....
2142 % ......
2143 % ......
2144 % ......
2145 % ......
2146 /tl5  <0427 D0 D0 A0 00 00 00>  def
2148 % tl6
2149 % .##...
2150 % ##....
2151 % #.#...
2152 % ##....
2153 % ......
2154 % ......
2155 % ......
2156 % ......
2157 /tl6  <0427 70 D0 A0 00 00 00>  def
2159 % tl7
2160 % ###...
2161 % ..#...
2162 % .#....
2163 % .#....
2164 % ......
2165 % ......
2166 % ......
2167 % ......
2168 /tl7  <0427 80 B0 C0 00 00 00>  def
2170 % tl8
2171 % .#....
2172 % ###...
2173 % #.#...
2174 % .#....
2175 % ......
2176 % ......
2177 % ......
2178 % ......
2179 /tl8  <0427 60 D0 60 00 00 00>  def
2181 % tl9
2182 % .##...
2183 % #.#...
2184 % .##...
2185 % ##....
2186 % ......
2187 % ......
2188 % ......
2189 % ......
2190 /tl9  <0427 50 B0 E0 00 00 00>  def
2192 % tlA
2193 % .#....
2194 % #.#...
2195 % ###...
2196 % #.#...
2197 % ......
2198 % ......
2199 % ......
2200 % ......
2201 /tlA  <0427 70 A0 70 00 00 00>  def
2203 % tlB
2204 % #.....
2205 % ##....
2206 % #.#...
2207 % ##....
2208 % ......
2209 % ......
2210 % ......
2211 % ......
2212 /tlB  <0427 F0 50 20 00 00 00>  def
2214 % tlC
2215 % .##...
2216 % #.....
2217 % #.....
2218 % .##...
2219 % ......
2220 % ......
2221 % ......
2222 % ......
2223 /tlC  <0427 60 90 90 00 00 00>  def
2225 % tlD
2226 % ##....
2227 % #.#...
2228 % #.#...
2229 % ##....
2230 % ......
2231 % ......
2232 % ......
2233 % ......
2234 /tlD  <0427 F0 90 60 00 00 00>  def
2236 % tlE
2237 % ###...
2238 % ##....
2239 % #.....
2240 % ###...
2241 % ......
2242 % ......
2243 % ......
2244 % ......
2245 /tlE  <0427 F0 D0 90 00 00 00>  def
2247 % tlF
2248 % ###...
2249 % ##....
2250 % #.....
2251 % #.....
2252 % ......
2253 % ......
2254 % ......
2255 % ......
2256 /tlF  <0427 F0 C0 80 00 00 00>  def
2258 % lr0
2259 % ......
2260 % ......
2261 % ......
2262 % ...#..
2263 % ..#.#.
2264 % ..#.#.
2265 % ...#..
2266 % ......
2267 /br0  <2144 00 00 0C 12 0C 00>  def
2269 % lr1
2270 % ......
2271 % ......
2272 % ......
2273 % ...#..
2274 % ..##..
2275 % ...#..
2276 % ..###.
2277 % ......
2278 /br1  <2144 00 00 0A 1E 02 00>  def
2280 % lr2
2281 % ......
2282 % ......
2283 % ......
2284 % ..##..
2285 % ....#.
2286 % ...#..
2287 % ..###.
2288 % ......
2289 /br2  <2144 00 00 12 16 0A 00>  def
2291 % lr3
2292 % ......
2293 % ......
2294 % ......
2295 % ..###.
2296 % ...#..
2297 % ....#.
2298 % ..##..
2299 % ......
2300 /br3  <2144 00 00 12 1A 14 00>  def
2302 % lr4
2303 % ......
2304 % ......
2305 % ......
2306 % ...##.
2307 % ..#.#.
2308 % ..###.
2309 % ....#.
2310 % ......
2311 /br4  <2144 00 00 0C 14 1E 00>  def
2313 % lr5
2314 % ......
2315 % ......
2316 % ......
2317 % ..###.
2318 % ...#..
2319 % ....#.
2320 % ..##..
2321 % ......
2322 /br5  <2144 00 00 12 1A 14 00>  def
2324 % lr6
2325 % ......
2326 % ......
2327 % ......
2328 % ...##.
2329 % ..##..
2330 % ..#.#.
2331 % ...#..
2332 % ......
2333 /br6  <2144 00 00 0C 1A 14 00>  def
2335 % lr7
2336 % ......
2337 % ......
2338 % ......
2339 % ..###.
2340 % ....#.
2341 % ...#..
2342 % ...#..
2343 % ......
2344 /br7  <2144 00 00 10 16 18 00>  def
2346 % lr8
2347 % ......
2348 % ......
2349 % ......
2350 % ...#..
2351 % ..###.
2352 % ..#.#.
2353 % ...#..
2354 % ......
2355 /br8  <2144 00 00 0C 1A 0C 00>  def
2357 % lr9
2358 % ......
2359 % ......
2360 % ......
2361 % ...#..
2362 % ..#.#.
2363 % ...##.
2364 % ..##..
2365 % ......
2366 /br9  <2144 00 00 0A 16 0C 00>  def
2368 % lrA
2369 % ......
2370 % ......
2371 % ......
2372 % ...#..
2373 % ..#.#.
2374 % ..###.
2375 % ..#.#.
2376 % ......
2377 /brA  <2144 00 00 0E 14 0E 00>  def
2379 % lrB
2380 % ......
2381 % ......
2382 % ......
2383 % ..#...
2384 % ..##..
2385 % ..#.#.
2386 % ..##..
2387 % ......
2388 /brB  <2144 00 00 1E 0A 04 00>  def
2390 % lrC
2391 % ......
2392 % ......
2393 % ......
2394 % ...##.
2395 % ..#...
2396 % ..#...
2397 % ...##.
2398 % ......
2399 /brC  <2144 00 00 0C 12 12 00>  def
2401 % lrD
2402 % ......
2403 % ......
2404 % ......
2405 % ..##..
2406 % ..#.#.
2407 % ..#.#.
2408 % ..##..
2409 % ......
2410 /brD  <2144 00 00 1E 12 0C 00>  def
2412 % lrE
2413 % ......
2414 % ......
2415 % ......
2416 % ..###.
2417 % ..##..
2418 % ..#...
2419 % ..###.
2420 % ......
2421 /brE  <2144 00 00 1E 1A 12 00>  def
2423 % lrF
2424 % ......
2425 % ......
2426 % ......
2427 % ..###.
2428 % ..##..
2429 % ..#...
2430 % ..#...
2431 % ......
2432 /brF  <2144 00 00 1E 18 10 00>  def
2434 end % /GlyphDefinitions
2436 currentdict
2437 end % font dict
2439 /Font7x5 exch definefont pop