parse_selectors 2.1.2

minify-selectors' API
Documentation
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
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
use std::collections::HashMap;

use lazy_static::lazy_static;




lazy_static! {
	// Reference: https://html.spec.whatwg.org/entities.json
	#[rustfmt::skip]
	pub static ref ENTITIES: HashMap<String, String> = HashMap::from([
		(String::from("&AElig"), String::from("Æ")),
		(String::from("&AElig;"), String::from("Æ")),
		(String::from("&AMP"), String::from("&")),
		(String::from("&AMP;"), String::from("&")),
		(String::from("&Aacute"), String::from("Á")),
		(String::from("&Aacute;"), String::from("Á")),
		(String::from("&Abreve;"), String::from("Ă")),
		(String::from("&Acirc"), String::from("Â")),
		(String::from("&Acirc;"), String::from("Â")),
		(String::from("&Acy;"), String::from("А")),
		(String::from("&Afr;"), String::from("𝔄")),
		(String::from("&Agrave"), String::from("À")),
		(String::from("&Agrave;"), String::from("À")),
		(String::from("&Alpha;"), String::from("Α")),
		(String::from("&Amacr;"), String::from("Ā")),
		(String::from("&And;"), String::from("")),
		(String::from("&Aogon;"), String::from("Ą")),
		(String::from("&Aopf;"), String::from("𝔸")),
		(String::from("&ApplyFunction;"), String::from("")),
		(String::from("&Aring"), String::from("Å")),
		(String::from("&Aring;"), String::from("Å")),
		(String::from("&Ascr;"), String::from("𝒜")),
		(String::from("&Assign;"), String::from("")),
		(String::from("&Atilde"), String::from("Ã")),
		(String::from("&Atilde;"), String::from("Ã")),
		(String::from("&Auml"), String::from("Ä")),
		(String::from("&Auml;"), String::from("Ä")),
		(String::from("&Backslash;"), String::from("")),
		(String::from("&Barv;"), String::from("")),
		(String::from("&Barwed;"), String::from("")),
		(String::from("&Bcy;"), String::from("Б")),
		(String::from("&Because;"), String::from("")),
		(String::from("&Bernoullis;"), String::from("")),
		(String::from("&Beta;"), String::from("Β")),
		(String::from("&Bfr;"), String::from("𝔅")),
		(String::from("&Bopf;"), String::from("𝔹")),
		(String::from("&Breve;"), String::from("˘")),
		(String::from("&Bscr;"), String::from("")),
		(String::from("&Bumpeq;"), String::from("")),
		(String::from("&CHcy;"), String::from("Ч")),
		(String::from("&COPY"), String::from("©")),
		(String::from("&COPY;"), String::from("©")),
		(String::from("&Cacute;"), String::from("Ć")),
		(String::from("&Cap;"), String::from("")),
		(String::from("&CapitalDifferentialD;"), String::from("")),
		(String::from("&Cayleys;"), String::from("")),
		(String::from("&Ccaron;"), String::from("Č")),
		(String::from("&Ccedil"), String::from("Ç")),
		(String::from("&Ccedil;"), String::from("Ç")),
		(String::from("&Ccirc;"), String::from("Ĉ")),
		(String::from("&Cconint;"), String::from("")),
		(String::from("&Cdot;"), String::from("Ċ")),
		(String::from("&Cedilla;"), String::from("¸")),
		(String::from("&CenterDot;"), String::from("·")),
		(String::from("&Cfr;"), String::from("")),
		(String::from("&Chi;"), String::from("Χ")),
		(String::from("&CircleDot;"), String::from("")),
		(String::from("&CircleMinus;"), String::from("")),
		(String::from("&CirclePlus;"), String::from("")),
		(String::from("&CircleTimes;"), String::from("")),
		(String::from("&ClockwiseContourIntegral;"), String::from("")),
		(String::from("&CloseCurlyDoubleQuote;"), String::from("")),
		(String::from("&CloseCurlyQuote;"), String::from("")),
		(String::from("&Colon;"), String::from("")),
		(String::from("&Colone;"), String::from("")),
		(String::from("&Congruent;"), String::from("")),
		(String::from("&Conint;"), String::from("")),
		(String::from("&ContourIntegral;"), String::from("")),
		(String::from("&Copf;"), String::from("")),
		(String::from("&Coproduct;"), String::from("")),
		(String::from("&CounterClockwiseContourIntegral;"), String::from("")),
		(String::from("&Cross;"), String::from("")),
		(String::from("&Cscr;"), String::from("𝒞")),
		(String::from("&Cup;"), String::from("")),
		(String::from("&CupCap;"), String::from("")),
		(String::from("&DD;"), String::from("")),
		(String::from("&DDotrahd;"), String::from("")),
		(String::from("&DJcy;"), String::from("Ђ")),
		(String::from("&DScy;"), String::from("Ѕ")),
		(String::from("&DZcy;"), String::from("Џ")),
		(String::from("&Dagger;"), String::from("")),
		(String::from("&Darr;"), String::from("")),
		(String::from("&Dashv;"), String::from("")),
		(String::from("&Dcaron;"), String::from("Ď")),
		(String::from("&Dcy;"), String::from("Д")),
		(String::from("&Del;"), String::from("")),
		(String::from("&Delta;"), String::from("Δ")),
		(String::from("&Dfr;"), String::from("𝔇")),
		(String::from("&DiacriticalAcute;"), String::from("´")),
		(String::from("&DiacriticalDot;"), String::from("˙")),
		(String::from("&DiacriticalDoubleAcute;"), String::from("˝")),
		(String::from("&DiacriticalGrave;"), String::from("`")),
		(String::from("&DiacriticalTilde;"), String::from("˜")),
		(String::from("&Diamond;"), String::from("")),
		(String::from("&DifferentialD;"), String::from("")),
		(String::from("&Dopf;"), String::from("𝔻")),
		(String::from("&Dot;"), String::from("¨")),
		(String::from("&DotDot"), String::from("")),
		(String::from("&DotEqual;"), String::from("")),
		(String::from("&DoubleContourIntegral;"), String::from("")),
		(String::from("&DoubleDot;"), String::from("¨")),
		(String::from("&DoubleDownArrow;"), String::from("")),
		(String::from("&DoubleLeftArrow;"), String::from("")),
		(String::from("&DoubleLeftRightArrow;"), String::from("")),
		(String::from("&DoubleLeftTee;"), String::from("")),
		(String::from("&DoubleLongLeftArrow;"), String::from("")),
		(String::from("&DoubleLongLeftRightArrow;"), String::from("")),
		(String::from("&DoubleLongRightArrow;"), String::from("")),
		(String::from("&DoubleRightArrow;"), String::from("")),
		(String::from("&DoubleRightTee;"), String::from("")),
		(String::from("&DoubleUpArrow;"), String::from("")),
		(String::from("&DoubleUpDownArrow;"), String::from("")),
		(String::from("&DoubleVerticalBar;"), String::from("")),
		(String::from("&DownArrow;"), String::from("")),
		(String::from("&DownArrowBar;"), String::from("")),
		(String::from("&DownArrowUpArrow;"), String::from("")),
		(String::from("&DownBreve"), String::from("̑")),
		(String::from("&DownLeftRightVector;"), String::from("")),
		(String::from("&DownLeftTeeVector;"), String::from("")),
		(String::from("&DownLeftVector;"), String::from("")),
		(String::from("&DownLeftVectorBar;"), String::from("")),
		(String::from("&DownRightTeeVector;"), String::from("")),
		(String::from("&DownRightVector;"), String::from("")),
		(String::from("&DownRightVectorBar;"), String::from("")),
		(String::from("&DownTee;"), String::from("")),
		(String::from("&DownTeeArrow;"), String::from("")),
		(String::from("&Downarrow;"), String::from("")),
		(String::from("&Dscr;"), String::from("𝒟")),
		(String::from("&Dstrok;"), String::from("Đ")),
		(String::from("&ENG;"), String::from("Ŋ")),
		(String::from("&ETH"), String::from("Ð")),
		(String::from("&ETH;"), String::from("Ð")),
		(String::from("&Eacute"), String::from("É")),
		(String::from("&Eacute;"), String::from("É")),
		(String::from("&Ecaron;"), String::from("Ě")),
		(String::from("&Ecirc"), String::from("Ê")),
		(String::from("&Ecirc;"), String::from("Ê")),
		(String::from("&Ecy;"), String::from("Э")),
		(String::from("&Edot;"), String::from("Ė")),
		(String::from("&Efr;"), String::from("𝔈")),
		(String::from("&Egrave"), String::from("È")),
		(String::from("&Egrave;"), String::from("È")),
		(String::from("&Element;"), String::from("")),
		(String::from("&Emacr;"), String::from("Ē")),
		(String::from("&EmptySmallSquare;"), String::from("")),
		(String::from("&EmptyVerySmallSquare;"), String::from("")),
		(String::from("&Eogon;"), String::from("Ę")),
		(String::from("&Eopf;"), String::from("𝔼")),
		(String::from("&Epsilon;"), String::from("Ε")),
		(String::from("&Equal;"), String::from("")),
		(String::from("&EqualTilde;"), String::from("")),
		(String::from("&Equilibrium;"), String::from("")),
		(String::from("&Escr;"), String::from("")),
		(String::from("&Esim;"), String::from("")),
		(String::from("&Eta;"), String::from("Η")),
		(String::from("&Euml"), String::from("Ë")),
		(String::from("&Euml;"), String::from("Ë")),
		(String::from("&Exists;"), String::from("")),
		(String::from("&ExponentialE;"), String::from("")),
		(String::from("&Fcy;"), String::from("Ф")),
		(String::from("&Ffr;"), String::from("𝔉")),
		(String::from("&FilledSmallSquare;"), String::from("")),
		(String::from("&FilledVerySmallSquare;"), String::from("")),
		(String::from("&Fopf;"), String::from("𝔽")),
		(String::from("&ForAll;"), String::from("")),
		(String::from("&Fouriertrf;"), String::from("")),
		(String::from("&Fscr;"), String::from("")),
		(String::from("&GJcy;"), String::from("Ѓ")),
		(String::from("&GT"), String::from(">")),
		(String::from("&GT;"), String::from(">")),
		(String::from("&Gamma;"), String::from("Γ")),
		(String::from("&Gammad;"), String::from("Ϝ")),
		(String::from("&Gbreve;"), String::from("Ğ")),
		(String::from("&Gcedil;"), String::from("Ģ")),
		(String::from("&Gcirc;"), String::from("Ĝ")),
		(String::from("&Gcy;"), String::from("Г")),
		(String::from("&Gdot;"), String::from("Ġ")),
		(String::from("&Gfr;"), String::from("𝔊")),
		(String::from("&Gg;"), String::from("")),
		(String::from("&Gopf;"), String::from("𝔾")),
		(String::from("&GreaterEqual;"), String::from("")),
		(String::from("&GreaterEqualLess;"), String::from("")),
		(String::from("&GreaterFullEqual;"), String::from("")),
		(String::from("&GreaterGreater;"), String::from("")),
		(String::from("&GreaterLess;"), String::from("")),
		(String::from("&GreaterSlantEqual;"), String::from("")),
		(String::from("&GreaterTilde;"), String::from("")),
		(String::from("&Gscr;"), String::from("𝒢")),
		(String::from("&Gt;"), String::from("")),
		(String::from("&HARDcy;"), String::from("Ъ")),
		(String::from("&Hacek;"), String::from("ˇ")),
		(String::from("&Hat;"), String::from("^")),
		(String::from("&Hcirc;"), String::from("Ĥ")),
		(String::from("&Hfr;"), String::from("")),
		(String::from("&HilbertSpace;"), String::from("")),
		(String::from("&Hopf;"), String::from("")),
		(String::from("&HorizontalLine;"), String::from("")),
		(String::from("&Hscr;"), String::from("")),
		(String::from("&Hstrok;"), String::from("Ħ")),
		(String::from("&HumpDownHump;"), String::from("")),
		(String::from("&HumpEqual;"), String::from("")),
		(String::from("&IEcy;"), String::from("Е")),
		(String::from("&IJlig;"), String::from("IJ")),
		(String::from("&IOcy;"), String::from("Ё")),
		(String::from("&Iacute"), String::from("Í")),
		(String::from("&Iacute;"), String::from("Í")),
		(String::from("&Icirc"), String::from("Î")),
		(String::from("&Icirc;"), String::from("Î")),
		(String::from("&Icy;"), String::from("И")),
		(String::from("&Idot;"), String::from("İ")),
		(String::from("&Ifr;"), String::from("")),
		(String::from("&Igrave"), String::from("Ì")),
		(String::from("&Igrave;"), String::from("Ì")),
		(String::from("&Im;"), String::from("")),
		(String::from("&Imacr;"), String::from("Ī")),
		(String::from("&ImaginaryI;"), String::from("")),
		(String::from("&Implies;"), String::from("")),
		(String::from("&Int;"), String::from("")),
		(String::from("&Integral;"), String::from("")),
		(String::from("&Intersection;"), String::from("")),
		(String::from("&InvisibleComma;"), String::from("")),
		(String::from("&InvisibleTimes;"), String::from("")),
		(String::from("&Iogon;"), String::from("Į")),
		(String::from("&Iopf;"), String::from("𝕀")),
		(String::from("&Iota;"), String::from("Ι")),
		(String::from("&Iscr;"), String::from("")),
		(String::from("&Itilde;"), String::from("Ĩ")),
		(String::from("&Iukcy;"), String::from("І")),
		(String::from("&Iuml"), String::from("Ï")),
		(String::from("&Iuml;"), String::from("Ï")),
		(String::from("&Jcirc;"), String::from("Ĵ")),
		(String::from("&Jcy;"), String::from("Й")),
		(String::from("&Jfr;"), String::from("𝔍")),
		(String::from("&Jopf;"), String::from("𝕁")),
		(String::from("&Jscr;"), String::from("𝒥")),
		(String::from("&Jsercy;"), String::from("Ј")),
		(String::from("&Jukcy;"), String::from("Є")),
		(String::from("&KHcy;"), String::from("Х")),
		(String::from("&KJcy;"), String::from("Ќ")),
		(String::from("&Kappa;"), String::from("Κ")),
		(String::from("&Kcedil;"), String::from("Ķ")),
		(String::from("&Kcy;"), String::from("К")),
		(String::from("&Kfr;"), String::from("𝔎")),
		(String::from("&Kopf;"), String::from("𝕂")),
		(String::from("&Kscr;"), String::from("𝒦")),
		(String::from("&LJcy;"), String::from("Љ")),
		(String::from("&LT"), String::from("<")),
		(String::from("&LT;"), String::from("<")),
		(String::from("&Lacute;"), String::from("Ĺ")),
		(String::from("&Lambda;"), String::from("Λ")),
		(String::from("&Lang;"), String::from("")),
		(String::from("&Laplacetrf;"), String::from("")),
		(String::from("&Larr;"), String::from("")),
		(String::from("&Lcaron;"), String::from("Ľ")),
		(String::from("&Lcedil;"), String::from("Ļ")),
		(String::from("&Lcy;"), String::from("Л")),
		(String::from("&LeftAngleBracket;"), String::from("")),
		(String::from("&LeftArrow;"), String::from("")),
		(String::from("&LeftArrowBar;"), String::from("")),
		(String::from("&LeftArrowRightArrow;"), String::from("")),
		(String::from("&LeftCeiling;"), String::from("")),
		(String::from("&LeftDoubleBracket;"), String::from("")),
		(String::from("&LeftDownTeeVector;"), String::from("")),
		(String::from("&LeftDownVector;"), String::from("")),
		(String::from("&LeftDownVectorBar;"), String::from("")),
		(String::from("&LeftFloor;"), String::from("")),
		(String::from("&LeftRightArrow;"), String::from("")),
		(String::from("&LeftRightVector;"), String::from("")),
		(String::from("&LeftTee;"), String::from("")),
		(String::from("&LeftTeeArrow;"), String::from("")),
		(String::from("&LeftTeeVector;"), String::from("")),
		(String::from("&LeftTriangle;"), String::from("")),
		(String::from("&LeftTriangleBar;"), String::from("")),
		(String::from("&LeftTriangleEqual;"), String::from("")),
		(String::from("&LeftUpDownVector;"), String::from("")),
		(String::from("&LeftUpTeeVector;"), String::from("")),
		(String::from("&LeftUpVector;"), String::from("")),
		(String::from("&LeftUpVectorBar;"), String::from("")),
		(String::from("&LeftVector;"), String::from("")),
		(String::from("&LeftVectorBar;"), String::from("")),
		(String::from("&Leftarrow;"), String::from("")),
		(String::from("&Leftrightarrow;"), String::from("")),
		(String::from("&LessEqualGreater;"), String::from("")),
		(String::from("&LessFullEqual;"), String::from("")),
		(String::from("&LessGreater;"), String::from("")),
		(String::from("&LessLess;"), String::from("")),
		(String::from("&LessSlantEqual;"), String::from("")),
		(String::from("&LessTilde;"), String::from("")),
		(String::from("&Lfr;"), String::from("𝔏")),
		(String::from("&Ll;"), String::from("")),
		(String::from("&Lleftarrow;"), String::from("")),
		(String::from("&Lmidot;"), String::from("Ŀ")),
		(String::from("&LongLeftArrow;"), String::from("")),
		(String::from("&LongLeftRightArrow;"), String::from("")),
		(String::from("&LongRightArrow;"), String::from("")),
		(String::from("&Longleftarrow;"), String::from("")),
		(String::from("&Longleftrightarrow;"), String::from("")),
		(String::from("&Longrightarrow;"), String::from("")),
		(String::from("&Lopf;"), String::from("𝕃")),
		(String::from("&LowerLeftArrow;"), String::from("")),
		(String::from("&LowerRightArrow;"), String::from("")),
		(String::from("&Lscr;"), String::from("")),
		(String::from("&Lsh;"), String::from("")),
		(String::from("&Lstrok;"), String::from("Ł")),
		(String::from("&Lt;"), String::from("")),
		(String::from("&Map;"), String::from("")),
		(String::from("&Mcy;"), String::from("М")),
		(String::from("&MediumSpace;"), String::from("")),
		(String::from("&Mellintrf;"), String::from("")),
		(String::from("&Mfr;"), String::from("𝔐")),
		(String::from("&MinusPlus;"), String::from("")),
		(String::from("&Mopf;"), String::from("𝕄")),
		(String::from("&Mscr;"), String::from("")),
		(String::from("&Mu;"), String::from("Μ")),
		(String::from("&NJcy;"), String::from("Њ")),
		(String::from("&Nacute;"), String::from("Ń")),
		(String::from("&Ncaron;"), String::from("Ň")),
		(String::from("&Ncedil;"), String::from("Ņ")),
		(String::from("&Ncy;"), String::from("Н")),
		(String::from("&NegativeMediumSpace;"), String::from("\u{200B}")),
		(String::from("&NegativeThickSpace;"), String::from("\u{200B}")),
		(String::from("&NegativeThinSpace;"), String::from("\u{200B}")),
		(String::from("&NegativeVeryThinSpace;"), String::from("\u{200B}")),
		(String::from("&NestedGreaterGreater;"), String::from("")),
		(String::from("&NestedLessLess;"), String::from("")),
		(String::from("&NewLine"), String::from("\u{0A}")),
		(String::from("&Nfr;"), String::from("𝔑")),
		(String::from("&NoBreak;"), String::from("\u{2060}")),
		(String::from("&NonBreakingSpace;"), String::from(" ")),
		(String::from("&Nopf;"), String::from("")),
		(String::from("&Not;"), String::from("")),
		(String::from("&NotCongruent;"), String::from("")),
		(String::from("&NotCupCap;"), String::from("")),
		(String::from("&NotDoubleVerticalBar;"), String::from("")),
		(String::from("&NotElement;"), String::from("")),
		(String::from("&NotEqual;"), String::from("")),
		(String::from("&NotEqualTilde;"), String::from("")),
		(String::from("&NotExists;"), String::from("")),
		(String::from("&NotGreater;"), String::from("")),
		(String::from("&NotGreaterEqual;"), String::from("")),
		(String::from("&NotGreaterFullEqual;"), String::from("")),
		(String::from("&NotGreaterGreater;"), String::from("")),
		(String::from("&NotGreaterLess;"), String::from("")),
		(String::from("&NotGreaterSlantEqual;"), String::from("")),
		(String::from("&NotGreaterTilde;"), String::from("")),
		(String::from("&NotHumpDownHump;"), String::from("")),
		(String::from("&NotHumpEqual;"), String::from("")),
		(String::from("&NotLeftTriangle;"), String::from("")),
		(String::from("&NotLeftTriangleBar;"), String::from("")),
		(String::from("&NotLeftTriangleEqual;"), String::from("")),
		(String::from("&NotLess;"), String::from("")),
		(String::from("&NotLessEqual;"), String::from("")),
		(String::from("&NotLessGreater;"), String::from("")),
		(String::from("&NotLessLess;"), String::from("")),
		(String::from("&NotLessSlantEqual;"), String::from("")),
		(String::from("&NotLessTilde;"), String::from("")),
		(String::from("&NotNestedGreaterGreater;"), String::from("")),
		(String::from("&NotNestedLessLess;"), String::from("")),
		(String::from("&NotPrecedes;"), String::from("")),
		(String::from("&NotPrecedesEqual;"), String::from("")),
		(String::from("&NotPrecedesSlantEqual;"), String::from("")),
		(String::from("&NotReverseElement;"), String::from("")),
		(String::from("&NotRightTriangle;"), String::from("")),
		(String::from("&NotRightTriangleBar;"), String::from("")),
		(String::from("&NotRightTriangleEqual;"), String::from("")),
		(String::from("&NotSquareSubset;"), String::from("")),
		(String::from("&NotSquareSubsetEqual;"), String::from("")),
		(String::from("&NotSquareSuperset;"), String::from("")),
		(String::from("&NotSquareSupersetEqual;"), String::from("")),
		(String::from("&NotSubset;"), String::from("")),
		(String::from("&NotSubsetEqual;"), String::from("")),
		(String::from("&NotSucceeds;"), String::from("")),
		(String::from("&NotSucceedsEqual;"), String::from("")),
		(String::from("&NotSucceedsSlantEqual;"), String::from("")),
		(String::from("&NotSucceedsTilde;"), String::from("")),
		(String::from("&NotSuperset;"), String::from("")),
		(String::from("&NotSupersetEqual;"), String::from("")),
		(String::from("&NotTilde;"), String::from("")),
		(String::from("&NotTildeEqual;"), String::from("")),
		(String::from("&NotTildeFullEqual;"), String::from("")),
		(String::from("&NotTildeTilde;"), String::from("")),
		(String::from("&NotVerticalBar;"), String::from("")),
		(String::from("&Nscr;"), String::from("𝒩")),
		(String::from("&Ntilde"), String::from("Ñ")),
		(String::from("&Ntilde;"), String::from("Ñ")),
		(String::from("&Nu;"), String::from("Ν")),
		(String::from("&OElig;"), String::from("Œ")),
		(String::from("&Oacute"), String::from("Ó")),
		(String::from("&Oacute;"), String::from("Ó")),
		(String::from("&Ocirc"), String::from("Ô")),
		(String::from("&Ocirc;"), String::from("Ô")),
		(String::from("&Ocy;"), String::from("О")),
		(String::from("&Odblac;"), String::from("Ő")),
		(String::from("&Ofr;"), String::from("𝔒")),
		(String::from("&Ograve"), String::from("Ò")),
		(String::from("&Ograve;"), String::from("Ò")),
		(String::from("&Omacr;"), String::from("Ō")),
		(String::from("&Omega;"), String::from("Ω")),
		(String::from("&Omicron;"), String::from("Ο")),
		(String::from("&Oopf;"), String::from("𝕆")),
		(String::from("&OpenCurlyDoubleQuote;"), String::from("")),
		(String::from("&OpenCurlyQuote;"), String::from("")),
		(String::from("&Or;"), String::from("")),
		(String::from("&Oscr;"), String::from("𝒪")),
		(String::from("&Oslash"), String::from("Ø")),
		(String::from("&Oslash;"), String::from("Ø")),
		(String::from("&Otilde"), String::from("Õ")),
		(String::from("&Otilde;"), String::from("Õ")),
		(String::from("&Otimes;"), String::from("")),
		(String::from("&Ouml"), String::from("Ö")),
		(String::from("&Ouml;"), String::from("Ö")),
		(String::from("&OverBar;"), String::from("")),
		(String::from("&OverBrace;"), String::from("")),
		(String::from("&OverBracket;"), String::from("")),
		(String::from("&OverParenthesis;"), String::from("")),
		(String::from("&PartialD;"), String::from("")),
		(String::from("&Pcy;"), String::from("П")),
		(String::from("&Pfr;"), String::from("𝔓")),
		(String::from("&Phi;"), String::from("Φ")),
		(String::from("&Pi;"), String::from("Π")),
		(String::from("&PlusMinus;"), String::from("±")),
		(String::from("&Poincareplane;"), String::from("")),
		(String::from("&Popf;"), String::from("")),
		(String::from("&Pr;"), String::from("")),
		(String::from("&Precedes;"), String::from("")),
		(String::from("&PrecedesEqual;"), String::from("")),
		(String::from("&PrecedesSlantEqual;"), String::from("")),
		(String::from("&PrecedesTilde;"), String::from("")),
		(String::from("&Prime;"), String::from("")),
		(String::from("&Product;"), String::from("")),
		(String::from("&Proportion;"), String::from("")),
		(String::from("&Proportional;"), String::from("")),
		(String::from("&Pscr;"), String::from("𝒫")),
		(String::from("&Psi;"), String::from("Ψ")),
		(String::from("&QUOT"), String::from("\"")),
		(String::from("&QUOT;"), String::from("\"")),
		(String::from("&Qfr;"), String::from("𝔔")),
		(String::from("&Qopf;"), String::from("")),
		(String::from("&Qscr;"), String::from("𝒬")),
		(String::from("&RBarr;"), String::from("")),
		(String::from("&REG"), String::from("®")),
		(String::from("&REG;"), String::from("®")),
		(String::from("&Racute;"), String::from("Ŕ")),
		(String::from("&Rang;"), String::from("")),
		(String::from("&Rarr;"), String::from("")),
		(String::from("&Rarrtl;"), String::from("")),
		(String::from("&Rcaron;"), String::from("Ř")),
		(String::from("&Rcedil;"), String::from("Ŗ")),
		(String::from("&Rcy;"), String::from("Р")),
		(String::from("&Re;"), String::from("")),
		(String::from("&ReverseElement;"), String::from("")),
		(String::from("&ReverseEquilibrium;"), String::from("")),
		(String::from("&ReverseUpEquilibrium;"), String::from("")),
		(String::from("&Rfr;"), String::from("")),
		(String::from("&Rho;"), String::from("Ρ")),
		(String::from("&RightAngleBracket;"), String::from("")),
		(String::from("&RightArrow;"), String::from("")),
		(String::from("&RightArrowBar;"), String::from("")),
		(String::from("&RightArrowLeftArrow;"), String::from("")),
		(String::from("&RightCeiling;"), String::from("")),
		(String::from("&RightDoubleBracket;"), String::from("")),
		(String::from("&RightDownTeeVector;"), String::from("")),
		(String::from("&RightDownVector;"), String::from("")),
		(String::from("&RightDownVectorBar;"), String::from("")),
		(String::from("&RightFloor;"), String::from("")),
		(String::from("&RightTee;"), String::from("")),
		(String::from("&RightTeeArrow;"), String::from("")),
		(String::from("&RightTeeVector;"), String::from("")),
		(String::from("&RightTriangle;"), String::from("")),
		(String::from("&RightTriangleBar;"), String::from("")),
		(String::from("&RightTriangleEqual;"), String::from("")),
		(String::from("&RightUpDownVector;"), String::from("")),
		(String::from("&RightUpTeeVector;"), String::from("")),
		(String::from("&RightUpVector;"), String::from("")),
		(String::from("&RightUpVectorBar;"), String::from("")),
		(String::from("&RightVector;"), String::from("")),
		(String::from("&RightVectorBar;"), String::from("")),
		(String::from("&Rightarrow;"), String::from("")),
		(String::from("&Ropf;"), String::from("")),
		(String::from("&RoundImplies;"), String::from("")),
		(String::from("&Rrightarrow;"), String::from("")),
		(String::from("&Rscr;"), String::from("")),
		(String::from("&Rsh;"), String::from("")),
		(String::from("&RuleDelayed;"), String::from("")),
		(String::from("&SHCHcy;"), String::from("Щ")),
		(String::from("&SHcy;"), String::from("Ш")),
		(String::from("&SOFTcy;"), String::from("Ь")),
		(String::from("&Sacute;"), String::from("Ś")),
		(String::from("&Sc;"), String::from("")),
		(String::from("&Scaron;"), String::from("Š")),
		(String::from("&Scedil;"), String::from("Ş")),
		(String::from("&Scirc;"), String::from("Ŝ")),
		(String::from("&Scy;"), String::from("С")),
		(String::from("&Sfr;"), String::from("𝔖")),
		(String::from("&ShortDownArrow;"), String::from("")),
		(String::from("&ShortLeftArrow;"), String::from("")),
		(String::from("&ShortRightArrow;"), String::from("")),
		(String::from("&ShortUpArrow;"), String::from("")),
		(String::from("&Sigma;"), String::from("Σ")),
		(String::from("&SmallCircle;"), String::from("")),
		(String::from("&Sopf;"), String::from("𝕊")),
		(String::from("&Sqrt;"), String::from("")),
		(String::from("&Square;"), String::from("")),
		(String::from("&SquareIntersection;"), String::from("")),
		(String::from("&SquareSubset;"), String::from("")),
		(String::from("&SquareSubsetEqual;"), String::from("")),
		(String::from("&SquareSuperset;"), String::from("")),
		(String::from("&SquareSupersetEqual;"), String::from("")),
		(String::from("&SquareUnion;"), String::from("")),
		(String::from("&Sscr;"), String::from("𝒮")),
		(String::from("&Star;"), String::from("")),
		(String::from("&Sub;"), String::from("")),
		(String::from("&Subset;"), String::from("")),
		(String::from("&SubsetEqual;"), String::from("")),
		(String::from("&Succeeds;"), String::from("")),
		(String::from("&SucceedsEqual;"), String::from("")),
		(String::from("&SucceedsSlantEqual;"), String::from("")),
		(String::from("&SucceedsTilde;"), String::from("")),
		(String::from("&SuchThat;"), String::from("")),
		(String::from("&Sum;"), String::from("")),
		(String::from("&Sup;"), String::from("")),
		(String::from("&Superset;"), String::from("")),
		(String::from("&SupersetEqual;"), String::from("")),
		(String::from("&Supset;"), String::from("")),
		(String::from("&THORN"), String::from("Þ")),
		(String::from("&THORN;"), String::from("Þ")),
		(String::from("&TRADE;"), String::from("")),
		(String::from("&TSHcy;"), String::from("Ћ")),
		(String::from("&TScy;"), String::from("Ц")),
		(String::from("&Tab;"), String::from("	")),
		(String::from("&Tau;"), String::from("Τ")),
		(String::from("&Tcaron;"), String::from("Ť")),
		(String::from("&Tcedil;"), String::from("Ţ")),
		(String::from("&Tcy;"), String::from("Т")),
		(String::from("&Tfr;"), String::from("𝔗")),
		(String::from("&Therefore;"), String::from("")),
		(String::from("&Theta;"), String::from("Θ")),
		(String::from("&ThickSpace;"), String::from("")),
		(String::from("&ThinSpace;"), String::from("")),
		(String::from("&Tilde;"), String::from("")),
		(String::from("&TildeEqual;"), String::from("")),
		(String::from("&TildeFullEqual;"), String::from("")),
		(String::from("&TildeTilde;"), String::from("")),
		(String::from("&Topf;"), String::from("𝕋")),
		(String::from("&TripleDot"), String::from("")),
		(String::from("&Tscr;"), String::from("𝒯")),
		(String::from("&Tstrok;"), String::from("Ŧ")),
		(String::from("&Uacute"), String::from("Ú")),
		(String::from("&Uacute;"), String::from("Ú")),
		(String::from("&Uarr;"), String::from("")),
		(String::from("&Uarrocir;"), String::from("")),
		(String::from("&Ubrcy;"), String::from("Ў")),
		(String::from("&Ubreve;"), String::from("Ŭ")),
		(String::from("&Ucirc"), String::from("Û")),
		(String::from("&Ucirc;"), String::from("Û")),
		(String::from("&Ucy;"), String::from("У")),
		(String::from("&Udblac;"), String::from("Ű")),
		(String::from("&Ufr;"), String::from("𝔘")),
		(String::from("&Ugrave"), String::from("Ù")),
		(String::from("&Ugrave;"), String::from("Ù")),
		(String::from("&Umacr;"), String::from("Ū")),
		(String::from("&UnderBar;"), String::from("_")),
		(String::from("&UnderBrace;"), String::from("")),
		(String::from("&UnderBracket;"), String::from("")),
		(String::from("&UnderParenthesis;"), String::from("")),
		(String::from("&Union;"), String::from("")),
		(String::from("&UnionPlus;"), String::from("")),
		(String::from("&Uogon;"), String::from("Ų")),
		(String::from("&Uopf;"), String::from("𝕌")),
		(String::from("&UpArrow;"), String::from("")),
		(String::from("&UpArrowBar;"), String::from("")),
		(String::from("&UpArrowDownArrow;"), String::from("")),
		(String::from("&UpDownArrow;"), String::from("")),
		(String::from("&UpEquilibrium;"), String::from("")),
		(String::from("&UpTee;"), String::from("")),
		(String::from("&UpTeeArrow;"), String::from("")),
		(String::from("&Uparrow;"), String::from("")),
		(String::from("&Updownarrow;"), String::from("")),
		(String::from("&UpperLeftArrow;"), String::from("")),
		(String::from("&UpperRightArrow;"), String::from("")),
		(String::from("&Upsi;"), String::from("ϒ")),
		(String::from("&Upsilon;"), String::from("Υ")),
		(String::from("&Uring;"), String::from("Ů")),
		(String::from("&Uscr;"), String::from("𝒰")),
		(String::from("&Utilde;"), String::from("Ũ")),
		(String::from("&Uuml"), String::from("Ü")),
		(String::from("&Uuml;"), String::from("Ü")),
		(String::from("&VDash;"), String::from("")),
		(String::from("&Vbar;"), String::from("")),
		(String::from("&Vcy;"), String::from("В")),
		(String::from("&Vdash;"), String::from("")),
		(String::from("&Vdashl;"), String::from("")),
		(String::from("&Vee;"), String::from("")),
		(String::from("&Verbar;"), String::from("")),
		(String::from("&Vert;"), String::from("")),
		(String::from("&VerticalBar;"), String::from("")),
		(String::from("&VerticalLine;"), String::from("|")),
		(String::from("&VerticalSeparator;"), String::from("")),
		(String::from("&VerticalTilde;"), String::from("")),
		(String::from("&VeryThinSpace;"), String::from("")),
		(String::from("&Vfr;"), String::from("𝔙")),
		(String::from("&Vopf;"), String::from("𝕍")),
		(String::from("&Vscr;"), String::from("𝒱")),
		(String::from("&Vvdash;"), String::from("")),
		(String::from("&Wcirc;"), String::from("Ŵ")),
		(String::from("&Wedge;"), String::from("")),
		(String::from("&Wfr;"), String::from("𝔚")),
		(String::from("&Wopf;"), String::from("𝕎")),
		(String::from("&Wscr;"), String::from("𝒲")),
		(String::from("&Xfr;"), String::from("𝔛")),
		(String::from("&Xi;"), String::from("Ξ")),
		(String::from("&Xopf;"), String::from("𝕏")),
		(String::from("&Xscr;"), String::from("𝒳")),
		(String::from("&YAcy;"), String::from("Я")),
		(String::from("&YIcy;"), String::from("Ї")),
		(String::from("&YUcy;"), String::from("Ю")),
		(String::from("&Yacute"), String::from("Ý")),
		(String::from("&Yacute;"), String::from("Ý")),
		(String::from("&Ycirc;"), String::from("Ŷ")),
		(String::from("&Ycy;"), String::from("Ы")),
		(String::from("&Yfr;"), String::from("𝔜")),
		(String::from("&Yopf;"), String::from("𝕐")),
		(String::from("&Yscr;"), String::from("𝒴")),
		(String::from("&Yuml;"), String::from("Ÿ")),
		(String::from("&ZHcy;"), String::from("Ж")),
		(String::from("&Zacute;"), String::from("Ź")),
		(String::from("&Zcaron;"), String::from("Ž")),
		(String::from("&Zcy;"), String::from("З")),
		(String::from("&Zdot;"), String::from("Ż")),
		(String::from("&ZeroWidthSpace;"), String::from("\u{200B}")),
		(String::from("&Zeta;"), String::from("Ζ")),
		(String::from("&Zfr;"), String::from("")),
		(String::from("&Zopf;"), String::from("")),
		(String::from("&Zscr;"), String::from("𝒵")),
		(String::from("&aacute"), String::from("á")),
		(String::from("&aacute;"), String::from("á")),
		(String::from("&abreve;"), String::from("ă")),
		(String::from("&ac;"), String::from("")),
		(String::from("&acE;"), String::from("")),
		(String::from("&acd;"), String::from("")),
		(String::from("&acirc"), String::from("â")),
		(String::from("&acirc;"), String::from("â")),
		(String::from("&acute"), String::from("´")),
		(String::from("&acute;"), String::from("´")),
		(String::from("&acy;"), String::from("а")),
		(String::from("&aelig"), String::from("æ")),
		(String::from("&aelig;"), String::from("æ")),
		(String::from("&af;"), String::from("")),
		(String::from("&afr;"), String::from("𝔞")),
		(String::from("&agrave"), String::from("à")),
		(String::from("&agrave;"), String::from("à")),
		(String::from("&alefsym;"), String::from("")),
		(String::from("&aleph;"), String::from("")),
		(String::from("&alpha;"), String::from("α")),
		(String::from("&amacr;"), String::from("ā")),
		(String::from("&amalg;"), String::from("⨿")),
		(String::from("&amp"), String::from("&")),
		(String::from("&amp;"), String::from("&")),
		(String::from("&and;"), String::from("")),
		(String::from("&andand;"), String::from("")),
		(String::from("&andd;"), String::from("")),
		(String::from("&andslope;"), String::from("")),
		(String::from("&andv;"), String::from("")),
		(String::from("&ang;"), String::from("")),
		(String::from("&ange;"), String::from("")),
		(String::from("&angle;"), String::from("")),
		(String::from("&angmsd;"), String::from("")),
		(String::from("&angmsdaa;"), String::from("")),
		(String::from("&angmsdab;"), String::from("")),
		(String::from("&angmsdac;"), String::from("")),
		(String::from("&angmsdad;"), String::from("")),
		(String::from("&angmsdae;"), String::from("")),
		(String::from("&angmsdaf;"), String::from("")),
		(String::from("&angmsdag;"), String::from("")),
		(String::from("&angmsdah;"), String::from("")),
		(String::from("&angrt;"), String::from("")),
		(String::from("&angrtvb;"), String::from("")),
		(String::from("&angrtvbd;"), String::from("")),
		(String::from("&angsph;"), String::from("")),
		(String::from("&angst;"), String::from("Å")),
		(String::from("&angzarr;"), String::from("")),
		(String::from("&aogon;"), String::from("ą")),
		(String::from("&aopf;"), String::from("𝕒")),
		(String::from("&ap;"), String::from("")),
		(String::from("&apE;"), String::from("")),
		(String::from("&apacir;"), String::from("")),
		(String::from("&ape;"), String::from("")),
		(String::from("&apid;"), String::from("")),
		(String::from("&apos;"), String::from("'")),
		(String::from("&approx;"), String::from("")),
		(String::from("&approxeq;"), String::from("")),
		(String::from("&aring"), String::from("å")),
		(String::from("&aring;"), String::from("å")),
		(String::from("&ascr;"), String::from("𝒶")),
		(String::from("&ast;"), String::from("*")),
		(String::from("&asymp;"), String::from("")),
		(String::from("&asympeq;"), String::from("")),
		(String::from("&atilde"), String::from("ã")),
		(String::from("&atilde;"), String::from("ã")),
		(String::from("&auml"), String::from("ä")),
		(String::from("&auml;"), String::from("ä")),
		(String::from("&awconint;"), String::from("")),
		(String::from("&awint;"), String::from("")),
		(String::from("&bNot;"), String::from("")),
		(String::from("&backcong;"), String::from("")),
		(String::from("&backepsilon;"), String::from("϶")),
		(String::from("&backprime;"), String::from("")),
		(String::from("&backsim;"), String::from("")),
		(String::from("&backsimeq;"), String::from("")),
		(String::from("&barvee;"), String::from("")),
		(String::from("&barwed;"), String::from("")),
		(String::from("&barwedge;"), String::from("")),
		(String::from("&bbrk;"), String::from("")),
		(String::from("&bbrktbrk;"), String::from("")),
		(String::from("&bcong;"), String::from("")),
		(String::from("&bcy;"), String::from("б")),
		(String::from("&bdquo;"), String::from("")),
		(String::from("&becaus;"), String::from("")),
		(String::from("&because;"), String::from("")),
		(String::from("&bemptyv;"), String::from("")),
		(String::from("&bepsi;"), String::from("϶")),
		(String::from("&bernou;"), String::from("")),
		(String::from("&beta;"), String::from("β")),
		(String::from("&beth;"), String::from("")),
		(String::from("&between;"), String::from("")),
		(String::from("&bfr;"), String::from("𝔟")),
		(String::from("&bigcap;"), String::from("")),
		(String::from("&bigcirc;"), String::from("")),
		(String::from("&bigcup;"), String::from("")),
		(String::from("&bigodot;"), String::from("")),
		(String::from("&bigoplus;"), String::from("")),
		(String::from("&bigotimes;"), String::from("")),
		(String::from("&bigsqcup;"), String::from("")),
		(String::from("&bigstar;"), String::from("")),
		(String::from("&bigtriangledown;"), String::from("")),
		(String::from("&bigtriangleup;"), String::from("")),
		(String::from("&biguplus;"), String::from("")),
		(String::from("&bigvee;"), String::from("")),
		(String::from("&bigwedge;"), String::from("")),
		(String::from("&bkarow;"), String::from("")),
		(String::from("&blacklozenge;"), String::from("")),
		(String::from("&blacksquare;"), String::from("")),
		(String::from("&blacktriangle;"), String::from("")),
		(String::from("&blacktriangledown;"), String::from("")),
		(String::from("&blacktriangleleft;"), String::from("")),
		(String::from("&blacktriangleright;"), String::from("")),
		(String::from("&blank;"), String::from("")),
		(String::from("&blk12;"), String::from("")),
		(String::from("&blk14;"), String::from("")),
		(String::from("&blk34;"), String::from("")),
		(String::from("&block;"), String::from("")),
		(String::from("&bne;"), String::from("=")),
		(String::from("&bnequiv;"), String::from("")),
		(String::from("&bnot;"), String::from("")),
		(String::from("&bopf;"), String::from("𝕓")),
		(String::from("&bot;"), String::from("")),
		(String::from("&bottom;"), String::from("")),
		(String::from("&bowtie;"), String::from("")),
		(String::from("&boxDL;"), String::from("")),
		(String::from("&boxDR;"), String::from("")),
		(String::from("&boxDl;"), String::from("")),
		(String::from("&boxDr;"), String::from("")),
		(String::from("&boxH;"), String::from("")),
		(String::from("&boxHD;"), String::from("")),
		(String::from("&boxHU;"), String::from("")),
		(String::from("&boxHd;"), String::from("")),
		(String::from("&boxHu;"), String::from("")),
		(String::from("&boxUL;"), String::from("")),
		(String::from("&boxUR;"), String::from("")),
		(String::from("&boxUl;"), String::from("")),
		(String::from("&boxUr;"), String::from("")),
		(String::from("&boxV;"), String::from("")),
		(String::from("&boxVH;"), String::from("")),
		(String::from("&boxVL;"), String::from("")),
		(String::from("&boxVR;"), String::from("")),
		(String::from("&boxVh;"), String::from("")),
		(String::from("&boxVl;"), String::from("")),
		(String::from("&boxVr;"), String::from("")),
		(String::from("&boxbox;"), String::from("")),
		(String::from("&boxdL;"), String::from("")),
		(String::from("&boxdR;"), String::from("")),
		(String::from("&boxdl;"), String::from("")),
		(String::from("&boxdr;"), String::from("")),
		(String::from("&boxh;"), String::from("")),
		(String::from("&boxhD;"), String::from("")),
		(String::from("&boxhU;"), String::from("")),
		(String::from("&boxhd;"), String::from("")),
		(String::from("&boxhu;"), String::from("")),
		(String::from("&boxminus;"), String::from("")),
		(String::from("&boxplus;"), String::from("")),
		(String::from("&boxtimes;"), String::from("")),
		(String::from("&boxuL;"), String::from("")),
		(String::from("&boxuR;"), String::from("")),
		(String::from("&boxul;"), String::from("")),
		(String::from("&boxur;"), String::from("")),
		(String::from("&boxv;"), String::from("")),
		(String::from("&boxvH;"), String::from("")),
		(String::from("&boxvL;"), String::from("")),
		(String::from("&boxvR;"), String::from("")),
		(String::from("&boxvh;"), String::from("")),
		(String::from("&boxvl;"), String::from("")),
		(String::from("&boxvr;"), String::from("")),
		(String::from("&bprime;"), String::from("")),
		(String::from("&breve;"), String::from("˘")),
		(String::from("&brvbar"), String::from("¦")),
		(String::from("&brvbar;"), String::from("¦")),
		(String::from("&bscr;"), String::from("𝒷")),
		(String::from("&bsemi;"), String::from("")),
		(String::from("&bsim;"), String::from("")),
		(String::from("&bsime;"), String::from("")),
		(String::from("&bsol;"), String::from("\\")),
		(String::from("&bsolb;"), String::from("")),
		(String::from("&bsolhsub;"), String::from("")),
		(String::from("&bull;"), String::from("")),
		(String::from("&bullet;"), String::from("")),
		(String::from("&bump;"), String::from("")),
		(String::from("&bumpE;"), String::from("")),
		(String::from("&bumpe;"), String::from("")),
		(String::from("&bumpeq;"), String::from("")),
		(String::from("&cacute;"), String::from("ć")),
		(String::from("&cap;"), String::from("")),
		(String::from("&capand;"), String::from("")),
		(String::from("&capbrcup;"), String::from("")),
		(String::from("&capcap;"), String::from("")),
		(String::from("&capcup;"), String::from("")),
		(String::from("&capdot;"), String::from("")),
		(String::from("&caps;"), String::from("")),
		(String::from("&caret;"), String::from("")),
		(String::from("&caron;"), String::from("ˇ")),
		(String::from("&ccaps;"), String::from("")),
		(String::from("&ccaron;"), String::from("č")),
		(String::from("&ccedil"), String::from("ç")),
		(String::from("&ccedil;"), String::from("ç")),
		(String::from("&ccirc;"), String::from("ĉ")),
		(String::from("&ccups;"), String::from("")),
		(String::from("&ccupssm;"), String::from("")),
		(String::from("&cdot;"), String::from("ċ")),
		(String::from("&cedil"), String::from("¸")),
		(String::from("&cedil;"), String::from("¸")),
		(String::from("&cemptyv;"), String::from("")),
		(String::from("&cent"), String::from("¢")),
		(String::from("&cent;"), String::from("¢")),
		(String::from("&centerdot;"), String::from("·")),
		(String::from("&cfr;"), String::from("𝔠")),
		(String::from("&chcy;"), String::from("ч")),
		(String::from("&check;"), String::from("")),
		(String::from("&checkmark;"), String::from("")),
		(String::from("&chi;"), String::from("χ")),
		(String::from("&cir;"), String::from("")),
		(String::from("&cirE;"), String::from("")),
		(String::from("&circ;"), String::from("ˆ")),
		(String::from("&circeq;"), String::from("")),
		(String::from("&circlearrowleft;"), String::from("")),
		(String::from("&circlearrowright;"), String::from("")),
		(String::from("&circledR;"), String::from("®")),
		(String::from("&circledS;"), String::from("")),
		(String::from("&circledast;"), String::from("")),
		(String::from("&circledcirc;"), String::from("")),
		(String::from("&circleddash;"), String::from("")),
		(String::from("&cire;"), String::from("")),
		(String::from("&cirfnint;"), String::from("")),
		(String::from("&cirmid;"), String::from("")),
		(String::from("&cirscir;"), String::from("")),
		(String::from("&clubs;"), String::from("")),
		(String::from("&clubsuit;"), String::from("")),
		(String::from("&colon;"), String::from(":")),
		(String::from("&colone;"), String::from("")),
		(String::from("&coloneq;"), String::from("")),
		(String::from("&comma;"), String::from(",")),
		(String::from("&commat;"), String::from("@")),
		(String::from("&comp;"), String::from("")),
		(String::from("&compfn;"), String::from("")),
		(String::from("&complement;"), String::from("")),
		(String::from("&complexes;"), String::from("")),
		(String::from("&cong;"), String::from("")),
		(String::from("&congdot;"), String::from("")),
		(String::from("&conint;"), String::from("")),
		(String::from("&copf;"), String::from("𝕔")),
		(String::from("&coprod;"), String::from("")),
		(String::from("&copy"), String::from("©")),
		(String::from("&copy;"), String::from("©")),
		(String::from("&copysr;"), String::from("")),
		(String::from("&crarr;"), String::from("")),
		(String::from("&cross;"), String::from("")),
		(String::from("&cscr;"), String::from("𝒸")),
		(String::from("&csub;"), String::from("")),
		(String::from("&csube;"), String::from("")),
		(String::from("&csup;"), String::from("")),
		(String::from("&csupe;"), String::from("")),
		(String::from("&ctdot;"), String::from("")),
		(String::from("&cudarrl;"), String::from("")),
		(String::from("&cudarrr;"), String::from("")),
		(String::from("&cuepr;"), String::from("")),
		(String::from("&cuesc;"), String::from("")),
		(String::from("&cularr;"), String::from("")),
		(String::from("&cularrp;"), String::from("")),
		(String::from("&cup;"), String::from("")),
		(String::from("&cupbrcap;"), String::from("")),
		(String::from("&cupcap;"), String::from("")),
		(String::from("&cupcup;"), String::from("")),
		(String::from("&cupdot;"), String::from("")),
		(String::from("&cupor;"), String::from("")),
		(String::from("&cups;"), String::from("")),
		(String::from("&curarr;"), String::from("")),
		(String::from("&curarrm;"), String::from("")),
		(String::from("&curlyeqprec;"), String::from("")),
		(String::from("&curlyeqsucc;"), String::from("")),
		(String::from("&curlyvee;"), String::from("")),
		(String::from("&curlywedge;"), String::from("")),
		(String::from("&curren"), String::from("¤")),
		(String::from("&curren;"), String::from("¤")),
		(String::from("&curvearrowleft;"), String::from("")),
		(String::from("&curvearrowright;"), String::from("")),
		(String::from("&cuvee;"), String::from("")),
		(String::from("&cuwed;"), String::from("")),
		(String::from("&cwconint;"), String::from("")),
		(String::from("&cwint;"), String::from("")),
		(String::from("&cylcty;"), String::from("")),
		(String::from("&dArr;"), String::from("")),
		(String::from("&dHar;"), String::from("")),
		(String::from("&dagger;"), String::from("")),
		(String::from("&daleth;"), String::from("")),
		(String::from("&darr;"), String::from("")),
		(String::from("&dash;"), String::from("")),
		(String::from("&dashv;"), String::from("")),
		(String::from("&dbkarow;"), String::from("")),
		(String::from("&dblac;"), String::from("˝")),
		(String::from("&dcaron;"), String::from("ď")),
		(String::from("&dcy;"), String::from("д")),
		(String::from("&dd;"), String::from("")),
		(String::from("&ddagger;"), String::from("")),
		(String::from("&ddarr;"), String::from("")),
		(String::from("&ddotseq;"), String::from("")),
		(String::from("&deg"), String::from("°")),
		(String::from("&deg;"), String::from("°")),
		(String::from("&delta;"), String::from("δ")),
		(String::from("&demptyv;"), String::from("")),
		(String::from("&dfisht;"), String::from("⥿")),
		(String::from("&dfr;"), String::from("𝔡")),
		(String::from("&dharl;"), String::from("")),
		(String::from("&dharr;"), String::from("")),
		(String::from("&diam;"), String::from("")),
		(String::from("&diamond;"), String::from("")),
		(String::from("&diamondsuit;"), String::from("")),
		(String::from("&diams;"), String::from("")),
		(String::from("&die;"), String::from("¨")),
		(String::from("&digamma;"), String::from("ϝ")),
		(String::from("&disin;"), String::from("")),
		(String::from("&div;"), String::from("÷")),
		(String::from("&divide"), String::from("÷")),
		(String::from("&divide;"), String::from("÷")),
		(String::from("&divideontimes;"), String::from("")),
		(String::from("&divonx;"), String::from("")),
		(String::from("&djcy;"), String::from("ђ")),
		(String::from("&dlcorn;"), String::from("")),
		(String::from("&dlcrop;"), String::from("")),
		(String::from("&dollar;"), String::from("$")),
		(String::from("&dopf;"), String::from("𝕕")),
		(String::from("&dot;"), String::from("˙")),
		(String::from("&doteq;"), String::from("")),
		(String::from("&doteqdot;"), String::from("")),
		(String::from("&dotminus;"), String::from("")),
		(String::from("&dotplus;"), String::from("")),
		(String::from("&dotsquare;"), String::from("")),
		(String::from("&doublebarwedge;"), String::from("")),
		(String::from("&downarrow;"), String::from("")),
		(String::from("&downdownarrows;"), String::from("")),
		(String::from("&downharpoonleft;"), String::from("")),
		(String::from("&downharpoonright;"), String::from("")),
		(String::from("&drbkarow;"), String::from("")),
		(String::from("&drcorn;"), String::from("")),
		(String::from("&drcrop;"), String::from("")),
		(String::from("&dscr;"), String::from("𝒹")),
		(String::from("&dscy;"), String::from("ѕ")),
		(String::from("&dsol;"), String::from("")),
		(String::from("&dstrok;"), String::from("đ")),
		(String::from("&dtdot;"), String::from("")),
		(String::from("&dtri;"), String::from("")),
		(String::from("&dtrif;"), String::from("")),
		(String::from("&duarr;"), String::from("")),
		(String::from("&duhar;"), String::from("")),
		(String::from("&dwangle;"), String::from("")),
		(String::from("&dzcy;"), String::from("џ")),
		(String::from("&dzigrarr;"), String::from("")),
		(String::from("&eDDot;"), String::from("")),
		(String::from("&eDot;"), String::from("")),
		(String::from("&eacute"), String::from("é")),
		(String::from("&eacute;"), String::from("é")),
		(String::from("&easter;"), String::from("")),
		(String::from("&ecaron;"), String::from("ě")),
		(String::from("&ecir;"), String::from("")),
		(String::from("&ecirc"), String::from("ê")),
		(String::from("&ecirc;"), String::from("ê")),
		(String::from("&ecolon;"), String::from("")),
		(String::from("&ecy;"), String::from("э")),
		(String::from("&edot;"), String::from("ė")),
		(String::from("&ee;"), String::from("")),
		(String::from("&efDot;"), String::from("")),
		(String::from("&efr;"), String::from("𝔢")),
		(String::from("&eg;"), String::from("")),
		(String::from("&egrave"), String::from("è")),
		(String::from("&egrave;"), String::from("è")),
		(String::from("&egs;"), String::from("")),
		(String::from("&egsdot;"), String::from("")),
		(String::from("&el;"), String::from("")),
		(String::from("&elinters;"), String::from("")),
		(String::from("&ell;"), String::from("")),
		(String::from("&els;"), String::from("")),
		(String::from("&elsdot;"), String::from("")),
		(String::from("&emacr;"), String::from("ē")),
		(String::from("&empty;"), String::from("")),
		(String::from("&emptyset;"), String::from("")),
		(String::from("&emptyv;"), String::from("")),
		(String::from("&emsp13;"), String::from("")),
		(String::from("&emsp14;"), String::from("")),
		(String::from("&emsp;"), String::from("")),
		(String::from("&eng;"), String::from("ŋ")),
		(String::from("&ensp;"), String::from("")),
		(String::from("&eogon;"), String::from("ę")),
		(String::from("&eopf;"), String::from("𝕖")),
		(String::from("&epar;"), String::from("")),
		(String::from("&eparsl;"), String::from("")),
		(String::from("&eplus;"), String::from("")),
		(String::from("&epsi;"), String::from("ε")),
		(String::from("&epsilon;"), String::from("ε")),
		(String::from("&epsiv;"), String::from("ϵ")),
		(String::from("&eqcirc;"), String::from("")),
		(String::from("&eqcolon;"), String::from("")),
		(String::from("&eqsim;"), String::from("")),
		(String::from("&eqslantgtr;"), String::from("")),
		(String::from("&eqslantless;"), String::from("")),
		(String::from("&equals;"), String::from("=")),
		(String::from("&equest;"), String::from("")),
		(String::from("&equiv;"), String::from("")),
		(String::from("&equivDD;"), String::from("")),
		(String::from("&eqvparsl;"), String::from("")),
		(String::from("&erDot;"), String::from("")),
		(String::from("&erarr;"), String::from("")),
		(String::from("&escr;"), String::from("")),
		(String::from("&esdot;"), String::from("")),
		(String::from("&esim;"), String::from("")),
		(String::from("&eta;"), String::from("η")),
		(String::from("&eth"), String::from("ð")),
		(String::from("&eth;"), String::from("ð")),
		(String::from("&euml"), String::from("ë")),
		(String::from("&euml;"), String::from("ë")),
		(String::from("&euro;"), String::from("")),
		(String::from("&excl;"), String::from("!")),
		(String::from("&exist;"), String::from("")),
		(String::from("&expectation;"), String::from("")),
		(String::from("&exponentiale;"), String::from("")),
		(String::from("&fallingdotseq;"), String::from("")),
		(String::from("&fcy;"), String::from("ф")),
		(String::from("&female;"), String::from("")),
		(String::from("&ffilig;"), String::from("")),
		(String::from("&fflig;"), String::from("")),
		(String::from("&ffllig;"), String::from("")),
		(String::from("&ffr;"), String::from("𝔣")),
		(String::from("&filig;"), String::from("")),
		(String::from("&fjlig;"), String::from("f")),
		(String::from("&flat;"), String::from("")),
		(String::from("&fllig;"), String::from("")),
		(String::from("&fltns;"), String::from("")),
		(String::from("&fnof;"), String::from("ƒ")),
		(String::from("&fopf;"), String::from("𝕗")),
		(String::from("&forall;"), String::from("")),
		(String::from("&fork;"), String::from("")),
		(String::from("&forkv;"), String::from("")),
		(String::from("&fpartint;"), String::from("")),
		(String::from("&frac12"), String::from("½")),
		(String::from("&frac12;"), String::from("½")),
		(String::from("&frac13;"), String::from("")),
		(String::from("&frac14"), String::from("¼")),
		(String::from("&frac14;"), String::from("¼")),
		(String::from("&frac15;"), String::from("")),
		(String::from("&frac16;"), String::from("")),
		(String::from("&frac18;"), String::from("")),
		(String::from("&frac23;"), String::from("")),
		(String::from("&frac25;"), String::from("")),
		(String::from("&frac34"), String::from("¾")),
		(String::from("&frac34;"), String::from("¾")),
		(String::from("&frac35;"), String::from("")),
		(String::from("&frac38;"), String::from("")),
		(String::from("&frac45;"), String::from("")),
		(String::from("&frac56;"), String::from("")),
		(String::from("&frac58;"), String::from("")),
		(String::from("&frac78;"), String::from("")),
		(String::from("&frasl;"), String::from("")),
		(String::from("&frown;"), String::from("")),
		(String::from("&fscr;"), String::from("𝒻")),
		(String::from("&gE;"), String::from("")),
		(String::from("&gEl;"), String::from("")),
		(String::from("&gacute;"), String::from("ǵ")),
		(String::from("&gamma;"), String::from("γ")),
		(String::from("&gammad;"), String::from("ϝ")),
		(String::from("&gap;"), String::from("")),
		(String::from("&gbreve;"), String::from("ğ")),
		(String::from("&gcirc;"), String::from("ĝ")),
		(String::from("&gcy;"), String::from("г")),
		(String::from("&gdot;"), String::from("ġ")),
		(String::from("&ge;"), String::from("")),
		(String::from("&gel;"), String::from("")),
		(String::from("&geq;"), String::from("")),
		(String::from("&geqq;"), String::from("")),
		(String::from("&geqslant;"), String::from("")),
		(String::from("&ges;"), String::from("")),
		(String::from("&gescc;"), String::from("")),
		(String::from("&gesdot;"), String::from("")),
		(String::from("&gesdoto;"), String::from("")),
		(String::from("&gesdotol;"), String::from("")),
		(String::from("&gesl;"), String::from("")),
		(String::from("&gesles;"), String::from("")),
		(String::from("&gfr;"), String::from("𝔤")),
		(String::from("&gg;"), String::from("")),
		(String::from("&ggg;"), String::from("")),
		(String::from("&gimel;"), String::from("")),
		(String::from("&gjcy;"), String::from("ѓ")),
		(String::from("&gl;"), String::from("")),
		(String::from("&glE;"), String::from("")),
		(String::from("&gla;"), String::from("")),
		(String::from("&glj;"), String::from("")),
		(String::from("&gnE;"), String::from("")),
		(String::from("&gnap;"), String::from("")),
		(String::from("&gnapprox;"), String::from("")),
		(String::from("&gne;"), String::from("")),
		(String::from("&gneq;"), String::from("")),
		(String::from("&gneqq;"), String::from("")),
		(String::from("&gnsim;"), String::from("")),
		(String::from("&gopf;"), String::from("𝕘")),
		(String::from("&grave;"), String::from("`")),
		(String::from("&gscr;"), String::from("")),
		(String::from("&gsim;"), String::from("")),
		(String::from("&gsime;"), String::from("")),
		(String::from("&gsiml;"), String::from("")),
		(String::from("&gt"), String::from(">")),
		(String::from("&gt;"), String::from(">")),
		(String::from("&gtcc;"), String::from("")),
		(String::from("&gtcir;"), String::from("")),
		(String::from("&gtdot;"), String::from("")),
		(String::from("&gtlPar;"), String::from("")),
		(String::from("&gtquest;"), String::from("")),
		(String::from("&gtrapprox;"), String::from("")),
		(String::from("&gtrarr;"), String::from("")),
		(String::from("&gtrdot;"), String::from("")),
		(String::from("&gtreqless;"), String::from("")),
		(String::from("&gtreqqless;"), String::from("")),
		(String::from("&gtrless;"), String::from("")),
		(String::from("&gtrsim;"), String::from("")),
		(String::from("&gvertneqq;"), String::from("")),
		(String::from("&gvnE;"), String::from("")),
		(String::from("&hArr;"), String::from("")),
		(String::from("&hairsp;"), String::from("")),
		(String::from("&half;"), String::from("½")),
		(String::from("&hamilt;"), String::from("")),
		(String::from("&hardcy;"), String::from("ъ")),
		(String::from("&harr;"), String::from("")),
		(String::from("&harrcir;"), String::from("")),
		(String::from("&harrw;"), String::from("")),
		(String::from("&hbar;"), String::from("")),
		(String::from("&hcirc;"), String::from("ĥ")),
		(String::from("&hearts;"), String::from("")),
		(String::from("&heartsuit;"), String::from("")),
		(String::from("&hellip;"), String::from("")),
		(String::from("&hercon;"), String::from("")),
		(String::from("&hfr;"), String::from("𝔥")),
		(String::from("&hksearow;"), String::from("")),
		(String::from("&hkswarow;"), String::from("")),
		(String::from("&hoarr;"), String::from("")),
		(String::from("&homtht;"), String::from("")),
		(String::from("&hookleftarrow;"), String::from("")),
		(String::from("&hookrightarrow;"), String::from("")),
		(String::from("&hopf;"), String::from("𝕙")),
		(String::from("&horbar;"), String::from("")),
		(String::from("&hscr;"), String::from("𝒽")),
		(String::from("&hslash;"), String::from("")),
		(String::from("&hstrok;"), String::from("ħ")),
		(String::from("&hybull;"), String::from("")),
		(String::from("&hyphen;"), String::from("")),
		(String::from("&iacute"), String::from("í")),
		(String::from("&iacute;"), String::from("í")),
		(String::from("&ic;"), String::from("")),
		(String::from("&icirc"), String::from("î")),
		(String::from("&icirc;"), String::from("î")),
		(String::from("&icy;"), String::from("и")),
		(String::from("&iecy;"), String::from("е")),
		(String::from("&iexcl"), String::from("¡")),
		(String::from("&iexcl;"), String::from("¡")),
		(String::from("&iff;"), String::from("")),
		(String::from("&ifr;"), String::from("𝔦")),
		(String::from("&igrave"), String::from("ì")),
		(String::from("&igrave;"), String::from("ì")),
		(String::from("&ii;"), String::from("")),
		(String::from("&iiiint;"), String::from("")),
		(String::from("&iiint;"), String::from("")),
		(String::from("&iinfin;"), String::from("")),
		(String::from("&iiota;"), String::from("")),
		(String::from("&ijlig;"), String::from("ij")),
		(String::from("&imacr;"), String::from("ī")),
		(String::from("&image;"), String::from("")),
		(String::from("&imagline;"), String::from("")),
		(String::from("&imagpart;"), String::from("")),
		(String::from("&imath;"), String::from("ı")),
		(String::from("&imof;"), String::from("")),
		(String::from("&imped;"), String::from("Ƶ")),
		(String::from("&in;"), String::from("")),
		(String::from("&incare;"), String::from("")),
		(String::from("&infin;"), String::from("")),
		(String::from("&infintie;"), String::from("")),
		(String::from("&inodot;"), String::from("ı")),
		(String::from("&int;"), String::from("")),
		(String::from("&intcal;"), String::from("")),
		(String::from("&integers;"), String::from("")),
		(String::from("&intercal;"), String::from("")),
		(String::from("&intlarhk;"), String::from("")),
		(String::from("&intprod;"), String::from("")),
		(String::from("&iocy;"), String::from("ё")),
		(String::from("&iogon;"), String::from("į")),
		(String::from("&iopf;"), String::from("𝕚")),
		(String::from("&iota;"), String::from("ι")),
		(String::from("&iprod;"), String::from("")),
		(String::from("&iquest"), String::from("¿")),
		(String::from("&iquest;"), String::from("¿")),
		(String::from("&iscr;"), String::from("𝒾")),
		(String::from("&isin;"), String::from("")),
		(String::from("&isinE;"), String::from("")),
		(String::from("&isindot;"), String::from("")),
		(String::from("&isins;"), String::from("")),
		(String::from("&isinsv;"), String::from("")),
		(String::from("&isinv;"), String::from("")),
		(String::from("&it;"), String::from("")),
		(String::from("&itilde;"), String::from("ĩ")),
		(String::from("&iukcy;"), String::from("і")),
		(String::from("&iuml"), String::from("ï")),
		(String::from("&iuml;"), String::from("ï")),
		(String::from("&jcirc;"), String::from("ĵ")),
		(String::from("&jcy;"), String::from("й")),
		(String::from("&jfr;"), String::from("𝔧")),
		(String::from("&jmath;"), String::from("ȷ")),
		(String::from("&jopf;"), String::from("𝕛")),
		(String::from("&jscr;"), String::from("𝒿")),
		(String::from("&jsercy;"), String::from("ј")),
		(String::from("&jukcy;"), String::from("є")),
		(String::from("&kappa;"), String::from("κ")),
		(String::from("&kappav;"), String::from("ϰ")),
		(String::from("&kcedil;"), String::from("ķ")),
		(String::from("&kcy;"), String::from("к")),
		(String::from("&kfr;"), String::from("𝔨")),
		(String::from("&kgreen;"), String::from("ĸ")),
		(String::from("&khcy;"), String::from("х")),
		(String::from("&kjcy;"), String::from("ќ")),
		(String::from("&kopf;"), String::from("𝕜")),
		(String::from("&kscr;"), String::from("𝓀")),
		(String::from("&lAarr;"), String::from("")),
		(String::from("&lArr;"), String::from("")),
		(String::from("&lAtail;"), String::from("")),
		(String::from("&lBarr;"), String::from("")),
		(String::from("&lE;"), String::from("")),
		(String::from("&lEg;"), String::from("")),
		(String::from("&lHar;"), String::from("")),
		(String::from("&lacute;"), String::from("ĺ")),
		(String::from("&laemptyv;"), String::from("")),
		(String::from("&lagran;"), String::from("")),
		(String::from("&lambda;"), String::from("λ")),
		(String::from("&lang;"), String::from("")),
		(String::from("&langd;"), String::from("")),
		(String::from("&langle;"), String::from("")),
		(String::from("&lap;"), String::from("")),
		(String::from("&laquo"), String::from("«")),
		(String::from("&laquo;"), String::from("«")),
		(String::from("&larr;"), String::from("")),
		(String::from("&larrb;"), String::from("")),
		(String::from("&larrbfs;"), String::from("")),
		(String::from("&larrfs;"), String::from("")),
		(String::from("&larrhk;"), String::from("")),
		(String::from("&larrlp;"), String::from("")),
		(String::from("&larrpl;"), String::from("")),
		(String::from("&larrsim;"), String::from("")),
		(String::from("&larrtl;"), String::from("")),
		(String::from("&lat;"), String::from("")),
		(String::from("&latail;"), String::from("")),
		(String::from("&late;"), String::from("")),
		(String::from("&lates;"), String::from("")),
		(String::from("&lbarr;"), String::from("")),
		(String::from("&lbbrk;"), String::from("")),
		(String::from("&lbrace;"), String::from("{")),
		(String::from("&lbrack;"), String::from("[")),
		(String::from("&lbrke;"), String::from("")),
		(String::from("&lbrksld;"), String::from("")),
		(String::from("&lbrkslu;"), String::from("")),
		(String::from("&lcaron;"), String::from("ľ")),
		(String::from("&lcedil;"), String::from("ļ")),
		(String::from("&lceil;"), String::from("")),
		(String::from("&lcub;"), String::from("{")),
		(String::from("&lcy;"), String::from("л")),
		(String::from("&ldca;"), String::from("")),
		(String::from("&ldquo;"), String::from("")),
		(String::from("&ldquor;"), String::from("")),
		(String::from("&ldrdhar;"), String::from("")),
		(String::from("&ldrushar;"), String::from("")),
		(String::from("&ldsh;"), String::from("")),
		(String::from("&le;"), String::from("")),
		(String::from("&leftarrow;"), String::from("")),
		(String::from("&leftarrowtail;"), String::from("")),
		(String::from("&leftharpoondown;"), String::from("")),
		(String::from("&leftharpoonup;"), String::from("")),
		(String::from("&leftleftarrows;"), String::from("")),
		(String::from("&leftrightarrow;"), String::from("")),
		(String::from("&leftrightarrows;"), String::from("")),
		(String::from("&leftrightharpoons;"), String::from("")),
		(String::from("&leftrightsquigarrow;"), String::from("")),
		(String::from("&leftthreetimes;"), String::from("")),
		(String::from("&leg;"), String::from("")),
		(String::from("&leq;"), String::from("")),
		(String::from("&leqq;"), String::from("")),
		(String::from("&leqslant;"), String::from("")),
		(String::from("&les;"), String::from("")),
		(String::from("&lescc;"), String::from("")),
		(String::from("&lesdot;"), String::from("⩿")),
		(String::from("&lesdoto;"), String::from("")),
		(String::from("&lesdotor;"), String::from("")),
		(String::from("&lesg;"), String::from("")),
		(String::from("&lesges;"), String::from("")),
		(String::from("&lessapprox;"), String::from("")),
		(String::from("&lessdot;"), String::from("")),
		(String::from("&lesseqgtr;"), String::from("")),
		(String::from("&lesseqqgtr;"), String::from("")),
		(String::from("&lessgtr;"), String::from("")),
		(String::from("&lesssim;"), String::from("")),
		(String::from("&lfisht;"), String::from("")),
		(String::from("&lfloor;"), String::from("")),
		(String::from("&lfr;"), String::from("𝔩")),
		(String::from("&lg;"), String::from("")),
		(String::from("&lgE;"), String::from("")),
		(String::from("&lhard;"), String::from("")),
		(String::from("&lharu;"), String::from("")),
		(String::from("&lharul;"), String::from("")),
		(String::from("&lhblk;"), String::from("")),
		(String::from("&ljcy;"), String::from("љ")),
		(String::from("&ll;"), String::from("")),
		(String::from("&llarr;"), String::from("")),
		(String::from("&llcorner;"), String::from("")),
		(String::from("&llhard;"), String::from("")),
		(String::from("&lltri;"), String::from("")),
		(String::from("&lmidot;"), String::from("ŀ")),
		(String::from("&lmoust;"), String::from("")),
		(String::from("&lmoustache;"), String::from("")),
		(String::from("&lnE;"), String::from("")),
		(String::from("&lnap;"), String::from("")),
		(String::from("&lnapprox;"), String::from("")),
		(String::from("&lne;"), String::from("")),
		(String::from("&lneq;"), String::from("")),
		(String::from("&lneqq;"), String::from("")),
		(String::from("&lnsim;"), String::from("")),
		(String::from("&loang;"), String::from("")),
		(String::from("&loarr;"), String::from("")),
		(String::from("&lobrk;"), String::from("")),
		(String::from("&longleftarrow;"), String::from("")),
		(String::from("&longleftrightarrow;"), String::from("")),
		(String::from("&longmapsto;"), String::from("")),
		(String::from("&longrightarrow;"), String::from("")),
		(String::from("&looparrowleft;"), String::from("")),
		(String::from("&looparrowright;"), String::from("")),
		(String::from("&lopar;"), String::from("")),
		(String::from("&lopf;"), String::from("𝕝")),
		(String::from("&loplus;"), String::from("")),
		(String::from("&lotimes;"), String::from("")),
		(String::from("&lowast;"), String::from("")),
		(String::from("&lowbar;"), String::from("_")),
		(String::from("&loz;"), String::from("")),
		(String::from("&lozenge;"), String::from("")),
		(String::from("&lozf;"), String::from("")),
		(String::from("&lpar;"), String::from("(")),
		(String::from("&lparlt;"), String::from("")),
		(String::from("&lrarr;"), String::from("")),
		(String::from("&lrcorner;"), String::from("")),
		(String::from("&lrhar;"), String::from("")),
		(String::from("&lrhard;"), String::from("")),
		(String::from("&lrm;"), String::from("")),
		(String::from("&lrtri;"), String::from("")),
		(String::from("&lsaquo;"), String::from("")),
		(String::from("&lscr;"), String::from("𝓁")),
		(String::from("&lsh;"), String::from("")),
		(String::from("&lsim;"), String::from("")),
		(String::from("&lsime;"), String::from("")),
		(String::from("&lsimg;"), String::from("")),
		(String::from("&lsqb;"), String::from("[")),
		(String::from("&lsquo;"), String::from("")),
		(String::from("&lsquor;"), String::from("")),
		(String::from("&lstrok;"), String::from("ł")),
		(String::from("&lt"), String::from("<")),
		(String::from("&lt;"), String::from("<")),
		(String::from("&ltcc;"), String::from("")),
		(String::from("&ltcir;"), String::from("")),
		(String::from("&ltdot;"), String::from("")),
		(String::from("&lthree;"), String::from("")),
		(String::from("&ltimes;"), String::from("")),
		(String::from("&ltlarr;"), String::from("")),
		(String::from("&ltquest;"), String::from("")),
		(String::from("&ltrPar;"), String::from("")),
		(String::from("&ltri;"), String::from("")),
		(String::from("&ltrie;"), String::from("")),
		(String::from("&ltrif;"), String::from("")),
		(String::from("&lurdshar;"), String::from("")),
		(String::from("&luruhar;"), String::from("")),
		(String::from("&lvertneqq;"), String::from("")),
		(String::from("&lvnE;"), String::from("")),
		(String::from("&mDDot;"), String::from("")),
		(String::from("&macr"), String::from("¯")),
		(String::from("&macr;"), String::from("¯")),
		(String::from("&male;"), String::from("")),
		(String::from("&malt;"), String::from("")),
		(String::from("&maltese;"), String::from("")),
		(String::from("&map;"), String::from("")),
		(String::from("&mapsto;"), String::from("")),
		(String::from("&mapstodown;"), String::from("")),
		(String::from("&mapstoleft;"), String::from("")),
		(String::from("&mapstoup;"), String::from("")),
		(String::from("&marker;"), String::from("")),
		(String::from("&mcomma;"), String::from("")),
		(String::from("&mcy;"), String::from("м")),
		(String::from("&mdash;"), String::from("")),
		(String::from("&measuredangle;"), String::from("")),
		(String::from("&mfr;"), String::from("𝔪")),
		(String::from("&mho;"), String::from("")),
		(String::from("&micro"), String::from("µ")),
		(String::from("&micro;"), String::from("µ")),
		(String::from("&mid;"), String::from("")),
		(String::from("&midast;"), String::from("*")),
		(String::from("&midcir;"), String::from("")),
		(String::from("&middot"), String::from("·")),
		(String::from("&middot;"), String::from("·")),
		(String::from("&minus;"), String::from("")),
		(String::from("&minusb;"), String::from("")),
		(String::from("&minusd;"), String::from("")),
		(String::from("&minusdu;"), String::from("")),
		(String::from("&mlcp;"), String::from("")),
		(String::from("&mldr;"), String::from("")),
		(String::from("&mnplus;"), String::from("")),
		(String::from("&models;"), String::from("")),
		(String::from("&mopf;"), String::from("𝕞")),
		(String::from("&mp;"), String::from("")),
		(String::from("&mscr;"), String::from("𝓂")),
		(String::from("&mstpos;"), String::from("")),
		(String::from("&mu;"), String::from("μ")),
		(String::from("&multimap;"), String::from("")),
		(String::from("&mumap;"), String::from("")),
		(String::from("&nGg;"), String::from("")),
		(String::from("&nGt;"), String::from("")),
		(String::from("&nGtv;"), String::from("")),
		(String::from("&nLeftarrow;"), String::from("")),
		(String::from("&nLeftrightarrow;"), String::from("")),
		(String::from("&nLl;"), String::from("")),
		(String::from("&nLt;"), String::from("")),
		(String::from("&nLtv;"), String::from("")),
		(String::from("&nRightarrow;"), String::from("")),
		(String::from("&nVDash;"), String::from("")),
		(String::from("&nVdash;"), String::from("")),
		(String::from("&nabla;"), String::from("")),
		(String::from("&nacute;"), String::from("ń")),
		(String::from("&nang;"), String::from("")),
		(String::from("&nap;"), String::from("")),
		(String::from("&napE;"), String::from("")),
		(String::from("&napid;"), String::from("")),
		(String::from("&napos;"), String::from("ʼn")),
		(String::from("&napprox;"), String::from("")),
		(String::from("&natur;"), String::from("")),
		(String::from("&natural;"), String::from("")),
		(String::from("&naturals;"), String::from("")),
		(String::from("&nbsp"), String::from(" ")),
		(String::from("&nbsp;"), String::from(" ")),
		(String::from("&nbump;"), String::from("")),
		(String::from("&nbumpe;"), String::from("")),
		(String::from("&ncap;"), String::from("")),
		(String::from("&ncaron;"), String::from("ň")),
		(String::from("&ncedil;"), String::from("ņ")),
		(String::from("&ncong;"), String::from("")),
		(String::from("&ncongdot;"), String::from("")),
		(String::from("&ncup;"), String::from("")),
		(String::from("&ncy;"), String::from("н")),
		(String::from("&ndash;"), String::from("")),
		(String::from("&ne;"), String::from("")),
		(String::from("&neArr;"), String::from("")),
		(String::from("&nearhk;"), String::from("")),
		(String::from("&nearr;"), String::from("")),
		(String::from("&nearrow;"), String::from("")),
		(String::from("&nedot;"), String::from("")),
		(String::from("&nequiv;"), String::from("")),
		(String::from("&nesear;"), String::from("")),
		(String::from("&nesim;"), String::from("")),
		(String::from("&nexist;"), String::from("")),
		(String::from("&nexists;"), String::from("")),
		(String::from("&nfr;"), String::from("𝔫")),
		(String::from("&ngE;"), String::from("")),
		(String::from("&nge;"), String::from("")),
		(String::from("&ngeq;"), String::from("")),
		(String::from("&ngeqq;"), String::from("")),
		(String::from("&ngeqslant;"), String::from("")),
		(String::from("&nges;"), String::from("")),
		(String::from("&ngsim;"), String::from("")),
		(String::from("&ngt;"), String::from("")),
		(String::from("&ngtr;"), String::from("")),
		(String::from("&nhArr;"), String::from("")),
		(String::from("&nharr;"), String::from("")),
		(String::from("&nhpar;"), String::from("")),
		(String::from("&ni;"), String::from("")),
		(String::from("&nis;"), String::from("")),
		(String::from("&nisd;"), String::from("")),
		(String::from("&niv;"), String::from("")),
		(String::from("&njcy;"), String::from("њ")),
		(String::from("&nlArr;"), String::from("")),
		(String::from("&nlE;"), String::from("")),
		(String::from("&nlarr;"), String::from("")),
		(String::from("&nldr;"), String::from("")),
		(String::from("&nle;"), String::from("")),
		(String::from("&nleftarrow;"), String::from("")),
		(String::from("&nleftrightarrow;"), String::from("")),
		(String::from("&nleq;"), String::from("")),
		(String::from("&nleqq;"), String::from("")),
		(String::from("&nleqslant;"), String::from("")),
		(String::from("&nles;"), String::from("")),
		(String::from("&nless;"), String::from("")),
		(String::from("&nlsim;"), String::from("")),
		(String::from("&nlt;"), String::from("")),
		(String::from("&nltri;"), String::from("")),
		(String::from("&nltrie;"), String::from("")),
		(String::from("&nmid;"), String::from("")),
		(String::from("&nopf;"), String::from("𝕟")),
		(String::from("&not"), String::from("¬")),
		(String::from("&not;"), String::from("¬")),
		(String::from("&notin;"), String::from("")),
		(String::from("&notinE;"), String::from("")),
		(String::from("&notindot;"), String::from("")),
		(String::from("&notinva;"), String::from("")),
		(String::from("&notinvb;"), String::from("")),
		(String::from("&notinvc;"), String::from("")),
		(String::from("&notni;"), String::from("")),
		(String::from("&notniva;"), String::from("")),
		(String::from("&notnivb;"), String::from("")),
		(String::from("&notnivc;"), String::from("")),
		(String::from("&npar;"), String::from("")),
		(String::from("&nparallel;"), String::from("")),
		(String::from("&nparsl;"), String::from("")),
		(String::from("&npart;"), String::from("")),
		(String::from("&npolint;"), String::from("")),
		(String::from("&npr;"), String::from("")),
		(String::from("&nprcue;"), String::from("")),
		(String::from("&npre;"), String::from("")),
		(String::from("&nprec;"), String::from("")),
		(String::from("&npreceq;"), String::from("")),
		(String::from("&nrArr;"), String::from("")),
		(String::from("&nrarr;"), String::from("")),
		(String::from("&nrarrc;"), String::from("")),
		(String::from("&nrarrw;"), String::from("")),
		(String::from("&nrightarrow;"), String::from("")),
		(String::from("&nrtri;"), String::from("")),
		(String::from("&nrtrie;"), String::from("")),
		(String::from("&nsc;"), String::from("")),
		(String::from("&nsccue;"), String::from("")),
		(String::from("&nsce;"), String::from("")),
		(String::from("&nscr;"), String::from("𝓃")),
		(String::from("&nshortmid;"), String::from("")),
		(String::from("&nshortparallel;"), String::from("")),
		(String::from("&nsim;"), String::from("")),
		(String::from("&nsime;"), String::from("")),
		(String::from("&nsimeq;"), String::from("")),
		(String::from("&nsmid;"), String::from("")),
		(String::from("&nspar;"), String::from("")),
		(String::from("&nsqsube;"), String::from("")),
		(String::from("&nsqsupe;"), String::from("")),
		(String::from("&nsub;"), String::from("")),
		(String::from("&nsubE;"), String::from("")),
		(String::from("&nsube;"), String::from("")),
		(String::from("&nsubset;"), String::from("")),
		(String::from("&nsubseteq;"), String::from("")),
		(String::from("&nsubseteqq;"), String::from("")),
		(String::from("&nsucc;"), String::from("")),
		(String::from("&nsucceq;"), String::from("")),
		(String::from("&nsup;"), String::from("")),
		(String::from("&nsupE;"), String::from("")),
		(String::from("&nsupe;"), String::from("")),
		(String::from("&nsupset;"), String::from("")),
		(String::from("&nsupseteq;"), String::from("")),
		(String::from("&nsupseteqq;"), String::from("")),
		(String::from("&ntgl;"), String::from("")),
		(String::from("&ntilde"), String::from("ñ")),
		(String::from("&ntilde;"), String::from("ñ")),
		(String::from("&ntlg;"), String::from("")),
		(String::from("&ntriangleleft;"), String::from("")),
		(String::from("&ntrianglelefteq;"), String::from("")),
		(String::from("&ntriangleright;"), String::from("")),
		(String::from("&ntrianglerighteq;"), String::from("")),
		(String::from("&nu;"), String::from("ν")),
		(String::from("&num;"), String::from("#")),
		(String::from("&numero;"), String::from("")),
		(String::from("&numsp;"), String::from("")),
		(String::from("&nvDash;"), String::from("")),
		(String::from("&nvHarr;"), String::from("")),
		(String::from("&nvap;"), String::from("")),
		(String::from("&nvdash;"), String::from("")),
		(String::from("&nvge;"), String::from("")),
		(String::from("&nvgt;"), String::from(">")),
		(String::from("&nvinfin;"), String::from("")),
		(String::from("&nvlArr;"), String::from("")),
		(String::from("&nvle;"), String::from("")),
		(String::from("&nvlt;"), String::from("<")),
		(String::from("&nvltrie;"), String::from("")),
		(String::from("&nvrArr;"), String::from("")),
		(String::from("&nvrtrie;"), String::from("")),
		(String::from("&nvsim;"), String::from("")),
		(String::from("&nwArr;"), String::from("")),
		(String::from("&nwarhk;"), String::from("")),
		(String::from("&nwarr;"), String::from("")),
		(String::from("&nwarrow;"), String::from("")),
		(String::from("&nwnear;"), String::from("")),
		(String::from("&oS;"), String::from("")),
		(String::from("&oacute"), String::from("ó")),
		(String::from("&oacute;"), String::from("ó")),
		(String::from("&oast;"), String::from("")),
		(String::from("&ocir;"), String::from("")),
		(String::from("&ocirc"), String::from("ô")),
		(String::from("&ocirc;"), String::from("ô")),
		(String::from("&ocy;"), String::from("о")),
		(String::from("&odash;"), String::from("")),
		(String::from("&odblac;"), String::from("ő")),
		(String::from("&odiv;"), String::from("")),
		(String::from("&odot;"), String::from("")),
		(String::from("&odsold;"), String::from("")),
		(String::from("&oelig;"), String::from("œ")),
		(String::from("&ofcir;"), String::from("⦿")),
		(String::from("&ofr;"), String::from("𝔬")),
		(String::from("&ogon;"), String::from("˛")),
		(String::from("&ograve"), String::from("ò")),
		(String::from("&ograve;"), String::from("ò")),
		(String::from("&ogt;"), String::from("")),
		(String::from("&ohbar;"), String::from("")),
		(String::from("&ohm;"), String::from("Ω")),
		(String::from("&oint;"), String::from("")),
		(String::from("&olarr;"), String::from("")),
		(String::from("&olcir;"), String::from("")),
		(String::from("&olcross;"), String::from("")),
		(String::from("&oline;"), String::from("")),
		(String::from("&olt;"), String::from("")),
		(String::from("&omacr;"), String::from("ō")),
		(String::from("&omega;"), String::from("ω")),
		(String::from("&omicron;"), String::from("ο")),
		(String::from("&omid;"), String::from("")),
		(String::from("&ominus;"), String::from("")),
		(String::from("&oopf;"), String::from("𝕠")),
		(String::from("&opar;"), String::from("")),
		(String::from("&operp;"), String::from("")),
		(String::from("&oplus;"), String::from("")),
		(String::from("&or;"), String::from("")),
		(String::from("&orarr;"), String::from("")),
		(String::from("&ord;"), String::from("")),
		(String::from("&order;"), String::from("")),
		(String::from("&orderof;"), String::from("")),
		(String::from("&ordf"), String::from("ª")),
		(String::from("&ordf;"), String::from("ª")),
		(String::from("&ordm"), String::from("º")),
		(String::from("&ordm;"), String::from("º")),
		(String::from("&origof;"), String::from("")),
		(String::from("&oror;"), String::from("")),
		(String::from("&orslope;"), String::from("")),
		(String::from("&orv;"), String::from("")),
		(String::from("&oscr;"), String::from("")),
		(String::from("&oslash"), String::from("ø")),
		(String::from("&oslash;"), String::from("ø")),
		(String::from("&osol;"), String::from("")),
		(String::from("&otilde"), String::from("õ")),
		(String::from("&otilde;"), String::from("õ")),
		(String::from("&otimes;"), String::from("")),
		(String::from("&otimesas;"), String::from("")),
		(String::from("&ouml"), String::from("ö")),
		(String::from("&ouml;"), String::from("ö")),
		(String::from("&ovbar;"), String::from("")),
		(String::from("&par;"), String::from("")),
		(String::from("&para"), String::from("")),
		(String::from("&para;"), String::from("")),
		(String::from("&parallel;"), String::from("")),
		(String::from("&parsim;"), String::from("")),
		(String::from("&parsl;"), String::from("")),
		(String::from("&part;"), String::from("")),
		(String::from("&pcy;"), String::from("п")),
		(String::from("&percnt;"), String::from("%")),
		(String::from("&period;"), String::from(".")),
		(String::from("&permil;"), String::from("")),
		(String::from("&perp;"), String::from("")),
		(String::from("&pertenk;"), String::from("")),
		(String::from("&pfr;"), String::from("𝔭")),
		(String::from("&phi;"), String::from("φ")),
		(String::from("&phiv;"), String::from("ϕ")),
		(String::from("&phmmat;"), String::from("")),
		(String::from("&phone;"), String::from("")),
		(String::from("&pi;"), String::from("π")),
		(String::from("&pitchfork;"), String::from("")),
		(String::from("&piv;"), String::from("ϖ")),
		(String::from("&planck;"), String::from("")),
		(String::from("&planckh;"), String::from("")),
		(String::from("&plankv;"), String::from("")),
		(String::from("&plus;"), String::from("+")),
		(String::from("&plusacir;"), String::from("")),
		(String::from("&plusb;"), String::from("")),
		(String::from("&pluscir;"), String::from("")),
		(String::from("&plusdo;"), String::from("")),
		(String::from("&plusdu;"), String::from("")),
		(String::from("&pluse;"), String::from("")),
		(String::from("&plusmn"), String::from("±")),
		(String::from("&plusmn;"), String::from("±")),
		(String::from("&plussim;"), String::from("")),
		(String::from("&plustwo;"), String::from("")),
		(String::from("&pm;"), String::from("±")),
		(String::from("&pointint;"), String::from("")),
		(String::from("&popf;"), String::from("𝕡")),
		(String::from("&pound"), String::from("£")),
		(String::from("&pound;"), String::from("£")),
		(String::from("&pr;"), String::from("")),
		(String::from("&prE;"), String::from("")),
		(String::from("&prap;"), String::from("")),
		(String::from("&prcue;"), String::from("")),
		(String::from("&pre;"), String::from("")),
		(String::from("&prec;"), String::from("")),
		(String::from("&precapprox;"), String::from("")),
		(String::from("&preccurlyeq;"), String::from("")),
		(String::from("&preceq;"), String::from("")),
		(String::from("&precnapprox;"), String::from("")),
		(String::from("&precneqq;"), String::from("")),
		(String::from("&precnsim;"), String::from("")),
		(String::from("&precsim;"), String::from("")),
		(String::from("&prime;"), String::from("")),
		(String::from("&primes;"), String::from("")),
		(String::from("&prnE;"), String::from("")),
		(String::from("&prnap;"), String::from("")),
		(String::from("&prnsim;"), String::from("")),
		(String::from("&prod;"), String::from("")),
		(String::from("&profalar;"), String::from("")),
		(String::from("&profline;"), String::from("")),
		(String::from("&profsurf;"), String::from("")),
		(String::from("&prop;"), String::from("")),
		(String::from("&propto;"), String::from("")),
		(String::from("&prsim;"), String::from("")),
		(String::from("&prurel;"), String::from("")),
		(String::from("&pscr;"), String::from("𝓅")),
		(String::from("&psi;"), String::from("ψ")),
		(String::from("&puncsp;"), String::from("")),
		(String::from("&qfr;"), String::from("𝔮")),
		(String::from("&qint;"), String::from("")),
		(String::from("&qopf;"), String::from("𝕢")),
		(String::from("&qprime;"), String::from("")),
		(String::from("&qscr;"), String::from("𝓆")),
		(String::from("&quaternions;"), String::from("")),
		(String::from("&quatint;"), String::from("")),
		(String::from("&quest;"), String::from("?")),
		(String::from("&questeq;"), String::from("")),
		(String::from("&quot"), String::from("\"")),
		(String::from("&quot;"), String::from("\"")),
		(String::from("&rAarr;"), String::from("")),
		(String::from("&rArr;"), String::from("")),
		(String::from("&rAtail;"), String::from("")),
		(String::from("&rBarr;"), String::from("")),
		(String::from("&rHar;"), String::from("")),
		(String::from("&race;"), String::from("")),
		(String::from("&racute;"), String::from("ŕ")),
		(String::from("&radic;"), String::from("")),
		(String::from("&raemptyv;"), String::from("")),
		(String::from("&rang;"), String::from("")),
		(String::from("&rangd;"), String::from("")),
		(String::from("&range;"), String::from("")),
		(String::from("&rangle;"), String::from("")),
		(String::from("&raquo"), String::from("»")),
		(String::from("&raquo;"), String::from("»")),
		(String::from("&rarr;"), String::from("")),
		(String::from("&rarrap;"), String::from("")),
		(String::from("&rarrb;"), String::from("")),
		(String::from("&rarrbfs;"), String::from("")),
		(String::from("&rarrc;"), String::from("")),
		(String::from("&rarrfs;"), String::from("")),
		(String::from("&rarrhk;"), String::from("")),
		(String::from("&rarrlp;"), String::from("")),
		(String::from("&rarrpl;"), String::from("")),
		(String::from("&rarrsim;"), String::from("")),
		(String::from("&rarrtl;"), String::from("")),
		(String::from("&rarrw;"), String::from("")),
		(String::from("&ratail;"), String::from("")),
		(String::from("&ratio;"), String::from("")),
		(String::from("&rationals;"), String::from("")),
		(String::from("&rbarr;"), String::from("")),
		(String::from("&rbbrk;"), String::from("")),
		(String::from("&rbrace;"), String::from("}")),
		(String::from("&rbrack;"), String::from("]")),
		(String::from("&rbrke;"), String::from("")),
		(String::from("&rbrksld;"), String::from("")),
		(String::from("&rbrkslu;"), String::from("")),
		(String::from("&rcaron;"), String::from("ř")),
		(String::from("&rcedil;"), String::from("ŗ")),
		(String::from("&rceil;"), String::from("")),
		(String::from("&rcub;"), String::from("}")),
		(String::from("&rcy;"), String::from("р")),
		(String::from("&rdca;"), String::from("")),
		(String::from("&rdldhar;"), String::from("")),
		(String::from("&rdquo;"), String::from("")),
		(String::from("&rdquor;"), String::from("")),
		(String::from("&rdsh;"), String::from("")),
		(String::from("&real;"), String::from("")),
		(String::from("&realine;"), String::from("")),
		(String::from("&realpart;"), String::from("")),
		(String::from("&reals;"), String::from("")),
		(String::from("&rect;"), String::from("")),
		(String::from("&reg"), String::from("®")),
		(String::from("&reg;"), String::from("®")),
		(String::from("&rfisht;"), String::from("")),
		(String::from("&rfloor;"), String::from("")),
		(String::from("&rfr;"), String::from("𝔯")),
		(String::from("&rhard;"), String::from("")),
		(String::from("&rharu;"), String::from("")),
		(String::from("&rharul;"), String::from("")),
		(String::from("&rho;"), String::from("ρ")),
		(String::from("&rhov;"), String::from("ϱ")),
		(String::from("&rightarrow;"), String::from("")),
		(String::from("&rightarrowtail;"), String::from("")),
		(String::from("&rightharpoondown;"), String::from("")),
		(String::from("&rightharpoonup;"), String::from("")),
		(String::from("&rightleftarrows;"), String::from("")),
		(String::from("&rightleftharpoons;"), String::from("")),
		(String::from("&rightrightarrows;"), String::from("")),
		(String::from("&rightsquigarrow;"), String::from("")),
		(String::from("&rightthreetimes;"), String::from("")),
		(String::from("&ring;"), String::from("˚")),
		(String::from("&risingdotseq;"), String::from("")),
		(String::from("&rlarr;"), String::from("")),
		(String::from("&rlhar;"), String::from("")),
		(String::from("&rlm;"), String::from("")),
		(String::from("&rmoust;"), String::from("")),
		(String::from("&rmoustache;"), String::from("")),
		(String::from("&rnmid;"), String::from("")),
		(String::from("&roang;"), String::from("")),
		(String::from("&roarr;"), String::from("")),
		(String::from("&robrk;"), String::from("")),
		(String::from("&ropar;"), String::from("")),
		(String::from("&ropf;"), String::from("𝕣")),
		(String::from("&roplus;"), String::from("")),
		(String::from("&rotimes;"), String::from("")),
		(String::from("&rpar;"), String::from(")")),
		(String::from("&rpargt;"), String::from("")),
		(String::from("&rppolint;"), String::from("")),
		(String::from("&rrarr;"), String::from("")),
		(String::from("&rsaquo;"), String::from("")),
		(String::from("&rscr;"), String::from("𝓇")),
		(String::from("&rsh;"), String::from("")),
		(String::from("&rsqb;"), String::from("]")),
		(String::from("&rsquo;"), String::from("")),
		(String::from("&rsquor;"), String::from("")),
		(String::from("&rthree;"), String::from("")),
		(String::from("&rtimes;"), String::from("")),
		(String::from("&rtri;"), String::from("")),
		(String::from("&rtrie;"), String::from("")),
		(String::from("&rtrif;"), String::from("")),
		(String::from("&rtriltri;"), String::from("")),
		(String::from("&ruluhar;"), String::from("")),
		(String::from("&rx;"), String::from("")),
		(String::from("&sacute;"), String::from("ś")),
		(String::from("&sbquo;"), String::from("")),
		(String::from("&sc;"), String::from("")),
		(String::from("&scE;"), String::from("")),
		(String::from("&scap;"), String::from("")),
		(String::from("&scaron;"), String::from("š")),
		(String::from("&sccue;"), String::from("")),
		(String::from("&sce;"), String::from("")),
		(String::from("&scedil;"), String::from("ş")),
		(String::from("&scirc;"), String::from("ŝ")),
		(String::from("&scnE;"), String::from("")),
		(String::from("&scnap;"), String::from("")),
		(String::from("&scnsim;"), String::from("")),
		(String::from("&scpolint;"), String::from("")),
		(String::from("&scsim;"), String::from("")),
		(String::from("&scy;"), String::from("с")),
		(String::from("&sdot;"), String::from("")),
		(String::from("&sdotb;"), String::from("")),
		(String::from("&sdote;"), String::from("")),
		(String::from("&seArr;"), String::from("")),
		(String::from("&searhk;"), String::from("")),
		(String::from("&searr;"), String::from("")),
		(String::from("&searrow;"), String::from("")),
		(String::from("&sect"), String::from("§")),
		(String::from("&sect;"), String::from("§")),
		(String::from("&semi;"), String::from(";")),
		(String::from("&seswar;"), String::from("")),
		(String::from("&setminus;"), String::from("")),
		(String::from("&setmn;"), String::from("")),
		(String::from("&sext;"), String::from("")),
		(String::from("&sfr;"), String::from("𝔰")),
		(String::from("&sfrown;"), String::from("")),
		(String::from("&sharp;"), String::from("")),
		(String::from("&shchcy;"), String::from("щ")),
		(String::from("&shcy;"), String::from("ш")),
		(String::from("&shortmid;"), String::from("")),
		(String::from("&shortparallel;"), String::from("")),
		(String::from("&shy"), String::from("\u{AD}")),
		(String::from("&shy;"), String::from("\u{AD}")),
		(String::from("&sigma;"), String::from("σ")),
		(String::from("&sigmaf;"), String::from("ς")),
		(String::from("&sigmav;"), String::from("ς")),
		(String::from("&sim;"), String::from("")),
		(String::from("&simdot;"), String::from("")),
		(String::from("&sime;"), String::from("")),
		(String::from("&simeq;"), String::from("")),
		(String::from("&simg;"), String::from("")),
		(String::from("&simgE;"), String::from("")),
		(String::from("&siml;"), String::from("")),
		(String::from("&simlE;"), String::from("")),
		(String::from("&simne;"), String::from("")),
		(String::from("&simplus;"), String::from("")),
		(String::from("&simrarr;"), String::from("")),
		(String::from("&slarr;"), String::from("")),
		(String::from("&smallsetminus;"), String::from("")),
		(String::from("&smashp;"), String::from("")),
		(String::from("&smeparsl;"), String::from("")),
		(String::from("&smid;"), String::from("")),
		(String::from("&smile;"), String::from("")),
		(String::from("&smt;"), String::from("")),
		(String::from("&smte;"), String::from("")),
		(String::from("&smtes;"), String::from("")),
		(String::from("&softcy;"), String::from("ь")),
		(String::from("&sol;"), String::from("/")),
		(String::from("&solb;"), String::from("")),
		(String::from("&solbar;"), String::from("")),
		(String::from("&sopf;"), String::from("𝕤")),
		(String::from("&spades;"), String::from("")),
		(String::from("&spadesuit;"), String::from("")),
		(String::from("&spar;"), String::from("")),
		(String::from("&sqcap;"), String::from("")),
		(String::from("&sqcaps;"), String::from("")),
		(String::from("&sqcup;"), String::from("")),
		(String::from("&sqcups;"), String::from("")),
		(String::from("&sqsub;"), String::from("")),
		(String::from("&sqsube;"), String::from("")),
		(String::from("&sqsubset;"), String::from("")),
		(String::from("&sqsubseteq;"), String::from("")),
		(String::from("&sqsup;"), String::from("")),
		(String::from("&sqsupe;"), String::from("")),
		(String::from("&sqsupset;"), String::from("")),
		(String::from("&sqsupseteq;"), String::from("")),
		(String::from("&squ;"), String::from("")),
		(String::from("&square;"), String::from("")),
		(String::from("&squarf;"), String::from("")),
		(String::from("&squf;"), String::from("")),
		(String::from("&srarr;"), String::from("")),
		(String::from("&sscr;"), String::from("𝓈")),
		(String::from("&ssetmn;"), String::from("")),
		(String::from("&ssmile;"), String::from("")),
		(String::from("&sstarf;"), String::from("")),
		(String::from("&star;"), String::from("")),
		(String::from("&starf;"), String::from("")),
		(String::from("&straightepsilon;"), String::from("ϵ")),
		(String::from("&straightphi;"), String::from("ϕ")),
		(String::from("&strns;"), String::from("¯")),
		(String::from("&sub;"), String::from("")),
		(String::from("&subE;"), String::from("")),
		(String::from("&subdot;"), String::from("")),
		(String::from("&sube;"), String::from("")),
		(String::from("&subedot;"), String::from("")),
		(String::from("&submult;"), String::from("")),
		(String::from("&subnE;"), String::from("")),
		(String::from("&subne;"), String::from("")),
		(String::from("&subplus;"), String::from("⪿")),
		(String::from("&subrarr;"), String::from("")),
		(String::from("&subset;"), String::from("")),
		(String::from("&subseteq;"), String::from("")),
		(String::from("&subseteqq;"), String::from("")),
		(String::from("&subsetneq;"), String::from("")),
		(String::from("&subsetneqq;"), String::from("")),
		(String::from("&subsim;"), String::from("")),
		(String::from("&subsub;"), String::from("")),
		(String::from("&subsup;"), String::from("")),
		(String::from("&succ;"), String::from("")),
		(String::from("&succapprox;"), String::from("")),
		(String::from("&succcurlyeq;"), String::from("")),
		(String::from("&succeq;"), String::from("")),
		(String::from("&succnapprox;"), String::from("")),
		(String::from("&succneqq;"), String::from("")),
		(String::from("&succnsim;"), String::from("")),
		(String::from("&succsim;"), String::from("")),
		(String::from("&sum;"), String::from("")),
		(String::from("&sung;"), String::from("")),
		(String::from("&sup1"), String::from("¹")),
		(String::from("&sup1;"), String::from("¹")),
		(String::from("&sup2"), String::from("²")),
		(String::from("&sup2;"), String::from("²")),
		(String::from("&sup3"), String::from("³")),
		(String::from("&sup3;"), String::from("³")),
		(String::from("&sup;"), String::from("")),
		(String::from("&supE;"), String::from("")),
		(String::from("&supdot;"), String::from("")),
		(String::from("&supdsub;"), String::from("")),
		(String::from("&supe;"), String::from("")),
		(String::from("&supedot;"), String::from("")),
		(String::from("&suphsol;"), String::from("")),
		(String::from("&suphsub;"), String::from("")),
		(String::from("&suplarr;"), String::from("")),
		(String::from("&supmult;"), String::from("")),
		(String::from("&supnE;"), String::from("")),
		(String::from("&supne;"), String::from("")),
		(String::from("&supplus;"), String::from("")),
		(String::from("&supset;"), String::from("")),
		(String::from("&supseteq;"), String::from("")),
		(String::from("&supseteqq;"), String::from("")),
		(String::from("&supsetneq;"), String::from("")),
		(String::from("&supsetneqq;"), String::from("")),
		(String::from("&supsim;"), String::from("")),
		(String::from("&supsub;"), String::from("")),
		(String::from("&supsup;"), String::from("")),
		(String::from("&swArr;"), String::from("")),
		(String::from("&swarhk;"), String::from("")),
		(String::from("&swarr;"), String::from("")),
		(String::from("&swarrow;"), String::from("")),
		(String::from("&swnwar;"), String::from("")),
		(String::from("&szlig"), String::from("ß")),
		(String::from("&szlig;"), String::from("ß")),
		(String::from("&target;"), String::from("")),
		(String::from("&tau;"), String::from("τ")),
		(String::from("&tbrk;"), String::from("")),
		(String::from("&tcaron;"), String::from("ť")),
		(String::from("&tcedil;"), String::from("ţ")),
		(String::from("&tcy;"), String::from("т")),
		(String::from("&tdot"), String::from("")),
		(String::from("&telrec;"), String::from("")),
		(String::from("&tfr;"), String::from("𝔱")),
		(String::from("&there4;"), String::from("")),
		(String::from("&therefore;"), String::from("")),
		(String::from("&theta;"), String::from("θ")),
		(String::from("&thetasym;"), String::from("ϑ")),
		(String::from("&thetav;"), String::from("ϑ")),
		(String::from("&thickapprox;"), String::from("")),
		(String::from("&thicksim;"), String::from("")),
		(String::from("&thinsp;"), String::from("")),
		(String::from("&thkap;"), String::from("")),
		(String::from("&thksim;"), String::from("")),
		(String::from("&thorn"), String::from("þ")),
		(String::from("&thorn;"), String::from("þ")),
		(String::from("&tilde;"), String::from("˜")),
		(String::from("&times"), String::from("×")),
		(String::from("&times;"), String::from("×")),
		(String::from("&timesb;"), String::from("")),
		(String::from("&timesbar;"), String::from("")),
		(String::from("&timesd;"), String::from("")),
		(String::from("&tint;"), String::from("")),
		(String::from("&toea;"), String::from("")),
		(String::from("&top;"), String::from("")),
		(String::from("&topbot;"), String::from("")),
		(String::from("&topcir;"), String::from("")),
		(String::from("&topf;"), String::from("𝕥")),
		(String::from("&topfork;"), String::from("")),
		(String::from("&tosa;"), String::from("")),
		(String::from("&tprime;"), String::from("")),
		(String::from("&trade;"), String::from("")),
		(String::from("&triangle;"), String::from("")),
		(String::from("&triangledown;"), String::from("")),
		(String::from("&triangleleft;"), String::from("")),
		(String::from("&trianglelefteq;"), String::from("")),
		(String::from("&triangleq;"), String::from("")),
		(String::from("&triangleright;"), String::from("")),
		(String::from("&trianglerighteq;"), String::from("")),
		(String::from("&tridot;"), String::from("")),
		(String::from("&trie;"), String::from("")),
		(String::from("&triminus;"), String::from("")),
		(String::from("&triplus;"), String::from("")),
		(String::from("&trisb;"), String::from("")),
		(String::from("&tritime;"), String::from("")),
		(String::from("&trpezium;"), String::from("")),
		(String::from("&tscr;"), String::from("𝓉")),
		(String::from("&tscy;"), String::from("ц")),
		(String::from("&tshcy;"), String::from("ћ")),
		(String::from("&tstrok;"), String::from("ŧ")),
		(String::from("&twixt;"), String::from("")),
		(String::from("&twoheadleftarrow;"), String::from("")),
		(String::from("&twoheadrightarrow;"), String::from("")),
		(String::from("&uArr;"), String::from("")),
		(String::from("&uHar;"), String::from("")),
		(String::from("&uacute"), String::from("ú")),
		(String::from("&uacute;"), String::from("ú")),
		(String::from("&uarr;"), String::from("")),
		(String::from("&ubrcy;"), String::from("ў")),
		(String::from("&ubreve;"), String::from("ŭ")),
		(String::from("&ucirc"), String::from("û")),
		(String::from("&ucirc;"), String::from("û")),
		(String::from("&ucy;"), String::from("у")),
		(String::from("&udarr;"), String::from("")),
		(String::from("&udblac;"), String::from("ű")),
		(String::from("&udhar;"), String::from("")),
		(String::from("&ufisht;"), String::from("")),
		(String::from("&ufr;"), String::from("𝔲")),
		(String::from("&ugrave"), String::from("ù")),
		(String::from("&ugrave;"), String::from("ù")),
		(String::from("&uharl;"), String::from("")),
		(String::from("&uharr;"), String::from("")),
		(String::from("&uhblk;"), String::from("")),
		(String::from("&ulcorn;"), String::from("")),
		(String::from("&ulcorner;"), String::from("")),
		(String::from("&ulcrop;"), String::from("")),
		(String::from("&ultri;"), String::from("")),
		(String::from("&umacr;"), String::from("ū")),
		(String::from("&uml"), String::from("¨")),
		(String::from("&uml;"), String::from("¨")),
		(String::from("&uogon;"), String::from("ų")),
		(String::from("&uopf;"), String::from("𝕦")),
		(String::from("&uparrow;"), String::from("")),
		(String::from("&updownarrow;"), String::from("")),
		(String::from("&upharpoonleft;"), String::from("")),
		(String::from("&upharpoonright;"), String::from("")),
		(String::from("&uplus;"), String::from("")),
		(String::from("&upsi;"), String::from("υ")),
		(String::from("&upsih;"), String::from("ϒ")),
		(String::from("&upsilon;"), String::from("υ")),
		(String::from("&upuparrows;"), String::from("")),
		(String::from("&urcorn;"), String::from("")),
		(String::from("&urcorner;"), String::from("")),
		(String::from("&urcrop;"), String::from("")),
		(String::from("&uring;"), String::from("ů")),
		(String::from("&urtri;"), String::from("")),
		(String::from("&uscr;"), String::from("𝓊")),
		(String::from("&utdot;"), String::from("")),
		(String::from("&utilde;"), String::from("ũ")),
		(String::from("&utri;"), String::from("")),
		(String::from("&utrif;"), String::from("")),
		(String::from("&uuarr;"), String::from("")),
		(String::from("&uuml"), String::from("ü")),
		(String::from("&uuml;"), String::from("ü")),
		(String::from("&uwangle;"), String::from("")),
		(String::from("&vArr;"), String::from("")),
		(String::from("&vBar;"), String::from("")),
		(String::from("&vBarv;"), String::from("")),
		(String::from("&vDash;"), String::from("")),
		(String::from("&vangrt;"), String::from("")),
		(String::from("&varepsilon;"), String::from("ϵ")),
		(String::from("&varkappa;"), String::from("ϰ")),
		(String::from("&varnothing;"), String::from("")),
		(String::from("&varphi;"), String::from("ϕ")),
		(String::from("&varpi;"), String::from("ϖ")),
		(String::from("&varpropto;"), String::from("")),
		(String::from("&varr;"), String::from("")),
		(String::from("&varrho;"), String::from("ϱ")),
		(String::from("&varsigma;"), String::from("ς")),
		(String::from("&varsubsetneq;"), String::from("")),
		(String::from("&varsubsetneqq;"), String::from("")),
		(String::from("&varsupsetneq;"), String::from("")),
		(String::from("&varsupsetneqq;"), String::from("")),
		(String::from("&vartheta;"), String::from("ϑ")),
		(String::from("&vartriangleleft;"), String::from("")),
		(String::from("&vartriangleright;"), String::from("")),
		(String::from("&vcy;"), String::from("в")),
		(String::from("&vdash;"), String::from("")),
		(String::from("&vee;"), String::from("")),
		(String::from("&veebar;"), String::from("")),
		(String::from("&veeeq;"), String::from("")),
		(String::from("&vellip;"), String::from("")),
		(String::from("&verbar;"), String::from("|")),
		(String::from("&vert;"), String::from("|")),
		(String::from("&vfr;"), String::from("𝔳")),
		(String::from("&vltri;"), String::from("")),
		(String::from("&vnsub;"), String::from("")),
		(String::from("&vnsup;"), String::from("")),
		(String::from("&vopf;"), String::from("𝕧")),
		(String::from("&vprop;"), String::from("")),
		(String::from("&vrtri;"), String::from("")),
		(String::from("&vscr;"), String::from("𝓋")),
		(String::from("&vsubnE;"), String::from("")),
		(String::from("&vsubne;"), String::from("")),
		(String::from("&vsupnE;"), String::from("")),
		(String::from("&vsupne;"), String::from("")),
		(String::from("&vzigzag;"), String::from("")),
		(String::from("&wcirc;"), String::from("ŵ")),
		(String::from("&wedbar;"), String::from("")),
		(String::from("&wedge;"), String::from("")),
		(String::from("&wedgeq;"), String::from("")),
		(String::from("&weierp;"), String::from("")),
		(String::from("&wfr;"), String::from("𝔴")),
		(String::from("&wopf;"), String::from("𝕨")),
		(String::from("&wp;"), String::from("")),
		(String::from("&wr;"), String::from("")),
		(String::from("&wreath;"), String::from("")),
		(String::from("&wscr;"), String::from("𝓌")),
		(String::from("&xcap;"), String::from("")),
		(String::from("&xcirc;"), String::from("")),
		(String::from("&xcup;"), String::from("")),
		(String::from("&xdtri;"), String::from("")),
		(String::from("&xfr;"), String::from("𝔵")),
		(String::from("&xhArr;"), String::from("")),
		(String::from("&xharr;"), String::from("")),
		(String::from("&xi;"), String::from("ξ")),
		(String::from("&xlArr;"), String::from("")),
		(String::from("&xlarr;"), String::from("")),
		(String::from("&xmap;"), String::from("")),
		(String::from("&xnis;"), String::from("")),
		(String::from("&xodot;"), String::from("")),
		(String::from("&xopf;"), String::from("𝕩")),
		(String::from("&xoplus;"), String::from("")),
		(String::from("&xotime;"), String::from("")),
		(String::from("&xrArr;"), String::from("")),
		(String::from("&xrarr;"), String::from("")),
		(String::from("&xscr;"), String::from("𝓍")),
		(String::from("&xsqcup;"), String::from("")),
		(String::from("&xuplus;"), String::from("")),
		(String::from("&xutri;"), String::from("")),
		(String::from("&xvee;"), String::from("")),
		(String::from("&xwedge;"), String::from("")),
		(String::from("&yacute"), String::from("ý")),
		(String::from("&yacute;"), String::from("ý")),
		(String::from("&yacy;"), String::from("я")),
		(String::from("&ycirc;"), String::from("ŷ")),
		(String::from("&ycy;"), String::from("ы")),
		(String::from("&yen"), String::from("¥")),
		(String::from("&yen;"), String::from("¥")),
		(String::from("&yfr;"), String::from("𝔶")),
		(String::from("&yicy;"), String::from("ї")),
		(String::from("&yopf;"), String::from("𝕪")),
		(String::from("&yscr;"), String::from("𝓎")),
		(String::from("&yucy;"), String::from("ю")),
		(String::from("&yuml"), String::from("ÿ")),
		(String::from("&yuml;"), String::from("ÿ")),
		(String::from("&zacute;"), String::from("ź")),
		(String::from("&zcaron;"), String::from("ž")),
		(String::from("&zcy;"), String::from("з")),
		(String::from("&zdot;"), String::from("ż")),
		(String::from("&zeetrf;"), String::from("")),
		(String::from("&zeta;"), String::from("ζ")),
		(String::from("&zfr;"), String::from("𝔷")),
		(String::from("&zhcy;"), String::from("ж")),
		(String::from("&zigrarr;"), String::from("")),
		(String::from("&zopf;"), String::from("𝕫")),
		(String::from("&zscr;"), String::from("𝓏")),
		(String::from("&zwj;"), String::from("")),
		(String::from("&zwnj;"), String::from("")),
	]);
}