-
Notifications
You must be signed in to change notification settings - Fork 0
/
Eadui.sfd
29907 lines (29318 loc) · 807 KB
/
Eadui.sfd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
SplineFontDB: 3.0
FontName: Eadui
FullName: Eadui
FamilyName: Eadui
Weight: Medium
Copyright: Copyright (c) 2011-15 by Peter S. Baker
UComments: "2008-5-6: Created.+AAoACgAA-To do: longs b? longs h?+AAoACgAA-Both PostScript hinting (for CFF font) and TTF instructions seem to make this font look worse. Best, probably, to leave it unhinted.+AAoA"
Version: 2.0
ItalicAngle: 0
UnderlinePosition: -99
UnderlineWidth: 49
Ascent: 653
Descent: 347
InvalidEm: 0
LayerCount: 3
Layer: 0 0 "Back" 1
Layer: 1 0 "Fore" 0
Layer: 2 0 "Trace" 1
XUID: [1021 762 1371532084 11357298]
FSType: 8
OS2Version: 0
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1210090339
ModificationTime: 1451582237
PfmFamily: 65
TTFWeight: 500
TTFWidth: 5
LineGap: 100
VLineGap: 0
Panose: 3 2 6 2 4 6 4 3 8 4
OS2TypoAscent: 0
OS2TypoAOffset: 1
OS2TypoDescent: 0
OS2TypoDOffset: 1
OS2TypoLinegap: 100
OS2WinAscent: 0
OS2WinAOffset: 1
OS2WinDescent: 0
OS2WinDOffset: 1
HheadAscent: 800
HheadAOffset: 0
HheadDescent: -400
HheadDOffset: 0
OS2CapHeight: 0
OS2XHeight: 0
OS2FamilyClass: 2565
OS2Vendor: 'PSBa'
Lookup: 5 0 0 "'ccmp' Sub dotlessi before diacritic" { "'ccmp' Sub dotlessi before diacritic-1" } ['ccmp' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 2 0 0 "'ccmp' Glyph Composition/Decomposition in Latin lookup 14" { "'ccmp' Glyph Composition/Decomposition in Latin lookup 14-1" } ['ccmp' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 4 0 0 "'ccmp' Medieval combos" { "'ccmp' Medieval combos-1" } ['ccmp' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 1 0 0 "'smcp' Lowercase to Small Capitals in Latin lookup 8" { "'smcp' Lowercase to Small Capitals in Latin lookup 8-1" } ['smcp' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 1 0 0 "'titl' Titling caps from lc" { "'titl' Titling caps from lc-1" } ['titl' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 1 0 0 "'hist' Medievalize" { "'hist' Medievalize-1" } ['hist' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 1 0 0 "'ss07' Underdotted" { "'ss07' Underdotted-1" } ['ss07' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 1 0 0 "'ss10' Alternate y" { "'ss10' Alternate y-1" } ['ss10' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 1 0 0 "'ss11' Sentence caps from caps" { "'ss11' Sentence caps from caps-1" } ['ss11' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 1 0 0 "'ss12' Titling caps from caps" { "'ss12' Titling caps-1" } ['ss12' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 1 0 0 "'ss13' Alternate diacritics" { "'ss13' Alternate diacritics-1" } ['ss13' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 1 0 0 "'ss14' Enlarged minuscules" { "'ss14' Enlarged minuscules-1" } ['ss14' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 1 0 0 "'swsh' Swash in Latin lookup 22" { "'swsh' Swash in Latin lookup 22-1" ("swash") } ['swsh' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 3 0 0 "'salt' Stylistic Alternatives in Latin lookup 26" { "'salt' Stylistic Alternatives in Latin lookup 26-1" } ['salt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 6 8 0 "'calt' Contextual Alternates for c" { "'calt' Contextual Alternates for c-1" } ['calt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 6 8 0 "'calt' Contextual Alternates for t" { "'calt' Contextual Alternates for t-1" } ['calt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 5 8 0 "'calt' Contextual Alternates g and f before others" { "'calt' Contextual Alternates g and f-1" } ['calt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 5 8 0 "'calt' Contextual Alternates e before tall letters" { "'calt' e before bhki" } ['calt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 5 8 0 "'calt' Contextual Alternates e before rounded" { "'calt' Contextual Alternates e before rounded-1" "'calt' Contextual Alternates e before rounded-2" "'calt' e g ae before f-2" } ['calt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 6 8 0 "'calt' Contextual Alternates in Latin lookup 30" { "'calt' Contextual Alternates in Latin lookup 30-1" "'calt' Contextual Alternates in Latin lookup 30-2" } ['calt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 5 0 0 "'calt' Contextual Alternates small cap" { "'calt' Contextual Alternates small cap-1" } ['calt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 5 0 0 "'calt' Non-colliding eth" { "'calt' Non-colliding eth-1" } ['calt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 4 8 0 "'dlig' Discretionary Ligatures in Latin lookup 1" { "three-element discretionary ligatures in Latin" "two-element discretionary ligatures in Latin" } ['dlig' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 4 8 0 "'hlig' Historic Ligatures in Latin lookup 28" { "'hlig' Four-element Historic Ligatures" "'hlig' Three-element Historic Ligatures" "'hlig' Two-element Historic Ligatures" } ['hlig' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 4 8 1 "'liga' Standard Ligatures in Latin lookup 0" { "four-element ligatures in Latin" "three-element ligatures in Latin" "two-element ligature in Latin" } ['liga' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 4 8 1 "'liga' Standard Ligatures lower priority" { "'liga' two-element lower priority-1" } ['liga' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 1 0 0 "Single Substitution no tag" { "Single Substitution no tag-1" } []
Lookup: 1 0 0 "Single Substitution no tag - 2" { "Single Substitution no tag - 2-1" } []
Lookup: 1 0 0 "Single Substitution no tag - 3" { "Single Substitution no tag - 3-1" } []
Lookup: 1 0 0 "Single subsitution no tag - 4" { "Single subsitution no tag - 4-1" } []
Lookup: 258 8 0 "'kern' Horizontal Kerning in Latin lookup 0" { "'kern' Horizontal Kerning in Latin lookup 0-2" [307,0,0] } ['kern' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 258 0 0 "'kern' Horizontal Kerning rustic caps" { "'kern' Horizontal Kerning rustic caps-1" [307,0,0] } ['kern' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 261 0 0 "'mark' Ligature mark" { "'mark' Ligature mark-1" } ['mark' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 260 0 0 "'mark' Standard mark" { "'mark' Standard mark-1" } ['mark' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
MarkAttachClasses: 1
DEI: 91125
KernClass2: 25 14 "'kern' Horizontal Kerning rustic caps-1"
4 a.sc
4 b.sc
4 c.sc
11 d.sc eth.sc
10 e.sc ae.sc
4 f.sc
4 g.sc
4 h.sc
4 i.sc
4 j.sc
4 k.sc
10 l.sc l.sc2
4 m.sc
4 n.sc
4 o.sc
13 p.sc thorn.sc
4 r.sc
10 s.sc s.sc2
4 t.sc
4 u.sc
9 v.sc w.sc
4 x.sc
4 y.sc
4 z.sc
10 a.sc ae.sc
4 c.sc
4 g.sc
4 m.sc
4 o.sc
4 q.sc
4 s.sc
5 s.sc2
4 t.sc
4 u.sc
9 v.sc w.sc
4 x.sc
15 y.sc uni1E8F.sc
0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -60 {} -53 {} -107 {} 0 {} 0 {} 0 {} -49 {} 0 {} 0 {} -59 {} 0 {} 0 {} 0 {} 0 {} -73 {} -27 {} -33 {} -47 {} 0 {} 0 {} -27 {} -15 {} 0 {} -27 {} -30 {} 0 {} 0 {} 0 {} -39 {} -20 {} -29 {} 0 {} 0 {} 0 {} -62 {} 0 {} 0 {} -77 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -34 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} -20 {} 0 {} 15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} -39 {} -20 {} -24 {} 0 {} 0 {} 0 {} -54 {} 0 {} 0 {} -53 {} 0 {} 0 {} 0 {} 0 {} -53 {} -20 {} -40 {} -20 {} 0 {} 0 {} 16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} -15 {} -15 {} 0 {} 0 {} 0 {} -44 {} 0 {} 0 {} 0 {} 0 {} 0 {} -53 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -43 {} 0 {} 0 {} 0 {} -29 {} 0 {} 0 {} 0 {} -47 {} -29 {} -40 {} 0 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -61 {} -87 {} -54 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} -67 {} -53 {} 0 {} 0 {} -73 {} 0 {} -20 {} 0 {} 0 {} 0 {} -29 {} 0 {} 0 {} 0 {} -39 {} 0 {} 0 {} 0 {} 0 {} 0 {} -64 {} 0 {} 0 {} -46 {} -40 {} 0 {} 0 {} 0 {} -40 {} 0 {} 0 {} -59 {} 0 {} 0 {} -64 {} 0 {} 0 {} -86 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} -53 {} 0 {} 0 {} -20 {} -24 {} 0 {} -36 {} -22 {} 0 {} 0 {} 0 {} -82 {} -34 {} -80 {} 0 {} -98 {} 0 {} -36 {} 0 {} 0 {} -47 {} -29 {} 0 {} -15 {} 0 {} -68 {} -29 {} -20 {} -40 {} 0 {} 0 {} -44 {} -13 {} -20 {} -7 {} -27 {} -27 {} -7 {} -34 {} -29 {} 0 {} 0 {} -20 {} 0 {} 0 {} -68 {} 0 {} 0 {} -53 {} -49 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -40 {} 0 {} 0 {} -102 {} -66 {} -47 {} -100 {} -61 {} -51 {} 0 {} -34 {} 0 {} 0 {} 0 {} -60 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -117 {} -47 {} 0 {} -120 {} -51 {} -40 {} 0 {} 0 {} -33 {} 0 {} 0 {} -60 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -47 {} 0 {} 0 {} 0 {} 0 {}
KernClass2: 71 63 "'kern' Horizontal Kerning in Latin lookup 0-2"
59 a aacute adieresis amacron g_a a.alt01 e_r_a uni1EA1 ae_r_a
3 e_a
13 c uni00630323
5 c.alt
9 d uni1E0D
28 e uni1EB9 ae aeacute uni01E3
7 e.alt02
7 e.alt04
43 f f.alt1 f_f.alt uni00660323 uniFB00 f.alt3
9 f_a f_f_a
1 g
6 g.alt2
9 h uni1E25
205 i longs_i e_r_i e_r_dotlessi e_longs_i t_i t_dotlessi longs_t_i uniFB01 f_i.alt dotlessi e_i e_dotlessi longs_longs_i e_longs_longs_i i.alt dotlessi.alt uni1ECB ae_i ae_dotlessi ae_longs_longs_i ae_longs_i
35 j f_j uni0237 j.alt e_j uni006A0323
9 k uni1E33
9 l uni1E37
55 longs e_longs_longs longs_longs ae_longs ae_longs_longs
47 n m uni1E43 uni1E47 e_n e_m r_n e_r_n ae_n ae_m
33 o e_o g_o f_o uni1ECD eth eth.alt
32 p e_p b uni00700323 uni1E05 ae_p
22 quoteleft quotedblleft
28 r e_r r.alt f_r uni1E5B ae_r
9 s uni1E63
64 t e_t c_t uniFB05 uni1E6D ae_t ae_longs_t ae_t_t t.alt2 e_t.alt2
15 t.alt t_t e_t_t
13 thorn uni01BF
34 u uacute udieresis umacron uni1EE5
19 v w uni1E7F uni1E89
19 x e_x xdotbelowcomb
42 y yacute ydieresis uni0233 uni1E8F uni1EF5
39 y.alt uni1E8F.alt r_t_y r_t_uni1E8F g_y
9 z uni1E93
1 A
1 L
1 P
1 T
15 V W W.medieval1
19 Y Y.alt uni1E8E.alt
9 A.titling
10 A.titling1
9 B.titling
31 D.titling Eth.titling O.titling
9 C.titling
9 H.titling
9 K.titling
9 L.titling
5 M.alt
9 P.titling
9 R.titling
9 T.titling
13 Thorn.titling
20 V.titling W.titling1
9 W.titling
9 X.titling
9 Y.titling
17 uniA75B o_uniA75B
4 zero
3 one
3 two
5 three
4 four
4 five
3 six
5 seven
5 eight
4 nine
20 hyphen endash emdash
44 hyphen.titling endash.titling emdash.titling
10 quoteright
206 a aacute adieresis amacron a.alt02 uni1EA1 a.swash ae ae_t ae_i ae_dotlessi ae_n ae_m ae_r ae_p ae_uni01BF ae_longs ae_longs_longs ae_longs_longs_i ae_longs_t ae_longs_i ae_r_a ae_t_t ae.alt aeacute uni01E3
7 a.alt01
1 b
19 c c.alt uni00630323
9 d uni1E0D
262 e e.alt01 e_n e_m e_p e_t_u e_a e_t e_x e_r_i e_r_dotlessi e_r_n uni1E8F.sc e_u e_longs_i e_longs e_r_a.alt e_o e_r e_t.alt eacute edieresis emacron e_i e_dotlessi e_t_i e_t_dotlessi e_longs_t e_longs_longs e_longs_longs_i e.alt02 e_e e.alt03 e_t_t e_r_a uni1EB9
7 e.alt04
80 f f_t f_u f_r f_o f_a uniFB01 uniFB02 f_r f_f_a f_f.alt f_f_u uni00660323 f.alt1
39 g g.alt1 g.alt2 g_o g_a uni00670323 g_y
9 h uni1E25
43 i iacute idieresis imacron dotlessi uni1ECB
1 j
17 l uni019A uni1E37
40 longs longs_i longs_t_dotlessi longs_t_i
3 m n
44 o oacute odieresis omacron o_uniA75B uni1ECD
19 p p.alt uni00700323
24 quotedblright quoteright
20 quotedbl quotesingle
9 r uni1E5B
9 s uni1E63
46 t t_u t_i t_dotlessi t.alt t.swash t_t uni1E6D
34 u uacute udieresis umacron uni1EE5
19 v w uni1E7F uni1E89
15 x xdotbelowcomb
34 y yacute ydieresis uni1EF5 uni1E8F
17 y.alt uni1E8F.alt
9 z uni1E93
3 V W
1 B
1 H
39 I J Igrave Iacute Icircumflex Idieresis
1 K
1 L
1 R
1 U
9 A.titling
21 A.titling1 AE.titling
9 E.titling
9 I.titling
19 O.titling C.titling
9 T.titling
20 U.titling W.titling2
20 V.titling W.titling1
9 W.titling
9 Y.titling
7 uniA770
7 uniA75B
6 period
5 comma
39 colon semicolon uniF160 uniF161 uniF1EA
3 one
3 two
5 three
4 four
4 five
3 six
5 seven
4 zero
20 hyphen endash emdash
44 hyphen.titling endash.titling emdash.titling
9 X.titling
0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} 0 {} 0 {} 0 {} -10 {} 0 {} -29 {} -20 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 93 {} 0 {} 0 {} 15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 98 {} 0 {} 0 {} 0 {} 0 {} -24 {} -24 {} 0 {} 0 {} -34 {} -39 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -20 {} -59 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 88 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} -10 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 20 {} 24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 26 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 28 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} -44 {} 0 {} 0 {} 0 {} 24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 80 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 88 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 28 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 40 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 21 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -40 {} 0 {} 67 {} -46 {} -34 {} -10 {} -45 {} 0 {} -67 {} 71 {} 0 {} 0 {} 0 {} 0 {} 0 {} -40 {} 0 {} 46 {} 67 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 187 {} 0 {} -67 {} -40 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -87 {} 0 {} 0 {} 0 {} 0 {} -44 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -40 {} -65 {} 0 {} -106 {} -27 {} -80 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 79 {} 0 {} -53 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -59 {} 0 {} 0 {} 0 {} -33 {} 0 {} 0 {} 0 {} 40 {} 0 {} 0 {} 0 {} 0 {} -41 {} 0 {} -80 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} 61 {} 54 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -112 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} -15 {} 0 {} 0 {} -24 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -66 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} 0 {} 0 {} 0 {} 10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} -54 {} -44 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 40 {} 0 {} -54 {} 0 {} 0 {} 0 {} 0 {} -15 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -40 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -42 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -81 {} 0 {} 0 {} 0 {} -17 {} 0 {} -73 {} 0 {} -68 {} -82 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -93 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 54 {} 0 {} -10 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} -27 {} -44 {} 0 {} -10 {} -12 {} 0 {} 0 {} -24 {} 0 {} -10 {} -49 {} 0 {} -10 {} 0 {} 0 {} 0 {} -34 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 53 {} 0 {} 49 {} 40 {} 39 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 70 {} 0 {} 0 {} -39 {} 0 {} -15 {} 0 {} -5 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 213 {} 0 {} -27 {} -40 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 126 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} -15 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 57 {} 0 {} -15 {} 0 {} 0 {} 0 {} 15 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} -24 {} 0 {} 0 {} -27 {} -20 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -65 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 12 {} 0 {} 0 {} 0 {} 0 {} 24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} -10 {} -15 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -62 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 67 {} 133 {} 67 {} 67 {} 106 {} 53 {} 67 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 43 {} 0 {} -22 {} -66 {} 0 {} -24 {} -38 {} -17 {} -49 {} 0 {} -59 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} 0 {} 29 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 29 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -80 {} -78 {} 24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -118 {} 0 {} 0 {} 0 {} 0 {} 10 {} 0 {} 20 {} -15 {} -15 {} 0 {} 15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} -22 {} 0 {} 0 {} -44 {} 0 {} -39 {} -40 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 8 {} 0 {} -29 {} -60 {} 0 {} 0 {} 0 {} -9 {} -9 {} 0 {} -27 {} 0 {} 0 {} 0 {} 27 {} -41 {} 0 {} 0 {} 0 {} 54 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 34 {} 44 {} 34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 39 {} 39 {} 54 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 20 {} 0 {} -44 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} -39 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -89 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -24 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 80 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 49 {} 0 {} -49 {} -59 {} 0 {} -20 {} -24 {} -15 {} -15 {} 0 {} -39 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} -39 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -65 {} -61 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -94 {} 0 {} -67 {} 0 {} 0 {} -49 {} 0 {} -53 {} -53 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} 0 {} 0 {} 0 {} 0 {} -15 {} -44 {} 0 {} 0 {} -34 {} -44 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 11 {} 0 {} 0 {} -98 {} 0 {} -39 {} -34 {} -29 {} -80 {} 0 {} -54 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -78 {} -78 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -121 {} 0 {} -40 {} -93 {} 0 {} -33 {} -33 {} -26 {} -26 {} 0 {} -53 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} 0 {} 0 {} -33 {} 14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -133 {} -120 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -149 {} 0 {} -29 {} 0 {} 0 {} 0 {} 0 {} -29 {} -53 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -34 {} 0 {} 20 {} 0 {} 0 {} 0 {} 0 {} -29 {} -44 {} 0 {} -29 {} -39 {} -44 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 41 {} 0 {} 0 {} 0 {} 0 {} -15 {} -15 {} -20 {} -20 {} 0 {} -80 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} -227 {} -173 {} 0 {} 40 {} -26 {} 0 {} -93 {} 40 {} -40 {} -54 {} 15 {} -173 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 100 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -146 {} -93 {} 0 {} 0 {} 0 {} 0 {} -93 {} 0 {} -80 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 75 {} 0 {} -65 {} -106 {} 0 {} 0 {} 0 {} -44 {} -53 {} 0 {} 0 {} 15 {} 0 {} 0 {} 0 {} 0 {} 0 {} -59 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -160 {} -160 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 2 {} 0 {} -146 {} -165 {} 0 {} 0 {} 0 {} -133 {} -133 {} 0 {} 0 {} 0 {} -53 {} 0 {} 0 {} 0 {} 0 {} -120 {} 0 {} 0 {} 0 {} -106 {} -146 {} 0 {} -133 {} -160 {} 0 {} -133 {} -160 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -133 {} -133 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -222 {} 0 {} -120 {} -146 {} 0 {} -93 {} -80 {} -93 {} -93 {} -29 {} -107 {} 0 {} -53 {} 0 {} 0 {} -67 {} 0 {} -103 {} 0 {} 0 {} 0 {} -80 {} -93 {} -54 {} -66 {} -88 {} -67 {} -78 {} -93 {} -88 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -120 {} -106 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -128 {} 0 {} -107 {} 0 {} 0 {} -66 {} -80 {} -93 {} -93 {} 0 {} -93 {} 40 {} 0 {} 0 {} 0 {} 0 {} 0 {} -67 {} -53 {} 67 {} 0 {} -67 {} -80 {} -53 {} -54 {} -70 {} -49 {} 0 {} 0 {} -65 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -133 {} -133 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -110 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -120 {} -67 {} -107 {} -67 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -73 {} 135 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -34 {} 0 {} -24 {} -106 {} -34 {} -80 {} -53 {} -106 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 100 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -67 {} 0 {} 0 {} 0 {} 0 {} 0 {} -49 {} -20 {} -93 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} -106 {} 0 {} 0 {} 0 {} -49 {} 0 {} -24 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -81 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 20 {} 0 {} 0 {} 0 {} 0 {} 27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 36 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -120 {} 0 {} -67 {} -40 {} -133 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -103 {} 123 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -53 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -59 {} 50 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -66 {} 0 {} 0 {} 0 {} -80 {} 0 {} -54 {} 0 {} -93 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -56 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -40 {} -106 {} 0 {} 0 {} 0 {} -80 {} 0 {} -54 {} 0 {} -80 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -102 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -80 {} 0 {} -67 {} -146 {} -67 {} -112 {} -80 {} -146 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -63 {} 102 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -53 {} -120 {} 0 {} 20 {} -40 {} 0 {} 0 {} 13 {} 27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -63 {} 23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -93 {} 0 {} 0 {} 0 {} -67 {} 0 {} 0 {} 0 {} -106 {} 0 {} 0 {} -78 {} -73 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -124 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -45 {} -120 {} -77 {} 59 {} -82 {} 0 {} 27 {} 0 {} 0 {} 0 {} 0 {} 0 {} -133 {} -146 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -81 {} -39 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 40 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -66 {} 10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -147 {} -106 {} 0 {} 0 {} -53 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -160 {} 48 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 53 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -78 {} -47 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 81 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -64 {} 10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 45 {} -54 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -78 {} -34 {} -29 {} -10 {} -29 {} -34 {} -73 {} -44 {} 0 {} 0 {} 65 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} -15 {} -24 {} 0 {} -10 {} -20 {} -34 {} -15 {} 0 {} 0 {} 76 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -49 {} -10 {} -29 {} 0 {} -15 {} -29 {} -34 {} -32 {} 0 {} 0 {} 80 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 80 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -29 {} -10 {} -24 {} 0 {} 0 {} -49 {} 0 {} 0 {} 0 {} -30 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -78 {} 0 {} 0 {} 0 {} -39 {} 0 {} 0 {} -80 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -29 {} 0 {} -15 {} 0 {} 0 {} -29 {} 0 {} 0 {} 0 {} 23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} -29 {} -10 {} -24 {} 0 {} 0 {} -34 {} -10 {} 0 {} 0 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -191 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -93 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -178 {} 0 {} -63 {} 0 {} 0 {} 0 {} -78 {} -63 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 15 {} 0 {} -34 {} -63 {} 0 {} 0 {} 0 {} -44 {} -78 {} -44 {} -29 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {}
ChainSub2: class "'calt' Contextual Alternates in Latin lookup 30-2" 4 4 4 1
Class: 67 b d e f j l n p r s t v x z longs f.alt1 i.swash n.alt1 j.alt r.alt
Class: 99 c g h i k m o q u y c.alt dotlessi g.alt1 g.alt2 uni1E8F.sc dotlessi.swash m.alt dotlessi.alt i.alt
Class: 1 a
BClass: 67 b d e f j l n p r s t v x z longs f.alt1 i.swash n.alt1 j.alt r.alt
BClass: 99 c g h i k m o q u y c.alt dotlessi g.alt1 g.alt2 uni1E8F.sc dotlessi.swash m.alt dotlessi.alt i.alt
BClass: 1 a
FClass: 67 b d e f j l n p r s t v x z longs f.alt1 i.swash n.alt1 j.alt r.alt
FClass: 99 c g h i k m o q u y c.alt dotlessi g.alt1 g.alt2 uni1E8F.sc dotlessi.swash m.alt dotlessi.alt i.alt
FClass: 1 a
1 2 0
ClsList: 3
BClsList: 2 1
FClsList:
1
SeqLookup: 0 "Single Substitution no tag - 2"
ClassNames: "All_Others" "1" "2" "3"
BClassNames: "All_Others" "1" "2" "3"
FClassNames: "All_Others" "1" "2" "3"
EndFPST
ChainSub2: class "'calt' Contextual Alternates in Latin lookup 30-1" 3 3 3 1
Class: 1 a
Class: 68 r t t.alt2 v w y longs uni0233 uni1E5B uni1E7F uni1E89 uni1E8F r.alt
BClass: 1 a
BClass: 68 r t t.alt2 v w y longs uni0233 uni1E5B uni1E7F uni1E89 uni1E8F r.alt
FClass: 1 a
FClass: 68 r t t.alt2 v w y longs uni0233 uni1E5B uni1E7F uni1E89 uni1E8F r.alt
1 1 0
ClsList: 1
BClsList: 2
FClsList:
1
SeqLookup: 0 "Single Substitution no tag"
ClassNames: "All_Others" "1" "2"
BClassNames: "All_Others" "1" "2"
FClassNames: "All_Others" "1" "2"
EndFPST
ChainSub2: class "'calt' Contextual Alternates for t-1" 4 4 4 2
Class: 1 t
Class: 7 a c s x
Class: 13 f j m n p r u
BClass: 1 t
BClass: 7 a c s x
BClass: 13 f j m n p r u
FClass: 1 t
FClass: 7 a c s x
FClass: 13 f j m n p r u
1 0 1
ClsList: 1
BClsList:
FClsList: 2
1
SeqLookup: 0 "Single Substitution no tag - 3"
2 0 0
ClsList: 1 3
BClsList:
FClsList:
2
SeqLookup: 0 "Single Substitution no tag - 3"
SeqLookup: 1 "Single Substitution no tag"
ClassNames: "All_Others" "tee" "after1" "after2"
BClassNames: "All_Others" "tee" "after1" "after2"
FClassNames: "All_Others" "tee" "after1" "after2"
EndFPST
ChainSub2: class "'calt' Contextual Alternates for c-1" 3 3 3 1
Class: 1 c
Class: 44 a f g i j m n p r s t u x z dotlessi uniF161
BClass: 1 c
BClass: 44 a f g i j m n p r s t u x z dotlessi uniF161
FClass: 1 c
FClass: 44 a f g i j m n p r s t u x z dotlessi uniF161
1 0 1
ClsList: 1
BClsList:
FClsList: 2
1
SeqLookup: 0 "Single Substitution no tag"
ClassNames: "All_Others" "cee" "after"
BClassNames: "All_Others" "cee" "after"
FClassNames: "All_Others" "cee" "after"
EndFPST
ContextSub2: class "'calt' Non-colliding eth-1" 3 1 1 1
Class: 30 d f i j l longs uniFB00 f.alt2
Class: 3 eth
2 0 0
ClsList: 1 2
BClsList:
FClsList:
1
SeqLookup: 1 "Single Substitution no tag"
ClassNames: "0" "1" "2"
BClassNames: "0"
FClassNames: "0"
EndFPST
ContextSub2: class "'calt' Contextual Alternates e before rounded-2" 3 1 1 1
Class: 1 e
Class: 9 c q c.alt
2 0 0
ClsList: 1 2
BClsList:
FClsList:
1
SeqLookup: 0 "Single subsitution no tag - 4"
ClassNames: "0" "1" "2"
BClassNames: "0"
FClassNames: "0"
EndFPST
ContextSub2: glyph "'calt' Contextual Alternates small cap-1" 0 0 0 2
String: 9 f.sc l.sc
BString: 0
FString: 0
1
SeqLookup: 1 "Single Substitution no tag"
String: 9 f.sc s.sc
BString: 0
FString: 0
1
SeqLookup: 1 "Single Substitution no tag"
EndFPST
ContextSub2: class "'calt' e g ae before f-2" 3 1 1 1
Class: 6 e g ae
Class: 8 f f.alt1
2 0 0
ClsList: 1 2
BClsList:
FClsList:
1
SeqLookup: 0 "Single Substitution no tag - 3"
ClassNames: "0" "1" "2"
BClassNames: "0"
FClassNames: "0"
EndFPST
ContextSub2: class "'calt' Contextual Alternates e before rounded-1" 3 1 1 1
Class: 1 e
Class: 45 d g s g.alt1 g.alt2 e.alt01 e.alt03 y uni1E8F
2 0 0
ClsList: 1 2
BClsList:
FClsList:
1
SeqLookup: 0 "Single Substitution no tag - 2"
ClassNames: "0" "1" "2"
BClassNames: "0"
FClassNames: "0"
EndFPST
ContextSub2: class "'ccmp' Sub dotlessi before diacritic-1" 3 1 1 1
Class: 3 i j
Class: 67 gravecomb acutecomb uni0304 uni0308 uni0365 uni1DE3 uni1DD2 uniA770
2 0 0
ClsList: 1 2
BClsList:
FClsList:
1
SeqLookup: 0 "Single subsitution no tag - 4"
ClassNames: "0" "1" "2"
BClassNames: "0"
FClassNames: "0"
EndFPST
ContextSub2: class "'calt' e before bhki" 3 1 1 1
Class: 1 e
Class: 7 b h k l
2 0 0
ClsList: 1 2
BClsList:
FClsList:
1
SeqLookup: 0 "Single Substitution no tag"
ClassNames: "0" "1" "2"
BClassNames: "0"
FClassNames: "0"
EndFPST
ContextSub2: class "'calt' Contextual Alternates g and f-1" 5 1 1 3
Class: 1 g
Class: 26 i j m n r u dotlessi w.alt
Class: 5 e o s
Class: 8 f f.alt2
2 0 0
ClsList: 1 2
BClsList:
FClsList:
1
SeqLookup: 0 "Single Substitution no tag"
2 0 0
ClsList: 1 3
BClsList:
FClsList:
1
SeqLookup: 0 "Single Substitution no tag - 2"
2 0 0
ClsList: 4 3
BClsList:
FClsList:
1
SeqLookup: 0 "Single Substitution no tag - 3"
ClassNames: "0" "1" "2" "3" "4"
BClassNames: "0"
FClassNames: "0"
EndFPST
LangName: 1033 "" "" "" "" "" "" "" "" "" "Peter S. Baker" "" "" "http://faculty.virginia.edu/OldEnglish/" "Copyright (c) 2010, Peter S. Baker,+AAoA-with Reserved Font Name Eadui.+AAoACgAA-This Font Software is licensed under the SIL Open Font License, Version 1.1.+AAoA-This license is copied below, and is also available with a FAQ at:+AAoA-http://scripts.sil.org/OFL+AAoACgAK------------------------------------------------------------+AAoA-SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007+AAoA------------------------------------------------------------+AAoACgAA-PREAMBLE+AAoA-The goals of the Open Font License (OFL) are to stimulate worldwide+AAoA-development of collaborative font projects, to support the font creation+AAoA-efforts of academic and linguistic communities, and to provide a free and+AAoA-open framework in which fonts may be shared and improved in partnership+AAoA-with others.+AAoACgAA-The OFL allows the licensed fonts to be used, studied, modified and+AAoA-redistributed freely as long as they are not sold by themselves. The+AAoA-fonts, including any derivative works, can be bundled, embedded, +AAoA-redistributed and/or sold with any software provided that any reserved+AAoA-names are not used by derivative works. The fonts and derivatives,+AAoA-however, cannot be released under any other type of license. The+AAoA-requirement for fonts to remain under this license does not apply+AAoA-to any document created using the fonts or their derivatives.+AAoACgAA-DEFINITIONS+AAoAIgAA-Font Software+ACIA refers to the set of files released by the Copyright+AAoA-Holder(s) under this license and clearly marked as such. This may+AAoA-include source files, build scripts and documentation.+AAoACgAi-Reserved Font Name+ACIA refers to any names specified as such after the+AAoA-copyright statement(s).+AAoACgAi-Original Version+ACIA refers to the collection of Font Software components as+AAoA-distributed by the Copyright Holder(s).+AAoACgAi-Modified Version+ACIA refers to any derivative made by adding to, deleting,+AAoA-or substituting -- in part or in whole -- any of the components of the+AAoA-Original Version, by changing formats or by porting the Font Software to a+AAoA-new environment.+AAoACgAi-Author+ACIA refers to any designer, engineer, programmer, technical+AAoA-writer or other person who contributed to the Font Software.+AAoACgAA-PERMISSION & CONDITIONS+AAoA-Permission is hereby granted, free of charge, to any person obtaining+AAoA-a copy of the Font Software, to use, study, copy, merge, embed, modify,+AAoA-redistribute, and sell modified and unmodified copies of the Font+AAoA-Software, subject to the following conditions:+AAoACgAA-1) Neither the Font Software nor any of its individual components,+AAoA-in Original or Modified Versions, may be sold by itself.+AAoACgAA-2) Original or Modified Versions of the Font Software may be bundled,+AAoA-redistributed and/or sold with any software, provided that each copy+AAoA-contains the above copyright notice and this license. These can be+AAoA-included either as stand-alone text files, human-readable headers or+AAoA-in the appropriate machine-readable metadata fields within text or+AAoA-binary files as long as those fields can be easily viewed by the user.+AAoACgAA-3) No Modified Version of the Font Software may use the Reserved Font+AAoA-Name(s) unless explicit written permission is granted by the corresponding+AAoA-Copyright Holder. This restriction only applies to the primary font name as+AAoA-presented to the users.+AAoACgAA-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font+AAoA-Software shall not be used to promote, endorse or advertise any+AAoA-Modified Version, except to acknowledge the contribution(s) of the+AAoA-Copyright Holder(s) and the Author(s) or with their explicit written+AAoA-permission.+AAoACgAA-5) The Font Software, modified or unmodified, in part or in whole,+AAoA-must be distributed entirely under this license, and must not be+AAoA-distributed under any other license. The requirement for fonts to+AAoA-remain under this license does not apply to any document created+AAoA-using the Font Software.+AAoACgAA-TERMINATION+AAoA-This license becomes null and void if any of the above conditions are+AAoA-not met.+AAoACgAA-DISCLAIMER+AAoA-THE FONT SOFTWARE IS PROVIDED +ACIA-AS IS+ACIA, WITHOUT WARRANTY OF ANY KIND,+AAoA-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF+AAoA-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT+AAoA-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE+AAoA-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,+AAoA-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL+AAoA-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING+AAoA-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM+AAoA-OTHER DEALINGS IN THE FONT SOFTWARE." "http://scripts.sil.org/OFL"
GaspTable: 3 19 2 100 3 65535 2 0
Encoding: UnicodeBmp
UnicodeInterp: none
NameList: Adobe Glyph List
DisplaySize: -36
AntiAlias: 1
FitToEm: 1
WinInfo: 0 16 11
BeginPrivate: 7
BlueValues 31 [-49 0 357 365 536 568 639 647]
OtherBlues 11 [-320 -268]
BlueFuzz 1 1
StdHW 4 [37]
StdVW 4 [61]
StemSnapH 25 [18 25 30 33 37 43 48 52]
StemSnapV 19 [54 61 69 73 79 88]
EndPrivate
Grid
-1000 535.799987793 m 0
2000 535.799987793 l 1024
Named: "Cap Height"
-1000 342 m 0
2000 342 l 1024
-1000 1182.09997559 m 0
2000 1182.09997559 l 1024
-1000 267 m 0
2000 267 l 1024
-1000 1276.30004883 m 0
2000 1276.30004883 l 1024
-1000 362.899993896 m 0
2000 362.899993896 l 1024
Named: "x-height"
EndSplineSet
TeXData: 1 0 0 246784 123392 82261 374875 -1048576 82261 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144
AnchorClass2: "us ligature anchor" "'mark' Ligature mark-1" "us anchor" "'mark' Standard mark-1" "ligature below" "'mark' Ligature mark-1" "std below anchor" "'mark' Standard mark-1" "std above anchor" "'mark' Standard mark-1" "ligature anchor" "'mark' Ligature mark-1"
BeginChars: 65766 589
StartChar: a
Encoding: 97 97 0
Width: 325
VWidth: 0
Flags: W
HStem: -4 35<104.037 149.081 244 326.306> 325 36<137.5 216>
VStem: 12 61<55.138 112.025> 200 62<51.9355 155.99 178.96 293.808>
AnchorPoint: "us anchor" 245 439 basechar 0
AnchorPoint: "std below anchor" 147 -49 basechar 0
AnchorPoint: "std above anchor" 171 439 basechar 0
LayerCount: 3
Back
Fore
SplineSet
12 66 m 256
12 86 33 113 44 123 c 0
63 140 104 152 132 163 c 0
150 170 165 174 176 178 c 0
196 185 200 188 200 209 c 0
200 241 192 267 180 291 c 0
169 312 162 325 140 325 c 259
135 325 128 323 120 320 c 0
112 317 98 311 81 302 c 0
70 296 62 292 59 292 c 3
57 292 55 293 55 295 c 3
55 297 75 309 115 330 c 0
155 351 184 361 201 361 c 256
231 361 252 315 257 285 c 0
260 264 262 237 262 204 c 0
262 191 262 178 261 163 c 2
259 70 l 1
262 66 270 58 283 46 c 0
296 34 308 27 318 27 c 256
329 27 338 30 346 34 c 0
349 36 351 36 353 36 c 3
354 36 355 36 355 35 c 3
355 34 353 32 351 30 c 0
346 25 333 16 312 6 c 0
291 -4 271 -9 253 -9 c 256
235 -9 221 0 211 16 c 0
201 32 195 40 193 40 c 0
188 40 176 33 156 18 c 0
136 3 120 -4 107 -4 c 256
76 -4 43 18 27 36 c 0
17 47 12 57 12 66 c 256
73 97 m 256
73 67 97 50 120 40 c 0
134 34 142 31 147 31 c 256
181 31 199 91 199 128 c 259
199 142 198 156 188 156 c 3
174 156 167 155 138 147 c 0
114 140 98 134 88 126 c 0
78 118 73 108 73 97 c 256
EndSplineSet
Layer: 2
Substitution2: "'ss14' Enlarged minuscules-1" a.enlarged
Substitution2: "'swsh' Swash in Latin lookup 22-1" a.swash
Substitution2: "'ss07' Underdotted-1" uni1EA1
AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 26-1" a.alt01 a.alt02 a.enlarged
Substitution2: "Single Substitution no tag - 2-1" a.alt02
Substitution2: "Single Substitution no tag-1" a.alt01
Substitution2: "'titl' Titling caps from lc-1" A.titling
Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 8-1" a.sc
EndChar
StartChar: b
Encoding: 98 98 1
Width: 391
VWidth: 0
Flags: W
HStem: -7 41<112 236.965> 325 43<166.092 239.646> 622 20G<101.5 120>
VStem: 12 135<532.361 608.587> 30 65<68.7361 417.886> 38 63<121.984 283.356 316.018 520.295> 295 70<111.343 261.889>
AnchorPoint: "us anchor" 326 439 basechar 0
AnchorPoint: "std below anchor" 160 -49 basechar 0
AnchorPoint: "std above anchor" 193 659 basechar 0
LayerCount: 3
Back
Fore
SplineSet
12 582 m 259xf2
12 591 24 603 47 618 c 280
70 633 92 641 111 642 c 259
129 642 147 638 147 623 c 3xf2
147 617 144 610 143 605 c 0
135 570 134 574 121 512 c 8
108 450 101 414 101 356 c 19
101 341 102 316 110 316 c 3
116 316 122 319 136 329 c 0
156 343 203 368 234 368 c 259
249 368 268 362 288 352 c 24
308 342 326 324 342 298 c 8
358 272 365 250 365 231 c 256
365 145 349 105 304 60 c 24
261 17 211 -7 129 -7 c 259
95 -7 47 20 38 44 c 24xe6
34 57 30 89 30 119 c 3xea
30 182 36 288 37 346 c 0
38 382 38 409 38 426 c 24xe6
38 454 30 541 20 558 c 24
14 567 12 575 12 582 c 259xf2
95 180 m 0xea
95 161 96 142 97 124 c 0
101 71 135 34 188 34 c 259
246 34 261 51 280 94 c 24
290 117 295 136 295 151 c 256
295 223 283 258 248 296 c 24
230 315 211 325 190 325 c 275
158 325 134 298 116 276 c 0
99 255 95 218 95 180 c 0xea
EndSplineSet
Validated: 1
Layer: 2
Substitution2: "'ss07' Underdotted-1" uni1E05
Substitution2: "'titl' Titling caps from lc-1" B.titling
Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 8-1" b.sc
EndChar
StartChar: c
Encoding: 99 99 2
Width: 312
VWidth: 0
Flags: W
HStem: -8 36<120.5 234.33> 319 42<132.868 224.5>
VStem: 19 65<86.4154 244.543> 310 32<77.6336 144.899>
AnchorPoint: "us anchor" 287 439 basechar 0
AnchorPoint: "std below anchor" 134 -49 basechar 0
AnchorPoint: "std above anchor" 189 439 basechar 0
LayerCount: 3
Back
Fore
SplineSet
19 121 m 256
19 240 61 312 144 345 c 0
170 356 193 361 214 361 c 256
235 361 253 353 266 338 c 0
279 323 286 314 286 311 c 3
286 305 228 269 224 269 c 11
222 269 213 277 200 294 c 0
187 311 174 319 159 319 c 256
139 319 121 309 106 290 c 0
91 271 84 242 84 204 c 256
84 182 86 136 91 119 c 0
94 109 100 95 111 78 c 0
130 48 153 28 199 28 c 256
244 28 279 43 294 72 c 0
301 86 307 101 310 117 c 0
313 133 320 146 331 146 c 3
340 146 342 141 342 134 c 259
342 103 332 79 312 61 c 0
269 21 221 -8 135 -8 c 256
106 -8 80 2 56 21 c 0
32 40 19 74 19 121 c 256
EndSplineSet
Validated: 1
Layer: 2
AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 26-1" c.enlarged
Substitution2: "'ss14' Enlarged minuscules-1" c.enlarged
Substitution2: "'ss07' Underdotted-1" uni00630323
Substitution2: "'titl' Titling caps from lc-1" C.titling
Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 8-1" c.sc
Substitution2: "Single Substitution no tag-1" c.alt
EndChar
StartChar: g
Encoding: 103 103 3
Width: 459
VWidth: 0
Flags: W
HStem: -392 55<17.224 222.139> -303 20G<81 83> 299 48<349.175 486.95> 322 41<176.913 267.5>
VStem: 30 68<100.323 241.611> 283 66<139.458 270.4> 396 68<-221.15 -113.347>
AnchorPoint: "us anchor" 354 439 basechar 0
AnchorPoint: "std below anchor" 141 -408 basechar 0
AnchorPoint: "std above anchor" 201 439 basechar 0
LayerCount: 3
Back
Fore
SplineSet
-29 -370 m 256xee
-29 -361 -15 -346 16 -327 c 0
52 -304 59 -300 71 -290 c 0
76 -286 80 -283 82 -283 c 3
84 -283 84 -284 84 -285 c 3
84 -286 83 -288 79 -292 c 0
65 -308 58 -318 58 -322 c 0
58 -332 89 -337 137 -337 c 256
198 -337 239 -334 259 -328 c 0
294 -317 368 -273 384 -244 c 0
392 -229 396 -209 396 -182 c 256
396 -147 384 -119 360 -98 c 0
336 -77 302 -59 256 -44 c 0
210 -29 181 -17 168 -10 c 0
159 -5 154 0 154 5 c 3
154 11 161 21 161 25 c 3
161 31 152 31 134 31 c 0
65 31 30 72 30 155 c 256
30 210 53 252 80 282 c 0
112 319 137 329 192 348 c 0
221 358 242 363 257 363 c 0xde
278 363 288 358 300 347 c 0
309 339 314 336 323 336 c 0
328 336 335 337 345 339 c 0
356 341 382 344 425 347 c 2
474 350 l 2
481 350 486 348 487 344 c 2
492 330 l 2
496 319 496 314 496 312 c 0
496 308 409 300 398 299 c 0
376 297 349 294 349 275 c 3
349 263 354 253 354 240 c 256
354 171 335 145 302 108 c 0
286 90 271 75 258 64 c 0
245 53 238 45 238 40 c 0
238 35 244 30 254 24 c 0
264 18 280 12 302 7 c 0
351 -5 403 -21 436 -52 c 0
454 -69 464 -99 464 -142 c 256
464 -181 452 -214 427 -241 c 0
402 -268 374 -291 341 -310 c 0
308 -329 280 -344 257 -356 c 0
234 -368 202 -378 162 -384 c 0
122 -390 90 -392 69 -392 c 256
4 -392 -29 -385 -29 -370 c 256xee
98 187 m 0
98 154 104 128 115 108 c 0
126 88 135 76 142 72 c 0
149 68 157 67 166 67 c 256
184 67 215 68 227 74 c 0
244 83 269 121 276 142 c 0
281 156 283 172 283 189 c 256
283 244 262 281 228 304 c 0
210 316 195 322 186 322 c 256
144 322 123 290 110 256 c 0
102 235 98 212 98 187 c 0
EndSplineSet
Validated: 1
Layer: 2
Substitution2: "Single Substitution no tag - 3-1" g.alt1
Substitution2: "'ss07' Underdotted-1" uni00670323
Substitution2: "'titl' Titling caps from lc-1" G.titling
Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 8-1" g.sc
Substitution2: "Single Substitution no tag - 2-1" g.alt2
Substitution2: "Single Substitution no tag-1" g.alt1
EndChar
StartChar: d
Encoding: 100 100 4
Width: 430
VWidth: 0
Flags: W
HStem: -19 35<359.791 406.487> -6 37<144.61 232.647> 332 36<157.875 253.793> 620 20G<347.5 358.5>
VStem: 13 68<88.8454 238.779> 266 136<543.767 622.197> 299 59<20.821 36.9978 79.8535 282.748>
AnchorPoint: "us anchor" 486 439 basechar 0
AnchorPoint: "std below anchor" 211 -49 basechar 0
AnchorPoint: "std above anchor" 185 659 basechar 0
LayerCount: 3
Back
Fore
SplineSet
13 145 m 256x7a
13 201 19 213 47 260 c 0
64 289 80 310 94 321 c 0
121 343 205 368 255 368 c 256
264 368 274 367 284 364 c 0
287 363 294 362 298 362 c 3
307 362 311 368 311 376 c 3
311 384 311 389 311 397 c 0
308 463 297 533 278 565 c 0
270 578 266 588 266 595 c 3
266 609 278 620 302 628 c 0
326 636 343 640 352 640 c 3
365 640 383 637 393 631 c 0
398 628 402 626 402 619 c 3x7c
402 615 401 611 398 605 c 0
391 593 386 570 382 536 c 0
376 475 373 359 366 300 c 0
363 266 361 214 360 145 c 2
358 35 l 1x7a
367 26 385 16 402 16 c 0
406 16 419 19 426 19 c 3
429 19 431 18 431 17 c 3
431 13 422 6 402 -4 c 0
382 -14 355 -19 322 -19 c 0xbc
304 -19 295 -16 295 -2 c 3
295 5 299 19 299 26 c 3
299 34 296 37 290 37 c 3
281 37 267 30 250 21 c 0
225 8 208 1 198 -2 c 0
188 -5 178 -6 168 -6 c 256
111 -6 72 3 50 21 c 0
28 39 18 60 16 84 c 0
14 108 13 128 13 145 c 256x7a
81 192 m 256
81 181 83 161 87 133 c 0
93 90 118 62 152 45 c 0
171 36 191 31 212 31 c 256
266 31 281 78 290 130 c 0
296 162 299 187 299 204 c 0x7a
299 260 276 295 242 316 c 0
225 327 211 332 199 332 c 256
147 332 118 292 98 256 c 0
86 235 81 213 81 192 c 256
EndSplineSet
Validated: 1
Layer: 2
AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 26-1" d.enlarged
Substitution2: "'ss14' Enlarged minuscules-1" d.enlarged
Substitution2: "'ss07' Underdotted-1" uni1E0D
Substitution2: "'titl' Titling caps from lc-1" D.titling
Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 8-1" d.sc
EndChar
StartChar: e
Encoding: 101 101 5
Width: 296
VWidth: 0
Flags: W
HStem: -5 33<124.5 232.03> 283 20<267.332 310.102> 337 23<131.229 213>
VStem: 13 66<93.5246 245.747>
AnchorPoint: "us anchor" 257 439 basechar 0
AnchorPoint: "std below anchor" 146 -49 basechar 0
AnchorPoint: "std above anchor" 168 439 basechar 0
LayerCount: 3
Back
Fore
SplineSet
13 165 m 256
13 221 23 263 44 290 c 0
65 317 91 335 120 345 c 0
149 355 173 360 191 360 c 256
235 360 230 357 246 326 c 0
250 319 253 313 255 309 c 0
259 302 261 301 267 301 c 3
274 301 286 303 296 303 c 0
305 303 312 301 312 296 c 257
312 293 305 288 290 283 c 0
261 272 159 262 125 256 c 0
102 252 88 247 84 242 c 0
80 237 79 224 79 204 c 0
79 140 90 94 127 59 c 0
149 38 168 28 191 28 c 256
233 28 265 45 282 68 c 0
284 72 298 100 308 100 c 3
315 100 316 93 316 86 c 259
316 83 314 77 308 68 c 24
281 25 216 -5 144 -5 c 256
105 -5 63 13 44 30 c 0
36 37 30 48 23 64 c 0
16 80 13 114 13 165 c 256
91 286 m 256
88 276 94 273 112 276 c 0
130 279 147 282 163 284 c 0
179 286 188 288 190 290 c 0
192 292 194 297 194 306 c 256
194 323 173 337 155 337 c 256
127 337 99 309 91 286 c 256
EndSplineSet
Layer: 2
Substitution2: "'ss07' Underdotted-1" uni1EB9
AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 26-1" e.alt02 e.alt04
Substitution2: "Single subsitution no tag - 4-1" e.alt04
Substitution2: "'swsh' Swash in Latin lookup 22-1" e.alt01
Substitution2: "Single Substitution no tag - 3-1" e.alt03
Substitution2: "Single Substitution no tag - 2-1" e.alt02
Substitution2: "'titl' Titling caps from lc-1" E.titling
Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 8-1" e.sc
Substitution2: "Single Substitution no tag-1" e.alt01
EndChar
StartChar: f
Encoding: 102 102 6
Width: 280
VWidth: 0
Flags: W
HStem: 313 31<168.396 291.577> 610 37<180.401 289>
VStem: 76 58<-104.429 135.266 347.333 587.454>
AnchorPoint: "us anchor" 440 439 basechar 0
AnchorPoint: "std below anchor" 176 -78 basechar 0
AnchorPoint: "std above anchor" 172 659 basechar 0
LayerCount: 3
Back
Fore
SplineSet
18 300 m 256
18 310 22 318 30 325 c 2
57 347 l 2
65 354 69 368 70 390 c 0
71 418 71 519 73 544 c 0
75 568 78 572 94 585 c 0
114 602 176 629 207 638 c 0
227 644 248 647 269 647 c 259
309 647 316 644 338 623 c 0
350 612 355 604 355 601 c 256
355 598 355 594 354 591 c 0
351 583 332 571 295 556 c 0
289 554 284 553 281 553 c 0
273 553 270 560 266 570 c 0
259 588 227 610 200 610 c 256
179 610 143 590 139 572 c 0
137 563 136 542 135 511 c 0
134 480 134 445 134 407 c 256
134 370 135 349 138 346 c 0
141 343 153 342 174 342 c 0
206 342 205 342 218 342 c 2
281 344 l 2
288 344 292 341 292 336 c 2
292 328 l 2
292 320 290 315 286 313 c 0
282 311 256 308 211 303 c 0
166 298 143 294 143 291 c 0
143 77 139 -74 134 -84 c 0
130 -92 117 -103 92 -116 c 0
89 -118 86 -119 83 -119 c 0
78 -119 76 -115 76 -108 c 2
76 134 l 2
76 201 74 239 70 250 c 0
66 261 58 268 48 270 c 0
31 273 18 281 18 300 c 256
EndSplineSet
Validated: 1
Layer: 2
Substitution2: "Single Substitution no tag - 3-1" f.alt1
AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 26-1" f.enlarged
Substitution2: "'ss14' Enlarged minuscules-1" f.enlarged
Substitution2: "'ss07' Underdotted-1" uni00660323
Substitution2: "Single Substitution no tag - 2-1" f.alt2
Substitution2: "'titl' Titling caps from lc-1" F.titling
Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 8-1" f.sc
Substitution2: "Single Substitution no tag-1" f.alt2
EndChar
StartChar: h
Encoding: 104 104 7
Width: 405
VWidth: 0
Flags: W
HStem: -21 21G<214 217.5> 330 37<184.556 285.5> 620 20G<91.5 106>
VStem: 2 113<473.149 614.681> 18 68<33 253.065> 28 62<308.383 555.022> 305 73<108.13 257.792>
AnchorPoint: "us anchor" 317 439 basechar 0
AnchorPoint: "std below anchor" 141 -49 basechar 0
AnchorPoint: "std above anchor" 179 659 basechar 0
LayerCount: 3
Back
Fore
SplineSet
2 586 m 0xf2
2 599 3 599 10 606 c 0
14 609 25 616 44 626 c 0
63 636 82 640 101 640 c 0
111 640 116 635 115 626 c 0xf2
115 561 106 495 98 424 c 0
93 378 90 348 90 334 c 0xe6
90 320 91 310 94 307 c 2
95 307 l 2
100 307 122 317 160 337 c 0
198 357 233 367 262 367 c 0
309 367 332 337 350 302 c 0
366 271 378 228 378 190 c 256
378 166 374 145 366 126 c 24
346 80 289 19 250 -2 c 1
221 -19 l 2
219 -20 218 -20 217 -21 c 0
211 -21 211 -16 216 -12 c 2
237 5 l 2
244 10 252 20 262 35 c 0
286 67 305 117 305 171 c 256
305 242 267 295 224 320 c 0
213 326 203 330 193 330 c 256
175 330 158 321 142 304 c 0
126 287 116 272 111 260 c 0
106 248 101 240 98 234 c 0
93 223 89 187 86 125 c 2
82 33 l 1
121 30 l 2
128 29 132 28 132 26 c 0
132 24 129 21 122 18 c 2
112 13 l 2
93 3 72 -3 50 -4 c 2
33 -5 l 2
25 -6 21 -1 21 9 c 0
19 65 18 111 18 146 c 0xea
18 201 28 332 28 383 c 0xe6
28 429 23 512 12 547 c 0
6 567 2 580 2 586 c 0xf2
EndSplineSet
Validated: 1
Layer: 2
Substitution2: "'ss07' Underdotted-1" uni1E25
Substitution2: "'titl' Titling caps from lc-1" H.titling
Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 8-1" h.sc
EndChar
StartChar: i
Encoding: 105 105 8
Width: 207
VWidth: 0
Flags: W
HStem: -0 32<72.5 147.111> 341 20G<112.5 128> 489 71<78.5156 143.484>
VStem: 68 51<46.4783 271.477> 76 70<491.356 557.783>
AnchorPoint: "us anchor" 177 566 basechar 0
AnchorPoint: "std below anchor" 86 -49 basechar 0
AnchorPoint: "std above anchor" 101 586 basechar 0
LayerCount: 3
Back
Fore
SplineSet
76 525 m 0xe8
76 546 90 560 111 560 c 0