summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/hyperref/puenc.def
blob: ba36b3a80eed8dd121d7d688ea4eb4172dd2a79c (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
%%
%% This is file `puenc.def',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% hyperref.dtx  (with options: `puenc')
%% 
%% File: hyperref.dtx
%% Copyright
%% 1995-2001 Sebastian Rahtz, with portions written by David Carlisle and Heiko Oberdiek,
%% 2001-2015 Heiko Oberdiek.
%% 2016-2019 Oberdiek Package Support Group
%% 2019-2021 LaTeX Project
%%      https://github.com/latex3/hyperref/issues
%%
%% This file is part of the `Hyperref Bundle'.
%% -------------------------------------------
%%
%% This work may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either version 1.3
%% of this license or (at your option) any later version.
%% The latest version of this license is in
%%   http://www.latex-project.org/lppl.txt
%% and version 1.3 or later is part of all distributions of LaTeX
%% version 2005/12/01 or later.
%%
%% This work has the LPPL maintenance status `maintained'.
%%
%% The Current Maintainer of this work is the LaTeX Project.
%%
%% The list of all files belonging to the `Hyperref Bundle' is
%% given in the file `manifest.txt'.
%%
\ProvidesFile{puenc.def}
  [2021-02-27 v7.00k %
      Hyperref: PDF Unicode definition (HO)]
\DeclareFontEncoding{PU}{}{}
\DeclareTextCommand{\`}{PU}[1]{#1\83\000}% U+0300
\DeclareTextCommand{\'}{PU}[1]{#1\83\001}% U+0301
\DeclareTextCommand{\^}{PU}[1]{#1\83\002}% U+0302
\DeclareTextCommand{\~}{PU}[1]{#1\83\003}% U+0303
\DeclareTextCommand{\=}{PU}[1]{#1\83\004}% U+0304
\DeclareTextCommand{\u}{PU}[1]{#1\83\006}% U+0306
\ifx\CYRDZE\@undefined \else
\DeclareTextCommand{\U}{PU}[1]{#1\83\006}% U+0306
\fi
\DeclareTextCommand{\.}{PU}[1]{#1\83\007}% U+0307
\DeclareTextCommand{\"}{PU}[1]{#1\83\010}% U+0308
\DeclareTextCommand{\r}{PU}[1]{#1\83\012}% U+030A
\DeclareTextCommand{\H}{PU}[1]{#1\83\013}% U+030B
\DeclareTextCommand{\v}{PU}[1]{#1\83\014}% U+030C
\ifx\CYRDZE\@undefined \else
\DeclareTextCommand{\C}{PU}[1]{#1\83\017}% U+030F
\fi
\DeclareTextCommand{\textinvbreve}{PU}[1]{#1\83\021}% U+0311
\DeclareTextCommand{\newtie}{PU}[1]{#1\83\021}% U+0311
\DeclareTextCommand{\d}{PU}[1]{#1\83\043}% U+0323
\DeclareTextCommand{\textsubumlaut}{PU}[1]{#1\83\044}% U+0324
\DeclareTextCommand{\textsubring}{PU}[1]{#1\83\045}% U+0325
\DeclareTextCommand{\c}{PU}[1]{#1\83\047}% U+0327
\DeclareTextCommand{\k}{PU}[1]{#1\83\050}% U+0328
\DeclareTextCommand{\textsubcircum}{PU}[1]{#1\83\055}% U+032D
\DeclareTextCommand{\textsubbreve}{PU}[1]{#1\83\056}% U+032E
\DeclareTextCommand{\textsubtilde}{PU}[1]{#1\83\060}% U+0330
\DeclareTextCommand{\b}{PU}[1]{#1\83\061}% U+0331
\DeclareTextCommand{\t}{PU}[1]{#1\83\141}% U+0361
\DeclareTextCommand{\textcircled}{PU}[1]{#1\9040\335}% U+20DD
\DeclareTextCommand{\textacutemacron}{PU}[1]{#1\83\001\83\004}% U+0301 U+0304
\DeclareTextCommand{\textgravemacron}{PU}[1]{#1\83\000\83\004}% U+0300 U+0304
\DeclareTextCompositeCommand{\`}{PU}{\@empty}{\textasciigrave}%
\DeclareTextCompositeCommand{\'}{PU}{\@empty}{\textacute}%
\DeclareTextCompositeCommand{\^}{PU}{\@empty}{\textasciicircum}%
\DeclareTextCompositeCommand{\~}{PU}{\@empty}{\texttilde}%
\DeclareTextCompositeCommand{\"}{PU}{\@empty}{\textasciidieresis}%
\DeclareTextCompositeCommand{\r}{PU}{\@empty}{\textring}%
\DeclareTextCompositeCommand{\v}{PU}{\@empty}{\textasciicaron}%
\DeclareTextCompositeCommand{\.}{PU}{\@empty}{\textdotaccent}%
\DeclareTextCompositeCommand{\c}{PU}{\@empty}{\textcedilla}%
\DeclareTextCompositeCommand{\u}{PU}{\@empty}{\textasciibreve}%
\DeclareTextCompositeCommand{\=}{PU}{\@empty}{\textasciimacron}%
\DeclareTextCompositeCommand{\H}{PU}{\@empty}{\texthungarumlaut}%
\DeclareTextCompositeCommand{\k}{PU}{\@empty}{\textogonek}%
\DeclareTextCompositeCommand{\textinvbreve}{PU}{\@empty}{{ \83\021}}% U+0311
\DeclareTextCompositeCommand{\textsubumlaut}{PU}{\@empty}{{ \83\044}}% U+0324
\DeclareTextCompositeCommand{\textsubring}{PU}{\@empty}{\textringlow}%
\DeclareTextCompositeCommand{\textsubcircum}{PU}{\@empty}{\textcircumlow}%
\DeclareTextCompositeCommand{\textsubbreve}{PU}{\@empty}{{ \83\056}}% U+032E
\DeclareTextCompositeCommand{\textsubtilde}{PU}{\@empty}{\texttildelow}%
\DeclareTextCompositeCommand{\b}{PU}{\@empty}{\textmacronbelow}%
\DeclareTextCompositeCommand{\d}{PU}{\@empty}{\textdotbelow}%
\DeclareTextCompositeCommand{\t}{PU}{\@empty}{\texttie}%
\DeclareTextCompositeCommand{\newtie}{PU}{\@empty}{\textnewtie}%
\DeclareTextCompositeCommand{\textcircled}{PU}{\@empty}{\textbigcircle}%
\DeclareTextCompositeCommand{\textacutemacron}{PU}{\@empty}{{ \83\001\83\004}}% U+0301 U+0304
\DeclareTextCompositeCommand{\textgravemacron}{PU}{\@empty}{{ \83\000\83\004}}% U+0300 U+0304
\DeclareTextCompositeCommand{\`}{PU}{\ }{\textasciigrave}%
\DeclareTextCompositeCommand{\'}{PU}{\ }{\textacute}%
\DeclareTextCompositeCommand{\^}{PU}{\ }{\textasciicircum}%
\DeclareTextCompositeCommand{\~}{PU}{\ }{\texttilde}%
\DeclareTextCompositeCommand{\"}{PU}{\ }{\textasciidieresis}%
\DeclareTextCompositeCommand{\r}{PU}{\ }{\textring}%
\DeclareTextCompositeCommand{\v}{PU}{\ }{\textasciicaron}%
\DeclareTextCompositeCommand{\.}{PU}{\ }{\textdotaccent}%
\DeclareTextCompositeCommand{\c}{PU}{\ }{\textcedilla}%
\DeclareTextCompositeCommand{\u}{PU}{\ }{\textasciibreve}%
\DeclareTextCompositeCommand{\=}{PU}{\ }{\textasciimacron}%
\DeclareTextCompositeCommand{\H}{PU}{\ }{\texthungarumlaut}%
\DeclareTextCompositeCommand{\k}{PU}{\ }{\textogonek}%
\DeclareTextCompositeCommand{\textinvbreve}{PU}{\ }{{ \83\021}}% U+0311
\DeclareTextCompositeCommand{\textsubumlaut}{PU}{\ }{{ \83\044}}% U+0324
\DeclareTextCompositeCommand{\textsubring}{PU}{\ }{\textringlow}%
\DeclareTextCompositeCommand{\textsubcircum}{PU}{\ }{\textcircumlow}%
\DeclareTextCompositeCommand{\textsubbreve}{PU}{\ }{{ \83\056}}% U+032E
\DeclareTextCompositeCommand{\textsubtilde}{PU}{\ }{\texttildelow}%
\DeclareTextCompositeCommand{\b}{PU}{\ }{\textmacronbelow}%
\DeclareTextCompositeCommand{\d}{PU}{\ }{\textdotbelow}%
\DeclareTextCompositeCommand{\t}{PU}{\ }{\texttie}%
\DeclareTextCompositeCommand{\newtie}{PU}{\ }{\textnewtie}%
\DeclareTextCompositeCommand{\textcircled}{PU}{\ }{\textbigcircle}%
\DeclareTextCompositeCommand{\textacutemacron}{PU}{\ }{{ \83\001\83\004}}% U+0301 U+0304
\DeclareTextCompositeCommand{\textgravemacron}{PU}{\ }{{ \83\000\83\004}}% U+0300 U+0304
\DeclareTextCommand{\capitalcedilla}{PU}[1]{\c{#1}}%
\DeclareTextCommand{\capitalogonek}{PU}[1]{\k{#1}}%
\DeclareTextCommand{\capitalgrave}{PU}[1]{\`{#1}}%
\DeclareTextCommand{\capitalacute}{PU}[1]{\'{#1}}%
\DeclareTextCommand{\capitalcircumflex}{PU}[1]{\^{#1}}%
\DeclareTextCommand{\capitaltilde}{PU}[1]{\~{#1}}%
\DeclareTextCommand{\capitaldieresis}{PU}[1]{\"{#1}}%
\DeclareTextCommand{\capitalhungarumlaut}{PU}[1]{\H{#1}}%
\DeclareTextCommand{\capitalring}{PU}[1]{\r{#1}}%
\DeclareTextCommand{\capitalcaron}{PU}[1]{\v{#1}}%
\DeclareTextCommand{\capitalbreve}{PU}[1]{\u{#1}}%
\DeclareTextCommand{\capitalmacron}{PU}[1]{\={#1}}%
\DeclareTextCommand{\capitaldotaccent}{PU}[1]{\.{#1}}%
\DeclareTextCommand{\capitaltie}{PU}[1]{\t{#1}}%
\DeclareTextCommand{\capitalnewtie}{PU}[1]{\newtie{#1}}%
\DeclareTextCommand{\textHT}{PU}{\80\011}% U+0009
\DeclareTextCommand{\textLF}{PU}{\80\012}% U+000A
\DeclareTextCommand{\textCR}{PU}{\80\015}% U+000D
\DeclareTextCommand{\textquotedbl}{PU}{"}% \80\042 U+0022
\DeclareTextCommand{\textnumbersign}{PU}{\80\043}% U+0023
\DeclareTextCommand{\textdollar}{PU}{\80\044}% U+0024
\DeclareTextCommand{\textpercent}{PU}{\80\045}% U+0025
\DeclareTextCommand{\textampersand}{PU}{\80\046}% U+0026
\DeclareTextCommand{\textquotesingle}{PU}{\80\047}% U+0027
\DeclareTextCommand{\textparenleft}{PU}{\80\050}% U+0028
\DeclareTextCommand{\textparenright}{PU}{\80\051}% U+0029
\DeclareTextCommand{\textasteriskcentered}{PU}{\80\052}% U+002A
\DeclareTextCommand{\textMVPlus}{PU}{\80\053}%* U+002B
\DeclareTextCommand{\textMVComma}{PU}{\80\054}%* U+002C
\DeclareTextCommand{\textMVMinus}{PU}{\80\055}%* U+002D
\DeclareTextCommand{\textMVPeriod}{PU}{\80\056}%* U+002E
\DeclareTextCommand{\textMVDivision}{PU}{\80\057}%* U+002F
\DeclareTextCommand{\textMVZero}{PU}{\80\060}%* U+0030
\DeclareTextCommand{\textMVOne}{PU}{\80\061}%* U+0031
\DeclareTextCommand{\textMVTwo}{PU}{\80\062}%* U+0032
\DeclareTextCommand{\textMVThree}{PU}{\80\063}%* U+0033
\DeclareTextCommand{\textMVFour}{PU}{\80\064}%* U+0034
\DeclareTextCommand{\textMVFive}{PU}{\80\065}%* U+0035
\DeclareTextCommand{\textMVSix}{PU}{\80\066}%* U+0036
\DeclareTextCommand{\textMVSeven}{PU}{\80\067}%* U+0037
\DeclareTextCommand{\textMVEight}{PU}{\80\070}%* U+0038
\DeclareTextCommand{\textMVNine}{PU}{\80\071}%* U+0039
\DeclareTextCommand{\textless}{PU}{<}% \80\074 U+003C
\DeclareTextCommand{\textgreater}{PU}{>}% \80\076 U+003E
\DeclareTextCommand{\textMVAt}{PU}{\80\100}%* U+0040
\DeclareTextCommand{\textbackslash}{PU}{\80\134}% U+005C
\DeclareTextCommand{\textasciicircum}{PU}{\80\136}% U+005E
\DeclareTextCommand{\textunderscore}{PU}{\80\137}% U+005F
\DeclareTextCommand{\textasciigrave}{PU}{\80\140}% U+0060
\DeclareTextCompositeCommand{\.}{PU}{\i}{i}% \80\151 U+0069
\DeclareTextCompositeCommand{\.}{PU}{i}{i}% \80\151 U+0069
\DeclareTextCommand{\textbraceleft}{PU}{\80\173}% U+007B
\DeclareTextCommand{\textbar}{PU}{|}% \80\174 U+007C
\DeclareTextCommand{\textbraceright}{PU}{\80\175}% U+007D
\DeclareTextCommand{\textasciitilde}{PU}{\80\176}% U+007E
\DeclareTextCommand{\textexclamdown}{PU}{\80\241}% U+00A1
\DeclareTextCommand{\textcent}{PU}{\80\242}% U+00A2
\DeclareTextCommand{\textsterling}{PU}{\80\243}% U+00A3
\DeclareTextCommand{\textcurrency}{PU}{\80\244}% U+00A4
\DeclareTextCommand{\textyen}{PU}{\80\245}% U+00A5
\DeclareTextCommand{\textbrokenbar}{PU}{\80\246}% U+00A6
\DeclareTextCommand{\textsection}{PU}{\80\247}% U+00A7
\DeclareTextCommand{\textasciidieresis}{PU}{\80\250}% U+00A8
\DeclareTextCommand{\textcopyright}{PU}{\80\251}%* U+00A9
\DeclareTextCommand{\textordfeminine}{PU}{\80\252}% U+00AA
\DeclareTextCommand{\guillemotleft}{PU}{\80\253}% U+00AB
\DeclareTextCommand{\textlogicalnot}{PU}{\80\254}% U+00AC
\DeclareTextCommand{\textlnot}{PU}{\80\254}% U+00AC
\DeclareTextCommand{\textregistered}{PU}{\80\256}% U+00AE
\DeclareTextCommand{\textasciimacron}{PU}{\80\257}% U+00AF
\DeclareTextCommand{\textdegree}{PU}{\80\260}% U+00B0
\DeclareTextCommand{\textplusminus}{PU}{\80\261}% U+00B1
\DeclareTextCommand{\texttwosuperior}{PU}{\80\262}%* U+00B2
\DeclareTextCommand{\textthreesuperior}{PU}{\80\263}%* U+00B3
\DeclareTextCommand{\textacute}{PU}{\80\264}% U+00B4
\DeclareTextCommand{\textasciiacute}{PU}{\80\264}% U+00B4
\DeclareTextCommand{\textmu}{PU}{\80\265}% U+00B5
\DeclareTextCommand{\textparagraph}{PU}{\80\266}% U+00B6
\DeclareTextCommand{\textperiodcentered}{PU}{\80\267}% U+00B7
\DeclareTextCommand{\textcedilla}{PU}{\80\270}% U+00B8
\DeclareTextCommand{\textonesuperior}{PU}{\80\271}%* U+00B9
\DeclareTextCommand{\textordmasculine}{PU}{\80\272}% U+00BA
\DeclareTextCommand{\guillemotright}{PU}{\80\273}% U+00BB
\DeclareTextCommand{\textonequarter}{PU}{\80\274}% U+00BC
\DeclareTextCommand{\textonehalf}{PU}{\80\275}% U+00BD
\DeclareTextCommand{\textthreequarters}{PU}{\80\276}% U+00BE
\DeclareTextCommand{\textquestiondown}{PU}{\80\277}% U+00BF
\DeclareTextCompositeCommand{\`}{PU}{A}{\80\300}% U+00C0
\DeclareTextCompositeCommand{\'}{PU}{A}{\80\301}% U+00C1
\DeclareTextCompositeCommand{\^}{PU}{A}{\80\302}% U+00C2
\DeclareTextCompositeCommand{\~}{PU}{A}{\80\303}% U+00C3
\DeclareTextCompositeCommand{\"}{PU}{A}{\80\304}% U+00C4
\DeclareTextCompositeCommand{\r}{PU}{A}{\80\305}% U+00C5
\DeclareTextCommand{\AE}{PU}{\80\306}% U+00C6
\DeclareTextCompositeCommand{\c}{PU}{C}{\80\307}% U+00C7
\DeclareTextCompositeCommand{\`}{PU}{E}{\80\310}% U+00C8
\DeclareTextCompositeCommand{\'}{PU}{E}{\80\311}% U+00C9
\DeclareTextCompositeCommand{\^}{PU}{E}{\80\312}% U+00CA
\DeclareTextCompositeCommand{\"}{PU}{E}{\80\313}% U+00CB
\DeclareTextCompositeCommand{\`}{PU}{I}{\80\314}% U+00CC
\DeclareTextCompositeCommand{\'}{PU}{I}{\80\315}% U+00CD
\DeclareTextCompositeCommand{\^}{PU}{I}{\80\316}% U+00CE
\DeclareTextCompositeCommand{\"}{PU}{I}{\80\317}% U+00CF
\DeclareTextCommand{\DH}{PU}{\80\320}% U+00D0
\DeclareTextCompositeCommand{\~}{PU}{N}{\80\321}% U+00D1
\DeclareTextCompositeCommand{\`}{PU}{O}{\80\322}% U+00D2
\DeclareTextCompositeCommand{\'}{PU}{O}{\80\323}% U+00D3
\DeclareTextCompositeCommand{\^}{PU}{O}{\80\324}% U+00D4
\DeclareTextCompositeCommand{\~}{PU}{O}{\80\325}% U+00D5
\DeclareTextCompositeCommand{\"}{PU}{O}{\80\326}% U+00D6
\DeclareTextCommand{\textmultiply}{PU}{\80\327}% U+00D7
\DeclareTextCommand{\O}{PU}{\80\330}% U+00D8
\DeclareTextCompositeCommand{\`}{PU}{U}{\80\331}% U+00D9
\DeclareTextCompositeCommand{\'}{PU}{U}{\80\332}% U+00DA
\DeclareTextCompositeCommand{\^}{PU}{U}{\80\333}% U+00DB
\DeclareTextCompositeCommand{\"}{PU}{U}{\80\334}% U+00DC
\DeclareTextCompositeCommand{\'}{PU}{Y}{\80\335}% U+00DD
\DeclareTextCommand{\TH}{PU}{\80\336}% U+00DE
\DeclareTextCommand{\textThorn}{PU}{\80\336}%* U+00DE
\DeclareTextCommand{\ss}{PU}{\80\337}% U+00DF
\DeclareTextCompositeCommand{\`}{PU}{a}{\80\340}% U+00E0
\DeclareTextCompositeCommand{\'}{PU}{a}{\80\341}% U+00E1
\DeclareTextCompositeCommand{\^}{PU}{a}{\80\342}% U+00E2
\DeclareTextCompositeCommand{\~}{PU}{a}{\80\343}% U+00E3
\DeclareTextCompositeCommand{\"}{PU}{a}{\80\344}% U+00E4
\DeclareTextCompositeCommand{\r}{PU}{a}{\80\345}% U+00E5
\DeclareTextCommand{\ae}{PU}{\80\346}% U+00E6
\DeclareTextCompositeCommand{\c}{PU}{c}{\80\347}% U+00E7
\DeclareTextCompositeCommand{\`}{PU}{e}{\80\350}% U+00E8
\DeclareTextCompositeCommand{\'}{PU}{e}{\80\351}% U+00E9
\DeclareTextCompositeCommand{\^}{PU}{e}{\80\352}% U+00EA
\DeclareTextCompositeCommand{\"}{PU}{e}{\80\353}% U+00EB
\DeclareTextCompositeCommand{\`}{PU}{i}{\80\354}% U+00EC
\DeclareTextCompositeCommand{\`}{PU}{\i}{\80\354}% U+00EC
\DeclareTextCompositeCommand{\'}{PU}{i}{\80\355}% U+00ED
\DeclareTextCompositeCommand{\'}{PU}{\i}{\80\355}% U+00ED
\DeclareTextCompositeCommand{\^}{PU}{i}{\80\356}% U+00EE
\DeclareTextCompositeCommand{\^}{PU}{\i}{\80\356}% U+00EE
\DeclareTextCompositeCommand{\"}{PU}{i}{\80\357}% U+00EF
\DeclareTextCompositeCommand{\"}{PU}{\i}{\80\357}% U+00EF
\DeclareTextCommand{\dh}{PU}{\80\360}% U+00F0
\DeclareTextCompositeCommand{\~}{PU}{n}{\80\361}% U+00F1
\DeclareTextCompositeCommand{\`}{PU}{o}{\80\362}% U+00F2
\DeclareTextCompositeCommand{\'}{PU}{o}{\80\363}% U+00F3
\DeclareTextCompositeCommand{\^}{PU}{o}{\80\364}% U+00F4
\DeclareTextCompositeCommand{\~}{PU}{o}{\80\365}% U+00F5
\DeclareTextCompositeCommand{\"}{PU}{o}{\80\366}% U+00F6
\DeclareTextCommand{\textdivide}{PU}{\80\367}% U+00F7
\DeclareTextCommand{\o}{PU}{\80\370}% U+00F8
\DeclareTextCompositeCommand{\`}{PU}{u}{\80\371}% U+00F9
\DeclareTextCompositeCommand{\'}{PU}{u}{\80\372}% U+00FA
\DeclareTextCompositeCommand{\^}{PU}{u}{\80\373}% U+00FB
\DeclareTextCompositeCommand{\"}{PU}{u}{\80\374}% U+00FC
\DeclareTextCompositeCommand{\'}{PU}{y}{\80\375}% U+00FD
\DeclareTextCommand{\th}{PU}{\80\376}% U+00FE
\DeclareTextCommand{\textthorn}{PU}{\80\376}%* U+00FE
\DeclareTextCompositeCommand{\"}{PU}{y}{\80\377}% U+00FF
\DeclareTextCompositeCommand{\=}{PU}{A}{\81\000}% U+0100
\DeclareTextCompositeCommand{\=}{PU}{a}{\81\001}% U+0101
\DeclareTextCompositeCommand{\u}{PU}{A}{\81\002}% U+0102
\DeclareTextCompositeCommand{\u}{PU}{a}{\81\003}% U+0103
\DeclareTextCompositeCommand{\k}{PU}{A}{\81\004}% U+0104
\DeclareTextCompositeCommand{\k}{PU}{a}{\81\005}% U+0105
\DeclareTextCompositeCommand{\'}{PU}{C}{\81\006}% U+0106
\DeclareTextCompositeCommand{\'}{PU}{c}{\81\007}% U+0107
\DeclareTextCompositeCommand{\^}{PU}{C}{\81\010}% U+0108
\DeclareTextCompositeCommand{\^}{PU}{c}{\81\011}% U+0109
\DeclareTextCompositeCommand{\.}{PU}{C}{\81\012}% U+010A
\DeclareTextCompositeCommand{\.}{PU}{c}{\81\013}% U+010B
\DeclareTextCompositeCommand{\v}{PU}{C}{\81\014}% U+010C
\DeclareTextCompositeCommand{\v}{PU}{c}{\81\015}% U+010D
\DeclareTextCompositeCommand{\v}{PU}{D}{\81\016}% U+010E
\DeclareTextCompositeCommand{\v}{PU}{d}{\81\017}% U+010F
\DeclareTextCommand{\DJ}{PU}{\81\020}% U+0110
\DeclareTextCommand{\dj}{PU}{\81\021}% U+0111
\DeclareTextCommand{\textcrd}{PU}{\81\021}% U+0111
\DeclareTextCompositeCommand{\=}{PU}{E}{\81\022}% U+0112
\DeclareTextCompositeCommand{\=}{PU}{e}{\81\023}% U+0113
\DeclareTextCompositeCommand{\u}{PU}{E}{\81\024}% U+0114
\DeclareTextCompositeCommand{\u}{PU}{e}{\81\025}% U+0115
\DeclareTextCompositeCommand{\.}{PU}{E}{\81\026}% U+0116
\DeclareTextCompositeCommand{\.}{PU}{e}{\81\027}% U+0117
\DeclareTextCompositeCommand{\k}{PU}{E}{\81\030}% U+0118
\DeclareTextCompositeCommand{\k}{PU}{e}{\81\031}% U+0119
\DeclareTextCompositeCommand{\v}{PU}{E}{\81\032}% U+011A
\DeclareTextCompositeCommand{\v}{PU}{e}{\81\033}% U+011B
\DeclareTextCompositeCommand{\^}{PU}{G}{\81\034}% U+011C
\DeclareTextCompositeCommand{\^}{PU}{g}{\81\035}% U+011D
\DeclareTextCompositeCommand{\u}{PU}{G}{\81\036}% U+011E
\DeclareTextCompositeCommand{\u}{PU}{g}{\81\037}% U+011F
\DeclareTextCompositeCommand{\.}{PU}{G}{\81\040}% U+0120
\DeclareTextCompositeCommand{\.}{PU}{g}{\81\041}% U+0121
\DeclareTextCompositeCommand{\c}{PU}{G}{\81\042}% U+0122
\DeclareTextCompositeCommand{\c}{PU}{g}{\81\043}% U+0123
\DeclareTextCompositeCommand{\^}{PU}{H}{\81\044}% U+0124
\DeclareTextCompositeCommand{\^}{PU}{h}{\81\045}% U+0125
\DeclareTextCommand{\textHslash}{PU}{\81\046}% U+0126
\DeclareTextCommand{\texthbar}{PU}{\81\047}%* U+0127
\DeclareTextCompositeCommand{\~}{PU}{I}{\81\050}% U+0128
\DeclareTextCompositeCommand{\~}{PU}{i}{\81\051}% U+0129
\DeclareTextCompositeCommand{\~}{PU}{\i}{\81\051}% U+0129
\DeclareTextCompositeCommand{\=}{PU}{I}{\81\052}% U+012A
\DeclareTextCompositeCommand{\=}{PU}{i}{\81\053}% U+012B
\DeclareTextCompositeCommand{\=}{PU}{\i}{\81\053}% U+012B
\DeclareTextCompositeCommand{\u}{PU}{I}{\81\054}% U+012C
\DeclareTextCompositeCommand{\u}{PU}{i}{\81\055}% U+012D
\DeclareTextCompositeCommand{\u}{PU}{\i}{\81\055}% U+012D
\DeclareTextCompositeCommand{\k}{PU}{I}{\81\056}% U+012E
\DeclareTextCompositeCommand{\k}{PU}{i}{\81\057}% U+012F
\DeclareTextCompositeCommand{\k}{PU}{\i}{\81\057}% U+012F
\DeclareTextCompositeCommand{\.}{PU}{I}{\81\060}% U+0130
\DeclareTextCommand{\i}{PU}{\81\061}% U+0131
\DeclareTextCommand{\IJ}{PU}{\81\062}% U+0132
\DeclareTextCommand{\ij}{PU}{\81\063}% U+0133
\DeclareTextCompositeCommand{\^}{PU}{J}{\81\064}% U+0134
\DeclareTextCompositeCommand{\^}{PU}{j}{\81\065}% U+0135
\DeclareTextCompositeCommand{\^}{PU}{\j}{\81\065}% U+0135
\DeclareTextCompositeCommand{\c}{PU}{K}{\81\066}% U+0136
\DeclareTextCompositeCommand{\c}{PU}{k}{\81\067}% U+0137
\DeclareTextCommand{\textkra}{PU}{\81\070}% U+0138
\DeclareTextCompositeCommand{\'}{PU}{L}{\81\071}% U+0139
\DeclareTextCompositeCommand{\'}{PU}{l}{\81\072}% U+013A
\DeclareTextCompositeCommand{\c}{PU}{L}{\81\073}% U+013B
\DeclareTextCompositeCommand{\c}{PU}{l}{\81\074}% U+013C
\DeclareTextCompositeCommand{\v}{PU}{L}{\81\075}% U+013D
\DeclareTextCompositeCommand{\v}{PU}{l}{\81\076}% U+013E
\DeclareTextCompositeCommand{\.}{PU}{L}{\81\077}% U+013F
\DeclareTextCompositeCommand{\.}{PU}{l}{\81\100}% U+0140
\DeclareTextCommand{\L}{PU}{\81\101}% U+0141
\DeclareTextCommand{\l}{PU}{\81\102}% U+0142
\DeclareTextCompositeCommand{\'}{PU}{N}{\81\103}% U+0143
\DeclareTextCompositeCommand{\'}{PU}{n}{\81\104}% U+0144
\DeclareTextCompositeCommand{\c}{PU}{N}{\81\105}% U+0145
\DeclareTextCompositeCommand{\c}{PU}{n}{\81\106}% U+0146
\DeclareTextCompositeCommand{\v}{PU}{N}{\81\107}% U+0147
\DeclareTextCompositeCommand{\v}{PU}{n}{\81\110}% U+0148
\DeclareTextCommand{\textnapostrophe}{PU}{\81\111}% U+0149
\DeclareTextCommand{\NG}{PU}{\81\112}% U+014A
\DeclareTextCommand{\ng}{PU}{\81\113}% U+014B
\DeclareTextCompositeCommand{\=}{PU}{O}{\81\114}% U+014C
\DeclareTextCompositeCommand{\=}{PU}{o}{\81\115}% U+014D
\DeclareTextCompositeCommand{\u}{PU}{O}{\81\116}% U+014E
\DeclareTextCompositeCommand{\u}{PU}{o}{\81\117}% U+014F
\DeclareTextCompositeCommand{\H}{PU}{O}{\81\120}% U+0150
\DeclareTextCompositeCommand{\H}{PU}{o}{\81\121}% U+0151
\DeclareTextCommand{\OE}{PU}{\81\122}% U+0152
\DeclareTextCommand{\oe}{PU}{\81\123}% U+0153
\DeclareTextCompositeCommand{\'}{PU}{R}{\81\124}% U+0154
\DeclareTextCompositeCommand{\'}{PU}{r}{\81\125}% U+0155
\DeclareTextCompositeCommand{\c}{PU}{R}{\81\126}% U+0156
\DeclareTextCompositeCommand{\c}{PU}{r}{\81\127}% U+0157
\DeclareTextCompositeCommand{\v}{PU}{R}{\81\130}% U+0158
\DeclareTextCompositeCommand{\v}{PU}{r}{\81\131}% U+0159
\DeclareTextCompositeCommand{\'}{PU}{S}{\81\132}% U+015A
\DeclareTextCompositeCommand{\'}{PU}{s}{\81\133}% U+015B
\DeclareTextCompositeCommand{\^}{PU}{S}{\81\134}% U+015C
\DeclareTextCompositeCommand{\^}{PU}{s}{\81\135}% U+015D
\DeclareTextCompositeCommand{\c}{PU}{S}{\81\136}% U+015E
\DeclareTextCompositeCommand{\c}{PU}{s}{\81\137}% U+015F
\DeclareTextCompositeCommand{\v}{PU}{S}{\81\140}% U+0160
\DeclareTextCompositeCommand{\v}{PU}{s}{\81\141}% U+0161
\DeclareTextCompositeCommand{\c}{PU}{T}{\81\142}% U+0162
\DeclareTextCompositeCommand{\c}{PU}{t}{\81\143}% U+0163
\DeclareTextCompositeCommand{\v}{PU}{T}{\81\144}% U+0164
\DeclareTextCompositeCommand{\v}{PU}{t}{\81\145}% U+0165
\DeclareTextCommand{\textTslash}{PU}{\81\146}% U+0166
\DeclareTextCommand{\texttslash}{PU}{\81\147}% U+0167
\DeclareTextCompositeCommand{\~}{PU}{U}{\81\150}% U+0168
\DeclareTextCompositeCommand{\~}{PU}{u}{\81\151}% U+0169
\DeclareTextCompositeCommand{\=}{PU}{U}{\81\152}% U+016A
\DeclareTextCompositeCommand{\=}{PU}{u}{\81\153}% U+016B
\DeclareTextCompositeCommand{\u}{PU}{U}{\81\154}% U+016C
\DeclareTextCompositeCommand{\u}{PU}{u}{\81\155}% U+016D
\DeclareTextCompositeCommand{\r}{PU}{U}{\81\156}% U+016E
\DeclareTextCompositeCommand{\r}{PU}{u}{\81\157}% U+016F
\DeclareTextCompositeCommand{\H}{PU}{U}{\81\160}% U+0170
\DeclareTextCompositeCommand{\H}{PU}{u}{\81\161}% U+0171
\DeclareTextCompositeCommand{\k}{PU}{U}{\81\162}% U+0172
\DeclareTextCompositeCommand{\k}{PU}{u}{\81\163}% U+0173
\DeclareTextCompositeCommand{\^}{PU}{W}{\81\164}% U+0174
\DeclareTextCompositeCommand{\^}{PU}{w}{\81\165}% U+0175
\DeclareTextCompositeCommand{\^}{PU}{Y}{\81\166}% U+0176
\DeclareTextCompositeCommand{\^}{PU}{y}{\81\167}% U+0177
\DeclareTextCompositeCommand{\"}{PU}{Y}{\81\170}% U+0178
\DeclareTextCompositeCommand{\'}{PU}{Z}{\81\171}% U+0179
\DeclareTextCompositeCommand{\'}{PU}{z}{\81\172}% U+017A
\DeclareTextCompositeCommand{\.}{PU}{Z}{\81\173}% U+017B
\DeclareTextCompositeCommand{\.}{PU}{z}{\81\174}% U+017C
\DeclareTextCompositeCommand{\v}{PU}{Z}{\81\175}% U+017D
\DeclareTextCompositeCommand{\v}{PU}{z}{\81\176}% U+017E
\DeclareTextCommand{\textlongs}{PU}{\81\177}% U+017F
\DeclareTextCommand{\textcrb}{PU}{\81\200}% U+0180
\DeclareTextCommand{\texthausaB}{PU}{\81\201}%* U+0181
\DeclareTextCommand{\texthtc}{PU}{\81\210}% U+0188
\DeclareTextCommand{\texthausaD}{PU}{\81\212}%* U+018A
\DeclareTextCommand{\textEreversed}{PU}{\81\216}% U+018E
\DeclareTextCommand{\textrevE}{PU}{\81\216}% U+018E
\DeclareTextCommand{\textflorin}{PU}{\81\222}% U+0192
\DeclareTextCommand{\texthvlig}{PU}{\81\225}% U+0195
\DeclareTextCommand{\texthausaK}{PU}{\81\230}%* U+0198
\DeclareTextCommand{\texthtk}{PU}{\81\231}% U+0199
\DeclareTextCommand{\textbarl}{PU}{\81\232}%* U+019A
\DeclareTextCommand{\textcrlambda}{PU}{\81\233}% U+019B
\DeclareTextCommand{\textPUnrleg}{PU}{\81\236}% U+019E
\DeclareTextCommand{\texthtp}{PU}{\81\245}% U+01A5
\DeclareTextCommand{\textlhookt}{PU}{\81\253}% U+01AB
\DeclareTextCommand{\texthtt}{PU}{\81\255}% U+01AD
\DeclareTextCommand{\textrevyogh}{PU}{\81\271}% U+01B9
\DeclareTextCommand{\textcrtwo}{PU}{\81\273}% U+01BB
\DeclareTextCommand{\textcrinvglotstop}{PU}{\81\276}% U+01BE
\DeclareTextCommand{\textwynn}{PU}{\81\277}% U+01BF
\DeclareTextCommand{\textpipe}{PU}{\81\300}% U+01C0
\DeclareTextCommand{\textdoublepipe}{PU}{\81\301}% U+01C1
\DeclareTextCommand{\textdoublebarpipe}{PU}{\81\302}% U+01C2
\DeclareTextCompositeCommand{\v}{PU}{A}{\81\315}% U+01CD
\DeclareTextCompositeCommand{\v}{PU}{a}{\81\316}% U+01CE
\DeclareTextCompositeCommand{\v}{PU}{I}{\81\317}% U+01CF
\DeclareTextCompositeCommand{\v}{PU}{\i}{\81\320}% U+01D0
\DeclareTextCompositeCommand{\v}{PU}{i}{\81\320}% U+01D0
\DeclareTextCompositeCommand{\v}{PU}{O}{\81\321}% U+01D1
\DeclareTextCompositeCommand{\v}{PU}{o}{\81\322}% U+01D2
\DeclareTextCompositeCommand{\v}{PU}{U}{\81\323}% U+01D3
\DeclareTextCompositeCommand{\v}{PU}{u}{\81\324}% U+01D4
\DeclareTextCommand{\textinve}{PU}{\81\335}%* U+01DD
\DeclareTextCommand{\textGslash}{PU}{\81\344}% U+01E4
\DeclareTextCommand{\textgslash}{PU}{\81\345}% U+01E5
\DeclareTextCompositeCommand{\v}{PU}{G}{\81\346}% U+01E6
\DeclareTextCompositeCommand{\v}{PU}{g}{\81\347}% U+01E7
\DeclareTextCompositeCommand{\v}{PU}{K}{\81\350}% U+01E8
\DeclareTextCompositeCommand{\v}{PU}{k}{\81\351}% U+01E9
\DeclareTextCompositeCommand{\k}{PU}{O}{\81\352}% U+01EA
\DeclareTextCompositeCommand{\k}{PU}{o}{\81\353}% U+01EB
\DeclareTextCompositeCommand{\v}{PU}{\j}{\81\360}% U+01F0
\DeclareTextCompositeCommand{\v}{PU}{j}{\81\360}% U+01F0
\DeclareTextCompositeCommand{\'}{PU}{G}{\81\364}% U+01F4
\DeclareTextCompositeCommand{\'}{PU}{g}{\81\365}% U+01F5
\DeclareTextCompositeCommand{\`}{PU}{N}{\81\370}% U+01F8
\DeclareTextCompositeCommand{\`}{PU}{n}{\81\371}% U+01F9
\DeclareTextCompositeCommand{\'}{PU}{\AE}{\81\374}% U+01FC
\DeclareTextCompositeCommand{\'}{PU}{\ae}{\81\375}% U+01FD
\DeclareTextCompositeCommand{\'}{PU}{\O}{\81\376}% U+01FE
\DeclareTextCompositeCommand{\'}{PU}{\o}{\81\377}% U+01FF
\DeclareTextCompositeCommand{\textinvbreve}{PU}{E}{\82\006}% U+0206
\DeclareTextCompositeCommand{\textinvbreve}{PU}{e}{\82\007}% U+0207
\DeclareTextCompositeCommand{\textinvbreve}{PU}{I}{\82\012}% U+020A
\DeclareTextCompositeCommand{\textinvbreve}{PU}{i}{\82\013}% U+020B
\DeclareTextCompositeCommand{\textinvbreve}{PU}{\i}{\82\013}% U+020B
\DeclareTextCompositeCommand{\textinvbreve}{PU}{O}{\82\016}% U+020E
\DeclareTextCompositeCommand{\textinvbreve}{PU}{o}{\82\017}% U+020F
\DeclareTextCompositeCommand{\textinvbreve}{PU}{U}{\82\026}% U+0216
\DeclareTextCompositeCommand{\textinvbreve}{PU}{u}{\82\027}% U+0217
\DeclareTextCompositeCommand{\v}{PU}{H}{\82\036}% U+021E
\DeclareTextCompositeCommand{\v}{PU}{h}{\82\037}% U+021F
\DeclareTextCommand{\textctd}{PU}{\82\041}% U+0221
\DeclareTextCommand{\textcommatailz}{PU}{\82\045}% U+0225
\DeclareTextCompositeCommand{\.}{PU}{A}{\82\046}% U+0226
\DeclareTextCompositeCommand{\.}{PU}{a}{\82\047}% U+0227
\DeclareTextCompositeCommand{\c}{PU}{E}{\82\050}% U+0228
\DeclareTextCompositeCommand{\c}{PU}{e}{\82\051}% U+0229
\DeclareTextCompositeCommand{\.}{PU}{O}{\82\056}% U+022E
\DeclareTextCompositeCommand{\.}{PU}{o}{\82\057}% U+022F
\DeclareTextCompositeCommand{\=}{PU}{Y}{\82\062}% U+0232
\DeclareTextCompositeCommand{\=}{PU}{y}{\82\063}% U+0233
\DeclareTextCommand{\textctn}{PU}{\82\065}% U+0235
\DeclareTextCommand{\textctt}{PU}{\82\066}% U+0236
\DeclareTextCommand{\j}{PU}{\82\067}% U+0237
\DeclareTextCommand{\textPUdblig}{PU}{\82\070}% U+0238
\DeclareTextCommand{\textPUqplig}{PU}{\82\071}% U+0239
\DeclareTextCommand{\textslashc}{PU}{\82\074}%* U+023C
\DeclareTextCommand{\textturna}{PU}{\82\120}% U+0250
\DeclareTextCommand{\textscripta}{PU}{\82\121}%* U+0251
\DeclareTextCommand{\textturnscripta}{PU}{\82\122}% U+0252
\DeclareTextCommand{\texthtb}{PU}{\82\123}% U+0253
\DeclareTextCommand{\textopeno}{PU}{\82\124}%* U+0254
\DeclareTextCommand{\textctc}{PU}{\82\125}% U+0255
\DeclareTextCommand{\textrtaild}{PU}{\82\126}%* U+0256
\DeclareTextCommand{\texthtd}{PU}{\82\127}% U+0257
\DeclareTextCommand{\textreve}{PU}{\82\130}%* U+0258
\DeclareTextCommand{\textschwa}{PU}{\82\131}%* U+0259
\DeclareTextCommand{\textrhookschwa}{PU}{\82\132}% U+025A
\DeclareTextCommand{\textniepsilon}{PU}{\82\133}%* U+025B
\DeclareTextCommand{\textrevepsilon}{PU}{\82\134}%* U+025C
\DeclareTextCommand{\textrhookrevepsilon}{PU}{\82\135}%* U+025D
\DeclareTextCommand{\textcloserevepsilon}{PU}{\82\136}% U+025E
\DeclareTextCommand{\textbardotlessj}{PU}{\82\137}% U+025F
\DeclareTextCommand{\texthtg}{PU}{\82\140}% U+0260
\DeclareTextCommand{\textscriptg}{PU}{\82\141}%* U+0261
\DeclareTextCommand{\textscg}{PU}{\82\142}%* U+0262
\DeclareTextCommand{\textipagamma}{PU}{\82\143}%* U+0263
\DeclareTextCommand{\textbabygamma}{PU}{\82\144}%* U+0264
\DeclareTextCommand{\textturnh}{PU}{\82\145}% U+0265
\DeclareTextCommand{\texthth}{PU}{\82\146}% U+0266
\DeclareTextCommand{\texththeng}{PU}{\82\147}% U+0267
\DeclareTextCommand{\textbari}{PU}{\82\150}%* U+0268
\DeclareTextCommand{\textniiota}{PU}{\82\151}%* U+0269
\DeclareTextCommand{\textsci}{PU}{\82\152}%* U+026A
\DeclareTextCommand{\textltilde}{PU}{\82\153}% U+026B
\DeclareTextCommand{\textbeltl}{PU}{\82\154}% U+026C
\DeclareTextCommand{\textrtaill}{PU}{\82\155}% U+026D
\DeclareTextCommand{\textlyoghlig}{PU}{\82\156}% U+026E
\DeclareTextCommand{\textturnm}{PU}{\82\157}% U+026F
\DeclareTextCommand{\textturnmrleg}{PU}{\82\160}% U+0270
\DeclareTextCommand{\textltailm}{PU}{\82\161}% U+0271
\DeclareTextCommand{\textltailn}{PU}{\82\162}% U+0272
\DeclareTextCommand{\textrtailn}{PU}{\82\163}% U+0273
\DeclareTextCommand{\textscn}{PU}{\82\164}%* U+0274
\DeclareTextCommand{\textbaro}{PU}{\82\165}% U+0275
\DeclareTextCommand{\textscoelig}{PU}{\82\166}% U+0276
\DeclareTextCommand{\textcloseomega}{PU}{\82\167}% U+0277
\DeclareTextCommand{\textniphi}{PU}{\82\170}%* U+0278
\DeclareTextCommand{\textturnr}{PU}{\82\171}% U+0279
\DeclareTextCommand{\textturnlonglegr}{PU}{\82\172}% U+027A
\DeclareTextCommand{\textturnrrtail}{PU}{\82\173}% U+027B
\DeclareTextCommand{\textlonglegr}{PU}{\82\174}%* U+027C
\DeclareTextCommand{\textrtailr}{PU}{\82\175}% U+027D
\DeclareTextCommand{\textfishhookr}{PU}{\82\176}% U+027E
\DeclareTextCommand{\textlhtlongi}{PU}{\82\177}% U+027F
\DeclareTextCommand{\textscr}{PU}{\82\200}%* U+0280
\DeclareTextCommand{\textinvscr}{PU}{\82\201}%* U+0281
\DeclareTextCommand{\textrtails}{PU}{\82\202}% U+0282
\DeclareTextCommand{\textesh}{PU}{\82\203}%* U+0283
\DeclareTextCommand{\texthtbardotlessj}{PU}{\82\204}% U+0284
\DeclareTextCommand{\textvibyi}{PU}{\82\205}% U+0285
\DeclareTextCommand{\textctesh}{PU}{\82\206}% U+0286
\DeclareTextCommand{\textturnt}{PU}{\82\207}% U+0287
\DeclareTextCommand{\textrtailt}{PU}{\82\210}% U+0288
\DeclareTextCommand{\textbaru}{PU}{\82\211}%* U+0289
\DeclareTextCommand{\textniupsilon}{PU}{\82\212}%* U+028A
\DeclareTextCommand{\textscriptv}{PU}{\82\213}%* U+028B
\DeclareTextCommand{\textturnv}{PU}{\82\214}%* U+028C
\DeclareTextCommand{\textturnw}{PU}{\82\215}%* U+028D
\DeclareTextCommand{\textturny}{PU}{\82\216}%* U+028E
\DeclareTextCommand{\textscy}{PU}{\82\217}%* U+028F
\DeclareTextCommand{\textrtailz}{PU}{\82\220}% U+0290
\DeclareTextCommand{\textctz}{PU}{\82\221}% U+0291
\DeclareTextCommand{\textyogh}{PU}{\82\222}%* U+0292
\DeclareTextCommand{\textctyogh}{PU}{\82\223}% U+0293
\DeclareTextCommand{\textglotstop}{PU}{\82\224}%* U+0294
\DeclareTextCommand{\textrevglotstop}{PU}{\82\225}%* U+0295
\DeclareTextCommand{\textinvglotstop}{PU}{\82\226}%* U+0296
\DeclareTextCommand{\textstretchc}{PU}{\82\227}% U+0297
\DeclareTextCommand{\textbullseye}{PU}{\82\230}% U+0298
\DeclareTextCommand{\textscb}{PU}{\82\231}% U+0299
\DeclareTextCommand{\textcloseepsilon}{PU}{\82\232}% U+029A
\DeclareTextCommand{\texthtscg}{PU}{\82\233}% U+029B
\DeclareTextCommand{\textsch}{PU}{\82\234}% U+029C
\DeclareTextCommand{\textctj}{PU}{\82\235}% U+029D
\DeclareTextCommand{\textturnk}{PU}{\82\236}% U+029E
\DeclareTextCommand{\textscl}{PU}{\82\237}% U+029F
\DeclareTextCommand{\texthtq}{PU}{\82\240}% U+02A0
\DeclareTextCommand{\textbarglotstop}{PU}{\82\241}% U+02A1
\DeclareTextCommand{\textbarrevglotstop}{PU}{\82\242}% U+02A2
\DeclareTextCommand{\textdzlig}{PU}{\82\243}% U+02A3
\DeclareTextCommand{\textdyoghlig}{PU}{\82\244}% U+02A4
\DeclareTextCommand{\textdctzlig}{PU}{\82\245}% U+02A5
\DeclareTextCommand{\texttslig}{PU}{\82\246}% U+02A6
\DeclareTextCommand{\textteshlig}{PU}{\82\247}% U+02A7
\DeclareTextCommand{\texttctclig}{PU}{\82\250}% U+02A8
\DeclareTextCommand{\textlhtlongy}{PU}{\82\256}% U+02AE
\DeclareTextCommand{\textvibyy}{PU}{\82\257}% U+02AF
\DeclareTextCommand{\textrevapostrophe}{PU}{\82\275}% U+02BD
\DeclareTextCommand{\textraiseglotstop}{PU}{\82\300}% U+02C0
\DeclareTextCommand{\textlptr}{PU}{\82\302}% U+02C2
\DeclareTextCommand{\textrptr}{PU}{\82\303}% U+02C3
\DeclareTextCommand{\textasciicaron}{PU}{\82\307}% U+02C7
\DeclareTextCommand{\textprimstress}{PU}{\82\310}% U+02C8
\DeclareTextCommand{\textsecstress}{PU}{\82\314}% U+02CC
\DeclareTextCommand{\textlengthmark}{PU}{\82\320}% U+02D0
\DeclareTextCommand{\texthalflength}{PU}{\82\321}% U+02D1
\DeclareTextCommand{\textasciibreve}{PU}{\82\330}% U+02D8
\DeclareTextCommand{\textdotaccent}{PU}{\82\331}% U+02D9
\DeclareTextCommand{\textring}{PU}{\82\332}% U+02DA
\DeclareTextCommand{\textogonek}{PU}{\82\333}% U+02DB
\DeclareTextCommand{\texttilde}{PU}{\82\334}% U+02DC
\DeclareTextCommand{\texthungarumlaut}{PU}{\82\335}% U+02DD
\DeclareTextCommand{\textacutedbl}{PU}{\82\335}% U+02DD
\DeclareTextCommand{\textringlow}{PU}{\82\363}% U+02F3
\DeclareTextCommand{\textgravedbl}{PU}{\82\365}% U+02F5
\DeclareTextCommand{\texttildelow}{PU}{\82\367}% U+02F7
\DeclareTextCommand{\textopencorner}{PU}{\82\371}% U+02F9
\DeclareTextCommand{\textcorner}{PU}{\82\372}% U+02FA
\DeclareTextCommand{\textdoublegrave}{PU}{ \83\017}% U+030F
\DeclareTextCommand{\textnewtie}{PU}{ \83\021}% U+0311
\DeclareTextCommand{\textdotbelow}{PU}{ \83\043}% U+0323
\DeclareTextCommand{\textmacronbelow}{PU}{ \83\061}% U+0331
\DeclareTextCommand{\texttie}{PU}{ \83\141}% U+0361
\ifx\textBeta\@undefined \else
\input{puenc-greekbasic.def}
\fi
\ifx\CYRDZE\@undefined \else
\DeclareTextCompositeCommand{\`}{PU}{\CYRE}{\84\000}% U+0400
\DeclareTextCommand{\CYRYO}{PU}{\84\001}% U+0401
\DeclareTextCompositeCommand{\"}{PU}{\CYRE}{\84\001}% U+0401
\DeclareTextCommand{\CYRDJE}{PU}{\84\002}% U+0402
\DeclareTextCompositeCommand{\'}{PU}{\CYRG}{\84\003}% U+0403
\DeclareTextCommand{\CYRIE}{PU}{\84\004}% U+0404
\DeclareTextCommand{\CYRDZE}{PU}{\84\005}% U+0405
\DeclareTextCommand{\CYRII}{PU}{\84\006}% U+0406
\DeclareTextCommand{\CYRYI}{PU}{\84\007}% U+0407
\DeclareTextCompositeCommand{\"}{PU}{\CYRII}{\84\007}% U+0407
\DeclareTextCommand{\CYRJE}{PU}{\84\010}% U+0408
\DeclareTextCommand{\CYRLJE}{PU}{\84\011}% U+0409
\DeclareTextCommand{\CYRNJE}{PU}{\84\012}% U+040A
\DeclareTextCommand{\CYRTSHE}{PU}{\84\013}% U+040B
\DeclareTextCompositeCommand{\'}{PU}{\CYRK}{\84\014}% U+040C
\DeclareTextCompositeCommand{\`}{PU}{\CYRI}{\84\015}% U+040D
\DeclareTextCommand{\CYRUSHRT}{PU}{\84\016}% U+040E
\DeclareTextCompositeCommand{\U}{PU}{\CYRU}{\84\016}% U+040E
\DeclareTextCommand{\CYRDZHE}{PU}{\84\017}% U+040F
\DeclareTextCommand{\CYRA}{PU}{\84\020}% U+0410
\DeclareTextCommand{\CYRB}{PU}{\84\021}% U+0411
\DeclareTextCommand{\CYRV}{PU}{\84\022}% U+0412
\DeclareTextCommand{\CYRG}{PU}{\84\023}% U+0413
\DeclareTextCommand{\CYRD}{PU}{\84\024}% U+0414
\DeclareTextCommand{\CYRE}{PU}{\84\025}% U+0415
\DeclareTextCommand{\CYRZH}{PU}{\84\026}% U+0416
\DeclareTextCommand{\CYRZ}{PU}{\84\027}% U+0417
\DeclareTextCommand{\CYRI}{PU}{\84\030}% U+0418
\DeclareTextCommand{\CYRISHRT}{PU}{\84\031}% U+0419
\DeclareTextCompositeCommand{\U}{PU}{\CYRI}{\84\031}% U+0419
\DeclareTextCommand{\CYRK}{PU}{\84\032}% U+041A
\DeclareTextCommand{\CYRL}{PU}{\84\033}% U+041B
\DeclareTextCommand{\CYRM}{PU}{\84\034}% U+041C
\DeclareTextCommand{\CYRN}{PU}{\84\035}% U+041D
\DeclareTextCommand{\CYRO}{PU}{\84\036}% U+041E
\DeclareTextCommand{\CYRP}{PU}{\84\037}% U+041F
\DeclareTextCommand{\CYRR}{PU}{\84\040}% U+0420
\DeclareTextCommand{\CYRS}{PU}{\84\041}% U+0421
\DeclareTextCommand{\CYRT}{PU}{\84\042}% U+0422
\DeclareTextCommand{\CYRU}{PU}{\84\043}% U+0423
\DeclareTextCommand{\CYRF}{PU}{\84\044}% U+0424
\DeclareTextCommand{\CYRH}{PU}{\84\045}% U+0425
\DeclareTextCommand{\CYRC}{PU}{\84\046}% U+0426
\DeclareTextCommand{\CYRCH}{PU}{\84\047}% U+0427
\DeclareTextCommand{\CYRSH}{PU}{\84\050}% U+0428
\DeclareTextCommand{\CYRSHCH}{PU}{\84\051}% U+0429
\DeclareTextCommand{\CYRHRDSN}{PU}{\84\052}% U+042A
\DeclareTextCommand{\CYRERY}{PU}{\84\053}% U+042B
\DeclareTextCommand{\CYRSFTSN}{PU}{\84\054}% U+042C
\DeclareTextCommand{\CYREREV}{PU}{\84\055}% U+042D
\DeclareTextCommand{\CYRYU}{PU}{\84\056}% U+042E
\DeclareTextCommand{\CYRYA}{PU}{\84\057}% U+042F
\DeclareTextCommand{\cyra}{PU}{\84\060}% U+0430
\DeclareTextCommand{\cyrb}{PU}{\84\061}% U+0431
\DeclareTextCommand{\cyrv}{PU}{\84\062}% U+0432
\DeclareTextCommand{\cyrg}{PU}{\84\063}% U+0433
\DeclareTextCommand{\cyrd}{PU}{\84\064}% U+0434
\DeclareTextCommand{\cyre}{PU}{\84\065}% U+0435
\DeclareTextCommand{\cyrzh}{PU}{\84\066}% U+0436
\DeclareTextCommand{\cyrz}{PU}{\84\067}% U+0437
\DeclareTextCommand{\cyri}{PU}{\84\070}% U+0438
\DeclareTextCommand{\cyrishrt}{PU}{\84\071}% U+0439
\DeclareTextCompositeCommand{\U}{PU}{\cyri}{\84\071}% U+0439
\DeclareTextCommand{\cyrk}{PU}{\84\072}% U+043A
\DeclareTextCommand{\cyrl}{PU}{\84\073}% U+043B
\DeclareTextCommand{\cyrm}{PU}{\84\074}% U+043C
\DeclareTextCommand{\cyrn}{PU}{\84\075}% U+043D
\DeclareTextCommand{\cyro}{PU}{\84\076}% U+043E
\DeclareTextCommand{\cyrp}{PU}{\84\077}% U+043F
\DeclareTextCommand{\cyrr}{PU}{\84\100}% U+0440
\DeclareTextCommand{\cyrs}{PU}{\84\101}% U+0441
\DeclareTextCommand{\cyrt}{PU}{\84\102}% U+0442
\DeclareTextCommand{\cyru}{PU}{\84\103}% U+0443
\DeclareTextCommand{\cyrf}{PU}{\84\104}% U+0444
\DeclareTextCommand{\cyrh}{PU}{\84\105}% U+0445
\DeclareTextCommand{\cyrc}{PU}{\84\106}% U+0446
\DeclareTextCommand{\cyrch}{PU}{\84\107}% U+0447
\DeclareTextCommand{\cyrsh}{PU}{\84\110}% U+0448
\DeclareTextCommand{\cyrshch}{PU}{\84\111}% U+0449
\DeclareTextCommand{\cyrhrdsn}{PU}{\84\112}% U+044A
\DeclareTextCommand{\cyrery}{PU}{\84\113}% U+044B
\DeclareTextCommand{\cyrsftsn}{PU}{\84\114}% U+044C
\DeclareTextCommand{\cyrerev}{PU}{\84\115}% U+044D
\DeclareTextCommand{\cyryu}{PU}{\84\116}% U+044E
\DeclareTextCommand{\cyrya}{PU}{\84\117}% U+044F
\DeclareTextCompositeCommand{\`}{PU}{\cyre}{\84\120}% U+0450
\DeclareTextCommand{\cyryo}{PU}{\84\121}% U+0451
\DeclareTextCompositeCommand{\"}{PU}{\cyre}{\84\121}% U+0451
\DeclareTextCommand{\cyrdje}{PU}{\84\122}% U+0452
\DeclareTextCompositeCommand{\'}{PU}{\cyrg}{\84\123}% U+0453
\DeclareTextCommand{\cyrie}{PU}{\84\124}% U+0454
\DeclareTextCommand{\cyrdze}{PU}{\84\125}% U+0455
\DeclareTextCommand{\cyrii}{PU}{\84\126}% U+0456
\DeclareTextCommand{\cyryi}{PU}{\84\127}% U+0457
\DeclareTextCompositeCommand{\"}{PU}{\cyrii}{\84\127}% U+0457
\DeclareTextCommand{\cyrje}{PU}{\84\130}% U+0458
\DeclareTextCommand{\cyrlje}{PU}{\84\131}% U+0459
\DeclareTextCommand{\cyrnje}{PU}{\84\132}% U+045A
\DeclareTextCommand{\cyrtshe}{PU}{\84\133}% U+045B
\DeclareTextCompositeCommand{\'}{PU}{\cyrk}{\84\134}% U+045C
\DeclareTextCompositeCommand{\`}{PU}{\cyri}{\84\135}% U+045D
\DeclareTextCommand{\cyrushrt}{PU}{\84\136}% U+045E
\DeclareTextCompositeCommand{\U}{PU}{\curu}{\84\136}% U+045E
\DeclareTextCommand{\cyrdzhe}{PU}{\84\137}% U+045F
\DeclareTextCommand{\CYROMEGA}{PU}{\84\140}% U+0460
\DeclareTextCommand{\cyromega}{PU}{\84\141}% U+0461
\DeclareTextCommand{\CYRYAT}{PU}{\84\142}% U+0462
\DeclareTextCommand{\cyryat}{PU}{\84\143}% U+0463
\DeclareTextCommand{\CYRIOTE}{PU}{\84\144}% U+0464
\DeclareTextCommand{\cyriote}{PU}{\84\145}% U+0465
\DeclareTextCommand{\CYRLYUS}{PU}{\84\146}% U+0466
\DeclareTextCommand{\cyrlyus}{PU}{\84\147}% U+0467
\DeclareTextCommand{\CYRIOTLYUS}{PU}{\84\150}% U+0468
\DeclareTextCommand{\cyriotlyus}{PU}{\84\151}% U+0469
\DeclareTextCommand{\CYRBYUS}{PU}{\84\152}% U+046A
\DeclareTextCommand{\cyrbyus}{PU}{\84\153}% U+046B
\DeclareTextCommand{\CYRIOTBYUS}{PU}{\84\154}% U+046C
\DeclareTextCommand{\cyriotbyus}{PU}{\84\155}% U+046D
\DeclareTextCommand{\CYRKSI}{PU}{\84\156}% U+046E
\DeclareTextCommand{\cyrksi}{PU}{\84\157}% U+046F
\DeclareTextCommand{\CYRPSI}{PU}{\84\160}% U+0470
\DeclareTextCommand{\cyrpsi}{PU}{\84\161}% U+0471
\DeclareTextCommand{\CYRFITA}{PU}{\84\162}% U+0472
\DeclareTextCommand{\cyrfita}{PU}{\84\163}% U+0473
\DeclareTextCommand{\CYRIZH}{PU}{\84\164}% U+0474
\DeclareTextCommand{\cyrizh}{PU}{\84\165}% U+0475
\DeclareTextCompositeCommand{\C}{PU}{\CYRIZH}{\84\166}% U+0476
\DeclareTextCompositeCommand{\C}{PU}{\cyrizh}{\84\167}% U+0477
\DeclareTextCommand{\CYRUK}{PU}{\84\170}% U+0478
\DeclareTextCommand{\cyruk}{PU}{\84\171}% U+0479
\DeclareTextCommand{\CYROMEGARND}{PU}{\84\172}% U+047A
\DeclareTextCommand{\cyromegarnd}{PU}{\84\173}% U+047B
\DeclareTextCommand{\CYROMEGATITLO}{PU}{\84\174}% U+047C
\DeclareTextCommand{\cyromegatitlo}{PU}{\84\175}% U+047D
\DeclareTextCommand{\CYROT}{PU}{\84\176}% U+047E
\DeclareTextCommand{\cyrot}{PU}{\84\177}% U+047F
\DeclareTextCommand{\CYRKOPPA}{PU}{\84\200}% U+0480
\DeclareTextCommand{\cyrkoppa}{PU}{\84\201}% U+0481
\DeclareTextCommand{\cyrthousands}{PU}{\84\202}% U+0482
\DeclareTextCommand{\CYRISHRTDSC}{PU}{\84\212}% U+048A
\DeclareTextCommand{\cyrishrtdsc}{PU}{\84\213}% U+048B
\DeclareTextCommand{\CYRSEMISFTSN}{PU}{\84\214}% U+048C
\DeclareTextCommand{\cyrsemisftsn}{PU}{\84\215}% U+048D
\DeclareTextCommand{\CYRRTICK}{PU}{\84\216}% U+048E
\DeclareTextCommand{\cyrrtick}{PU}{\84\217}% U+048F
\DeclareTextCommand{\CYRGUP}{PU}{\84\220}% U+0490
\DeclareTextCommand{\cyrgup}{PU}{\84\221}% U+0491
\DeclareTextCommand{\CYRGHCRS}{PU}{\84\222}% U+0492
\DeclareTextCommand{\cyrghcrs}{PU}{\84\223}% U+0493
\DeclareTextCommand{\CYRGHK}{PU}{\84\224}% U+0494
\DeclareTextCommand{\cyrghk}{PU}{\84\225}% U+0495
\DeclareTextCommand{\CYRZHDSC}{PU}{\84\226}% U+0496
\DeclareTextCommand{\cyrzhdsc}{PU}{\84\227}% U+0497
\DeclareTextCommand{\CYRZDSC}{PU}{\84\230}% U+0498
\DeclareTextCompositeCommand{\c}{PU}{\CYRZ}{\84\230}% U+0498
\DeclareTextCommand{\cyrzdsc}{PU}{\84\231}% U+0499
\DeclareTextCompositeCommand{\c}{PU}{\cyrz}{\84\231}% U+0499
\DeclareTextCommand{\CYRKDSC}{PU}{\84\232}% U+049A
\DeclareTextCommand{\cyrkdsc}{PU}{\84\233}% U+049B
\DeclareTextCommand{\CYRKVCRS}{PU}{\84\234}% U+049C
\DeclareTextCommand{\cyrkvcrs}{PU}{\84\235}% U+049D
\DeclareTextCommand{\CYRKHCRS}{PU}{\84\236}% U+049E
\DeclareTextCommand{\cyrkhcrs}{PU}{\84\237}% U+049F
\DeclareTextCommand{\CYRKBEAK}{PU}{\84\240}% U+04A0
\DeclareTextCommand{\cyrkbeak}{PU}{\84\241}% U+04A1
\DeclareTextCommand{\CYRNDSC}{PU}{\84\242}% U+04A2
\DeclareTextCommand{\cyrndsc}{PU}{\84\243}% U+04A3
\DeclareTextCommand{\CYRNG}{PU}{\84\244}% U+04A4
\DeclareTextCommand{\cyrng}{PU}{\84\245}% U+04A5
\DeclareTextCommand{\CYRPHK}{PU}{\84\246}% U+04A6
\DeclareTextCommand{\cyrphk}{PU}{\84\247}% U+04A7
\DeclareTextCommand{\CYRABHHA}{PU}{\84\250}% U+04A8
\DeclareTextCommand{\cyrabhha}{PU}{\84\251}% U+04A9
\DeclareTextCommand{\CYRSDSC}{PU}{\84\252}% U+04AA
\DeclareTextCompositeCommand{\CYRSDSC}{PU}{\CYRS}{\84\252}% U+04AA
\DeclareTextCommand{\cyrsdsc}{PU}{\84\253}% U+04AB
\DeclareTextCompositeCommand{\k}{PU}{\cyrs}{\84\253}% U+04AB
\DeclareTextCommand{\CYRTDSC}{PU}{\84\254}% U+04AC
\DeclareTextCommand{\cyrtdsc}{PU}{\84\255}% U+04AD
\DeclareTextCommand{\CYRY}{PU}{\84\256}% U+04AE
\DeclareTextCommand{\cyry}{PU}{\84\257}% U+04AF
\DeclareTextCommand{\CYRYHCRS}{PU}{\84\260}% U+04B0
\DeclareTextCommand{\cyryhcrs}{PU}{\84\261}% U+04B1
\DeclareTextCommand{\CYRHDSC}{PU}{\84\262}% U+04B2
\DeclareTextCommand{\cyrhdsc}{PU}{\84\263}% U+04B3
\DeclareTextCommand{\CYRTETSE}{PU}{\84\264}% U+04B4
\DeclareTextCommand{\cyrtetse}{PU}{\84\265}% U+04B5
\DeclareTextCommand{\CYRCHRDSC}{PU}{\84\266}% U+04B6
\DeclareTextCommand{\cyrchrdsc}{PU}{\84\267}% U+04B7
\DeclareTextCommand{\CYRCHVCRS}{PU}{\84\270}% U+04B8
\DeclareTextCommand{\cyrchvcrs}{PU}{\84\271}% U+04B9
\DeclareTextCommand{\CYRSHHA}{PU}{\84\272}% U+04BA
\DeclareTextCommand{\cyrshha}{PU}{\84\273}% U+04BB
\DeclareTextCommand{\CYRABHCH}{PU}{\84\274}% U+04BC
\DeclareTextCommand{\cyrabhch}{PU}{\84\275}% U+04BD
\DeclareTextCommand{\CYRABHCHDSC}{PU}{\84\276}% U+04BE
\DeclareTextCompositeCommand{\k}{PU}{\CYRABHCH}{\84\276}% U+04BE
\DeclareTextCommand{\cyrabhchdsc}{PU}{\84\277}% U+04BF
\DeclareTextCompositeCommand{\k}{PU}{\cyrabhch}{\84\277}% U+04BF
\DeclareTextCommand{\CYRpalochka}{PU}{\84\300}% U+04C0
\DeclareTextCompositeCommand{\U}{PU}{\CYRZH}{\84\301}% U+04C1
\DeclareTextCompositeCommand{\U}{PU}{\cyrzh}{\84\302}% U+04C2
\DeclareTextCommand{\CYRKHK}{PU}{\84\303}% U+04C3
\DeclareTextCommand{\cyrkhk}{PU}{\84\304}% U+04C4
\DeclareTextCommand{\CYRLDSC}{PU}{\84\305}% U+04C5
\DeclareTextCommand{\cyrldsc}{PU}{\84\306}% U+04C6
\DeclareTextCommand{\CYRNHK}{PU}{\84\307}% U+04C7
\DeclareTextCommand{\cyrnhk}{PU}{\84\310}% U+04C8
\DeclareTextCommand{\CYRCHLDSC}{PU}{\84\313}% U+04CB
\DeclareTextCommand{\cyrchldsc}{PU}{\84\314}% U+04CC
\DeclareTextCommand{\CYRMDSC}{PU}{\84\315}% U+04CD
\DeclareTextCommand{\cyrmdsc}{PU}{\84\316}% U+04CE
\DeclareTextCompositeCommand{\U}{PU}{\CYRA}{\84\320}% U+04D0
\DeclareTextCompositeCommand{\U}{PU}{\cyra}{\84\321}% U+04D1
\DeclareTextCompositeCommand{\"}{PU}{\CYRA}{\84\322}% U+04D2
\DeclareTextCompositeCommand{\"}{PU}{\cyra}{\84\323}% U+04D3
\DeclareTextCommand{\CYRAE}{PU}{\84\324}% U+04D4
\DeclareTextCommand{\cyrae}{PU}{\84\325}% U+04D5
\DeclareTextCompositeCommand{\U}{PU}{\CYRE}{\84\326}% U+04D6
\DeclareTextCompositeCommand{\U}{PU}{\cyre}{\84\327}% U+04D7
\DeclareTextCommand{\CYRSCHWA}{PU}{\84\330}% U+04D8
\DeclareTextCommand{\cyrschwa}{PU}{\84\331}% U+04D9
\DeclareTextCompositeCommand{\"}{PU}{\CYRSCHWA}{\84\332}% U+04DA
\DeclareTextCompositeCommand{\"}{PU}{\cyrschwa}{\84\333}% U+04DB
\DeclareTextCompositeCommand{\"}{PU}{\CYRZH}{\84\334}% U+04DC
\DeclareTextCompositeCommand{\"}{PU}{\cyrzh}{\84\335}% U+04DD
\DeclareTextCompositeCommand{\"}{PU}{\CYRZ}{\84\336}% U+04DE
\DeclareTextCompositeCommand{\"}{PU}{\cyrz}{\84\337}% U+04DF
\DeclareTextCommand{\CYRABHDZE}{PU}{\84\340}% U+04E0
\DeclareTextCommand{\cyrabhdze}{PU}{\84\341}% U+04E1
\DeclareTextCompositeCommand{\=}{PU}{\CYRI}{\84\342}% U+04E2
\DeclareTextCompositeCommand{\=}{PU}{\cyri}{\84\343}% U+04E3
\DeclareTextCompositeCommand{\"}{PU}{\CYRI}{\84\344}% U+04E4
\DeclareTextCompositeCommand{\"}{PU}{\cyri}{\84\345}% U+04E5
\DeclareTextCompositeCommand{\"}{PU}{\CYRO}{\84\346}% U+04E6
\DeclareTextCompositeCommand{\"}{PU}{\cyro}{\84\347}% U+04E7
\DeclareTextCommand{\CYROTLD}{PU}{\84\350}% U+04E8
\DeclareTextCommand{\cyrotld}{PU}{\84\351}% U+04E9
\DeclareTextCompositeCommand{\"}{PU}{\CYROTLD}{\84\352}% U+04EA
\DeclareTextCompositeCommand{\"}{PU}{\cyrotld}{\84\353}% U+04EB
\DeclareTextCompositeCommand{\"}{PU}{\CYREREV}{\84\354}% U+04EC
\DeclareTextCompositeCommand{\"}{PU}{\cyreref}{\84\355}% U+04ED
\DeclareTextCompositeCommand{\=}{PU}{\CYRU}{\84\356}% U+04EE
\DeclareTextCompositeCommand{\=}{PU}{\cyru}{\84\357}% U+04EF
\DeclareTextCompositeCommand{\"}{PU}{\CYRU}{\84\360}% U+04F0
\DeclareTextCompositeCommand{\"}{PU}{\cyru}{\84\361}% U+04F1
\DeclareTextCompositeCommand{\H}{PU}{\CYRU}{\84\362}% U+04F2
\DeclareTextCompositeCommand{\H}{PU}{\cyru}{\84\363}% U+04F3
\DeclareTextCompositeCommand{\"}{PU}{\CYRCH}{\84\364}% U+04F4
\DeclareTextCompositeCommand{\"}{PU}{\cyrch}{\84\365}% U+04F5
\DeclareTextCommand{\CYRGDSC}{PU}{\84\366}% U+04F6
\DeclareTextCommand{\cyrgdsc}{PU}{\84\367}% U+04F7
\DeclareTextCompositeCommand{\"}{PU}{\CYRERY}{\84\370}% U+04F8
\DeclareTextCompositeCommand{\"}{PU}{\cyrery}{\84\371}% U+04F9
\DeclareTextCommand{\CYRHHK}{PU}{\84\374}% U+04FC
\DeclareTextCommand{\cyrhhk}{PU}{\84\375}% U+04FD
\fi
\ifx\hebdalet\@undefined\else
\DeclareTextCommand{\sofpasuq}{PU}{\85\303}% U+05C3
\DeclareTextCommand{\hebalef}{PU}{\85\320}% U+05D0
\DeclareTextCommand{\hebbet}{PU}{\85\321}% U+05D1
\DeclareTextCommand{\hebgimel}{PU}{\85\322}% U+05D2
\DeclareTextCommand{\hebdalet}{PU}{\85\323}% U+05D3
\DeclareTextCommand{\hebhe}{PU}{\85\324}% U+05D4
\DeclareTextCommand{\hebvav}{PU}{\85\325}% U+05D5
\DeclareTextCommand{\hebzayin}{PU}{\85\326}% U+05D6
\DeclareTextCommand{\hebhet}{PU}{\85\327}% U+05D7
\DeclareTextCommand{\hebtet}{PU}{\85\330}% U+05D8
\DeclareTextCommand{\hebyod}{PU}{\85\331}% U+05D9
\DeclareTextCommand{\hebfinalkaf}{PU}{\85\332}% U+05DA
\DeclareTextCommand{\hebkaf}{PU}{\85\333}% U+05DB
\DeclareTextCommand{\heblamed}{PU}{\85\334}% U+05DC
\DeclareTextCommand{\hebfinalmem}{PU}{\85\335}% U+05DD
\DeclareTextCommand{\hebmem}{PU}{\85\336}% U+05DE
\DeclareTextCommand{\hebfinalnun}{PU}{\85\337}% U+05DF
\DeclareTextCommand{\hebnun}{PU}{\85\340}% U+05E0
\DeclareTextCommand{\hebsamekh}{PU}{\85\341}% U+05E1
\DeclareTextCommand{\hebayin}{PU}{\85\342}% U+05E2
\DeclareTextCommand{\hebfinalpe}{PU}{\85\343}% U+05E3
\DeclareTextCommand{\hebpe}{PU}{\85\344}% U+05E4
\DeclareTextCommand{\hebfinaltsadi}{PU}{\85\345}% U+05E5
\DeclareTextCommand{\hebtsadi}{PU}{\85\346}% U+05E6
\DeclareTextCommand{\hebqof}{PU}{\85\347}% U+05E7
\DeclareTextCommand{\hebresh}{PU}{\85\350}% U+05E8
\DeclareTextCommand{\hebshin}{PU}{\85\351}% U+05E9
\DeclareTextCommand{\hebtav}{PU}{\85\352}% U+05EA
\DeclareTextCommand{\doublevav}{PU}{\85\360}% U+05F0
\DeclareTextCommand{\vavyod}{PU}{\85\361}% U+05F1
\DeclareTextCommand{\doubleyod}{PU}{\85\362}% U+05F2
\fi
\DeclareTextCommand{\textbaht}{PU}{\9016\077}% U+0E3F
\DeclareTextCommand{\textsca}{PU}{\9035\000}% U+1D00
\DeclareTextCommand{\textscd}{PU}{\9035\005}%* U+1D05
\DeclareTextCommand{\textsce}{PU}{\9035\007}% U+1D07
\DeclareTextCommand{\textscj}{PU}{\9035\012}% U+1D0A
\DeclareTextCommand{\textPUsck}{PU}{\9035\013}% U+1D0B
\DeclareTextCommand{\textPUscm}{PU}{\9035\015}% U+1D0D
\DeclareTextCommand{\textPUscp}{PU}{\9035\030}% U+1D18
\DeclareTextCommand{\textPUrevscr}{PU}{\9035\031}% U+1D19
\DeclareTextCommand{\textscu}{PU}{\9035\034}%* U+1D1C
\DeclareTextCommand{\textiinferior}{PU}{\9035\142}%* U+1D62
\DeclareTextCommand{\textrinferior}{PU}{\9035\143}%* U+1D63
\DeclareTextCommand{\textuinferior}{PU}{\9035\144}%* U+1D64
\DeclareTextCommand{\textvinferior}{PU}{\9035\145}%* U+1D65
\DeclareTextCommand{\textbetainferior}{PU}{\9035\146}%* U+1D66
\DeclareTextCommand{\textgammainferior}{PU}{\9035\147}%* U+1D67
\DeclareTextCommand{\textrhoinferior}{PU}{\9035\150}%* U+1D68
\DeclareTextCommand{\textphiinferior}{PU}{\9035\151}%* U+1D69
\DeclareTextCommand{\textchiinferior}{PU}{\9035\152}%* U+1D6A
\DeclareTextCommand{\textbarsci}{PU}{\9035\173}%* U+1D7B
\DeclareTextCommand{\textbarp}{PU}{\9035\175}%* U+1D7D
\DeclareTextCommand{\textbarscu}{PU}{\9035\176}%* U+1D7E
\DeclareTextCommand{\textPUrhooka}{PU}{\9035\217}% U+1D8F
\DeclareTextCommand{\texthtrtaild}{PU}{\9035\221}%* U+1D91
\DeclareTextCommand{\textPUrhooke}{PU}{\9035\222}% U+1D92
\DeclareTextCommand{\textPUrhookepsilon}{PU}{\9035\223}% U+1D93
\DeclareTextCommand{\textPUrhookopeno}{PU}{\9035\227}% U+1D97
\DeclareTextCompositeCommand{\textsubring}{PU}{A}{\9036\000}% U+1E00
\DeclareTextCompositeCommand{\textsubring}{PU}{a}{\9036\001}% U+1E01
\DeclareTextCompositeCommand{\.}{PU}{B}{\9036\002}% U+1E02
\DeclareTextCompositeCommand{\.}{PU}{b}{\9036\003}% U+1E03
\DeclareTextCompositeCommand{\d}{PU}{B}{\9036\004}% U+1E04
\DeclareTextCompositeCommand{\d}{PU}{b}{\9036\005}% U+1E05
\DeclareTextCompositeCommand{\b}{PU}{B}{\9036\006}% U+1E06
\DeclareTextCompositeCommand{\b}{PU}{b}{\9036\007}% U+1E07
\DeclareTextCompositeCommand{\.}{PU}{D}{\9036\012}% U+1E0A
\DeclareTextCompositeCommand{\.}{PU}{d}{\9036\013}% U+1E0B
\DeclareTextCompositeCommand{\d}{PU}{D}{\9036\014}% U+1E0C
\DeclareTextCompositeCommand{\d}{PU}{d}{\9036\015}% U+1E0D
\DeclareTextCompositeCommand{\b}{PU}{D}{\9036\016}% U+1E0E
\DeclareTextCompositeCommand{\b}{PU}{d}{\9036\017}% U+1E0F
\DeclareTextCompositeCommand{\c}{PU}{D}{\9036\020}% U+1E10
\DeclareTextCompositeCommand{\c}{PU}{d}{\9036\021}% U+1E11
\DeclareTextCompositeCommand{\textsubcircum}{PU}{D}{\9036\022}% U+1E12
\DeclareTextCompositeCommand{\textsubcircum}{PU}{d}{\9036\023}% U+1E13
\DeclareTextCompositeCommand{\textgravemacron}{PU}{E}{\9036\024}% U+1E14
\DeclareTextCompositeCommand{\textgravemacron}{PU}{e}{\9036\025}% U+1E15
\DeclareTextCompositeCommand{\textacutemacron}{PU}{E}{\9036\026}% U+1E16
\DeclareTextCompositeCommand{\textacutemacron}{PU}{e}{\9036\027}% U+1E17
\DeclareTextCompositeCommand{\textsubcircum}{PU}{E}{\9036\030}% U+1E18
\DeclareTextCompositeCommand{\textsubcircum}{PU}{e}{\9036\031}% U+1E19
\DeclareTextCompositeCommand{\textsubtilde}{PU}{E}{\9036\032}% U+1E1A
\DeclareTextCompositeCommand{\textsubtilde}{PU}{e}{\9036\033}% U+1E1B
\DeclareTextCompositeCommand{\.}{PU}{F}{\9036\036}% U+1E1E
\DeclareTextCompositeCommand{\.}{PU}{f}{\9036\037}% U+1E1F
\DeclareTextCompositeCommand{\=}{PU}{G}{\9036\040}% U+1E20
\DeclareTextCompositeCommand{\=}{PU}{g}{\9036\041}% U+1E21
\DeclareTextCompositeCommand{\.}{PU}{H}{\9036\042}% U+1E22
\DeclareTextCompositeCommand{\.}{PU}{h}{\9036\043}% U+1E23
\DeclareTextCompositeCommand{\d}{PU}{H}{\9036\044}% U+1E24
\DeclareTextCompositeCommand{\d}{PU}{h}{\9036\045}% U+1E25
\DeclareTextCompositeCommand{\"}{PU}{H}{\9036\046}% U+1E26
\DeclareTextCompositeCommand{\"}{PU}{h}{\9036\047}% U+1E27
\DeclareTextCompositeCommand{\c}{PU}{H}{\9036\050}% U+1E28
\DeclareTextCompositeCommand{\c}{PU}{h}{\9036\051}% U+1E29
\DeclareTextCompositeCommand{\textsubbreve}{PU}{H}{\9036\052}% U+1E2A
\DeclareTextCompositeCommand{\textsubbreve}{PU}{h}{\9036\053}% U+1E2B
\DeclareTextCompositeCommand{\textsubtilde}{PU}{I}{\9036\054}% U+1E2C
\DeclareTextCompositeCommand{\textsubtilde}{PU}{i}{\9036\055}% U+1E2D
\DeclareTextCompositeCommand{\'}{PU}{K}{\9036\060}% U+1E30
\DeclareTextCompositeCommand{\'}{PU}{k}{\9036\061}% U+1E31
\DeclareTextCompositeCommand{\d}{PU}{K}{\9036\062}% U+1E32
\DeclareTextCompositeCommand{\d}{PU}{k}{\9036\063}% U+1E33
\DeclareTextCompositeCommand{\b}{PU}{K}{\9036\064}% U+1E34
\DeclareTextCompositeCommand{\b}{PU}{k}{\9036\065}% U+1E35
\DeclareTextCompositeCommand{\d}{PU}{L}{\9036\066}% U+1E36
\DeclareTextCompositeCommand{\d}{PU}{l}{\9036\067}% U+1E37
\DeclareTextCompositeCommand{\b}{PU}{L}{\9036\072}% U+1E3A
\DeclareTextCompositeCommand{\b}{PU}{l}{\9036\073}% U+1E3B
\DeclareTextCompositeCommand{\textsubcircum}{PU}{L}{\9036\074}% U+1E3C
\DeclareTextCompositeCommand{\textsubcircum}{PU}{l}{\9036\075}% U+1E3D
\DeclareTextCompositeCommand{\'}{PU}{M}{\9036\076}% U+1E3E
\DeclareTextCompositeCommand{\'}{PU}{m}{\9036\077}% U+1E3F
\DeclareTextCompositeCommand{\.}{PU}{M}{\9036\100}% U+1E40
\DeclareTextCompositeCommand{\.}{PU}{m}{\9036\101}% U+1E41
\DeclareTextCompositeCommand{\d}{PU}{M}{\9036\102}% U+1E42
\DeclareTextCompositeCommand{\d}{PU}{m}{\9036\103}% U+1E43
\DeclareTextCompositeCommand{\.}{PU}{N}{\9036\104}% U+1E44
\DeclareTextCompositeCommand{\.}{PU}{n}{\9036\105}% U+1E45
\DeclareTextCompositeCommand{\d}{PU}{N}{\9036\106}% U+1E46
\DeclareTextCompositeCommand{\d}{PU}{n}{\9036\107}% U+1E47
\DeclareTextCompositeCommand{\b}{PU}{N}{\9036\110}% U+1E48
\DeclareTextCompositeCommand{\b}{PU}{n}{\9036\111}% U+1E49
\DeclareTextCompositeCommand{\textsubcircum}{PU}{N}{\9036\112}% U+1E4A
\DeclareTextCompositeCommand{\textsubcircum}{PU}{n}{\9036\113}% U+1E4B
\DeclareTextCompositeCommand{\textgravemacron}{PU}{O}{\9036\120}% U+1E50
\DeclareTextCompositeCommand{\textgravemacron}{PU}{o}{\9036\121}% U+1E51
\DeclareTextCompositeCommand{\textacutemacron}{PU}{O}{\9036\122}% U+1E52
\DeclareTextCompositeCommand{\textacutemacron}{PU}{o}{\9036\123}% U+1E53
\DeclareTextCompositeCommand{\'}{PU}{P}{\9036\124}% U+1E54
\DeclareTextCompositeCommand{\'}{PU}{p}{\9036\125}% U+1E55
\DeclareTextCompositeCommand{\.}{PU}{P}{\9036\126}% U+1E56
\DeclareTextCompositeCommand{\.}{PU}{p}{\9036\127}% U+1E57
\DeclareTextCompositeCommand{\.}{PU}{R}{\9036\130}% U+1E58
\DeclareTextCompositeCommand{\.}{PU}{r}{\9036\131}% U+1E59
\DeclareTextCompositeCommand{\d}{PU}{R}{\9036\132}% U+1E5A
\DeclareTextCompositeCommand{\d}{PU}{r}{\9036\133}% U+1E5B
\DeclareTextCompositeCommand{\b}{PU}{R}{\9036\136}% U+1E5E
\DeclareTextCompositeCommand{\b}{PU}{r}{\9036\137}% U+1E5F
\DeclareTextCompositeCommand{\.}{PU}{S}{\9036\140}% U+1E60
\DeclareTextCompositeCommand{\.}{PU}{s}{\9036\141}% U+1E61
\DeclareTextCompositeCommand{\d}{PU}{S}{\9036\142}% U+1E62
\DeclareTextCompositeCommand{\d}{PU}{s}{\9036\143}% U+1E63
\DeclareTextCompositeCommand{\.}{PU}{T}{\9036\152}% U+1E6A
\DeclareTextCompositeCommand{\.}{PU}{t}{\9036\153}% U+1E6B
\DeclareTextCompositeCommand{\d}{PU}{T}{\9036\154}% U+1E6C
\DeclareTextCompositeCommand{\d}{PU}{t}{\9036\155}% U+1E6D
\DeclareTextCompositeCommand{\b}{PU}{T}{\9036\156}% U+1E6E
\DeclareTextCompositeCommand{\b}{PU}{t}{\9036\157}% U+1E6F
\DeclareTextCompositeCommand{\textsubcircum}{PU}{T}{\9036\160}% U+1E70
\DeclareTextCompositeCommand{\textsubcircum}{PU}{t}{\9036\161}% U+1E71
\DeclareTextCompositeCommand{\textsubumlaut}{PU}{U}{\9036\162}% U+1E72
\DeclareTextCompositeCommand{\textsubumlaut}{PU}{u}{\9036\163}% U+1E73
\DeclareTextCompositeCommand{\textsubtilde}{PU}{U}{\9036\164}% U+1E74
\DeclareTextCompositeCommand{\textsubtilde}{PU}{u}{\9036\165}% U+1E75
\DeclareTextCompositeCommand{\textsubcircum}{PU}{U}{\9036\166}% U+1E76
\DeclareTextCompositeCommand{\textsubcircum}{PU}{u}{\9036\167}% U+1E77
\DeclareTextCompositeCommand{\~}{PU}{V}{\9036\174}% U+1E7C
\DeclareTextCompositeCommand{\~}{PU}{v}{\9036\175}% U+1E7D
\DeclareTextCompositeCommand{\d}{PU}{V}{\9036\176}% U+1E7E
\DeclareTextCompositeCommand{\d}{PU}{v}{\9036\177}% U+1E7F
\DeclareTextCompositeCommand{\`}{PU}{W}{\9036\200}% U+1E80
\DeclareTextCompositeCommand{\`}{PU}{w}{\9036\201}% U+1E81
\DeclareTextCompositeCommand{\'}{PU}{W}{\9036\202}% U+1E82
\DeclareTextCompositeCommand{\'}{PU}{w}{\9036\203}% U+1E83
\DeclareTextCompositeCommand{\"}{PU}{W}{\9036\204}% U+1E84
\DeclareTextCompositeCommand{\"}{PU}{w}{\9036\205}% U+1E85
\DeclareTextCompositeCommand{\.}{PU}{W}{\9036\206}% U+1E86
\DeclareTextCompositeCommand{\.}{PU}{w}{\9036\207}% U+1E87
\DeclareTextCompositeCommand{\d}{PU}{W}{\9036\210}% U+1E88
\DeclareTextCompositeCommand{\d}{PU}{w}{\9036\211}% U+1E89
\DeclareTextCompositeCommand{\.}{PU}{X}{\9036\212}% U+1E8A
\DeclareTextCompositeCommand{\.}{PU}{x}{\9036\213}% U+1E8B
\DeclareTextCompositeCommand{\"}{PU}{X}{\9036\214}% U+1E8C
\DeclareTextCompositeCommand{\"}{PU}{x}{\9036\215}% U+1E8D
\DeclareTextCompositeCommand{\.}{PU}{Y}{\9036\216}% U+1E8E
\DeclareTextCompositeCommand{\.}{PU}{y}{\9036\217}% U+1E8F
\DeclareTextCompositeCommand{\^}{PU}{Z}{\9036\220}% U+1E90
\DeclareTextCompositeCommand{\^}{PU}{z}{\9036\221}% U+1E91
\DeclareTextCompositeCommand{\d}{PU}{Z}{\9036\222}% U+1E92
\DeclareTextCompositeCommand{\d}{PU}{z}{\9036\223}% U+1E93
\DeclareTextCompositeCommand{\b}{PU}{Z}{\9036\224}% U+1E94
\DeclareTextCompositeCommand{\b}{PU}{z}{\9036\225}% U+1E95
\DeclareTextCompositeCommand{\b}{PU}{h}{\9036\226}% U+1E96
\DeclareTextCompositeCommand{\"}{PU}{t}{\9036\227}% U+1E97
\DeclareTextCompositeCommand{\r}{PU}{w}{\9036\230}% U+1E98
\DeclareTextCompositeCommand{\r}{PU}{y}{\9036\231}% U+1E99
\DeclareTextCompositeCommand{\.}{PU}{\textlongs}{\9036\233}% U+1E9B
\DeclareTextCompositeCommand{\d}{PU}{A}{\9036\240}% U+1EA0
\DeclareTextCompositeCommand{\d}{PU}{a}{\9036\241}% U+1EA1
\DeclareTextCompositeCommand{\d}{PU}{E}{\9036\270}% U+1EB8
\DeclareTextCompositeCommand{\d}{PU}{e}{\9036\271}% U+1EB9
\DeclareTextCompositeCommand{\~}{PU}{E}{\9036\274}% U+1EBC
\DeclareTextCompositeCommand{\~}{PU}{e}{\9036\275}% U+1EBD
\DeclareTextCompositeCommand{\d}{PU}{I}{\9036\312}% U+1ECA
\DeclareTextCompositeCommand{\d}{PU}{i}{\9036\313}% U+1ECB
\DeclareTextCompositeCommand{\d}{PU}{O}{\9036\314}% U+1ECC
\DeclareTextCompositeCommand{\d}{PU}{o}{\9036\315}% U+1ECD
\DeclareTextCompositeCommand{\d}{PU}{U}{\9036\344}% U+1EE4
\DeclareTextCompositeCommand{\d}{PU}{u}{\9036\345}% U+1EE5
\DeclareTextCompositeCommand{\`}{PU}{Y}{\9036\362}% U+1EF2
\DeclareTextCompositeCommand{\`}{PU}{y}{\9036\363}% U+1EF3
\DeclareTextCompositeCommand{\d}{PU}{Y}{\9036\364}% U+1EF4
\DeclareTextCompositeCommand{\d}{PU}{y}{\9036\365}% U+1EF5
\DeclareTextCompositeCommand{\~}{PU}{Y}{\9036\370}% U+1EF8
\DeclareTextCompositeCommand{\~}{PU}{y}{\9036\371}% U+1EF9
\DeclareTextCommand{\textcompwordmark}{PU}{\9040\014}% U+200C
\DeclareTextCommand{\textendash}{PU}{\9040\023}% U+2013
\DeclareTextCommand{\textemdash}{PU}{\9040\024}% U+2014
\DeclareTextCommand{\textbardbl}{PU}{\9040\026}% U+2016
\DeclareTextCommand{\textquoteleft}{PU}{\9040\030}% U+2018
\DeclareTextCommand{\textquoteright}{PU}{\9040\031}% U+2019
\DeclareTextCommand{\quotesinglbase}{PU}{\9040\032}% U+201A
\DeclareTextCommand{\textquotedblleft}{PU}{\9040\034}% U+201C
\DeclareTextCommand{\textquotedblright}{PU}{\9040\035}% U+201D
\DeclareTextCommand{\quotedblbase}{PU}{\9040\036}% U+201E
\DeclareTextCommand{\textdagger}{PU}{\9040\040}%* U+2020
\DeclareTextCommand{\textdaggerdbl}{PU}{\9040\041}% U+2021
\DeclareTextCommand{\textbullet}{PU}{\9040\042}%* U+2022
\DeclareTextCommand{\texthdotfor}{PU}{\9040\045}%* U+2025
\DeclareTextCommand{\textellipsis}{PU}{\9040\046}% U+2026
\DeclareTextCommand{\textperthousand}{PU}{\9040\060}% U+2030
\DeclareTextCommand{\textpertenthousand}{PU}{\9040\061}% U+2031
\DeclareTextCommand{\textprime}{PU}{\9040\062}%* U+2032
\DeclareTextCommand{\textsecond}{PU}{\9040\063}%* U+2033
\DeclareTextCommand{\textthird}{PU}{\9040\064}%* U+2034
\DeclareTextCommand{\textbackprime}{PU}{\9040\065}%* U+2035
\DeclareTextCommand{\guilsinglleft}{PU}{\9040\071}% U+2039
\DeclareTextCommand{\guilsinglright}{PU}{\9040\072}% U+203A
\DeclareTextCommand{\textreferencemark}{PU}{\9040\073}% U+203B
\DeclareTextCommand{\textinterrobang}{PU}{\9040\075}% U+203D
\DeclareTextCommand{\textfractionsolidus}{PU}{\9040\104}% U+2044
\DeclareTextCommand{\textlquill}{PU}{\9040\105}% U+2045
\DeclareTextCommand{\textrquill}{PU}{\9040\106}% U+2046
\DeclareTextCommand{\textdiscount}{PU}{\9040\122}% U+2052
\DeclareTextCommand{\textlefttherefore}{PU}{\9040\126}%* U+2056
\DeclareTextCommand{\textfourth}{PU}{\9040\127}%* U+2057
\DeclareTextCommand{\textdiamonddots}{PU}{\9040\130}%* U+2058
\DeclareTextCommand{\textzerosuperior}{PU}{\9040\160}%* U+2070
\DeclareTextCommand{\textisuperior}{PU}{\9040\161}%* U+2071
\DeclareTextCommand{\textfoursuperior}{PU}{\9040\164}%* U+2074
\DeclareTextCommand{\textfivesuperior}{PU}{\9040\165}%* U+2075
\DeclareTextCommand{\textsixsuperior}{PU}{\9040\166}%* U+2076
\DeclareTextCommand{\textsevensuperior}{PU}{\9040\167}%* U+2077
\DeclareTextCommand{\texteightsuperior}{PU}{\9040\170}%* U+2078
\DeclareTextCommand{\textninesuperior}{PU}{\9040\171}%* U+2079
\DeclareTextCommand{\textplussuperior}{PU}{\9040\172}%* U+207A
\DeclareTextCommand{\textminussuperior}{PU}{\9040\173}%* U+207B
\DeclareTextCommand{\textequalsuperior}{PU}{\9040\174}%* U+207C
\DeclareTextCommand{\textparenleftsuperior}{PU}{\9040\175}%* U+207D
\DeclareTextCommand{\textparenrightsuperior}{PU}{\9040\176}%* U+207E
\DeclareTextCommand{\textnsuperior}{PU}{\9040\177}%* U+207F
\DeclareTextCommand{\textzeroinferior}{PU}{\9040\200}%* U+2080
\DeclareTextCommand{\textoneinferior}{PU}{\9040\201}%* U+2081
\DeclareTextCommand{\texttwoinferior}{PU}{\9040\202}%* U+2082
\DeclareTextCommand{\textthreeinferior}{PU}{\9040\203}%* U+2083
\DeclareTextCommand{\textfourinferior}{PU}{\9040\204}%* U+2084
\DeclareTextCommand{\textfiveinferior}{PU}{\9040\205}%* U+2085
\DeclareTextCommand{\textsixinferior}{PU}{\9040\206}%* U+2086
\DeclareTextCommand{\textseveninferior}{PU}{\9040\207}%* U+2087
\DeclareTextCommand{\texteightinferior}{PU}{\9040\210}%* U+2088
\DeclareTextCommand{\textnineinferior}{PU}{\9040\211}%* U+2089
\DeclareTextCommand{\textplusinferior}{PU}{\9040\212}%* U+208A
\DeclareTextCommand{\textminusinferior}{PU}{\9040\213}%* U+208B
\DeclareTextCommand{\textequalsinferior}{PU}{\9040\214}%* U+208C
\DeclareTextCommand{\textparenleftinferior}{PU}{\9040\215}%* U+208D
\DeclareTextCommand{\textparenrightinferior}{PU}{\9040\216}%* U+208E
\DeclareTextCommand{\textainferior}{PU}{\9040\220}%* U+2090
\DeclareTextCommand{\texteinferior}{PU}{\9040\221}%* U+2091
\DeclareTextCommand{\textoinferior}{PU}{\9040\222}%* U+2092
\DeclareTextCommand{\textxinferior}{PU}{\9040\223}%* U+2093
\DeclareTextCommand{\textschwainferior}{PU}{\9040\224}%* U+2094
\DeclareTextCommand{\texthinferior}{PU}{\9040\225}%* U+2095
\DeclareTextCommand{\textkinferior}{PU}{\9040\226}%* U+2096
\DeclareTextCommand{\textlinferior}{PU}{\9040\227}%* U+2097
\DeclareTextCommand{\textminferior}{PU}{\9040\230}%* U+2098
\DeclareTextCommand{\textninferior}{PU}{\9040\231}%* U+2099
\DeclareTextCommand{\textpinferior}{PU}{\9040\232}%* U+209A
\DeclareTextCommand{\textsinferior}{PU}{\9040\233}%* U+209B
\DeclareTextCommand{\texttinferior}{PU}{\9040\234}%* U+209C
\DeclareTextCommand{\textcolonmonetary}{PU}{\9040\241}% U+20A1
\DeclareTextCommand{\textlira}{PU}{\9040\244}% U+20A4
\DeclareTextCommand{\textnaira}{PU}{\9040\246}% U+20A6
\DeclareTextCommand{\textpeseta}{PU}{\9040\247}% U+20A7
\DeclareTextCommand{\textwon}{PU}{\9040\251}% U+20A9
\DeclareTextCommand{\textdong}{PU}{\9040\253}% U+20AB
\DeclareTextCommand{\texteuro}{PU}{\9040\254}% U+20AC
\DeclareTextCommand{\textDeleatur}{PU}{\9040\260}%* U+20B0
\DeclareTextCommand{\textpeso}{PU}{\9040\261}% U+20B1
\DeclareTextCommand{\textguarani}{PU}{\9040\262}% U+20B2
\DeclareTextCommand{\textcelsius}{PU}{\9041\003}% U+2103
\DeclareTextCommand{\texthslash}{PU}{\9041\017}%* U+210F
\DeclareTextCommand{\textIm}{PU}{\9041\021}%* U+2111
\DeclareTextCommand{\textell}{PU}{\9041\023}%* U+2113
\DeclareTextCommand{\textnumero}{PU}{\9041\026}% U+2116
\DeclareTextCommand{\textcircledP}{PU}{\9041\027}% U+2117
\DeclareTextCommand{\textwp}{PU}{\9041\030}%* U+2118
\DeclareTextCommand{\textRe}{PU}{\9041\034}%* U+211C
\DeclareTextCommand{\textrecipe}{PU}{\9041\036}% U+211E
\DeclareTextCommand{\textservicemark}{PU}{\9041\040}% U+2120
\DeclareTextCommand{\texttrademark}{PU}{\9041\042}% U+2122
\DeclareTextCommand{\textohm}{PU}{\9041\046}% U+2126
\DeclareTextCommand{\textmho}{PU}{\9041\047}%* U+2127
\DeclareTextCommand{\textriota}{PU}{\9041\051}%* U+2129
\DeclareTextCommand{\textangstrom}{PU}{\9041\053}% U+212B
\DeclareTextCommand{\textestimated}{PU}{\9041\056}% U+212E
\DeclareTextCommand{\textFinv}{PU}{\9041\062}%* U+2132
\DeclareTextCommand{\textaleph}{PU}{\9041\065}%* U+2135
\DeclareTextCommand{\textbeth}{PU}{\9041\066}%* U+2136
\DeclareTextCommand{\textgimel}{PU}{\9041\067}%* U+2137
\DeclareTextCommand{\textdaleth}{PU}{\9041\070}%* U+2138
\DeclareTextCommand{\textfax}{PU}{\9041\073}%* U+213B
\DeclareTextCommand{\textGame}{PU}{\9041\101}%* U+2141
\DeclareTextCommand{\textinvamp}{PU}{\9041\113}% U+214B
\DeclareTextCommand{\textoneseventh}{PU}{\9041\120}% U+2150
\DeclareTextCommand{\textoneninth}{PU}{\9041\121}% U+2151
\DeclareTextCommand{\textonetenth}{PU}{\9041\122}% U+2152
\DeclareTextCommand{\textonethird}{PU}{\9041\123}% U+2153
\DeclareTextCommand{\texttwothirds}{PU}{\9041\124}% U+2154
\DeclareTextCommand{\textonefifth}{PU}{\9041\125}% U+2155
\DeclareTextCommand{\texttwofifths}{PU}{\9041\126}% U+2156
\DeclareTextCommand{\textthreefifths}{PU}{\9041\127}% U+2157
\DeclareTextCommand{\textfourfifths}{PU}{\9041\130}% U+2158
\DeclareTextCommand{\textonesixth}{PU}{\9041\131}% U+2159
\DeclareTextCommand{\textfivesixths}{PU}{\9041\132}% U+215A
\DeclareTextCommand{\textoneeighth}{PU}{\9041\133}% U+215B
\DeclareTextCommand{\textthreeeighths}{PU}{\9041\134}% U+215C
\DeclareTextCommand{\textfiveeighths}{PU}{\9041\135}% U+215D
\DeclareTextCommand{\textseveneighths}{PU}{\9041\136}% U+215E
\DeclareTextCommand{\textrevc}{PU}{\9041\204}% U+2184
\DeclareTextCommand{\textzerothirds}{PU}{\9041\211}% U+2189
\DeclareTextCommand{\textleftarrow}{PU}{\9041\220}%* U+2190
\DeclareTextCommand{\textuparrow}{PU}{\9041\221}%* U+2191
\DeclareTextCommand{\textrightarrow}{PU}{\9041\222}%* U+2192
\DeclareTextCommand{\textdownarrow}{PU}{\9041\223}%* U+2193
\DeclareTextCommand{\textleftrightarrow}{PU}{\9041\224}%* U+2194
\DeclareTextCommand{\textupdownarrow}{PU}{\9041\225}%* U+2195
\DeclareTextCommand{\textnwarrow}{PU}{\9041\226}%* U+2196
\DeclareTextCommand{\textnearrow}{PU}{\9041\227}%* U+2197
\DeclareTextCommand{\textsearrow}{PU}{\9041\230}%* U+2198
\DeclareTextCommand{\textswarrow}{PU}{\9041\231}%* U+2199
\DeclareTextCommand{\textnleftarrow}{PU}{\9041\232}%* U+219A
\DeclareTextCommand{\textnrightarrow}{PU}{\9041\233}%* U+219B
\DeclareTextCommand{\texttwoheadleftarrow}{PU}{\9041\236}%* U+219E
\DeclareTextCommand{\textntwoheadleftarrow}{PU}{\9041\236\83\070}%* U+219E U+0338
\DeclareTextCommand{\texttwoheaduparrow}{PU}{\9041\237}%* U+219F
\DeclareTextCommand{\texttwoheadrightarrow}{PU}{\9041\240}%* U+21A0
\DeclareTextCommand{\textntwoheadrightarrow}{PU}{\9041\240\83\070}%* U+21A0 U+0338
\DeclareTextCommand{\texttwoheaddownarrow}{PU}{\9041\241}%* U+21A1
\DeclareTextCommand{\textleftarrowtail}{PU}{\9041\242}%* U+21A2
\DeclareTextCommand{\textrightarrowtail}{PU}{\9041\243}%* U+21A3
\DeclareTextCommand{\textmapsto}{PU}{\9041\246}%* U+21A6
\DeclareTextCommand{\texthookleftarrow}{PU}{\9041\251}%* U+21A9
\DeclareTextCommand{\texthookrightarrow}{PU}{\9041\252}%* U+21AA
\DeclareTextCommand{\textlooparrowleft}{PU}{\9041\253}%* U+21AB
\DeclareTextCommand{\textlooparrowright}{PU}{\9041\254}%* U+21AC
\DeclareTextCommand{\textnleftrightarrow}{PU}{\9041\256}%* U+21AE
\DeclareTextCommand{\textlightning}{PU}{\9041\257}%* U+21AF
\DeclareTextCommand{\textdlsh}{PU}{\9041\265}%* U+21B5
\DeclareTextCommand{\textcurvearrowleft}{PU}{\9041\266}%* U+21B6
\DeclareTextCommand{\textcurvearrowright}{PU}{\9041\267}%* U+21B7
\DeclareTextCommand{\textleftharpoonup}{PU}{\9041\274}%* U+21BC
\DeclareTextCommand{\textleftharpoondown}{PU}{\9041\275}%* U+21BD
\DeclareTextCommand{\textupharpoonright}{PU}{\9041\276}%* U+21BE
\DeclareTextCommand{\textupharpoonleft}{PU}{\9041\277}%* U+21BF
\DeclareTextCommand{\textrightharpoonup}{PU}{\9041\300}%* U+21C0
\DeclareTextCommand{\textrightharpoondown}{PU}{\9041\301}%* U+21C1
\DeclareTextCommand{\textdownharpoonright}{PU}{\9041\302}%* U+21C2
\DeclareTextCommand{\textdownharpoonleft}{PU}{\9041\303}%* U+21C3
\DeclareTextCommand{\textrightleftarrows}{PU}{\9041\304}%* U+21C4
\DeclareTextCommand{\textupdownarrows}{PU}{\9041\305}%* U+21C5
\DeclareTextCommand{\textleftrightarrows}{PU}{\9041\306}%* U+21C6
\DeclareTextCommand{\textleftleftarrows}{PU}{\9041\307}%* U+21C7
\DeclareTextCommand{\textupuparrows}{PU}{\9041\310}%* U+21C8
\DeclareTextCommand{\textrightrightarrows}{PU}{\9041\311}%* U+21C9
\DeclareTextCommand{\textdowndownarrows}{PU}{\9041\312}%* U+21CA
\DeclareTextCommand{\textleftrightharpoons}{PU}{\9041\313}%* U+21CB
\DeclareTextCommand{\textrightleftharpoons}{PU}{\9041\314}%* U+21CC
\DeclareTextCommand{\textnLeftarrow}{PU}{\9041\315}%* U+21CD
\DeclareTextCommand{\textnLeftrightarrow}{PU}{\9041\316}%* U+21CE
\DeclareTextCommand{\textnRightarrow}{PU}{\9041\317}%* U+21CF
\DeclareTextCommand{\textLeftarrow}{PU}{\9041\320}%* U+21D0
\DeclareTextCommand{\textUparrow}{PU}{\9041\321}%* U+21D1
\DeclareTextCommand{\textRightarrow}{PU}{\9041\322}%* U+21D2
\DeclareTextCommand{\textDownarrow}{PU}{\9041\323}%* U+21D3
\DeclareTextCommand{\textLeftrightarrow}{PU}{\9041\324}%* U+21D4
\DeclareTextCommand{\textUpdownarrow}{PU}{\9041\325}%* U+21D5
\DeclareTextCommand{\textNwarrow}{PU}{\9041\326}%* U+21D6
\DeclareTextCommand{\textNearrow}{PU}{\9041\327}%* U+21D7
\DeclareTextCommand{\textSearrow}{PU}{\9041\330}%* U+21D8
\DeclareTextCommand{\textSwarrow}{PU}{\9041\331}%* U+21D9
\DeclareTextCommand{\textLleftarrow}{PU}{\9041\332}%* U+21DA
\DeclareTextCommand{\textRrightarrow}{PU}{\9041\333}%* U+21DB
\DeclareTextCommand{\textleftsquigarrow}{PU}{\9041\334}%* U+21DC
\DeclareTextCommand{\textrightsquigarrow}{PU}{\9041\335}%* U+21DD
\DeclareTextCommand{\textdashleftarrow}{PU}{\9041\340}%* U+21E0
\DeclareTextCommand{\textdasheduparrow}{PU}{\9041\341}%* U+21E1
\DeclareTextCommand{\textdashrightarrow}{PU}{\9041\342}%* U+21E2
\DeclareTextCommand{\textdasheddownarrow}{PU}{\9041\343}%* U+21E3
\DeclareTextCommand{\textpointer}{PU}{\9041\350}%* U+21E8
\DeclareTextCommand{\textdownuparrows}{PU}{\9041\365}%* U+21F5
\DeclareTextCommand{\textleftarrowtriangle}{PU}{\9041\375}%* U+21FD
\DeclareTextCommand{\textrightarrowtriangle}{PU}{\9041\376}%* U+21FE
\DeclareTextCommand{\textleftrightarrowtriangle}{PU}{\9041\377}%* U+21FF
\DeclareTextCommand{\textforall}{PU}{\9042\000}%* U+2200
\DeclareTextCommand{\textcomplement}{PU}{\9042\001}%* U+2201
\DeclareTextCommand{\textpartial}{PU}{\9042\002}%* U+2202
\DeclareTextCommand{\textexists}{PU}{\9042\003}%* U+2203
\DeclareTextCommand{\textnexists}{PU}{\9042\004}%* U+2204
\DeclareTextCommand{\textemptyset}{PU}{\9042\005}%* U+2205
\DeclareTextCommand{\texttriangle}{PU}{\9042\006}%* U+2206
\DeclareTextCommand{\textnabla}{PU}{\9042\007}%* U+2207
\DeclareTextCommand{\textin}{PU}{\9042\010}%* U+2208
\DeclareTextCommand{\textnotin}{PU}{\9042\011}%* U+2209
\DeclareTextCommand{\textsmallin}{PU}{\9042\012}%* U+220A
\DeclareTextCommand{\textni}{PU}{\9042\013}%* U+220B
\DeclareTextCommand{\textnotowner}{PU}{\9042\014}%* U+220C
\DeclareTextCommand{\textsmallowns}{PU}{\9042\015}%* U+220D
\DeclareTextCommand{\textprod}{PU}{\9042\017}%* U+220F
\DeclareTextCommand{\textamalg}{PU}{\9042\020}%* U+2210
\DeclareTextCommand{\textsum}{PU}{\9042\021}%* U+2211
\DeclareTextCommand{\textminus}{PU}{\9042\022}% U+2212
\DeclareTextCommand{\textmp}{PU}{\9042\023}%* U+2213
\DeclareTextCommand{\textdotplus}{PU}{\9042\024}%* U+2214
\DeclareTextCommand{\textDivides}{PU}{\9042\025}%* U+2215
\DeclareTextCommand{\textDividesNot}{PU}{\9042\025\9040\322}%* U+2215 U+20D2
\DeclareTextCommand{\textsetminus}{PU}{\9042\026}%* U+2216
\DeclareTextCommand{\textast}{PU}{\9042\027}%* U+2217
\DeclareTextCommand{\textcirc}{PU}{\9042\030}%* U+2218
\DeclareTextCommand{\textbulletoperator}{PU}{\9042\031}% U+2219
\DeclareTextCommand{\textsurd}{PU}{\9042\032}%* U+221A
\DeclareTextCommand{\textpropto}{PU}{\9042\035}%* U+221D
\DeclareTextCommand{\textinfty}{PU}{\9042\036}%* U+221E
\DeclareTextCommand{\textangle}{PU}{\9042\040}%* U+2220
\DeclareTextCommand{\textmeasuredangle}{PU}{\9042\041}%* U+2221
\DeclareTextCommand{\textsphericalangle}{PU}{\9042\042}%* U+2222
\DeclareTextCommand{\textmid}{PU}{\9042\043}%* U+2223
\DeclareTextCommand{\textnmid}{PU}{\9042\044}%* U+2224
\DeclareTextCommand{\textparallel}{PU}{\9042\045}%* U+2225
\DeclareTextCommand{\textnparallel}{PU}{\9042\046}%* U+2226
\DeclareTextCommand{\textwedge}{PU}{\9042\047}%* U+2227
\DeclareTextCommand{\textowedge}{PU}{\9042\047\9040\335}%* U+2227 U+20DD
\DeclareTextCommand{\textvee}{PU}{\9042\050}%* U+2228
\DeclareTextCommand{\textovee}{PU}{\9042\050\9040\335}%* U+2228 U+20DD
\DeclareTextCommand{\textcap}{PU}{\9042\051}%* U+2229
\DeclareTextCommand{\textcup}{PU}{\9042\052}%* U+222A
\DeclareTextCommand{\textint}{PU}{\9042\053}%* U+222B
\DeclareTextCommand{\textiint}{PU}{\9042\054}%* U+222C
\DeclareTextCommand{\textiiint}{PU}{\9042\055}%* U+222D
\DeclareTextCommand{\textoint}{PU}{\9042\056}%* U+222E
\DeclareTextCommand{\textoiint}{PU}{\9042\057}%* U+222F
\DeclareTextCommand{\textointclockwise}{PU}{\9042\062}%* U+2232
\DeclareTextCommand{\textointctrclockwise}{PU}{\9042\063}%* U+2233
\DeclareTextCommand{\texttherefore}{PU}{\9042\064}%* U+2234
\DeclareTextCommand{\textbecause}{PU}{\9042\065}%* U+2235
\DeclareTextCommand{\textvdotdot}{PU}{\9042\066}%* U+2236
\DeclareTextCommand{\textsquaredots}{PU}{\9042\067}%* U+2237
\DeclareTextCommand{\textdotminus}{PU}{\9042\070}%* U+2238
\DeclareTextCommand{\texteqcolon}{PU}{\9042\071}%* U+2239
\DeclareTextCommand{\textsim}{PU}{\9042\074}%* U+223C
\DeclareTextCommand{\textbacksim}{PU}{\9042\075}%* U+223D
\DeclareTextCommand{\textnbacksim}{PU}{\9042\075\83\070}%* U+223D U+0338
\DeclareTextCommand{\textwr}{PU}{\9042\100}%* U+2240
\DeclareTextCommand{\textnsim}{PU}{\9042\101}%* U+2241
\DeclareTextCommand{\texteqsim}{PU}{\9042\102}%* U+2242
\DeclareTextCommand{\textneqsim}{PU}{\9042\102\83\070}%* U+2242 U+0338
\DeclareTextCommand{\textsimeq}{PU}{\9042\103}%* U+2243
\DeclareTextCommand{\textnsimeq}{PU}{\9042\104}%* U+2244
\DeclareTextCommand{\textcong}{PU}{\9042\105}%* U+2245
\DeclareTextCommand{\textncong}{PU}{\9042\107}%* U+2247
\DeclareTextCommand{\textapprox}{PU}{\9042\110}%* U+2248
\DeclareTextCommand{\textnapprox}{PU}{\9042\111}%* U+2249
\DeclareTextCommand{\textapproxeq}{PU}{\9042\112}%* U+224A
\DeclareTextCommand{\textnapproxeq}{PU}{\9042\112\83\070}%* U+224A U+0338
\DeclareTextCommand{\texttriplesim}{PU}{\9042\113}%* U+224B
\DeclareTextCommand{\textntriplesim}{PU}{\9042\113\83\070}%* U+224B U+0338
\DeclareTextCommand{\textbackcong}{PU}{\9042\114}%* U+224C
\DeclareTextCommand{\textnbackcong}{PU}{\9042\114\83\070}%* U+224C U+0338
\DeclareTextCommand{\textasymp}{PU}{\9042\115}%* U+224D
\DeclareTextCommand{\textnasymp}{PU}{\9042\115\83\070}%* U+224D U+0338
\DeclareTextCommand{\textBumpeq}{PU}{\9042\116}%* U+224E
\DeclareTextCommand{\textnBumpeq}{PU}{\9042\116\83\070}%* U+224E U+0338
\DeclareTextCommand{\textbumpeq}{PU}{\9042\117}%* U+224F
\DeclareTextCommand{\textnbumpeq}{PU}{\9042\117\83\070}%* U+224F U+0338
\DeclareTextCommand{\textdoteq}{PU}{\9042\120}%* U+2250
\DeclareTextCommand{\textndoteq}{PU}{\9042\120\83\070}%* U+2250 U+0338
\DeclareTextCommand{\textdoteqdot}{PU}{\9042\121}%* U+2251
\DeclareTextCommand{\textnDoteq}{PU}{\9042\121\83\070}%* U+2251 U+0338
\DeclareTextCommand{\textfallingdoteq}{PU}{\9042\122}%* U+2252
\DeclareTextCommand{\textnfallingdoteq}{PU}{\9042\122\83\070}%* U+2252 U+0338
\DeclareTextCommand{\textrisingdoteq}{PU}{\9042\123}%* U+2253
\DeclareTextCommand{\textnrisingdoteq}{PU}{\9042\123\83\070}%* U+2253 U+0338
\DeclareTextCommand{\textcolonequals}{PU}{\9042\124}%* U+2254
\DeclareTextCommand{\textequalscolon}{PU}{\9042\125}%* U+2255
\DeclareTextCommand{\texteqcirc}{PU}{\9042\126}%* U+2256
\DeclareTextCommand{\textneqcirc}{PU}{\9042\126\83\070}%* U+2256 U+0338
\DeclareTextCommand{\textcirceq}{PU}{\9042\127}%* U+2257
\DeclareTextCommand{\textncirceq}{PU}{\9042\127\83\070}%* U+2257 U+0338
\DeclareTextCommand{\texthateq}{PU}{\9042\131}%* U+2259
\DeclareTextCommand{\textnhateq}{PU}{\9042\131\83\070}%* U+2259 U+0338
\DeclareTextCommand{\texttriangleeq}{PU}{\9042\134}%* U+225C
\DeclareTextCommand{\textneq}{PU}{\9042\140}%* U+2260
\DeclareTextCommand{\textne}{PU}{\9042\140}%* U+2260
\DeclareTextCommand{\textequiv}{PU}{\9042\141}%* U+2261
\DeclareTextCommand{\textnequiv}{PU}{\9042\142}%* U+2262
\DeclareTextCommand{\textleq}{PU}{\9042\144}%* U+2264
\DeclareTextCommand{\textle}{PU}{\9042\144}%* U+2264
\DeclareTextCommand{\textgeq}{PU}{\9042\145}%* U+2265
\DeclareTextCommand{\textge}{PU}{\9042\145}%* U+2265
\DeclareTextCommand{\textleqq}{PU}{\9042\146}%* U+2266
\DeclareTextCommand{\textnleqq}{PU}{\9042\146\83\070}%* U+2266 U+0338
\DeclareTextCommand{\textgeqq}{PU}{\9042\147}%* U+2267
\DeclareTextCommand{\textngeqq}{PU}{\9042\147\83\070}%* U+2267 U+0338
\DeclareTextCommand{\textlneqq}{PU}{\9042\150}%* U+2268
\DeclareTextCommand{\textgneqq}{PU}{\9042\151}%* U+2269
\DeclareTextCommand{\textll}{PU}{\9042\152}%* U+226A
\DeclareTextCommand{\textnll}{PU}{\9042\152\83\070}%* U+226A U+0338
\DeclareTextCommand{\textgg}{PU}{\9042\153}%* U+226B
\DeclareTextCommand{\textngg}{PU}{\9042\153\83\070}%* U+226B U+0338
\DeclareTextCommand{\textbetween}{PU}{\9042\154}%* U+226C
\DeclareTextCommand{\textnless}{PU}{\9042\156}%* U+226E
\DeclareTextCommand{\textngtr}{PU}{\9042\157}%* U+226F
\DeclareTextCommand{\textnleq}{PU}{\9042\160}%* U+2270
\DeclareTextCommand{\textngeq}{PU}{\9042\161}%* U+2271
\DeclareTextCommand{\textlesssim}{PU}{\9042\162}%* U+2272
\DeclareTextCommand{\textgtrsim}{PU}{\9042\163}%* U+2273
\DeclareTextCommand{\textnlesssim}{PU}{\9042\164}%* U+2274
\DeclareTextCommand{\textngtrsim}{PU}{\9042\165}%* U+2275
\DeclareTextCommand{\textlessgtr}{PU}{\9042\166}%* U+2276
\DeclareTextCommand{\textgtrless}{PU}{\9042\167}%* U+2277
\DeclareTextCommand{\textngtrless}{PU}{\9042\170}%* U+2278
\DeclareTextCommand{\textnlessgtr}{PU}{\9042\171}%* U+2279
\DeclareTextCommand{\textprec}{PU}{\9042\172}%* U+227A
\DeclareTextCommand{\textsucc}{PU}{\9042\173}%* U+227B
\DeclareTextCommand{\textpreccurlyeq}{PU}{\9042\174}%* U+227C
\DeclareTextCommand{\textsucccurlyeq}{PU}{\9042\175}%* U+227D
\DeclareTextCommand{\textprecsim}{PU}{\9042\176}%* U+227E
\DeclareTextCommand{\textnprecsim}{PU}{\9042\176\83\070}%* U+227E U+0338
\DeclareTextCommand{\textsuccsim}{PU}{\9042\177}%* U+227F
\DeclareTextCommand{\textnsuccsim}{PU}{\9042\177\83\070}%* U+227F U+0338
\DeclareTextCommand{\textnprec}{PU}{\9042\200}%* U+2280
\DeclareTextCommand{\textnsucc}{PU}{\9042\201}%* U+2281
\DeclareTextCommand{\textsubset}{PU}{\9042\202}%* U+2282
\DeclareTextCommand{\textsupset}{PU}{\9042\203}%* U+2283
\DeclareTextCommand{\textnsubset}{PU}{\9042\204}%* U+2284
\DeclareTextCommand{\textnsupset}{PU}{\9042\205}%* U+2285
\DeclareTextCommand{\textsubseteq}{PU}{\9042\206}%* U+2286
\DeclareTextCommand{\textsupseteq}{PU}{\9042\207}%* U+2287
\DeclareTextCommand{\textnsubseteq}{PU}{\9042\210}%* U+2288
\DeclareTextCommand{\textnsupseteq}{PU}{\9042\211}%* U+2289
\DeclareTextCommand{\textsubsetneq}{PU}{\9042\212}%* U+228A
\DeclareTextCommand{\textsupsetneq}{PU}{\9042\213}%* U+228B
\DeclareTextCommand{\textcupdot}{PU}{\9042\215}%* U+228D
\DeclareTextCommand{\textcupplus}{PU}{\9042\216}%* U+228E
\DeclareTextCommand{\textsqsubset}{PU}{\9042\217}%* U+228F
\DeclareTextCommand{\textnsqsubset}{PU}{\9042\217\83\070}%* U+228F U+0338
\DeclareTextCommand{\textsqsupset}{PU}{\9042\220}%* U+2290
\DeclareTextCommand{\textnsqsupset}{PU}{\9042\220\83\070}%* U+2290 U+0338
\DeclareTextCommand{\textsqsubseteq}{PU}{\9042\221}%* U+2291
\DeclareTextCommand{\textnsqsubseteq}{PU}{\9042\221\83\070}%* U+2291 U+0338
\DeclareTextCommand{\textsqsupseteq}{PU}{\9042\222}%* U+2292
\DeclareTextCommand{\textnsqsupseteq}{PU}{\9042\222\83\070}%* U+2292 U+0338
\DeclareTextCommand{\textsqcap}{PU}{\9042\223}%* U+2293
\DeclareTextCommand{\textsqcup}{PU}{\9042\224}%* U+2294
\DeclareTextCommand{\textoplus}{PU}{\9042\225}%* U+2295
\DeclareTextCommand{\textominus}{PU}{\9042\226}%* U+2296
\DeclareTextCommand{\textotimes}{PU}{\9042\227}%* U+2297
\DeclareTextCommand{\textoslash}{PU}{\9042\230}%* U+2298
\DeclareTextCommand{\textodot}{PU}{\9042\231}%* U+2299
\DeclareTextCommand{\textcircledcirc}{PU}{\9042\232}%* U+229A
\DeclareTextCommand{\textcircledast}{PU}{\9042\233}%* U+229B
\DeclareTextCommand{\textcircleddash}{PU}{\9042\235}%* U+229D
\DeclareTextCommand{\textboxplus}{PU}{\9042\236}%* U+229E
\DeclareTextCommand{\textboxminus}{PU}{\9042\237}%* U+229F
\DeclareTextCommand{\textboxtimes}{PU}{\9042\240}%* U+22A0
\DeclareTextCommand{\textboxdot}{PU}{\9042\241}%* U+22A1
\DeclareTextCommand{\textvdash}{PU}{\9042\242}%* U+22A2
\DeclareTextCommand{\textdashv}{PU}{\9042\243}%* U+22A3
\DeclareTextCommand{\textndashv}{PU}{\9042\243\83\070}%* U+22A3 U+0338
\DeclareTextCommand{\texttop}{PU}{\9042\244}%* U+22A4
\DeclareTextCommand{\textndownvdash}{PU}{\9042\244\83\070}%* U+22A4 U+0338
\DeclareTextCommand{\textbot}{PU}{\9042\245}%* U+22A5
\DeclareTextCommand{\textnupvdash}{PU}{\9042\245\83\070}%* U+22A5 U+0338
\DeclareTextCommand{\textvDash}{PU}{\9042\250}%* U+22A8
\DeclareTextCommand{\textVdash}{PU}{\9042\251}%* U+22A9
\DeclareTextCommand{\textVvdash}{PU}{\9042\252}%* U+22AA
\DeclareTextCommand{\textnVvash}{PU}{\9042\252\83\070}%* U+22AA U+0338
\DeclareTextCommand{\textVDash}{PU}{\9042\253}%* U+22AB
\DeclareTextCommand{\textnvdash}{PU}{\9042\254}%* U+22AC
\DeclareTextCommand{\textnvDash}{PU}{\9042\255}%* U+22AD
\DeclareTextCommand{\textnVdash}{PU}{\9042\256}%* U+22AE
\DeclareTextCommand{\textnVDash}{PU}{\9042\257}%* U+22AF
\DeclareTextCommand{\textlhd}{PU}{\9042\262}%* U+22B2
\DeclareTextCommand{\textrhd}{PU}{\9042\263}%* U+22B3
\DeclareTextCommand{\textunlhd}{PU}{\9042\264}%* U+22B4
\DeclareTextCommand{\textunrhd}{PU}{\9042\265}%* U+22B5
\DeclareTextCommand{\textmultimapdotbothA}{PU}{\9042\266}%* U+22B6
\DeclareTextCommand{\textmultimapdotbothB}{PU}{\9042\267}%* U+22B7
\DeclareTextCommand{\textmultimap}{PU}{\9042\270}%* U+22B8
\DeclareTextCommand{\textveebar}{PU}{\9042\273}%* U+22BB
\DeclareTextCommand{\textbarwedge}{PU}{\9042\274}%* U+22BC
\DeclareTextCommand{\textstar}{PU}{\9042\306}%* U+22C6
\DeclareTextCommand{\textdivideontimes}{PU}{\9042\307}%* U+22C7
\DeclareTextCommand{\textbowtie}{PU}{\9042\310}%* U+22C8
\DeclareTextCommand{\textltimes}{PU}{\9042\311}%* U+22C9
\DeclareTextCommand{\textrtimes}{PU}{\9042\312}%* U+22CA
\DeclareTextCommand{\textleftthreetimes}{PU}{\9042\313}%* U+22CB
\DeclareTextCommand{\textrightthreetimes}{PU}{\9042\314}%* U+22CC
\DeclareTextCommand{\textbacksimeq}{PU}{\9042\315}%* U+22CD
\DeclareTextCommand{\textnbacksimeq}{PU}{\9042\315\83\070}%* U+22CD U+0338
\DeclareTextCommand{\textcurlyvee}{PU}{\9042\316}%* U+22CE
\DeclareTextCommand{\textcurlywedge}{PU}{\9042\317}%* U+22CF
\DeclareTextCommand{\textSubset}{PU}{\9042\320}%* U+22D0
\DeclareTextCommand{\textnSubset}{PU}{\9042\320\83\070}%* U+22D0 U+0338
\DeclareTextCommand{\textSupset}{PU}{\9042\321}%* U+22D1
\DeclareTextCommand{\textnSupset}{PU}{\9042\321\83\070}%* U+22D1 U+0338
\DeclareTextCommand{\textCap}{PU}{\9042\322}%* U+22D2
\DeclareTextCommand{\textCup}{PU}{\9042\323}%* U+22D3
\DeclareTextCommand{\textpitchfork}{PU}{\9042\324}%* U+22D4
\DeclareTextCommand{\textlessdot}{PU}{\9042\326}%* U+22D6
\DeclareTextCommand{\textgtrdot}{PU}{\9042\327}%* U+22D7
\DeclareTextCommand{\textlll}{PU}{\9042\330}%* U+22D8
\DeclareTextCommand{\textggg}{PU}{\9042\331}%* U+22D9
\DeclareTextCommand{\textlesseqgtr}{PU}{\9042\332}%* U+22DA
\DeclareTextCommand{\textgtreqless}{PU}{\9042\333}%* U+22DB
\DeclareTextCommand{\textcurlyeqprec}{PU}{\9042\336}%* U+22DE
\DeclareTextCommand{\textncurlyeqprec}{PU}{\9042\336\83\070}%* U+22DE U+0338
\DeclareTextCommand{\textcurlyeqsucc}{PU}{\9042\337}%* U+22DF
\DeclareTextCommand{\textncurlyeqsucc}{PU}{\9042\337\83\070}%* U+22DF U+0338
\DeclareTextCommand{\textnpreccurlyeq}{PU}{\9042\340}%* U+22E0
\DeclareTextCommand{\textnsucccurlyeq}{PU}{\9042\341}%* U+22E1
\DeclareTextCommand{\textnqsubseteq}{PU}{\9042\342}%* U+22E2
\DeclareTextCommand{\textnqsupseteq}{PU}{\9042\343}%* U+22E3
\DeclareTextCommand{\textsqsubsetneq}{PU}{\9042\344}%* U+22E4
\DeclareTextCommand{\textsqsupsetneq}{PU}{\9042\345}%* U+22E5
\DeclareTextCommand{\textlnsim}{PU}{\9042\346}%* U+22E6
\DeclareTextCommand{\textgnsim}{PU}{\9042\347}%* U+22E7
\DeclareTextCommand{\textprecnsim}{PU}{\9042\350}%* U+22E8
\DeclareTextCommand{\textsuccnsim}{PU}{\9042\351}%* U+22E9
\DeclareTextCommand{\textntriangleleft}{PU}{\9042\352}%* U+22EA
\DeclareTextCommand{\textntriangleright}{PU}{\9042\353}%* U+22EB
\DeclareTextCommand{\textntrianglelefteq}{PU}{\9042\354}%* U+22EC
\DeclareTextCommand{\textntrianglerighteq}{PU}{\9042\355}%* U+22ED
\DeclareTextCommand{\textvdots}{PU}{\9042\356}%* U+22EE
\DeclareTextCommand{\textcdots}{PU}{\9042\357}%* U+22EF
\DeclareTextCommand{\textudots}{PU}{\9042\360}%* U+22F0
\DeclareTextCommand{\textddots}{PU}{\9042\361}%* U+22F1
\DeclareTextCommand{\textbarin}{PU}{\9042\366}%* U+22F6
\DeclareTextCommand{\textdiameter}{PU}{\9043\000}%* U+2300
\DeclareTextCommand{\textbackneg}{PU}{\9043\020}%* U+2310
\DeclareTextCommand{\textwasylozenge}{PU}{\9043\021}%* U+2311
\DeclareTextCommand{\textinvbackneg}{PU}{\9043\031}%* U+2319
\DeclareTextCommand{\textclock}{PU}{\9043\032}%* U+231A
\DeclareTextCommand{\textulcorner}{PU}{\9043\034}%* U+231C
\DeclareTextCommand{\texturcorner}{PU}{\9043\035}%* U+231D
\DeclareTextCommand{\textllcorner}{PU}{\9043\036}%* U+231E
\DeclareTextCommand{\textlrcorner}{PU}{\9043\037}%* U+231F
\DeclareTextCommand{\textfrown}{PU}{\9043\042}%* U+2322
\DeclareTextCommand{\textsmile}{PU}{\9043\043}%* U+2323
\DeclareTextCommand{\textKeyboard}{PU}{\9043\050}%* U+2328
\DeclareTextCommand{\textlangle}{PU}{\9043\051}%* U+2329
\DeclareTextCommand{\textrangle}{PU}{\9043\052}%* U+232A
\DeclareTextCommand{\textAPLinv}{PU}{\9043\071}%* U+2339
\DeclareTextCommand{\textTumbler}{PU}{\9043\074}%* U+233C
\DeclareTextCommand{\textstmaryrdbaro}{PU}{\9043\075}% U+233D
\DeclareTextCommand{\textnotslash}{PU}{\9043\077}%* U+233F
\DeclareTextCommand{\textnotbackslash}{PU}{\9043\100}%* U+2340
\DeclareTextCommand{\textboxbackslash}{PU}{\9043\102}%* U+2342
\DeclareTextCommand{\textAPLleftarrowbox}{PU}{\9043\107}%* U+2347
\DeclareTextCommand{\textAPLrightarrowbox}{PU}{\9043\110}%* U+2348
\DeclareTextCommand{\textAPLuparrowbox}{PU}{\9043\120}%* U+2350
\DeclareTextCommand{\textAPLdownarrowbox}{PU}{\9043\127}%* U+2357
\DeclareTextCommand{\textAPLinput}{PU}{\9043\136}%* U+235E
\DeclareTextCommand{\textRequest}{PU}{\9043\160}%* U+2370
\DeclareTextCommand{\textBeam}{PU}{\9043\223}%* U+2393
\DeclareTextCommand{\texthexagon}{PU}{\9043\224}%* U+2394
\DeclareTextCommand{\textAPLbox}{PU}{\9043\225}%* U+2395
\DeclareTextCommand{\textForwardToIndex}{PU}{\9043\355}%* U+23ED
\DeclareTextCommand{\textRewindToIndex}{PU}{\9043\356}%* U+23EE
\DeclareTextCommand{\textblank}{PU}{\9044\042}% U+2422
\DeclareTextCommand{\textvisiblespace}{PU}{\9044\043}% U+2423
\DeclareTextCommand{\textbbslash}{PU}{\9044\112}%* U+244A
\DeclareTextCompositeCommand{\textcircled}{PU}{1}{\9044\140}% U+2460
\DeclareTextCompositeCommand{\textcircled}{PU}{2}{\9044\141}% U+2461
\DeclareTextCompositeCommand{\textcircled}{PU}{3}{\9044\142}% U+2462
\DeclareTextCompositeCommand{\textcircled}{PU}{4}{\9044\143}% U+2463
\DeclareTextCompositeCommand{\textcircled}{PU}{5}{\9044\144}% U+2464
\DeclareTextCompositeCommand{\textcircled}{PU}{6}{\9044\145}% U+2465
\DeclareTextCompositeCommand{\textcircled}{PU}{7}{\9044\146}% U+2466
\DeclareTextCompositeCommand{\textcircled}{PU}{8}{\9044\147}% U+2467
\DeclareTextCompositeCommand{\textcircled}{PU}{9}{\9044\150}% U+2468
\DeclareTextCompositeCommand{\textcircled}{PU}{10}{\9044\151}% U+2469
\DeclareTextCompositeCommand{\textcircled}{PU}{11}{\9044\152}% U+246A
\DeclareTextCompositeCommand{\textcircled}{PU}{12}{\9044\153}% U+246B
\DeclareTextCompositeCommand{\textcircled}{PU}{13}{\9044\154}% U+246C
\DeclareTextCompositeCommand{\textcircled}{PU}{14}{\9044\155}% U+246D
\DeclareTextCompositeCommand{\textcircled}{PU}{15}{\9044\156}% U+246E
\DeclareTextCompositeCommand{\textcircled}{PU}{16}{\9044\157}% U+246F
\DeclareTextCompositeCommand{\textcircled}{PU}{17}{\9044\160}% U+2470
\DeclareTextCompositeCommand{\textcircled}{PU}{18}{\9044\161}% U+2471
\DeclareTextCompositeCommand{\textcircled}{PU}{19}{\9044\162}% U+2472
\DeclareTextCompositeCommand{\textcircled}{PU}{20}{\9044\163}% U+2473
\DeclareTextCompositeCommand{\textcircled}{PU}{A}{\9044\266}% U+24B6
\DeclareTextCommand{\textCircledA}{PU}{\9044\266}%* U+24B6
\DeclareTextCompositeCommand{\textcircled}{PU}{B}{\9044\267}% U+24B7
\DeclareTextCompositeCommand{\textcircled}{PU}{C}{\9044\270}% U+24B8
\DeclareTextCompositeCommand{\textcircled}{PU}{D}{\9044\271}% U+24B9
\DeclareTextCompositeCommand{\textcircled}{PU}{E}{\9044\272}% U+24BA
\DeclareTextCompositeCommand{\textcircled}{PU}{F}{\9044\273}% U+24BB
\DeclareTextCommand{\textCleaningF}{PU}{\9044\273}%* U+24BB
\DeclareTextCommand{\textCleaningFF}{PU}{\9044\273\83\062}%* U+24BB U+0332
\DeclareTextCompositeCommand{\textcircled}{PU}{G}{\9044\274}% U+24BC
\DeclareTextCompositeCommand{\textcircled}{PU}{H}{\9044\275}% U+24BD
\DeclareTextCompositeCommand{\textcircled}{PU}{I}{\9044\276}% U+24BE
\DeclareTextCompositeCommand{\textcircled}{PU}{J}{\9044\277}% U+24BF
\DeclareTextCompositeCommand{\textcircled}{PU}{K}{\9044\300}% U+24C0
\DeclareTextCompositeCommand{\textcircled}{PU}{L}{\9044\301}% U+24C1
\DeclareTextCompositeCommand{\textcircled}{PU}{M}{\9044\302}% U+24C2
\DeclareTextCompositeCommand{\textcircled}{PU}{N}{\9044\303}% U+24C3
\DeclareTextCompositeCommand{\textcircled}{PU}{O}{\9044\304}% U+24C4
\DeclareTextCompositeCommand{\textcircled}{PU}{P}{\9044\305}% U+24C5
\DeclareTextCommand{\textCleaningP}{PU}{\9044\305}%* U+24C5
\DeclareTextCommand{\textCleaningPP}{PU}{\9044\305\83\062}%* U+24C5 U+0332
\DeclareTextCompositeCommand{\textcircled}{PU}{Q}{\9044\306}% U+24C6
\DeclareTextCompositeCommand{\textcircled}{PU}{R}{\9044\307}% U+24C7
\DeclareTextCompositeCommand{\textcircled}{PU}{S}{\9044\310}% U+24C8
\DeclareTextCompositeCommand{\textcircled}{PU}{T}{\9044\311}% U+24C9
\DeclareTextCompositeCommand{\textcircled}{PU}{U}{\9044\312}% U+24CA
\DeclareTextCompositeCommand{\textcircled}{PU}{V}{\9044\313}% U+24CB
\DeclareTextCompositeCommand{\textcircled}{PU}{W}{\9044\314}% U+24CC
\DeclareTextCompositeCommand{\textcircled}{PU}{X}{\9044\315}% U+24CD
\DeclareTextCompositeCommand{\textcircled}{PU}{Y}{\9044\316}% U+24CE
\DeclareTextCompositeCommand{\textcircled}{PU}{Z}{\9044\317}% U+24CF
\DeclareTextCompositeCommand{\textcircled}{PU}{a}{\9044\320}% U+24D0
\DeclareTextCompositeCommand{\textcircled}{PU}{b}{\9044\321}% U+24D1
\DeclareTextCompositeCommand{\textcircled}{PU}{c}{\9044\322}% U+24D2
\DeclareTextCompositeCommand{\textcircled}{PU}{d}{\9044\323}% U+24D3
\DeclareTextCompositeCommand{\textcircled}{PU}{e}{\9044\324}% U+24D4
\DeclareTextCompositeCommand{\textcircled}{PU}{f}{\9044\325}% U+24D5
\DeclareTextCompositeCommand{\textcircled}{PU}{g}{\9044\326}% U+24D6
\DeclareTextCompositeCommand{\textcircled}{PU}{h}{\9044\327}% U+24D7
\DeclareTextCompositeCommand{\textcircled}{PU}{i}{\9044\330}% U+24D8
\DeclareTextCompositeCommand{\textcircled}{PU}{j}{\9044\331}% U+24D9
\DeclareTextCompositeCommand{\textcircled}{PU}{k}{\9044\332}% U+24DA
\DeclareTextCompositeCommand{\textcircled}{PU}{l}{\9044\333}% U+24DB
\DeclareTextCompositeCommand{\textcircled}{PU}{m}{\9044\334}% U+24DC
\DeclareTextCompositeCommand{\textcircled}{PU}{n}{\9044\335}% U+24DD
\DeclareTextCompositeCommand{\textcircled}{PU}{o}{\9044\336}% U+24DE
\DeclareTextCompositeCommand{\textcircled}{PU}{p}{\9044\337}% U+24DF
\DeclareTextCompositeCommand{\textcircled}{PU}{q}{\9044\340}% U+24E0
\DeclareTextCompositeCommand{\textcircled}{PU}{r}{\9044\341}% U+24E1
\DeclareTextCompositeCommand{\textcircled}{PU}{s}{\9044\342}% U+24E2
\DeclareTextCompositeCommand{\textcircled}{PU}{t}{\9044\343}% U+24E3
\DeclareTextCompositeCommand{\textcircled}{PU}{u}{\9044\344}% U+24E4
\DeclareTextCompositeCommand{\textcircled}{PU}{v}{\9044\345}% U+24E5
\DeclareTextCompositeCommand{\textcircled}{PU}{w}{\9044\346}% U+24E6
\DeclareTextCompositeCommand{\textcircled}{PU}{x}{\9044\347}% U+24E7
\DeclareTextCompositeCommand{\textcircled}{PU}{y}{\9044\350}% U+24E8
\DeclareTextCompositeCommand{\textcircled}{PU}{z}{\9044\351}% U+24E9
\DeclareTextCompositeCommand{\textcircled}{PU}{0}{\9044\352}% U+24EA
\DeclareTextCommand{\textCuttingLine}{PU}{\9045\004}%* U+2504
\DeclareTextCommand{\textUParrow}{PU}{\9045\262}%* U+25B2
\DeclareTextCommand{\textbigtriangleup}{PU}{\9045\263}%* U+25B3
\DeclareTextCommand{\textForward}{PU}{\9045\266}%* U+25B6
\DeclareTextCommand{\texttriangleright}{PU}{\9045\267}%* U+25B7
\DeclareTextCommand{\textRHD}{PU}{\9045\272}%* U+25BA
\DeclareTextCommand{\textDOWNarrow}{PU}{\9045\274}%* U+25BC
\DeclareTextCommand{\textbigtriangledown}{PU}{\9045\275}%* U+25BD
\DeclareTextCommand{\textRewind}{PU}{\9045\300}%* U+25C0
\DeclareTextCommand{\texttriangleleft}{PU}{\9045\301}%* U+25C1
\DeclareTextCommand{\textLHD}{PU}{\9045\304}%* U+25C4
\DeclareTextCommand{\textdiamond}{PU}{\9045\307}%* U+25C7
\DeclareTextCommand{\textlozenge}{PU}{\9045\312}%* U+25CA
\DeclareTextCommand{\textLEFTCIRCLE}{PU}{\9045\326}%* U+25D6
\DeclareTextCommand{\textRIGHTCIRCLE}{PU}{\9045\327}%* U+25D7
\DeclareTextCommand{\textopenbullet}{PU}{\9045\346}%* U+25E6
\DeclareTextCommand{\textboxbar}{PU}{\9045\353}%* U+25EB
\DeclareTextCommand{\textbigcircle}{PU}{\9045\357}%* U+25EF
\DeclareTextCommand{\textCloud}{PU}{\9046\001}%* U+2601
\DeclareTextCommand{\textFiveStar}{PU}{\9046\005}%* U+2605
\DeclareTextCommand{\textFiveStarOpen}{PU}{\9046\006}%* U+2606
\DeclareTextCommand{\textPhone}{PU}{\9046\016}%* U+260E
\DeclareTextCommand{\textboxempty}{PU}{\9046\020}%* U+2610
\DeclareTextCommand{\textCheckedbox}{PU}{\9046\021}%* U+2611
\DeclareTextCommand{\textCrossedbox}{PU}{\9046\022}%* U+2612
\DeclareTextCommand{\textCoffeecup}{PU}{\9046\025}%* U+2615
\DeclareTextCommand{\textHandCuffLeft}{PU}{\9046\032}%* U+261A
\DeclareTextCommand{\textHandCuffRight}{PU}{\9046\033}%* U+261B
\DeclareTextCommand{\textHandLeft}{PU}{\9046\034}%* U+261C
\DeclareTextCommand{\textHandRight}{PU}{\9046\036}%* U+261E
\DeclareTextCommand{\textRadioactivity}{PU}{\9046\042}%* U+2622
\DeclareTextCommand{\textBiohazard}{PU}{\9046\043}%* U+2623
\DeclareTextCommand{\textAnkh}{PU}{\9046\045}%* U+2625
\DeclareTextCommand{\textYinYang}{PU}{\9046\057}%* U+262F
\DeclareTextCommand{\textfrownie}{PU}{\9046\071}%* U+2639
\DeclareTextCommand{\textsmiley}{PU}{\9046\072}%* U+263A
\DeclareTextCommand{\textblacksmiley}{PU}{\9046\073}%* U+263B
\DeclareTextCommand{\textsun}{PU}{\9046\074}%* U+263C
\DeclareTextCommand{\textleftmoon}{PU}{\9046\075}%* U+263D
\DeclareTextCommand{\textrightmoon}{PU}{\9046\076}%* U+263E
\DeclareTextCommand{\textmercury}{PU}{\9046\077}%* U+263F
\DeclareTextCommand{\textPUfemale}{PU}{\9046\100}% U+2640
\DeclareTextCommand{\textearth}{PU}{\9046\101}%* U+2641
\DeclareTextCommand{\textmale}{PU}{\9046\102}%* U+2642
\DeclareTextCommand{\textjupiter}{PU}{\9046\103}%* U+2643
\DeclareTextCommand{\textsaturn}{PU}{\9046\104}%* U+2644
\DeclareTextCommand{\texturanus}{PU}{\9046\105}%* U+2645
\DeclareTextCommand{\textneptune}{PU}{\9046\106}%* U+2646
\DeclareTextCommand{\textpluto}{PU}{\9046\107}%* U+2647
\DeclareTextCommand{\textaries}{PU}{\9046\110}%* U+2648
\DeclareTextCommand{\texttaurus}{PU}{\9046\111}%* U+2649
\DeclareTextCommand{\textgemini}{PU}{\9046\112}%* U+264A
\DeclareTextCommand{\textcancer}{PU}{\9046\113}%* U+264B
\DeclareTextCommand{\textleo}{PU}{\9046\114}%* U+264C
\DeclareTextCommand{\textvirgo}{PU}{\9046\115}%* U+264D
\DeclareTextCommand{\textlibra}{PU}{\9046\116}%* U+264E
\DeclareTextCommand{\textscorpio}{PU}{\9046\117}%* U+264F
\DeclareTextCommand{\textsagittarius}{PU}{\9046\120}%* U+2650
\DeclareTextCommand{\textcapricornus}{PU}{\9046\121}%* U+2651
\DeclareTextCommand{\textaquarius}{PU}{\9046\122}%* U+2652
\DeclareTextCommand{\textpisces}{PU}{\9046\123}%* U+2653
\DeclareTextCommand{\textspadesuitblack}{PU}{\9046\140}% U+2660
\DeclareTextCommand{\textheartsuitwhite}{PU}{\9046\141}% U+2661
\DeclareTextCommand{\textdiamondsuitwhite}{PU}{\9046\142}% U+2662
\DeclareTextCommand{\textclubsuitblack}{PU}{\9046\143}% U+2663
\DeclareTextCommand{\textspadesuitwhite}{PU}{\9046\144}% U+2664
\DeclareTextCommand{\textheartsuitblack}{PU}{\9046\145}% U+2665
\DeclareTextCommand{\textdiamondsuitblack}{PU}{\9046\146}% U+2666
\DeclareTextCommand{\textclubsuitwhite}{PU}{\9046\147}% U+2667
\DeclareTextCommand{\textquarternote}{PU}{\9046\151}%* U+2669
\DeclareTextCommand{\textmusicalnote}{PU}{\9046\152}% U+266A
\DeclareTextCommand{\texttwonotes}{PU}{\9046\153}%* U+266B
\DeclareTextCommand{\textsixteenthnote}{PU}{\9046\154}%* U+266C
\DeclareTextCommand{\textflat}{PU}{\9046\155}%* U+266D
\DeclareTextCommand{\textnatural}{PU}{\9046\156}%* U+266E
\DeclareTextCommand{\textsharp}{PU}{\9046\157}%* U+266F
\DeclareTextCommand{\textrecycle}{PU}{\9046\162}%* U+2672
\DeclareTextCommand{\textWheelchair}{PU}{\9046\177}%* U+267F
\DeclareTextCommand{\textFlag}{PU}{\9046\221}%* U+2691
\DeclareTextCommand{\textMineSign}{PU}{\9046\222}%* U+2692
\DeclareTextCommand{\textdsmilitary}{PU}{\9046\224}%* U+2694
\DeclareTextCommand{\textdsmedical}{PU}{\9046\225}%* U+2695
\DeclareTextCommand{\textdsjuridical}{PU}{\9046\226}%* U+2696
\DeclareTextCommand{\textdschemical}{PU}{\9046\227}%* U+2697
\DeclareTextCommand{\textdsbiological}{PU}{\9046\230}%* U+2698
\DeclareTextCommand{\textdscommercial}{PU}{\9046\232}%* U+269A
\DeclareTextCommand{\textmanstar}{PU}{\9046\235}%* U+269D
\DeclareTextCommand{\textdanger}{PU}{\9046\240}%* U+26A0
\DeclareTextCommand{\textFemaleFemale}{PU}{\9046\242}%* U+26A2
\DeclareTextCommand{\textMaleMale}{PU}{\9046\243}%* U+26A3
\DeclareTextCommand{\textFemaleMale}{PU}{\9046\244}%* U+26A4
\DeclareTextCommand{\textHermaphrodite}{PU}{\9046\245}%* U+26A5
\DeclareTextCommand{\textNeutral}{PU}{\9046\252}%* U+26AA
\DeclareTextCommand{\textmarried}{PU}{\9046\255}% U+26AD
\DeclareTextCommand{\textdivorced}{PU}{\9046\256}% U+26AE
\DeclareTextCommand{\textPUuncrfemale}{PU}{\9046\262}% U+26B2
\DeclareTextCommand{\texthexstar}{PU}{\9046\271}%* U+26B9
\DeclareTextCommand{\textSoccerBall}{PU}{\9046\275}% U+26BD
\DeclareTextCommand{\textSunCload}{PU}{\9046\305}%* U+26C5
\DeclareTextCommand{\textRain}{PU}{\9046\306}%* U+26C6
\DeclareTextCommand{\textnoway}{PU}{\9046\324}%* U+26D4
\DeclareTextCommand{\textMountain}{PU}{\9046\360}%* U+26F0
\DeclareTextCommand{\textTent}{PU}{\9046\372}%* U+26FA
\DeclareTextCommand{\textScissorRightBrokenBottom}{PU}{\9047\001}% U+2701
\DeclareTextCommand{\textScissorRight}{PU}{\9047\002}%* U+2702
\DeclareTextCommand{\textScissorRightBrokenTop}{PU}{\9047\003}%* U+2703
\DeclareTextCommand{\textScissorHollowRight}{PU}{\9047\004}%* U+2704
\DeclareTextCommand{\textPhoneHandset}{PU}{\9047\006}%* U+2706
\DeclareTextCommand{\textTape}{PU}{\9047\007}%* U+2707
\DeclareTextCommand{\textPlane}{PU}{\9047\010}%* U+2708
\DeclareTextCommand{\textEnvelope}{PU}{\9047\011}%* U+2709
\DeclareTextCommand{\textPeace}{PU}{\9047\014}%* U+270C
\DeclareTextCommand{\textWritingHand}{PU}{\9047\015}%* U+270D
\DeclareTextCommand{\textPencilRightDown}{PU}{\9047\016}%* U+270E
\DeclareTextCommand{\textPencilRight}{PU}{\9047\017}%* U+270F
\DeclareTextCommand{\textPencilRightUp}{PU}{\9047\020}%* U+2710
\DeclareTextCommand{\textNibRight}{PU}{\9047\021}%* U+2711
\DeclareTextCommand{\textNibSolidRight}{PU}{\9047\022}%* U+2712
\DeclareTextCommand{\textCheckmark}{PU}{\9047\023}%* U+2713
\DeclareTextCommand{\textCheckmarkBold}{PU}{\9047\024}%* U+2714
\DeclareTextCommand{\textXSolid}{PU}{\9047\025}%* U+2715
\DeclareTextCommand{\textXSolidBold}{PU}{\9047\026}%* U+2716
\DeclareTextCommand{\textXSolidBrush}{PU}{\9047\027}%* U+2717
\DeclareTextCommand{\textPlusOutline}{PU}{\9047\031}%* U+2719
\DeclareTextCommand{\textPlus}{PU}{\9047\032}%* U+271A
\DeclareTextCommand{\textPlusThinCenterOpen}{PU}{\9047\033}%* U+271B
\DeclareTextCommand{\textPlusCenterOpen}{PU}{\9047\034}%* U+271C
\DeclareTextCommand{\textCross}{PU}{\9047\035}%* U+271D
\DeclareTextCommand{\textCrossOpenShadow}{PU}{\9047\036}%* U+271E
\DeclareTextCommand{\textCrossOutline}{PU}{\9047\037}%* U+271F
\DeclareTextCommand{\textCrossMaltese}{PU}{\9047\040}%* U+2720
\DeclareTextCommand{\textDavidStar}{PU}{\9047\041}%* U+2721
\DeclareTextCommand{\textFourAsterisk}{PU}{\9047\042}%* U+2722
\DeclareTextCommand{\textJackStar}{PU}{\9047\043}%* U+2723
\DeclareTextCommand{\textJackStarBold}{PU}{\9047\044}%* U+2724
\DeclareTextCommand{\textClowerTips}{PU}{\9047\045}%* U+2725
\DeclareTextCommand{\textFourStar}{PU}{\9047\046}%* U+2726
\DeclareTextCommand{\textFourStarOpen}{PU}{\9047\047}%* U+2727
\DeclareTextCommand{\textFiveStarOpenCircled}{PU}{\9047\052}%* U+272A
\DeclareTextCommand{\textFiveStarCenterOpen}{PU}{\9047\053}%* U+272B
\DeclareTextCommand{\textFiveStarOpenDotted}{PU}{\9047\054}%* U+272C
\DeclareTextCommand{\textFiveStarOutline}{PU}{\9047\055}%* U+272D
\DeclareTextCommand{\textFiveStarOutlineHeavy}{PU}{\9047\056}%* U+272E
\DeclareTextCommand{\textFiveStarConvex}{PU}{\9047\057}%* U+272F
\DeclareTextCommand{\textFiveStarShadow}{PU}{\9047\060}%* U+2730
\DeclareTextCommand{\textAsteriskBold}{PU}{\9047\061}%* U+2731
\DeclareTextCommand{\textAsteriskCenterOpen}{PU}{\9047\062}%* U+2732
\DeclareTextCommand{\textEightStarTaper}{PU}{\9047\064}%* U+2734
\DeclareTextCommand{\textEightStarConvex}{PU}{\9047\065}%* U+2735
\DeclareTextCommand{\textSixStar}{PU}{\9047\066}%* U+2736
\DeclareTextCommand{\textEightStar}{PU}{\9047\067}%* U+2737
\DeclareTextCommand{\textEightStarBold}{PU}{\9047\070}%* U+2738
\DeclareTextCommand{\textTwelveStar}{PU}{\9047\071}%* U+2739
\DeclareTextCommand{\textSixteenStarLight}{PU}{\9047\072}%* U+273A
\DeclareTextCommand{\textSixFlowerPetalRemoved}{PU}{\9047\073}%* U+273B
\DeclareTextCommand{\textSixFlowerOpenCenter}{PU}{\9047\074}%* U+273C
\DeclareTextCommand{\textAsterisk}{PU}{\9047\075}%* U+273D
\DeclareTextCommand{\textSixFlowerAlternate}{PU}{\9047\076}%* U+273E
\DeclareTextCommand{\textFiveFlowerPetal}{PU}{\9047\077}%* U+273F
\DeclareTextCommand{\textFiveFlowerOpen}{PU}{\9047\100}%* U+2740
\DeclareTextCommand{\textEightFlowerPetal}{PU}{\9047\101}%* U+2741
\DeclareTextCommand{\textSunshineOpenCircled}{PU}{\9047\102}%* U+2742
\DeclareTextCommand{\textSixFlowerAltPetal}{PU}{\9047\103}%* U+2743
\DeclareTextCommand{\textSnowflakeChevron}{PU}{\9047\104}%* U+2744
\DeclareTextCommand{\textSnowflake}{PU}{\9047\105}%* U+2745
\DeclareTextCommand{\textSnowflakeChevronBold}{PU}{\9047\106}%* U+2746
\DeclareTextCommand{\textSparkle}{PU}{\9047\107}%* U+2747
\DeclareTextCommand{\textSparkleBold}{PU}{\9047\110}%* U+2748
\DeclareTextCommand{\textAsteriskRoundedEnds}{PU}{\9047\111}%* U+2749
\DeclareTextCommand{\textEightFlowerPetalRemoved}{PU}{\9047\112}%* U+274A
\DeclareTextCommand{\textEightAsterisk}{PU}{\9047\113}%* U+274B
\DeclareTextCommand{\textCircleShadow}{PU}{\9047\115}%* U+274D
\DeclareTextCommand{\textSquareShadowBottomRight}{PU}{\9047\117}%* U+274F
\DeclareTextCommand{\textSquareTopRight}{PU}{\9047\120}%* U+2750
\DeclareTextCommand{\textSquareCastShadowBottomRight}{PU}{\9047\121}%* U+2751
\DeclareTextCommand{\textSquareCastShadowTopRight}{PU}{\9047\122}%* U+2752
\DeclareTextCommand{\textDiamandSolid}{PU}{\9047\126}%* U+2756
\DeclareTextCommand{\textRectangleThin}{PU}{\9047\130}%* U+2758
\DeclareTextCommand{\textRectangle}{PU}{\9047\131}%* U+2759
\DeclareTextCommand{\textRectangleBold}{PU}{\9047\132}%* U+275A
\DeclareTextCommand{\textperp}{PU}{\9047\302}%* U+27C2
\DeclareTextCommand{\textnotperp}{PU}{\9047\302\83\070}%* U+27C2 U+0338
\DeclareTextCommand{\textveedot}{PU}{\9047\307}%* U+27C7
\DeclareTextCommand{\textwedgedot}{PU}{\9047\321}%* U+27D1
\DeclareTextCommand{\textleftspoon}{PU}{\9047\334}%* U+27DC
\DeclareTextCommand{\textlbrackdbl}{PU}{\9047\346}%* U+27E6
\DeclareTextCommand{\textrbrackdbl}{PU}{\9047\347}%* U+27E7
\DeclareTextCommand{\textcirclearrowleft}{PU}{\9047\362}%* U+27F2
\DeclareTextCommand{\textcirclearrowright}{PU}{\9047\363}%* U+27F3
\DeclareTextCommand{\textlongleftarrow}{PU}{\9047\365}%* U+27F5
\DeclareTextCommand{\textlongrightarrow}{PU}{\9047\366}%* U+27F6
\DeclareTextCommand{\textlongleftrightarrow}{PU}{\9047\367}%* U+27F7
\DeclareTextCommand{\textLongleftarrow}{PU}{\9047\370}%* U+27F8
\DeclareTextCommand{\textLongrightarrow}{PU}{\9047\371}%* U+27F9
\DeclareTextCommand{\textLongleftrightarrow}{PU}{\9047\372}%* U+27FA
\DeclareTextCommand{\textlongmapsto}{PU}{\9047\374}%* U+27FC
\DeclareTextCommand{\textLongmapsfrom}{PU}{\9047\375}%* U+27FD
\DeclareTextCommand{\textLongmapsto}{PU}{\9047\376}%* U+27FE
\DeclareTextCommand{\textnwsearrow}{PU}{\9051\041}%* U+2921
\DeclareTextCommand{\textneswarrow}{PU}{\9051\042}%* U+2922
\DeclareTextCommand{\textlhooknwarrow}{PU}{\9051\043}%* U+2923
\DeclareTextCommand{\textrhooknearrow}{PU}{\9051\044}%* U+2924
\DeclareTextCommand{\textlhooksearrow}{PU}{\9051\045}%* U+2925
\DeclareTextCommand{\textrhookswarrow}{PU}{\9051\046}%* U+2926
\DeclareTextCommand{\textleadsto}{PU}{\9051\063}%* U+2933
\DeclareTextCommand{\textrcurvearrowne}{PU}{\9051\064}%* U+2934
\DeclareTextCommand{\textlcurvearrowse}{PU}{\9051\065}%* U+2935
\DeclareTextCommand{\textlcurvearrowsw}{PU}{\9051\066}%* U+2936
\DeclareTextCommand{\textrcurvearrowse}{PU}{\9051\067}%* U+2937
\DeclareTextCommand{\textlcurvearrowdown}{PU}{\9051\070}%* U+2938
\DeclareTextCommand{\textrcurvearrowdown}{PU}{\9051\071}%* U+2939
\DeclareTextCommand{\textrcurvearrowleft}{PU}{\9051\072}%* U+293A
\DeclareTextCommand{\textrcurvearrowright}{PU}{\9051\073}%* U+293B
\DeclareTextCommand{\textleftrightharpoon}{PU}{\9051\112}%* U+294A
\DeclareTextCommand{\textrightleftharpoon}{PU}{\9051\113}%* U+294B
\DeclareTextCommand{\textupdownharpoonrightleft}{PU}{\9051\114}%* U+294C
\DeclareTextCommand{\textupdownharpoonleftright}{PU}{\9051\115}%* U+294D
\DeclareTextCommand{\textleftleftharpoons}{PU}{\9051\142}%* U+2962
\DeclareTextCommand{\textupupharpoons}{PU}{\9051\143}%* U+2963
\DeclareTextCommand{\textrightrightharpoons}{PU}{\9051\144}%* U+2964
\DeclareTextCommand{\textdowndownharpoons}{PU}{\9051\145}%* U+2965
\DeclareTextCommand{\textleftbarharpoon}{PU}{\9051\152}%* U+296A
\DeclareTextCommand{\textbarleftharpoon}{PU}{\9051\153}%* U+296B
\DeclareTextCommand{\textrightbarharpoon}{PU}{\9051\154}%* U+296C
\DeclareTextCommand{\textbarrightharpoon}{PU}{\9051\155}%* U+296D
\DeclareTextCommand{\textupdownharpoons}{PU}{\9051\156}%* U+296E
\DeclareTextCommand{\textdownupharpoons}{PU}{\9051\157}%* U+296F
\DeclareTextCommand{\textmoo}{PU}{\9051\177\83\066}%* U+297F U+0336
\DeclareTextCommand{\textllparenthesis}{PU}{\9051\207}%* U+2987
\DeclareTextCommand{\textrrparenthesis}{PU}{\9051\210}%* U+2988
\DeclareTextCommand{\textinvdiameter}{PU}{\9051\260}%* U+29B0
\DeclareTextCommand{\textobar}{PU}{\9051\266}%* U+29B6
\DeclareTextCommand{\textobslash}{PU}{\9051\270}%* U+29B8
\DeclareTextCommand{\textobot}{PU}{\9051\272}%* U+29BA
\DeclareTextCommand{\textNoChemicalCleaning}{PU}{\9051\273}%* U+29BB
\DeclareTextCommand{\textolessthan}{PU}{\9051\300}%* U+29C0
\DeclareTextCommand{\textogreaterthan}{PU}{\9051\301}%* U+29C1
\DeclareTextCommand{\textboxslash}{PU}{\9051\304}%* U+29C4
\DeclareTextCommand{\textboxbslash}{PU}{\9051\305}%* U+29C5
\DeclareTextCommand{\textboxast}{PU}{\9051\306}%* U+29C6
\DeclareTextCommand{\textboxcircle}{PU}{\9051\307}%* U+29C7
\DeclareTextCommand{\textboxbox}{PU}{\9051\310}%* U+29C8
\DeclareTextCommand{\textValve}{PU}{\9051\323}%* U+29D3
\DeclareTextCommand{\textmultimapboth}{PU}{\9051\337}%* U+29DF
\DeclareTextCommand{\textshuffle}{PU}{\9051\342}%* U+29E2
\DeclareTextCommand{\textuplus}{PU}{\9052\004}%* U+2A04
\DeclareTextCommand{\textbigdoublewedge}{PU}{\9052\007}%* U+2A07
\DeclareTextCommand{\textbigdoublevee}{PU}{\9052\010}%* U+2A08
\DeclareTextCommand{\textJoin}{PU}{\9052\035}%* U+2A1D
\DeclareTextCommand{\textfatsemi}{PU}{\9052\037}%* U+2A1F
\DeclareTextCommand{\textcircplus}{PU}{\9052\042}%* U+2A22
\DeclareTextCommand{\textminusdot}{PU}{\9052\052}%* U+2A2A
\DeclareTextCommand{\textdottimes}{PU}{\9052\060}%* U+2A30
\DeclareTextCommand{\textdtimes}{PU}{\9052\062}%* U+2A32
\DeclareTextCommand{\textodiv}{PU}{\9052\070}%* U+2A38
\DeclareTextCommand{\textinvneg}{PU}{\9052\074}%* U+2A3C
\DeclareTextCommand{\textsqdoublecap}{PU}{\9052\116}%* U+2A4E
\DeclareTextCommand{\textcapdot}{PU}{\9052\100}%* U+2A40
\DeclareTextCommand{\textsqdoublecup}{PU}{\9052\117}%* U+2A4F
\DeclareTextCommand{\textdoublewedge}{PU}{\9052\125}%* U+2A55
\DeclareTextCommand{\textdoublevee}{PU}{\9052\126}%* U+2A56
\DeclareTextCommand{\textdoublebarwedge}{PU}{\9052\136}%* U+2A5E
\DeclareTextCommand{\textveedoublebar}{PU}{\9052\143}%* U+2A63
\DeclareTextCommand{\texteqdot}{PU}{\9052\146}%* U+2A66
\DeclareTextCommand{\textneqdot}{PU}{\9052\146\83\070}%* U+2A66 U+0338
\DeclareTextCommand{\textcoloncolonequals}{PU}{\9052\164}%* U+2A74
\DeclareTextCommand{\textleqslant}{PU}{\9052\175}%* U+2A7D
\DeclareTextCommand{\textnleqslant}{PU}{\9052\175\83\070}%* U+2A7D U+0338
\DeclareTextCommand{\textgeqslant}{PU}{\9052\176}%* U+2A7E
\DeclareTextCommand{\textngeqslant}{PU}{\9052\176\83\070}%* U+2A7E U+0338
\DeclareTextCommand{\textlessapprox}{PU}{\9052\205}%* U+2A85
\DeclareTextCommand{\textnlessapprox}{PU}{\9052\205\83\070}%* U+2A85 U+0338
\DeclareTextCommand{\textgtrapprox}{PU}{\9052\206}%* U+2A86
\DeclareTextCommand{\textngtrapprox}{PU}{\9052\206\83\070}%* U+2A86 U+0338
\DeclareTextCommand{\textlneq}{PU}{\9052\207}%* U+2A87
\DeclareTextCommand{\textgneq}{PU}{\9052\210}%* U+2A88
\DeclareTextCommand{\textlnapprox}{PU}{\9052\211}%* U+2A89
\DeclareTextCommand{\textgnapprox}{PU}{\9052\212}%* U+2A8A
\DeclareTextCommand{\textlesseqqgtr}{PU}{\9052\213}%* U+2A8B
\DeclareTextCommand{\textgtreqqless}{PU}{\9052\214}%* U+2A8C
\DeclareTextCommand{\texteqslantless}{PU}{\9052\225}%* U+2A95
\DeclareTextCommand{\texteqslantgtr}{PU}{\9052\226}%* U+2A96
\DeclareTextCommand{\textleftslice}{PU}{\9052\246}%* U+2AA6
\DeclareTextCommand{\textrightslice}{PU}{\9052\247}%* U+2AA7
\DeclareTextCommand{\textpreceq}{PU}{\9052\257}%* U+2AAF
\DeclareTextCommand{\textnpreceq}{PU}{\9052\257\83\070}%* U+2AAF U+0338
\DeclareTextCommand{\textsucceq}{PU}{\9052\260}%* U+2AB0
\DeclareTextCommand{\textnsucceq}{PU}{\9052\260\83\070}%* U+2AB0 U+0338
\DeclareTextCommand{\textprecneq}{PU}{\9052\261}%* U+2AB1
\DeclareTextCommand{\textsuccneq}{PU}{\9052\262}%* U+2AB2
\DeclareTextCommand{\textpreceqq}{PU}{\9052\263}%* U+2AB3
\DeclareTextCommand{\textnpreceqq}{PU}{\9052\263\83\070}%* U+2AB3 U+0338
\DeclareTextCommand{\textsucceqq}{PU}{\9052\264}%* U+2AB4
\DeclareTextCommand{\textnsucceqq}{PU}{\9052\264\83\070}%* U+2AB4 U+0338
\DeclareTextCommand{\textprecneqq}{PU}{\9052\265}%* U+2AB5
\DeclareTextCommand{\textsuccneqq}{PU}{\9052\266}%* U+2AB6
\DeclareTextCommand{\textprecapprox}{PU}{\9052\267}%* U+2AB7
\DeclareTextCommand{\textnprecapprox}{PU}{\9052\267\83\070}%* U+2AB7 U+0338
\DeclareTextCommand{\textsuccapprox}{PU}{\9052\270}%* U+2AB8
\DeclareTextCommand{\textnsuccapprox}{PU}{\9052\270\83\070}%* U+2AB8 U+0338
\DeclareTextCommand{\textprecnapprox}{PU}{\9052\271}%* U+2AB9
\DeclareTextCommand{\textsuccnapprox}{PU}{\9052\272}%* U+2ABA
\DeclareTextCommand{\textsubseteqq}{PU}{\9052\305}%* U+2AC5
\DeclareTextCommand{\textnsubseteqq}{PU}{\9052\305\83\070}%* U+2AC5 U+0338
\DeclareTextCommand{\textsupseteqq}{PU}{\9052\306}%* U+2AC6
\DeclareTextCommand{\textnsupseteqq}{PU}{\9052\306\83\070}%* U+2AC6 U+0338
\DeclareTextCommand{\textdashV}{PU}{\9052\343}%* U+2AE3
\DeclareTextCommand{\textndashV}{PU}{\9052\343\83\070}%* U+2AE3 U+0338
\DeclareTextCommand{\textDashv}{PU}{\9052\344}%* U+2AE4
\DeclareTextCommand{\textnDashv}{PU}{\9052\344\83\070}%* U+2AE4 U+0338
\DeclareTextCommand{\textDashV}{PU}{\9052\345}%* U+2AE5
\DeclareTextCommand{\textnDashV}{PU}{\9052\345\83\070}%* U+2AE5 U+0338
\DeclareTextCommand{\textdownmodels}{PU}{\9052\352}%* U+2AEA
\DeclareTextCommand{\textndownmodels}{PU}{\9052\352\83\070}%* U+2AEA U+0338
\DeclareTextCommand{\textupmodels}{PU}{\9052\353}%* U+2AEB
\DeclareTextCommand{\textnupmodels}{PU}{\9052\353\83\070}%* U+2AEB U+0338
\DeclareTextCommand{\textupspoon}{PU}{\9052\357}%* U+2AEF
\DeclareTextCommand{\textinterleave}{PU}{\9052\364}%* U+2AF4
\DeclareTextCommand{\textsslash}{PU}{\9052\375}%* U+2AFD
\DeclareTextCommand{\textpentagon}{PU}{\9053\040}%* U+2B20
\DeclareTextCommand{\textvarhexagon}{PU}{\9053\041}%* U+2B21
\DeclareTextCommand{\textjinferior}{PU}{\9054\174}%* U+2C7C
\DeclareTextCommand{\textslashdiv}{PU}{\9056\023}%* U+2E13
\DeclareTextCommand{\textinterrobangdown}{PU}{\9056\030}% U+2E18
\DeclareTextCommand{\textfivedots}{PU}{\9056\055}%* U+2E2D
\DeclareTextCommand{\textupstep}{PU}{\9247\033}% U+A71B
\DeclareTextCommand{\textdownstep}{PU}{\9247\034}% U+A71C
\DeclareTextCommand{\textPUheng}{PU}{\9247\047}% U+A727
\DeclareTextCommand{\textPUlhookfour}{PU}{\9247\054}% U+A72C
\DeclareTextCommand{\textPUscf}{PU}{\9247\060}% U+A730
\DeclareTextCommand{\textPUaolig}{PU}{\9247\065}% U+A735
\DeclareTextCommand{\textoo}{PU}{\9247\117}%* U+A74F
\DeclareTextCommand{\textcircumlow}{PU}{\9247\210}% U+A788
\DeclareTextCommand{\textfi}{PU}{\9373\001}% U+FB01
\DeclareTextCommand{\textfl}{PU}{\9373\002}% U+FB02
\DeclareTextCommand{\textGaPa}{PU}{\9330\064\9335\073}%* U+1D13B
\DeclareTextCommand{\textHaPa}{PU}{\9330\064\9335\074}%* U+1D13C
\DeclareTextCommand{\textViPa}{PU}{\9330\064\9335\075}%* U+1D13D
\DeclareTextCommand{\textAcPa}{PU}{\9330\064\9335\076}%* U+1D13E
\DeclareTextCommand{\textSePa}{PU}{\9330\064\9335\077}%* U+1D13F
\DeclareTextCommand{\textZwPa}{PU}{\9330\064\9335\100}%* U+1D140
\DeclareTextCommand{\textfullnote}{PU}{\9330\064\9335\135}%* U+1D15D
\DeclareTextCommand{\texthalfnote}{PU}{\9330\064\9335\136}%* U+1D15E
\DeclareTextCommand{\textVier}{PU}{\9330\064\9335\137}%* U+1D15F
\DeclareTextCommand{\textAcht}{PU}{\9330\064\9335\140}%* U+1D160
\DeclareTextCommand{\textSech}{PU}{\9330\064\9335\141}%* U+1D161
\DeclareTextCommand{\textZwdr}{PU}{\9330\064\9335\142}%* U+1D162
\DeclareTextCommand{\textMundus}{PU}{\9330\074\9337\015}%* U+1F30D
\DeclareTextCommand{\textMoon}{PU}{\9330\074\9337\031}%* U+1F319
\DeclareTextCommand{\textManFace}{PU}{\9330\075\9334\150}%* U+1F468
\DeclareTextCommand{\textWomanFace}{PU}{\9330\075\9334\151}%* U+1F469
\DeclareTextCommand{\textFax}{PU}{\9330\075\9334\340}%* U+1F4E0
\DeclareTextCommand{\textFire}{PU}{\9330\075\9335\045}%* U+1F525
\DeclareTextCommand{\textBicycle}{PU}{\9330\075\9336\262}%* U+1F6B2
\DeclareTextCommand{\textGentsroom}{PU}{\9330\075\9336\271}%* U+1F6B9
\DeclareTextCommand{\textLadiesroom}{PU}{\9330\075\9336\272}%* U+1F6BA
\DeclareTextCommand{\SS}{PU}{SS}%
\DeclareTextCommand{\textcopyleft}{PU}{\9041\204\9040\335}% U+2184 U+20DD
\DeclareTextCommand{\textccnc}{PU}{\80\044\9040\340}%* U+0024 U+20E0
\DeclareTextCommand{\textccnd}{PU}{=\9040\335}%* U+003D U+20DD
\DeclareTextCommand{\textccsa}{PU}{\9047\362\9040\335}%* U+27F2 U+20DD
\DeclareTextCommand{\textInfo}{PU}{\9330\065\9334\042\9040\336}%* U+1D422 U+20DE
\DeclareTextCommand{\textCESign}{PU}{\80\103\80\105}%* U+0043 U+0045
\DeclareTextCommand{\textglqq}{PU}{\quotedblbase}%
\DeclareTextCommand{\textgrqq}{PU}{\textquotedblleft}%
\DeclareTextCommand{\textglq}{PU}{\quotesinglbase}%
\DeclareTextCommand{\textgrq}{PU}{\textquoteleft}%
\DeclareTextCommand{\textflqq}{PU}{\guillemotleft}%
\DeclareTextCommand{\textfrqq}{PU}{\guillemotright}%
\DeclareTextCommand{\textflq}{PU}{\guilsinglleft}%
\DeclareTextCommand{\textfrq}{PU}{\guilsinglright}%
\DeclareTextCommand{\textneg}{PU}{\textlogicalnot}%*
\DeclareTextCommand{\texttimes}{PU}{\textmultiply}%*
\DeclareTextCommand{\textdiv}{PU}{\textdivide}%*
\DeclareTextCommand{\textpm}{PU}{\textplusminus}%*
\DeclareTextCommand{\textcdot}{PU}{\textperiodcentered}%*
\endinput
%%
%% End of file `puenc.def'.