plurimath 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rake.yml +13 -0
- data/.github/workflows/release.yml +22 -0
- data/.hound.yml +5 -0
- data/.rubocop.yml +8 -0
- data/AsciiMath-Supported-Data.adoc +1994 -274
- data/Gemfile +2 -0
- data/Latex-Supported-Data.adoc +1875 -1868
- data/MathML-Supported-Data.adoc +280 -263
- data/README.adoc +22 -20
- data/lib/plurimath/asciimath/constants.rb +186 -141
- data/lib/plurimath/asciimath/parse.rb +104 -39
- data/lib/plurimath/asciimath/parser.rb +3 -1
- data/lib/plurimath/asciimath/transform.rb +1074 -238
- data/lib/plurimath/html/parse.rb +1 -1
- data/lib/plurimath/latex/constants.rb +3228 -1432
- data/lib/plurimath/latex/parse.rb +106 -83
- data/lib/plurimath/latex/parser.rb +11 -4
- data/lib/plurimath/latex/transform.rb +354 -99
- data/lib/plurimath/math/base.rb +15 -0
- data/lib/plurimath/math/formula.rb +90 -13
- data/lib/plurimath/math/function/bar.rb +35 -1
- data/lib/plurimath/math/function/base.rb +25 -4
- data/lib/plurimath/math/function/binary_function.rb +101 -19
- data/lib/plurimath/math/function/cancel.rb +8 -0
- data/lib/plurimath/math/function/ceil.rb +3 -0
- data/lib/plurimath/math/function/color.rb +15 -5
- data/lib/plurimath/math/function/f.rb +8 -0
- data/lib/plurimath/math/function/fenced.rb +95 -8
- data/lib/plurimath/math/function/floor.rb +15 -0
- data/lib/plurimath/math/function/font_style/bold.rb +19 -0
- data/lib/plurimath/math/function/font_style/double_struck.rb +19 -0
- data/lib/plurimath/math/function/font_style/fraktur.rb +19 -0
- data/lib/plurimath/math/function/font_style/italic.rb +37 -0
- data/lib/plurimath/math/function/font_style/monospace.rb +19 -0
- data/lib/plurimath/math/function/font_style/normal.rb +37 -0
- data/lib/plurimath/math/function/font_style/sans-serif.rb +19 -0
- data/lib/plurimath/math/function/font_style/script.rb +19 -0
- data/lib/plurimath/math/function/font_style.rb +18 -5
- data/lib/plurimath/math/function/frac.rb +33 -3
- data/lib/plurimath/math/function/g.rb +7 -0
- data/lib/plurimath/math/function/hat.rb +12 -0
- data/lib/plurimath/math/function/inf.rb +21 -0
- data/lib/plurimath/math/function/int.rb +23 -2
- data/lib/plurimath/math/function/left.rb +25 -1
- data/lib/plurimath/math/function/lim.rb +40 -2
- data/lib/plurimath/math/function/limits.rb +9 -0
- data/lib/plurimath/math/function/log.rb +55 -4
- data/lib/plurimath/math/function/longdiv.rb +12 -0
- data/lib/plurimath/math/function/mbox.rb +31 -0
- data/lib/plurimath/math/function/menclose.rb +46 -0
- data/lib/plurimath/math/function/merror.rb +12 -0
- data/lib/plurimath/math/function/mod.rb +19 -4
- data/lib/plurimath/math/function/msgroup.rb +37 -0
- data/lib/plurimath/math/function/msline.rb +12 -0
- data/lib/plurimath/math/function/multiscript.rb +19 -0
- data/lib/plurimath/math/function/norm.rb +17 -1
- data/lib/plurimath/math/function/obrace.rb +17 -0
- data/lib/plurimath/math/function/oint.rb +2 -2
- data/lib/plurimath/math/function/over.rb +12 -5
- data/lib/plurimath/math/function/overset.rb +34 -5
- data/lib/plurimath/math/function/phantom.rb +28 -0
- data/lib/plurimath/math/function/power.rb +27 -9
- data/lib/plurimath/math/function/power_base.rb +109 -11
- data/lib/plurimath/math/function/prod.rb +25 -4
- data/lib/plurimath/math/function/right.rb +22 -2
- data/lib/plurimath/math/function/root.rb +23 -1
- data/lib/plurimath/math/function/rule.rb +33 -0
- data/lib/plurimath/math/function/scarries.rb +12 -0
- data/lib/plurimath/math/function/scarry.rb +12 -0
- data/lib/plurimath/math/function/sqrt.rb +23 -1
- data/lib/plurimath/math/function/stackrel.rb +27 -0
- data/lib/plurimath/math/function/substack.rb +7 -0
- data/lib/plurimath/math/function/sum.rb +50 -2
- data/lib/plurimath/math/function/sup.rb +3 -0
- data/lib/plurimath/math/function/table/align.rb +5 -5
- data/lib/plurimath/math/function/table/array.rb +25 -6
- data/lib/plurimath/math/function/table/bmatrix.rb +18 -7
- data/lib/plurimath/math/function/table/matrix.rb +13 -5
- data/lib/plurimath/math/function/table/multline.rb +5 -5
- data/lib/plurimath/math/function/table/pmatrix.rb +5 -5
- data/lib/plurimath/math/function/table/split.rb +5 -5
- data/lib/plurimath/math/function/table/vmatrix.rb +5 -6
- data/lib/plurimath/math/function/table.rb +185 -27
- data/lib/plurimath/math/function/td.rb +22 -9
- data/lib/plurimath/math/function/ternary_function.rb +74 -9
- data/lib/plurimath/math/function/text.rb +36 -11
- data/lib/plurimath/math/function/tr.rb +23 -4
- data/lib/plurimath/math/function/ubrace.rb +17 -0
- data/lib/plurimath/math/function/ul.rb +29 -0
- data/lib/plurimath/math/function/unary_function.rb +81 -8
- data/lib/plurimath/math/function/underline.rb +12 -0
- data/lib/plurimath/math/function/underover.rb +107 -0
- data/lib/plurimath/math/function/underset.rb +39 -0
- data/lib/plurimath/math/function/vec.rb +7 -1
- data/lib/plurimath/math/number.rb +5 -5
- data/lib/plurimath/math/symbol.rb +51 -12
- data/lib/plurimath/math/unicode.rb +11 -0
- data/lib/plurimath/math.rb +7 -3
- data/lib/plurimath/mathml/constants.rb +224 -147
- data/lib/plurimath/mathml/parser.rb +24 -8
- data/lib/plurimath/mathml/transform.rb +249 -153
- data/lib/plurimath/omml/parser.rb +24 -4
- data/lib/plurimath/omml/transform.rb +219 -157
- data/lib/plurimath/utility.rb +342 -20
- data/lib/plurimath/version.rb +1 -1
- metadata +21 -6
- data/.github/workflows/test.yml +0 -33
- data/lib/plurimath/mathml/parse.rb +0 -68
- data/lib/plurimath/omml/constants.rb +0 -154
data/Latex-Supported-Data.adoc
CHANGED
@@ -1,1872 +1,1879 @@
|
|
1
|
-
|
1
|
+
== LaTeX symbols
|
2
|
+
|
3
|
+
=== Parenthesis
|
2
4
|
|
3
|
-
==== Parenthesis
|
4
|
-
--
|
5
5
|
|===
|
6
6
|
| Open | Close
|
7
|
-
| [
|
8
|
-
| {
|
9
|
-
| (
|
10
|
-
|
|
11
|
-
|
12
|
-
|
7
|
+
| `[` | `]`
|
8
|
+
| `{` | `}`
|
9
|
+
| `(` | `)`
|
10
|
+
| `{` | `}`
|
11
|
+
|===
|
12
|
+
|
13
|
+
=== Functions and others
|
14
|
+
|
13
15
|
|===
|
14
|
-
| Functions | Numeric Values | Matrices
|
15
|
-
| stackrel
|
16
|
-
| substack
|
17
|
-
| overline
|
18
|
-
| liminf
|
19
|
-
| limsup
|
20
|
-
| arctan
|
21
|
-
| arcsin
|
22
|
-
| arccos
|
23
|
-
| color
|
24
|
-
| binom
|
25
|
-
| tilde
|
26
|
-
| prod
|
27
|
-
| pmod
|
28
|
-
| bmod
|
29
|
-
| frac
|
30
|
-
| cosh
|
31
|
-
| tanh
|
32
|
-
| coth
|
33
|
-
| sinh
|
34
|
-
| log
|
35
|
-
| inf
|
36
|
-
| sum
|
37
|
-
| lim
|
38
|
-
| bar
|
39
|
-
| ker
|
40
|
-
| sup
|
41
|
-
| hom
|
42
|
-
| sin
|
43
|
-
| sec
|
44
|
-
| min
|
45
|
-
| max
|
46
|
-
| gcd
|
47
|
-
| exp
|
48
|
-
| dim
|
49
|
-
| det
|
50
|
-
| deg
|
51
|
-
| csc
|
52
|
-
| cot
|
53
|
-
| cos
|
54
|
-
| tan
|
55
|
-
| vec
|
56
|
-
| hat
|
57
|
-
| ln
|
58
|
-
| lg
|
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
|
-
|
16
|
+
| Functions | Numeric Values | Matrices | Font Styles | Operators
|
17
|
+
| `stackrel` | `zero` | `multline` | `displaystyle` | `!`
|
18
|
+
| `substack` | `one` | `Vmatrix` | `mathsfbfit` | `#`
|
19
|
+
| `overline` | `two` | `vmatrix` | `mbfitsans` | `$`
|
20
|
+
| `liminf` | `three` | `pmatrix` | `mathbold` | `%`
|
21
|
+
| `limsup` | `four` | `Bmatrix` | `mathsfit` | `&`
|
22
|
+
| `arctan` | `five` | `bmatrix` | `mathsfbf` | `'`
|
23
|
+
| `arcsin` | `six` | `matrix` | `mathbfit` | `*`
|
24
|
+
| `arccos` | `seven` | `split` | `mathfrak` | `+`
|
25
|
+
| `color` | `eight` | `align` | `mathcal` | `,`
|
26
|
+
| `binom` | `nine` | `array` | `mbfsans` | `-`
|
27
|
+
| `tilde` | | | `mathds` | `.`
|
28
|
+
| `prod` | | | `mathbf` | `/`
|
29
|
+
| `pmod` | | | `mathbb` | `:`
|
30
|
+
| `bmod` | | | `mathtt` | `;`
|
31
|
+
| `frac` | | | `mathrm` | `<`
|
32
|
+
| `cosh` | | | `mathsf` | `=`
|
33
|
+
| `tanh` | | | `mathit` | `>`
|
34
|
+
| `coth` | | | `textrm` | `?`
|
35
|
+
| `sinh` | | | `mfrak` | `@`
|
36
|
+
| `log` | | | `mbfit` | `_`
|
37
|
+
| `inf` | | | `msans` | `\|`
|
38
|
+
| `sum` | | | `mscr` |
|
39
|
+
| `lim` | | | `mit` |
|
40
|
+
| `bar` | | | `mbf` |
|
41
|
+
| `ker` | | | `mtt` |
|
42
|
+
| `sup` | | | `Bbb` |
|
43
|
+
| `hom` | | | `rm` |
|
44
|
+
| `sin` | | | `bf` |
|
45
|
+
| `sec` | | | |
|
46
|
+
| `min` | | | |
|
47
|
+
| `max` | | | |
|
48
|
+
| `gcd` | | | |
|
49
|
+
| `exp` | | | |
|
50
|
+
| `dim` | | | |
|
51
|
+
| `det` | | | |
|
52
|
+
| `deg` | | | |
|
53
|
+
| `csc` | | | |
|
54
|
+
| `cot` | | | |
|
55
|
+
| `cos` | | | |
|
56
|
+
| `tan` | | | |
|
57
|
+
| `vec` | | | |
|
58
|
+
| `hat` | | | |
|
59
|
+
| `ln` | | | |
|
60
|
+
| `lg` | | | |
|
61
|
+
|
62
|
+
|===
|
63
|
+
|
64
|
+
=== Symbols
|
65
|
+
|
66
|
+
* `barleftarrowrightarrowba`
|
67
|
+
* `rightarrowshortleftarrow`
|
68
|
+
* `leftarrowshortrightarrow`
|
69
|
+
* `shortrightarrowleftarrow`
|
70
|
+
* `leftrightharpoondowndown`
|
71
|
+
* `smallblacktriangleright`
|
72
|
+
* `invwhiteupperhalfcircle`
|
73
|
+
* `invwhitelowerhalfcircle`
|
74
|
+
* `concavediamondtickright`
|
75
|
+
* `nvtwoheadrightarrowtail`
|
76
|
+
* `nVtwoheadrightarrowtail`
|
77
|
+
* `updownharpoonrightright`
|
78
|
+
* `updownharpoonsleftright`
|
79
|
+
* `downupharpoonsleftright`
|
80
|
+
* `leftrightarrowtriangle`
|
81
|
+
* `smallblacktriangleleft`
|
82
|
+
* `blackcircleulquadwhite`
|
83
|
+
* `concavediamondtickleft`
|
84
|
+
* `leftrightharpoonupdown`
|
85
|
+
* `leftrightharpoondownup`
|
86
|
+
* `updownharpoonrightleft`
|
87
|
+
* `updownharpoonleftright`
|
88
|
+
* `downtrianglerightblack`
|
89
|
+
* `partialmeetcontraction`
|
90
|
+
* `nvtwoheadleftarrowtail`
|
91
|
+
* `nVtwoheadleftarrowtail`
|
92
|
+
* `underrightharpoondown`
|
93
|
+
* `barovernorthwestarrow`
|
94
|
+
* `rangledownzigzagarrow`
|
95
|
+
* `circlebottomhalfblack`
|
96
|
+
* `twoheadrightarrowtail`
|
97
|
+
* `updownharpoonleftleft`
|
98
|
+
* `downharpoonsleftright`
|
99
|
+
* `leftrightharpoonsdown`
|
100
|
+
* `rightleftharpoonsdown`
|
101
|
+
* `downtriangleleftblack`
|
102
|
+
* `blackdiamonddownarrow`
|
103
|
+
* `closedvarcupsmashprod`
|
104
|
+
* `underleftharpoondown`
|
105
|
+
* `CapitalDifferentialD`
|
106
|
+
* `bigblacktriangledown`
|
107
|
+
* `circlerighthalfblack`
|
108
|
+
* `blackrighthalfcircle`
|
109
|
+
* `blackcircledrightdot`
|
110
|
+
* `whiteinwhitetriangle`
|
111
|
+
* `whitesquaretickright`
|
112
|
+
* `barrightarrowdiamond`
|
113
|
+
* `downrightcurvedarrow`
|
114
|
+
* `rightdowncurvedarrow`
|
115
|
+
* `curvearrowrightminus`
|
116
|
+
* `leftrightarrowcircle`
|
117
|
+
* `twoheaduparrowcircle`
|
118
|
+
* `leftrightharpoonupup`
|
119
|
+
* `leftrightharpoondown`
|
120
|
+
* `dashrightharpoondown`
|
121
|
+
* `blackcircledownarrow`
|
122
|
+
* `NestedGreaterGreater`
|
123
|
+
* `twoheadleftarrowtail`
|
124
|
+
* `rightarrowbackapprox`
|
125
|
+
* `leftrightsquigarrow`
|
126
|
+
* `whitearrowupfrombar`
|
127
|
+
* `blockthreeqtrshaded`
|
128
|
+
* `blackinwhitediamond`
|
129
|
+
* `circlelefthalfblack`
|
130
|
+
* `blacklefthalfcircle`
|
131
|
+
* `blackcircledtwodots`
|
132
|
+
* `whitesquaretickleft`
|
133
|
+
* `longrightsquigarrow`
|
134
|
+
* `nvtwoheadrightarrow`
|
135
|
+
* `nVtwoheadrightarrow`
|
136
|
+
* `diamondleftarrowbar`
|
137
|
+
* `leftdowncurvedarrow`
|
138
|
+
* `downharpoonrightbar`
|
139
|
+
* `rightharpoondownbar`
|
140
|
+
* `bardownharpoonright`
|
141
|
+
* `barrightharpoondown`
|
142
|
+
* `upharpoonsleftright`
|
143
|
+
* `rightharpoonsupdown`
|
144
|
+
* `leftrightharpoonsup`
|
145
|
+
* `rightleftharpoonsup`
|
146
|
+
* `dashleftharpoondown`
|
147
|
+
* `twoheadleftdbkarrow`
|
148
|
+
* `leftarrowbackapprox`
|
149
|
+
* `rightharpoonaccent`
|
150
|
+
* `overleftrightarrow`
|
151
|
+
* `acwopencirclearrow`
|
152
|
+
* `upharpoonrightdown`
|
153
|
+
* `circleonrightarrow`
|
154
|
+
* `rightarrowtriangle`
|
155
|
+
* `PrecedesSlantEqual`
|
156
|
+
* `SucceedsSlantEqual`
|
157
|
+
* `measuredrightangle`
|
158
|
+
* `blackinwhitesquare`
|
159
|
+
* `parallelogramblack`
|
160
|
+
* `bigblacktriangleup`
|
161
|
+
* `blacktriangleright`
|
162
|
+
* `smalltriangleright`
|
163
|
+
* `circletophalfblack`
|
164
|
+
* `inversewhitecircle`
|
165
|
+
* `trianglerightblack`
|
166
|
+
* `longleftrightarrow`
|
167
|
+
* `Longleftrightarrow`
|
168
|
+
* `curvearrowleftplus`
|
169
|
+
* `ccwundercurvearrow`
|
170
|
+
* `leftrightharpoonup`
|
171
|
+
* `rightupdownharpoon`
|
172
|
+
* `RightDownVectorBar`
|
173
|
+
* `barleftharpoondown`
|
174
|
+
* `DownRightVectorBar`
|
175
|
+
* `downharpoonleftbar`
|
176
|
+
* `RightDownTeeVector`
|
177
|
+
* `leftharpoondownbar`
|
178
|
+
* `DownRightTeeVector`
|
179
|
+
* `bardownharpoonleft`
|
180
|
+
* `leftharpoonsupdown`
|
181
|
+
* `rightrightharpoons`
|
182
|
+
* `rightharpoonupdash`
|
183
|
+
* `circledwhitebullet`
|
184
|
+
* `errbarblackdiamond`
|
185
|
+
* `longleftsquigarrow`
|
186
|
+
* `nvtwoheadleftarrow`
|
187
|
+
* `nVtwoheadleftarrow`
|
188
|
+
* `bsimilarrightarrow`
|
189
|
+
* `rightarrowbsimilar`
|
190
|
+
* `rightpentagonblack`
|
191
|
+
* `leftharpoonaccent`
|
192
|
+
* `twoheadrightarrow`
|
193
|
+
* `cwopencirclearrow`
|
194
|
+
* `upharpoonleftdown`
|
195
|
+
* `leftrightharpoons`
|
196
|
+
* `rightleftharpoons`
|
197
|
+
* `leftarrowtriangle`
|
198
|
+
* `kernelcontraction`
|
199
|
+
* `vardoublebarwedge`
|
200
|
+
* `varhexagonlrbonds`
|
201
|
+
* `varcarriagereturn`
|
202
|
+
* `blackpointerright`
|
203
|
+
* `whitepointerright`
|
204
|
+
* `blacktriangledown`
|
205
|
+
* `smalltriangledown`
|
206
|
+
* `blacktriangleleft`
|
207
|
+
* `smalltriangleleft`
|
208
|
+
* `circleurquadblack`
|
209
|
+
* `triangleleftblack`
|
210
|
+
* `acwgapcirclearrow`
|
211
|
+
* `rightarrowonoplus`
|
212
|
+
* `rightarrowdiamond`
|
213
|
+
* `uprightcurvearrow`
|
214
|
+
* `cwundercurvearrow`
|
215
|
+
* `leftupdownharpoon`
|
216
|
+
* `rightharpoonupbar`
|
217
|
+
* `barupharpoonright`
|
218
|
+
* `DownLeftVectorBar`
|
219
|
+
* `LeftDownVectorBar`
|
220
|
+
* `barrightharpoonup`
|
221
|
+
* `upharpoonrightbar`
|
222
|
+
* `DownLeftTeeVector`
|
223
|
+
* `LeftDownTeeVector`
|
224
|
+
* `leftharpoonupdash`
|
225
|
+
* `similarrightarrow`
|
226
|
+
* `rightarrowsimilar`
|
227
|
+
* `measuredangleleft`
|
228
|
+
* `errbarblacksquare`
|
229
|
+
* `errbarblackcircle`
|
230
|
+
* `diamondrightblack`
|
231
|
+
* `circleonleftarrow`
|
232
|
+
* `bsimilarleftarrow`
|
233
|
+
* `leftarrowbsimilar`
|
234
|
+
* `twoheadleftarrow`
|
235
|
+
* `twoheaddownarrow`
|
236
|
+
* `circlearrowright`
|
237
|
+
* `rightharpoondown`
|
238
|
+
* `downharpoonright`
|
239
|
+
* `uparrowdownarrow`
|
240
|
+
* `rightrightarrows`
|
241
|
+
* `downarrowuparrow`
|
242
|
+
* `rightthreearrows`
|
243
|
+
* `nvleftrightarrow`
|
244
|
+
* `nVleftrightarrow`
|
245
|
+
* `varointclockwise`
|
246
|
+
* `ointctrclockwise`
|
247
|
+
* `vartriangleright`
|
248
|
+
* `multimapdotbothA`
|
249
|
+
* `multimapdotbothB`
|
250
|
+
* `NotRightTriangle`
|
251
|
+
* `ntrianglerighteq`
|
252
|
+
* `APLrightarrowbox`
|
253
|
+
* `blackpointerleft`
|
254
|
+
* `whitepointerleft`
|
255
|
+
* `squarerightblack`
|
256
|
+
* `cwgapcirclearrow`
|
257
|
+
* `nvLeftrightarrow`
|
258
|
+
* `nvrightarrowtail`
|
259
|
+
* `nVrightarrowtail`
|
260
|
+
* `diamondleftarrow`
|
261
|
+
* `rightcurvedarrow`
|
262
|
+
* `acwunderarcarrow`
|
263
|
+
* `leftrightharpoon`
|
264
|
+
* `rightleftharpoon`
|
265
|
+
* `barleftharpoonup`
|
266
|
+
* `RightUpVectorBar`
|
267
|
+
* `barupharpoonleft`
|
268
|
+
* `leftharpoonupbar`
|
269
|
+
* `RightUpTeeVector`
|
270
|
+
* `upharpoonleftbar`
|
271
|
+
* `leftleftharpoons`
|
272
|
+
* `downdownharpoons`
|
273
|
+
* `uprevequilibrium`
|
274
|
+
* `leftarrowsimilar`
|
275
|
+
* `rightarrowapprox`
|
276
|
+
* `sphericalangleup`
|
277
|
+
* `RightTriangleBar`
|
278
|
+
* `diamondleftblack`
|
279
|
+
* `leftarrowonoplus`
|
280
|
+
* `rightarrowsupset`
|
281
|
+
* `similarleftarrow`
|
282
|
+
* `enleadertwodots`
|
283
|
+
* `unicodeellipsis`
|
284
|
+
* `enclosetriangle`
|
285
|
+
* `widebridgeabove`
|
286
|
+
* `underrightarrow`
|
287
|
+
* `nleftrightarrow`
|
288
|
+
* `downzigzagarrow`
|
289
|
+
* `curvearrowright`
|
290
|
+
* `circlearrowleft`
|
291
|
+
* `leftharpoondown`
|
292
|
+
* `upharpoonleftup`
|
293
|
+
* `downharpoonleft`
|
294
|
+
* `rightleftarrows`
|
295
|
+
* `leftrightarrows`
|
296
|
+
* `nLeftrightarrow`
|
297
|
+
* `rightsquigarrow`
|
298
|
+
* `rightwhitearrow`
|
299
|
+
* `NotGreaterTilde`
|
300
|
+
* `vartriangleleft`
|
301
|
+
* `trianglerighteq`
|
302
|
+
* `rightthreetimes`
|
303
|
+
* `NotLeftTriangle`
|
304
|
+
* `ntrianglelefteq`
|
305
|
+
* `APLnotbackslash`
|
306
|
+
* `APLleftarrowbox`
|
307
|
+
* `APLdownarrowbox`
|
308
|
+
* `blockhalfshaded`
|
309
|
+
* `squarecrossfill`
|
310
|
+
* `hrectangleblack`
|
311
|
+
* `vrectangleblack`
|
312
|
+
* `blacktriangleup`
|
313
|
+
* `smalltriangleup`
|
314
|
+
* `bigtriangledown`
|
315
|
+
* `lrblacktriangle`
|
316
|
+
* `llblacktriangle`
|
317
|
+
* `ulblacktriangle`
|
318
|
+
* `urblacktriangle`
|
319
|
+
* `squareleftblack`
|
320
|
+
* `circledrightdot`
|
321
|
+
* `downarrowbarred`
|
322
|
+
* `cwrightarcarrow`
|
323
|
+
* `acwleftarcarrow`
|
324
|
+
* `acwoverarcarrow`
|
325
|
+
* `LeftUpVectorBar`
|
326
|
+
* `LeftUpTeeVector`
|
327
|
+
* `rightbarharpoon`
|
328
|
+
* `barrightharpoon`
|
329
|
+
* `equalrightarrow`
|
330
|
+
* `leftarrowsubset`
|
331
|
+
* `measanglerutone`
|
332
|
+
* `measanglelutonw`
|
333
|
+
* `measanglerdtose`
|
334
|
+
* `measangleldtosw`
|
335
|
+
* `measangleurtone`
|
336
|
+
* `measangleultonw`
|
337
|
+
* `measangledrtose`
|
338
|
+
* `measangledltosw`
|
339
|
+
* `circledparallel`
|
340
|
+
* `uparrowoncircle`
|
341
|
+
* `LeftTriangleBar`
|
342
|
+
* `circledownarrow`
|
343
|
+
* `bigtriangleleft`
|
344
|
+
* `diamondtopblack`
|
345
|
+
* `diamondbotblack`
|
346
|
+
* `varhexagonblack`
|
347
|
+
* `leftthreearrows`
|
348
|
+
* `twoheadmapsfrom`
|
349
|
+
* `nvleftarrowtail`
|
350
|
+
* `nVleftarrowtail`
|
351
|
+
* `leftcurvedarrow`
|
352
|
+
* `leftarrowapprox`
|
353
|
+
* `enclosediamond`
|
354
|
+
* `underleftarrow`
|
355
|
+
* `leftrightarrow`
|
356
|
+
* `rightwavearrow`
|
357
|
+
* `twoheaduparrow`
|
358
|
+
* `rightarrowtail`
|
359
|
+
* `updownarrowbar`
|
360
|
+
* `hookrightarrow`
|
361
|
+
* `looparrowright`
|
362
|
+
* `carriagereturn`
|
363
|
+
* `curvearrowleft`
|
364
|
+
* `upharpoonright`
|
365
|
+
* `rightharpoonup`
|
366
|
+
* `rightleftarrow`
|
367
|
+
* `leftleftarrows`
|
368
|
+
* `downdownarrows`
|
369
|
+
* `revequilibrium`
|
370
|
+
* `Leftrightarrow`
|
371
|
+
* `leftsquigarrow`
|
372
|
+
* `dashrightarrow`
|
373
|
+
* `rightdasharrow`
|
374
|
+
* `leftwhitearrow`
|
375
|
+
* `downwhitearrow`
|
376
|
+
* `sphericalangle`
|
377
|
+
* `NotGreaterLess`
|
378
|
+
* `trianglelefteq`
|
379
|
+
* `leftthreetimes`
|
380
|
+
* `ntriangleright`
|
381
|
+
* `APLboxquestion`
|
382
|
+
* `lparenextender`
|
383
|
+
* `rparenextender`
|
384
|
+
* `lbrackextender`
|
385
|
+
* `rbrackextender`
|
386
|
+
* `vbraceextender`
|
387
|
+
* `harrowextender`
|
388
|
+
* `blockrighthalf`
|
389
|
+
* `blockqtrshaded`
|
390
|
+
* `squarenwsefill`
|
391
|
+
* `squareneswfill`
|
392
|
+
* `mdlgblkdiamond`
|
393
|
+
* `mdlgwhtdiamond`
|
394
|
+
* `mdlgwhtlozenge`
|
395
|
+
* `circlevertfill`
|
396
|
+
* `vardiamondsuit`
|
397
|
+
* `circledtwodots`
|
398
|
+
* `rightouterjoin`
|
399
|
+
* `concavediamond`
|
400
|
+
* `longrightarrow`
|
401
|
+
* `Longrightarrow`
|
402
|
+
* `longmappedfrom`
|
403
|
+
* `Longmappedfrom`
|
404
|
+
* `fdiagovnearrow`
|
405
|
+
* `rdiagovsearrow`
|
406
|
+
* `acwcirclearrow`
|
407
|
+
* `rightarrowplus`
|
408
|
+
* `RightVectorBar`
|
409
|
+
* `RightTeeVector`
|
410
|
+
* `leftbarharpoon`
|
411
|
+
* `barleftharpoon`
|
412
|
+
* `updownharpoons`
|
413
|
+
* `downupharpoons`
|
414
|
+
* `rightanglemdot`
|
415
|
+
* `triangleserifs`
|
416
|
+
* `blackhourglass`
|
417
|
+
* `mdlgblklozenge`
|
418
|
+
* `bigslopedwedge`
|
419
|
+
* `doublebarwedge`
|
420
|
+
* `wedgedoublebar`
|
421
|
+
* `NestedLessLess`
|
422
|
+
* `squaretopblack`
|
423
|
+
* `squarebotblack`
|
424
|
+
* `equalleftarrow`
|
425
|
+
* `ocommatopright`
|
426
|
+
* `overleftarrow`
|
427
|
+
* `enclosecircle`
|
428
|
+
* `enclosesquare`
|
429
|
+
* `threeunderdot`
|
430
|
+
* `sansLmirrored`
|
431
|
+
* `DifferentialD`
|
432
|
+
* `leftwavearrow`
|
433
|
+
* `leftarrowtail`
|
434
|
+
* `hookleftarrow`
|
435
|
+
* `looparrowleft`
|
436
|
+
* `leftharpoonup`
|
437
|
+
* `upharpoonleft`
|
438
|
+
* `dashleftarrow`
|
439
|
+
* `leftdasharrow`
|
440
|
+
* `downdasharrow`
|
441
|
+
* `RightArrowBar`
|
442
|
+
* `rightarrowbar`
|
443
|
+
* `smallsetminus`
|
444
|
+
* `vysmwhtcircle`
|
445
|
+
* `vysmblkcircle`
|
446
|
+
* `measuredangle`
|
447
|
+
* `wasytherefore`
|
448
|
+
* `dotsminusdots`
|
449
|
+
* `fallingdotseq`
|
450
|
+
* `PrecedesTilde`
|
451
|
+
* `SucceedsTilde`
|
452
|
+
* `varlrtriangle`
|
453
|
+
* `divideontimes`
|
454
|
+
* `equalparallel`
|
455
|
+
* `ntriangleleft`
|
456
|
+
* `APLuparrowbox`
|
457
|
+
* `APLboxupcaret`
|
458
|
+
* `bdtriplevdash`
|
459
|
+
* `blocklefthalf`
|
460
|
+
* `mdlgblksquare`
|
461
|
+
* `mdlgwhtsquare`
|
462
|
+
* `parallelogram`
|
463
|
+
* `bigtriangleup`
|
464
|
+
* `blacktriangle`
|
465
|
+
* `triangleright`
|
466
|
+
* `mdlgwhtcircle`
|
467
|
+
* `mdlgblkcircle`
|
468
|
+
* `inversebullet`
|
469
|
+
* `topsemicircle`
|
470
|
+
* `botsemicircle`
|
471
|
+
* `squareulblack`
|
472
|
+
* `squarelrblack`
|
473
|
+
* `mdsmwhtsquare`
|
474
|
+
* `mdsmblksquare`
|
475
|
+
* `sixteenthnote`
|
476
|
+
* `Hermaphrodite`
|
477
|
+
* `mdsmwhtcircle`
|
478
|
+
* `draftingarrow`
|
479
|
+
* `leftouterjoin`
|
480
|
+
* `fullouterjoin`
|
481
|
+
* `longleftarrow`
|
482
|
+
* `Longleftarrow`
|
483
|
+
* `twoheadmapsto`
|
484
|
+
* `uparrowbarred`
|
485
|
+
* `rightdotarrow`
|
486
|
+
* `cwcirclearrow`
|
487
|
+
* `leftarrowplus`
|
488
|
+
* `LeftVectorBar`
|
489
|
+
* `LeftTeeVector`
|
490
|
+
* `upequilibrium`
|
491
|
+
* `leftarrowless`
|
492
|
+
* `rightfishtail`
|
493
|
+
* `mdsmblkcircle`
|
494
|
+
* `llparenthesis`
|
495
|
+
* `rrparenthesis`
|
496
|
+
* `rightanglesqr`
|
497
|
+
* `wideangledown`
|
498
|
+
* `emptysetocirc`
|
499
|
+
* `emptysetoarrl`
|
500
|
+
* `circledbslash`
|
501
|
+
* `circledbullet`
|
502
|
+
* `errbardiamond`
|
503
|
+
* `triangleminus`
|
504
|
+
* `triangletimes`
|
505
|
+
* `shortlefttack`
|
506
|
+
* `shortdowntack`
|
507
|
+
* `threedotcolon`
|
508
|
+
* `biginterleave`
|
509
|
+
* `bigtalloblong`
|
510
|
+
* `squareurblack`
|
511
|
+
* `squarellblack`
|
512
|
+
* `vysmblksquare`
|
513
|
+
* `vysmwhtsquare`
|
514
|
+
* `pentagonblack`
|
515
|
+
* `rightarrowgtr`
|
516
|
+
* `rightpentagon`
|
517
|
+
* `upbackepsilon`
|
518
|
+
* `hyphenbullet`
|
519
|
+
* `PropertyLine`
|
520
|
+
* `updownarrows`
|
521
|
+
* `LeftArrowBar`
|
522
|
+
* `barleftarrow`
|
523
|
+
* `upwhitearrow`
|
524
|
+
* `downuparrows`
|
525
|
+
* `nvrightarrow`
|
526
|
+
* `nVrightarrow`
|
527
|
+
* `intclockwise`
|
528
|
+
* `cntclockoint`
|
529
|
+
* `risingdotseq`
|
530
|
+
* `NotLessTilde`
|
531
|
+
* `varsubsetneq`
|
532
|
+
* `cupleftarrow`
|
533
|
+
* `circledequal`
|
534
|
+
* `hermitmatrix`
|
535
|
+
* `smwhtdiamond`
|
536
|
+
* `npreccurlyeq`
|
537
|
+
* `nsucccurlyeq`
|
538
|
+
* `unicodecdots`
|
539
|
+
* `notbackslash`
|
540
|
+
* `underbracket`
|
541
|
+
* `blocklowhalf`
|
542
|
+
* `squarehvfill`
|
543
|
+
* `triangledown`
|
544
|
+
* `triangleleft`
|
545
|
+
* `Diamondblack`
|
546
|
+
* `dottedcircle`
|
547
|
+
* `trianglecdot`
|
548
|
+
* `squareulquad`
|
549
|
+
* `squarellquad`
|
550
|
+
* `squarelrquad`
|
551
|
+
* `squareurquad`
|
552
|
+
* `circleulquad`
|
553
|
+
* `circlellquad`
|
554
|
+
* `circlelrquad`
|
555
|
+
* `circleurquad`
|
556
|
+
* `bigwhitestar`
|
557
|
+
* `invsmileface`
|
558
|
+
* `varspadesuit`
|
559
|
+
* `varheartsuit`
|
560
|
+
* `dingasterisk`
|
561
|
+
* `longdivision`
|
562
|
+
* `lozengeminus`
|
563
|
+
* `longmapsfrom`
|
564
|
+
* `Longmapsfrom`
|
565
|
+
* `nvRightarrow`
|
566
|
+
* `rightbkarrow`
|
567
|
+
* `leftdbkarrow`
|
568
|
+
* `DownArrowBar`
|
569
|
+
* `downarrowbar`
|
570
|
+
* `rightdbltail`
|
571
|
+
* `rdiagovfdiag`
|
572
|
+
* `fdiagovrdiag`
|
573
|
+
* `upupharpoons`
|
574
|
+
* `leftfishtail`
|
575
|
+
* `downfishtail`
|
576
|
+
* `lbrackultick`
|
577
|
+
* `rbracklrtick`
|
578
|
+
* `lbracklltick`
|
579
|
+
* `rbrackurtick`
|
580
|
+
* `revangleubar`
|
581
|
+
* `emptysetobar`
|
582
|
+
* `emptysetoarr`
|
583
|
+
* `odotslashdot`
|
584
|
+
* `ogreaterthan`
|
585
|
+
* `triangleodot`
|
586
|
+
* `triangleubar`
|
587
|
+
* `multimapboth`
|
588
|
+
* `lrtriangleeq`
|
589
|
+
* `blacklozenge`
|
590
|
+
* `errbarsquare`
|
591
|
+
* `errbarcircle`
|
592
|
+
* `triangleplus`
|
593
|
+
* `closedvarcup`
|
594
|
+
* `closedvarcap`
|
595
|
+
* `wedgeonwedge`
|
596
|
+
* `bigslopedvee`
|
597
|
+
* `wedgemidvert`
|
598
|
+
* `doublebarvee`
|
599
|
+
* `veedoublebar`
|
600
|
+
* `eqqslantless`
|
601
|
+
* `subsetapprox`
|
602
|
+
* `supsetapprox`
|
603
|
+
* `dottedsquare`
|
604
|
+
* `hexagonblack`
|
605
|
+
* `mdblkdiamond`
|
606
|
+
* `mdwhtdiamond`
|
607
|
+
* `mdblklozenge`
|
608
|
+
* `mdwhtlozenge`
|
609
|
+
* `smblkdiamond`
|
610
|
+
* `smblklozenge`
|
611
|
+
* `smwhtlozenge`
|
612
|
+
* `leftdotarrow`
|
613
|
+
* `medwhitestar`
|
614
|
+
* `medblackstar`
|
615
|
+
* `oturnedcomma`
|
616
|
+
* `upvarepsilon`
|
617
|
+
* `mathsterling`
|
618
|
+
* `smblkcircle`
|
619
|
+
* `backtrprime`
|
620
|
+
* `caretinsert`
|
621
|
+
* `vertoverlay`
|
622
|
+
* `asteraccent`
|
623
|
+
* `Planckconst`
|
624
|
+
* `sansLturned`
|
625
|
+
* `ExponetialE`
|
626
|
+
* `updownarrow`
|
627
|
+
* `nrightarrow`
|
628
|
+
* `restriction`
|
629
|
+
* `equilibrium`
|
630
|
+
* `nRightarrow`
|
631
|
+
* `Updownarrow`
|
632
|
+
* `Rrightarrow`
|
633
|
+
* `nHdownarrow`
|
634
|
+
* `updasharrow`
|
635
|
+
* `nvleftarrow`
|
636
|
+
* `nVleftarrow`
|
637
|
+
* `approxident`
|
638
|
+
* `corresponds`
|
639
|
+
* `GreaterLess`
|
640
|
+
* `preccurlyeq`
|
641
|
+
* `succcurlyeq`
|
642
|
+
* `circledcirc`
|
643
|
+
* `circleddash`
|
644
|
+
* `curlyeqprec`
|
645
|
+
* `curlyeqsucc`
|
646
|
+
* `nsqsubseteq`
|
647
|
+
* `nsqsupseteq`
|
648
|
+
* `sqsubsetneq`
|
649
|
+
* `sqsupsetneq`
|
650
|
+
* `varisinobar`
|
651
|
+
* `varbarwedge`
|
652
|
+
* `wasylozenge`
|
653
|
+
* `APLnotslash`
|
654
|
+
* `invdiameter`
|
655
|
+
* `intextender`
|
656
|
+
* `overbracket`
|
657
|
+
* `blockuphalf`
|
658
|
+
* `squarehfill`
|
659
|
+
* `squarevfill`
|
660
|
+
* `smblksquare`
|
661
|
+
* `smwhtsquare`
|
662
|
+
* `vartriangle`
|
663
|
+
* `RIGHTcircle`
|
664
|
+
* `RIGHTCIRCLE`
|
665
|
+
* `smwhtcircle`
|
666
|
+
* `lgwhtcircle`
|
667
|
+
* `mdwhtsquare`
|
668
|
+
* `blacksquare`
|
669
|
+
* `mdblksquare`
|
670
|
+
* `blacksmiley`
|
671
|
+
* `sagittarius`
|
672
|
+
* `capricornus`
|
673
|
+
* `diamondsuit`
|
674
|
+
* `varclubsuit`
|
675
|
+
* `quarternote`
|
676
|
+
* `mdwhtcircle`
|
677
|
+
* `mdblkcircle`
|
678
|
+
* `ballotcheck`
|
679
|
+
* `circledstar`
|
680
|
+
* `arrowbullet`
|
681
|
+
* `threedangle`
|
682
|
+
* `diamondcdot`
|
683
|
+
* `multimapinv`
|
684
|
+
* `nvLeftarrow`
|
685
|
+
* `leftbkarrow`
|
686
|
+
* `leftdbltail`
|
687
|
+
* `seovnearrow`
|
688
|
+
* `neovsearrow`
|
689
|
+
* `neovnwarrow`
|
690
|
+
* `nwovnearrow`
|
691
|
+
* `rightarrowx`
|
692
|
+
* `wideangleup`
|
693
|
+
* `revemptyset`
|
694
|
+
* `circledvert`
|
695
|
+
* `circledless`
|
696
|
+
* `gleichstark`
|
697
|
+
* `ruledelayed`
|
698
|
+
* `lcurvyangle`
|
699
|
+
* `rcurvyangle`
|
700
|
+
* `otimeslhrim`
|
701
|
+
* `otimesrhrim`
|
702
|
+
* `midbarwedge`
|
703
|
+
* `simminussim`
|
704
|
+
* `eqslantless`
|
705
|
+
* `eqqslantgtr`
|
706
|
+
* `precnapprox`
|
707
|
+
* `succnapprox`
|
708
|
+
* `shortuptack`
|
709
|
+
* `lgblksquare`
|
710
|
+
* `lgwhtsquare`
|
711
|
+
* `lgblkcircle`
|
712
|
+
* `blkhorzoval`
|
713
|
+
* `whthorzoval`
|
714
|
+
* `blkvertoval`
|
715
|
+
* `whtvertoval`
|
716
|
+
* `RRightarrow`
|
717
|
+
* `smwhitestar`
|
718
|
+
* `backepsilon`
|
719
|
+
* `varepsilon`
|
720
|
+
* `wideutilde`
|
721
|
+
* `upvartheta`
|
722
|
+
* `upoldKoppa`
|
723
|
+
* `upoldkoppa`
|
724
|
+
* `upvarkappa`
|
725
|
+
* `upvarTheta`
|
726
|
+
* `upvarsigma`
|
727
|
+
* `octothorpe`
|
728
|
+
* `mathdollar`
|
729
|
+
* `twolowline`
|
730
|
+
* `backdprime`
|
731
|
+
* `Eulerconst`
|
732
|
+
* `turnediota`
|
733
|
+
* `rightarrow`
|
734
|
+
* `nleftarrow`
|
735
|
+
* `mappedfrom`
|
736
|
+
* `upuparrows`
|
737
|
+
* `nLeftarrow`
|
738
|
+
* `Rightarrow`
|
739
|
+
* `Lleftarrow`
|
740
|
+
* `complement`
|
741
|
+
* `varnothing`
|
742
|
+
* `fourthroot`
|
743
|
+
* `rightangle`
|
744
|
+
* `Proportion`
|
745
|
+
* `sqsubseteq`
|
746
|
+
* `sqsupseteq`
|
747
|
+
* `circledast`
|
748
|
+
* `curlywedge`
|
749
|
+
* `conictaper`
|
750
|
+
* `APLcomment`
|
751
|
+
* `lparenuend`
|
752
|
+
* `lparenlend`
|
753
|
+
* `rparenuend`
|
754
|
+
* `rparenlend`
|
755
|
+
* `lbrackuend`
|
756
|
+
* `lbracklend`
|
757
|
+
* `rbrackuend`
|
758
|
+
* `rbracklend`
|
759
|
+
* `lbraceuend`
|
760
|
+
* `lbracelend`
|
761
|
+
* `rbraceuend`
|
762
|
+
* `rbracelend`
|
763
|
+
* `lmoustache`
|
764
|
+
* `rmoustache`
|
765
|
+
* `sqrtbottom`
|
766
|
+
* `underparen`
|
767
|
+
* `underbrace`
|
768
|
+
* `hrectangle`
|
769
|
+
* `vrectangle`
|
770
|
+
* `LEFTcircle`
|
771
|
+
* `LEFTCIRCLE`
|
772
|
+
* `ultriangle`
|
773
|
+
* `urtriangle`
|
774
|
+
* `lltriangle`
|
775
|
+
* `lrtriangle`
|
776
|
+
* `CheckedBox`
|
777
|
+
* `pointright`
|
778
|
+
* `vardiamond`
|
779
|
+
* `eighthnote`
|
780
|
+
* `subsetcirc`
|
781
|
+
* `supsetcirc`
|
782
|
+
* `Diamonddot`
|
783
|
+
* `DDownarrow`
|
784
|
+
* `longmapsto`
|
785
|
+
* `Longmapsto`
|
786
|
+
* `Mappedfrom`
|
787
|
+
* `Ddownarrow`
|
788
|
+
* `UpArrowBar`
|
789
|
+
* `baruparrow`
|
790
|
+
* `rightimply`
|
791
|
+
* `upfishtail`
|
792
|
+
* `lbrackubar`
|
793
|
+
* `rbrackubar`
|
794
|
+
* `lparenless`
|
795
|
+
* `Rparenless`
|
796
|
+
* `lblkbrbrak`
|
797
|
+
* `rblkbrbrak`
|
798
|
+
* `circlehbar`
|
799
|
+
* `circledgtr`
|
800
|
+
* `doubleplus`
|
801
|
+
* `tripleplus`
|
802
|
+
* `plussubtwo`
|
803
|
+
* `commaminus`
|
804
|
+
* `minusfdots`
|
805
|
+
* `minusrdots`
|
806
|
+
* `opluslhrim`
|
807
|
+
* `oplusrhrim`
|
808
|
+
* `smashtimes`
|
809
|
+
* `cupovercap`
|
810
|
+
* `capovercup`
|
811
|
+
* `veeonwedge`
|
812
|
+
* `veemidvert`
|
813
|
+
* `equivVvert`
|
814
|
+
* `lessapprox`
|
815
|
+
* `lesseqqgtr`
|
816
|
+
* `gtreqqless`
|
817
|
+
* `eqslantgtr`
|
818
|
+
* `rightslice`
|
819
|
+
* `precapprox`
|
820
|
+
* `succapprox`
|
821
|
+
* `subsetplus`
|
822
|
+
* `supsetplus`
|
823
|
+
* `subsetneqq`
|
824
|
+
* `supsetneqq`
|
825
|
+
* `interleave`
|
826
|
+
* `talloblong`
|
827
|
+
* `varhexagon`
|
828
|
+
* `leftarrowx`
|
829
|
+
* `LLeftarrow`
|
830
|
+
* `postalmark`
|
831
|
+
* `underline`
|
832
|
+
* `upEpsilon`
|
833
|
+
* `upOmicron`
|
834
|
+
* `upUpsilon`
|
835
|
+
* `upepsilon`
|
836
|
+
* `upomicron`
|
837
|
+
* `upupsilon`
|
838
|
+
* `upvarbeta`
|
839
|
+
* `upDigamma`
|
840
|
+
* `updigamma`
|
841
|
+
* `ampersand`
|
842
|
+
* `mathslash`
|
843
|
+
* `mathcolon`
|
844
|
+
* `semicolon`
|
845
|
+
* `backslash`
|
846
|
+
* `backprime`
|
847
|
+
* `tieconcat`
|
848
|
+
* `fracslash`
|
849
|
+
* `Angstroem`
|
850
|
+
* `leftarrow`
|
851
|
+
* `downarrow`
|
852
|
+
* `lightning`
|
853
|
+
* `rightturn`
|
854
|
+
* `Leftarrow`
|
855
|
+
* `Downarrow`
|
856
|
+
* `nHuparrow`
|
857
|
+
* `dasharrow`
|
858
|
+
* `partialup`
|
859
|
+
* `increment`
|
860
|
+
* `nparallel`
|
861
|
+
* `clockoint`
|
862
|
+
* `therefore`
|
863
|
+
* `mathratio`
|
864
|
+
* `dashcolon`
|
865
|
+
* `triangleq`
|
866
|
+
* `nleqslant`
|
867
|
+
* `ngeqslant`
|
868
|
+
* `nsubseteq`
|
869
|
+
* `nsupseteq`
|
870
|
+
* `subsetneq`
|
871
|
+
* `supsetneq`
|
872
|
+
* `backsimeq`
|
873
|
+
* `pitchfork`
|
874
|
+
* `lesseqgtr`
|
875
|
+
* `gtreqless`
|
876
|
+
* `varniobar`
|
877
|
+
* `bagmember`
|
878
|
+
* `sqlozenge`
|
879
|
+
* `turnednot`
|
880
|
+
* `intbottom`
|
881
|
+
* `lbracemid`
|
882
|
+
* `rbracemid`
|
883
|
+
* `sumbottom`
|
884
|
+
* `lvboxline`
|
885
|
+
* `rvboxline`
|
886
|
+
* `overparen`
|
887
|
+
* `wideparen`
|
888
|
+
* `overbrace`
|
889
|
+
* `trapezium`
|
890
|
+
* `accurrent`
|
891
|
+
* `blockfull`
|
892
|
+
* `radiation`
|
893
|
+
* `biohazard`
|
894
|
+
* `smileface`
|
895
|
+
* `rightmoon`
|
896
|
+
* `spadesuit`
|
897
|
+
* `heartsuit`
|
898
|
+
* `medbullet`
|
899
|
+
* `checkmark`
|
900
|
+
* `DashVDash`
|
901
|
+
* `dashVdash`
|
902
|
+
* `vlongdash`
|
903
|
+
* `longdashv`
|
904
|
+
* `llbracket`
|
905
|
+
* `rrbracket`
|
906
|
+
* `impliedby`
|
907
|
+
* `righttail`
|
908
|
+
* `nwsearrow`
|
909
|
+
* `neswarrow`
|
910
|
+
* `hknwarrow`
|
911
|
+
* `hknearrow`
|
912
|
+
* `typecolon`
|
913
|
+
* `langledot`
|
914
|
+
* `rangledot`
|
915
|
+
* `rparengtr`
|
916
|
+
* `Lparengtr`
|
917
|
+
* `fourvdots`
|
918
|
+
* `turnangle`
|
919
|
+
* `angleubar`
|
920
|
+
* `olessthan`
|
921
|
+
* `boxbslash`
|
922
|
+
* `boxcircle`
|
923
|
+
* `triangles`
|
924
|
+
* `hourglass`
|
925
|
+
* `bigotimes`
|
926
|
+
* `bigcupdot`
|
927
|
+
* `conjquant`
|
928
|
+
* `disjquant`
|
929
|
+
* `modtwosum`
|
930
|
+
* `otimeshat`
|
931
|
+
* `cupbarcap`
|
932
|
+
* `capbarcup`
|
933
|
+
* `wedgeodot`
|
934
|
+
* `midbarvee`
|
935
|
+
* `varveebar`
|
936
|
+
* `equivVert`
|
937
|
+
* `hatapprox`
|
938
|
+
* `approxeqq`
|
939
|
+
* `gtrapprox`
|
940
|
+
* `leftslice`
|
941
|
+
* `subsetdot`
|
942
|
+
* `supsetdot`
|
943
|
+
* `subseteqq`
|
944
|
+
* `supseteqq`
|
945
|
+
* `leqqslant`
|
946
|
+
* `geqqslant`
|
947
|
+
* `horizbar`
|
948
|
+
* `Question`
|
949
|
+
* `medspace`
|
950
|
+
* `Angstrom`
|
951
|
+
* `ComplexI`
|
952
|
+
* `ComplexJ`
|
953
|
+
* `mapsfrom`
|
954
|
+
* `MapsDown`
|
955
|
+
* `mapsdown`
|
956
|
+
* `linefeed`
|
957
|
+
* `leftturn`
|
958
|
+
* `divslash`
|
959
|
+
* `cuberoot`
|
960
|
+
* `parallel`
|
961
|
+
* `dotminus`
|
962
|
+
* `invlazys`
|
963
|
+
* `sinewave`
|
964
|
+
* `approxeq`
|
965
|
+
* `backcong`
|
966
|
+
* `dotequal`
|
967
|
+
* `doteqdot`
|
968
|
+
* `coloneqq`
|
969
|
+
* `eqqcolon`
|
970
|
+
* `notasymp`
|
971
|
+
* `nlesssim`
|
972
|
+
* `nlessgtr`
|
973
|
+
* `ngtrless`
|
974
|
+
* `subseteq`
|
975
|
+
* `supseteq`
|
976
|
+
* `sqsubset`
|
977
|
+
* `sqsupset`
|
978
|
+
* `boxminus`
|
979
|
+
* `boxtimes`
|
980
|
+
* `multimap`
|
981
|
+
* `intercal`
|
982
|
+
* `barwedge`
|
983
|
+
* `bigwedge`
|
984
|
+
* `curlyvee`
|
985
|
+
* `precnsim`
|
986
|
+
* `succnsim`
|
987
|
+
* `varisins`
|
988
|
+
* `isinobar`
|
989
|
+
* `diameter`
|
990
|
+
* `profline`
|
991
|
+
* `profsurf`
|
992
|
+
* `viewdata`
|
993
|
+
* `ulcorner`
|
994
|
+
* `urcorner`
|
995
|
+
* `llcorner`
|
996
|
+
* `lrcorner`
|
997
|
+
* `notslash`
|
998
|
+
* `APLinput`
|
999
|
+
* `bbrktbrk`
|
1000
|
+
* `elinters`
|
1001
|
+
* `triangle`
|
1002
|
+
* `bullseye`
|
1003
|
+
* `astrosun`
|
1004
|
+
* `steaming`
|
1005
|
+
* `leftmoon`
|
1006
|
+
* `varEarth`
|
1007
|
+
* `aquarius`
|
1008
|
+
* `clubsuit`
|
1009
|
+
* `varspade`
|
1010
|
+
* `varheart`
|
1011
|
+
* `twonotes`
|
1012
|
+
* `acidfree`
|
1013
|
+
* `bsolhsub`
|
1014
|
+
* `wedgedot`
|
1015
|
+
* `pullback`
|
1016
|
+
* `UUparrow`
|
1017
|
+
* `Mapsfrom`
|
1018
|
+
* `Uuparrow`
|
1019
|
+
* `drbkarow`
|
1020
|
+
* `lefttail`
|
1021
|
+
* `hksearow`
|
1022
|
+
* `hkswarow`
|
1023
|
+
* `strictfi`
|
1024
|
+
* `strictif`
|
1025
|
+
* `revangle`
|
1026
|
+
* `boxslash`
|
1027
|
+
* `boxonbox`
|
1028
|
+
* `rtriltri`
|
1029
|
+
* `lfbowtie`
|
1030
|
+
* `rfbowtie`
|
1031
|
+
* `lvzigzag`
|
1032
|
+
* `rvzigzag`
|
1033
|
+
* `Lvzigzag`
|
1034
|
+
* `Rvzigzag`
|
1035
|
+
* `tieinfty`
|
1036
|
+
* `smeparsl`
|
1037
|
+
* `eqvparsl`
|
1038
|
+
* `setminus`
|
1039
|
+
* `bigoplus`
|
1040
|
+
* `biguplus`
|
1041
|
+
* `bigsqcap`
|
1042
|
+
* `bigsqcup`
|
1043
|
+
* `bigtimes`
|
1044
|
+
* `cirfnint`
|
1045
|
+
* `rppolint`
|
1046
|
+
* `scpolint`
|
1047
|
+
* `pointint`
|
1048
|
+
* `intlarhk`
|
1049
|
+
* `zproject`
|
1050
|
+
* `ringplus`
|
1051
|
+
* `plustrif`
|
1052
|
+
* `minusdot`
|
1053
|
+
* `vectimes`
|
1054
|
+
* `dottimes`
|
1055
|
+
* `timesbar`
|
1056
|
+
* `intprodr`
|
1057
|
+
* `capwedge`
|
1058
|
+
* `veeonvee`
|
1059
|
+
* `wedgebar`
|
1060
|
+
* `dotequiv`
|
1061
|
+
* `simrdots`
|
1062
|
+
* `Coloneqq`
|
1063
|
+
* `leqslant`
|
1064
|
+
* `geqslant`
|
1065
|
+
* `lesdotor`
|
1066
|
+
* `gesdotol`
|
1067
|
+
* `lnapprox`
|
1068
|
+
* `gnapprox`
|
1069
|
+
* `precneqq`
|
1070
|
+
* `succneqq`
|
1071
|
+
* `forksnot`
|
1072
|
+
* `varVdash`
|
1073
|
+
* `pentagon`
|
1074
|
+
* `mathring`
|
1075
|
+
* `underbar`
|
1076
|
+
* `upLambda`
|
1077
|
+
* `uplambda`
|
1078
|
+
* `varsigma`
|
1079
|
+
* `upvarphi`
|
1080
|
+
* `vartheta`
|
1081
|
+
* `upStigma`
|
1082
|
+
* `upstigma`
|
1083
|
+
* `varkappa`
|
1084
|
+
* `upvarrho`
|
1085
|
+
* `question`
|
1086
|
+
* `mathcent`
|
1087
|
+
* `sterling`
|
1088
|
+
* `circledR`
|
1089
|
+
* `ddagger`
|
1090
|
+
* `trprime`
|
1091
|
+
* `closure`
|
1092
|
+
* `annuity`
|
1093
|
+
* `uparrow`
|
1094
|
+
* `nwarrow`
|
1095
|
+
* `nearrow`
|
1096
|
+
* `searrow`
|
1097
|
+
* `swarrow`
|
1098
|
+
* `Uparrow`
|
1099
|
+
* `Nwarrow`
|
1100
|
+
* `Nearrow`
|
1101
|
+
* `Searrow`
|
1102
|
+
* `Swarrow`
|
1103
|
+
* `partial`
|
1104
|
+
* `nexists`
|
1105
|
+
* `smallin`
|
1106
|
+
* `smallni`
|
1107
|
+
* `dotplus`
|
1108
|
+
* `dbloint`
|
1109
|
+
* `because`
|
1110
|
+
* `eqcolon`
|
1111
|
+
* `backsim`
|
1112
|
+
* `simneqq`
|
1113
|
+
* `napprox`
|
1114
|
+
* `coloneq`
|
1115
|
+
* `varsdef`
|
1116
|
+
* `questeq`
|
1117
|
+
* `between`
|
1118
|
+
* `lesssim`
|
1119
|
+
* `ngtrsim`
|
1120
|
+
* `lessgtr`
|
1121
|
+
* `gtrless`
|
1122
|
+
* `precsim`
|
1123
|
+
* `succsim`
|
1124
|
+
* `nsubset`
|
1125
|
+
* `nsupset`
|
1126
|
+
* `boxplus`
|
1127
|
+
* `imageof`
|
1128
|
+
* `diamond`
|
1129
|
+
* `lrtimes`
|
1130
|
+
* `lessdot`
|
1131
|
+
* `npreceq`
|
1132
|
+
* `nsucceq`
|
1133
|
+
* `isindot`
|
1134
|
+
* `hexagon`
|
1135
|
+
* `obrbrak`
|
1136
|
+
* `ubrbrak`
|
1137
|
+
* `benzenr`
|
1138
|
+
* `squoval`
|
1139
|
+
* `Diamond`
|
1140
|
+
* `fisheye`
|
1141
|
+
* `lozenge`
|
1142
|
+
* `bigstar`
|
1143
|
+
* `yinyang`
|
1144
|
+
* `frownie`
|
1145
|
+
* `sadface`
|
1146
|
+
* `mercury`
|
1147
|
+
* `Mercury`
|
1148
|
+
* `jupiter`
|
1149
|
+
* `Jupiter`
|
1150
|
+
* `neptune`
|
1151
|
+
* `Neptune`
|
1152
|
+
* `scorpio`
|
1153
|
+
* `Scorpio`
|
1154
|
+
* `varclub`
|
1155
|
+
* `natural`
|
1156
|
+
* `recycle`
|
1157
|
+
* `diceiii`
|
1158
|
+
* `warning`
|
1159
|
+
* `medcirc`
|
1160
|
+
* `ballotx`
|
1161
|
+
* `maltese`
|
1162
|
+
* `varstar`
|
1163
|
+
* `lbrbrak`
|
1164
|
+
* `rbrbrak`
|
1165
|
+
* `suphsol`
|
1166
|
+
* `pushout`
|
1167
|
+
* `Lbrbrak`
|
1168
|
+
* `Rbrbrak`
|
1169
|
+
* `implies`
|
1170
|
+
* `dbkarow`
|
1171
|
+
* `leadsto`
|
1172
|
+
* `subrarr`
|
1173
|
+
* `suplarr`
|
1174
|
+
* `llangle`
|
1175
|
+
* `rrangle`
|
1176
|
+
* `vzigzag`
|
1177
|
+
* `obslash`
|
1178
|
+
* `olcross`
|
1179
|
+
* `cirscir`
|
1180
|
+
* `boxdiag`
|
1181
|
+
* `fbowtie`
|
1182
|
+
* `lftimes`
|
1183
|
+
* `rftimes`
|
1184
|
+
* `nvinfty`
|
1185
|
+
* `dualmap`
|
1186
|
+
* `shuffle`
|
1187
|
+
* `thermod`
|
1188
|
+
* `rsolbar`
|
1189
|
+
* `bigodot`
|
1190
|
+
* `varprod`
|
1191
|
+
* `npolint`
|
1192
|
+
* `project`
|
1193
|
+
* `plushat`
|
1194
|
+
* `simplus`
|
1195
|
+
* `plusdot`
|
1196
|
+
* `plussim`
|
1197
|
+
* `intprod`
|
1198
|
+
* `twocups`
|
1199
|
+
* `twocaps`
|
1200
|
+
* `veeodot`
|
1201
|
+
* `congdot`
|
1202
|
+
* `eqqplus`
|
1203
|
+
* `pluseqq`
|
1204
|
+
* `Coloneq`
|
1205
|
+
* `ddotseq`
|
1206
|
+
* `equivDD`
|
1207
|
+
* `ltquest`
|
1208
|
+
* `gtquest`
|
1209
|
+
* `lesdoto`
|
1210
|
+
* `gesdoto`
|
1211
|
+
* `eqqless`
|
1212
|
+
* `simless`
|
1213
|
+
* `bumpeqq`
|
1214
|
+
* `precneq`
|
1215
|
+
* `succneq`
|
1216
|
+
* `preceqq`
|
1217
|
+
* `succeqq`
|
1218
|
+
* `llcurly`
|
1219
|
+
* `ggcurly`
|
1220
|
+
* `submult`
|
1221
|
+
* `supmult`
|
1222
|
+
* `subedot`
|
1223
|
+
* `supedot`
|
1224
|
+
* `lsqhook`
|
1225
|
+
* `rsqhook`
|
1226
|
+
* `suphsub`
|
1227
|
+
* `supdsub`
|
1228
|
+
* `topfork`
|
1229
|
+
* `revnmid`
|
1230
|
+
* `nhVvert`
|
1231
|
+
* `lllnest`
|
1232
|
+
* `gggnest`
|
1233
|
+
* `trslash`
|
1234
|
+
* `hzigzag`
|
1235
|
+
* `overbar`
|
1236
|
+
* `upAlpha`
|
1237
|
+
* `upGamma`
|
1238
|
+
* `upDelta`
|
1239
|
+
* `upTheta`
|
1240
|
+
* `upKappa`
|
1241
|
+
* `upSigma`
|
1242
|
+
* `Upsilon`
|
1243
|
+
* `upOmega`
|
1244
|
+
* `upalpha`
|
1245
|
+
* `upgamma`
|
1246
|
+
* `updelta`
|
1247
|
+
* `uptheta`
|
1248
|
+
* `upkappa`
|
1249
|
+
* `upsigma`
|
1250
|
+
* `upsilon`
|
1251
|
+
* `upomega`
|
1252
|
+
* `varbeta`
|
1253
|
+
* `upvarpi`
|
1254
|
+
* `Digamma`
|
1255
|
+
* `digamma`
|
1256
|
+
* `upKoppa`
|
1257
|
+
* `upkoppa`
|
1258
|
+
* `upSampi`
|
1259
|
+
* `upsampi`
|
1260
|
+
* `epsilon`
|
1261
|
+
* `percent`
|
1262
|
+
* `greater`
|
1263
|
+
* `sptilde`
|
1264
|
+
* `matheth`
|
1265
|
+
* `dagger`
|
1266
|
+
* `bullet`
|
1267
|
+
* `second`
|
1268
|
+
* `dprime`
|
1269
|
+
* `Exclam`
|
1270
|
+
* `fourth`
|
1271
|
+
* `qprime`
|
1272
|
+
* `ddddot`
|
1273
|
+
* `hslash`
|
1274
|
+
* `daleth`
|
1275
|
+
* `invamp`
|
1276
|
+
* `MapsUp`
|
1277
|
+
* `mapsup`
|
1278
|
+
* `mapsto`
|
1279
|
+
* `forall`
|
1280
|
+
* `exists`
|
1281
|
+
* `coprod`
|
1282
|
+
* `propto`
|
1283
|
+
* `oiiint`
|
1284
|
+
* `nsimeq`
|
1285
|
+
* `approx`
|
1286
|
+
* `Bumpeq`
|
1287
|
+
* `bumpeq`
|
1288
|
+
* `eqcirc`
|
1289
|
+
* `circeq`
|
1290
|
+
* `wedgeq`
|
1291
|
+
* `stareq`
|
1292
|
+
* `measeq`
|
1293
|
+
* `nequiv`
|
1294
|
+
* `nasymp`
|
1295
|
+
* `apprle`
|
1296
|
+
* `gtrsim`
|
1297
|
+
* `apprge`
|
1298
|
+
* `subset`
|
1299
|
+
* `supset`
|
1300
|
+
* `cupdot`
|
1301
|
+
* `ominus`
|
1302
|
+
* `otimes`
|
1303
|
+
* `oslash`
|
1304
|
+
* `boxdot`
|
1305
|
+
* `assert`
|
1306
|
+
* `models`
|
1307
|
+
* `Vvdash`
|
1308
|
+
* `nvdash`
|
1309
|
+
* `nvDash`
|
1310
|
+
* `nVdash`
|
1311
|
+
* `nVDash`
|
1312
|
+
* `prurel`
|
1313
|
+
* `scurel`
|
1314
|
+
* `origof`
|
1315
|
+
* `veebar`
|
1316
|
+
* `barvee`
|
1317
|
+
* `bigvee`
|
1318
|
+
* `bigcap`
|
1319
|
+
* `bigcup`
|
1320
|
+
* `bowtie`
|
1321
|
+
* `ltimes`
|
1322
|
+
* `rtimes`
|
1323
|
+
* `Subset`
|
1324
|
+
* `Supset`
|
1325
|
+
* `gtrdot`
|
1326
|
+
* `eqless`
|
1327
|
+
* `nunlhd`
|
1328
|
+
* `nunrhd`
|
1329
|
+
* `iddots`
|
1330
|
+
* `isinvb`
|
1331
|
+
* `varnis`
|
1332
|
+
* `niobar`
|
1333
|
+
* `lfloor`
|
1334
|
+
* `rfloor`
|
1335
|
+
* `invneg`
|
1336
|
+
* `invnot`
|
1337
|
+
* `inttop`
|
1338
|
+
* `topbot`
|
1339
|
+
* `APLinv`
|
1340
|
+
* `APLlog`
|
1341
|
+
* `sumtop`
|
1342
|
+
* `Circle`
|
1343
|
+
* `CIRCLE`
|
1344
|
+
* `boxbar`
|
1345
|
+
* `square`
|
1346
|
+
* `Square`
|
1347
|
+
* `danger`
|
1348
|
+
* `smiley`
|
1349
|
+
* `female`
|
1350
|
+
* `saturn`
|
1351
|
+
* `Saturn`
|
1352
|
+
* `uranus`
|
1353
|
+
* `Uranus`
|
1354
|
+
* `taurus`
|
1355
|
+
* `Taurus`
|
1356
|
+
* `gemini`
|
1357
|
+
* `Gemini`
|
1358
|
+
* `cancer`
|
1359
|
+
* `pisces`
|
1360
|
+
* `diceii`
|
1361
|
+
* `diceiv`
|
1362
|
+
* `dicevi`
|
1363
|
+
* `anchor`
|
1364
|
+
* `swords`
|
1365
|
+
* `neuter`
|
1366
|
+
* `pencil`
|
1367
|
+
* `veedot`
|
1368
|
+
* `bigbot`
|
1369
|
+
* `bigtop`
|
1370
|
+
* `cirbot`
|
1371
|
+
* `lBrack`
|
1372
|
+
* `Lbrack`
|
1373
|
+
* `rBrack`
|
1374
|
+
* `Rbrack`
|
1375
|
+
* `langle`
|
1376
|
+
* `rangle`
|
1377
|
+
* `lAngle`
|
1378
|
+
* `rAngle`
|
1379
|
+
* `lgroup`
|
1380
|
+
* `rgroup`
|
1381
|
+
* `Mapsto`
|
1382
|
+
* `ltlarr`
|
1383
|
+
* `gtrarr`
|
1384
|
+
* `lBrace`
|
1385
|
+
* `rBrace`
|
1386
|
+
* `Lparen`
|
1387
|
+
* `lParen`
|
1388
|
+
* `Rparen`
|
1389
|
+
* `rParen`
|
1390
|
+
* `angles`
|
1391
|
+
* `angdnr`
|
1392
|
+
* `gtlpar`
|
1393
|
+
* `boxast`
|
1394
|
+
* `boxbox`
|
1395
|
+
* `ltrivb`
|
1396
|
+
* `vbrtri`
|
1397
|
+
* `iinfin`
|
1398
|
+
* `laplac`
|
1399
|
+
* `eparsl`
|
1400
|
+
* `tminus`
|
1401
|
+
* `sumint`
|
1402
|
+
* `iiiint`
|
1403
|
+
* `intbar`
|
1404
|
+
* `intBar`
|
1405
|
+
* `sqrint`
|
1406
|
+
* `intcap`
|
1407
|
+
* `intcup`
|
1408
|
+
* `lowint`
|
1409
|
+
* `btimes`
|
1410
|
+
* `Otimes`
|
1411
|
+
* `capdot`
|
1412
|
+
* `uminus`
|
1413
|
+
* `barcup`
|
1414
|
+
* `barcap`
|
1415
|
+
* `cupvee`
|
1416
|
+
* `dotsim`
|
1417
|
+
* `eqqsim`
|
1418
|
+
* `eqeqeq`
|
1419
|
+
* `lesdot`
|
1420
|
+
* `gesdot`
|
1421
|
+
* `lesges`
|
1422
|
+
* `gesles`
|
1423
|
+
* `elsdot`
|
1424
|
+
* `egsdot`
|
1425
|
+
* `eqqgtr`
|
1426
|
+
* `simgtr`
|
1427
|
+
* `preceq`
|
1428
|
+
* `succeq`
|
1429
|
+
* `subsim`
|
1430
|
+
* `supsim`
|
1431
|
+
* `subsup`
|
1432
|
+
* `supsub`
|
1433
|
+
* `subsub`
|
1434
|
+
* `supsup`
|
1435
|
+
* `vDdash`
|
1436
|
+
* `cirmid`
|
1437
|
+
* `midcir`
|
1438
|
+
* `topcir`
|
1439
|
+
* `parsim`
|
1440
|
+
* `sslash`
|
1441
|
+
* `ovhook`
|
1442
|
+
* `candra`
|
1443
|
+
* `droang`
|
1444
|
+
* `utilde`
|
1445
|
+
* `upBeta`
|
1446
|
+
* `upZeta`
|
1447
|
+
* `upIota`
|
1448
|
+
* `Lambda`
|
1449
|
+
* `upbeta`
|
1450
|
+
* `upzeta`
|
1451
|
+
* `upiota`
|
1452
|
+
* `lambda`
|
1453
|
+
* `varphi`
|
1454
|
+
* `Stigma`
|
1455
|
+
* `stigma`
|
1456
|
+
* `varrho`
|
1457
|
+
* `exclam`
|
1458
|
+
* `lparen`
|
1459
|
+
* `rparen`
|
1460
|
+
* `period`
|
1461
|
+
* `atsign`
|
1462
|
+
* `lbrack`
|
1463
|
+
* `rbrack`
|
1464
|
+
* `lbrace`
|
1465
|
+
* `rbrace`
|
1466
|
+
* `pounds`
|
1467
|
+
* `spddot`
|
1468
|
+
* `qquad`
|
1469
|
+
* `ldots`
|
1470
|
+
* `prime`
|
1471
|
+
* `third`
|
1472
|
+
* `dddot`
|
1473
|
+
* `DDDot`
|
1474
|
+
* `Euler`
|
1475
|
+
* `tcohm`
|
1476
|
+
* `aleph`
|
1477
|
+
* `gimel`
|
1478
|
+
* `upand`
|
1479
|
+
* `nabla`
|
1480
|
+
* `notin`
|
1481
|
+
* `notni`
|
1482
|
+
* `minus`
|
1483
|
+
* `slash`
|
1484
|
+
* `infty`
|
1485
|
+
* `angle`
|
1486
|
+
* `wedge`
|
1487
|
+
* `iiint`
|
1488
|
+
* `oiint`
|
1489
|
+
* `Colon`
|
1490
|
+
* `eqsim`
|
1491
|
+
* `simeq`
|
1492
|
+
* `nsime`
|
1493
|
+
* `ncong`
|
1494
|
+
* `asymp`
|
1495
|
+
* `doteq`
|
1496
|
+
* `Doteq`
|
1497
|
+
* `arceq`
|
1498
|
+
* `veeeq`
|
1499
|
+
* `eqdef`
|
1500
|
+
* `equiv`
|
1501
|
+
* `Equiv`
|
1502
|
+
* `lneqq`
|
1503
|
+
* `gneqq`
|
1504
|
+
* `nless`
|
1505
|
+
* `nprec`
|
1506
|
+
* `nsucc`
|
1507
|
+
* `uplus`
|
1508
|
+
* `sqcap`
|
1509
|
+
* `sqcup`
|
1510
|
+
* `oplus`
|
1511
|
+
* `vdash`
|
1512
|
+
* `dashv`
|
1513
|
+
* `vDash`
|
1514
|
+
* `Vdash`
|
1515
|
+
* `VDash`
|
1516
|
+
* `unlhd`
|
1517
|
+
* `unrhd`
|
1518
|
+
* `eqgtr`
|
1519
|
+
* `lnsim`
|
1520
|
+
* `gnsim`
|
1521
|
+
* `vdots`
|
1522
|
+
* `cdots`
|
1523
|
+
* `adots`
|
1524
|
+
* `ddots`
|
1525
|
+
* `disin`
|
1526
|
+
* `isins`
|
1527
|
+
* `barin`
|
1528
|
+
* `isinE`
|
1529
|
+
* `house`
|
1530
|
+
* `lceil`
|
1531
|
+
* `rceil`
|
1532
|
+
* `frown`
|
1533
|
+
* `smile`
|
1534
|
+
* `strns`
|
1535
|
+
* `fltns`
|
1536
|
+
* `ularc`
|
1537
|
+
* `urarc`
|
1538
|
+
* `lrarc`
|
1539
|
+
* `llarc`
|
1540
|
+
* `skull`
|
1541
|
+
* `Venus`
|
1542
|
+
* `earth`
|
1543
|
+
* `pluto`
|
1544
|
+
* `Pluto`
|
1545
|
+
* `aries`
|
1546
|
+
* `Aries`
|
1547
|
+
* `virgo`
|
1548
|
+
* `libra`
|
1549
|
+
* `Libra`
|
1550
|
+
* `sharp`
|
1551
|
+
* `dicei`
|
1552
|
+
* `dicev`
|
1553
|
+
* `psurj`
|
1554
|
+
* `Vvert`
|
1555
|
+
* `lblot`
|
1556
|
+
* `rblot`
|
1557
|
+
* `operp`
|
1558
|
+
* `zhide`
|
1559
|
+
* `xbsol`
|
1560
|
+
* `tplus`
|
1561
|
+
* `awint`
|
1562
|
+
* `sqint`
|
1563
|
+
* `upint`
|
1564
|
+
* `zpipe`
|
1565
|
+
* `amalg`
|
1566
|
+
* `Sqcap`
|
1567
|
+
* `Sqcup`
|
1568
|
+
* `Wedge`
|
1569
|
+
* `ndres`
|
1570
|
+
* `nrres`
|
1571
|
+
* `eqdot`
|
1572
|
+
* `asteq`
|
1573
|
+
* `Equal`
|
1574
|
+
* `ltcir`
|
1575
|
+
* `gtcir`
|
1576
|
+
* `lsime`
|
1577
|
+
* `gsime`
|
1578
|
+
* `lsimg`
|
1579
|
+
* `gsiml`
|
1580
|
+
* `simlE`
|
1581
|
+
* `simgE`
|
1582
|
+
* `lescc`
|
1583
|
+
* `gescc`
|
1584
|
+
* `csube`
|
1585
|
+
* `csupe`
|
1586
|
+
* `forkv`
|
1587
|
+
* `forks`
|
1588
|
+
* `perps`
|
1589
|
+
* `dashV`
|
1590
|
+
* `Dashv`
|
1591
|
+
* `DashV`
|
1592
|
+
* `vBarv`
|
1593
|
+
* `nhpar`
|
1594
|
+
* `hline`
|
1595
|
+
* `imath`
|
1596
|
+
* `jmath`
|
1597
|
+
* `grave`
|
1598
|
+
* `acute`
|
1599
|
+
* `breve`
|
1600
|
+
* `ocirc`
|
1601
|
+
* `check`
|
1602
|
+
* `Gamma`
|
1603
|
+
* `Delta`
|
1604
|
+
* `upEta`
|
1605
|
+
* `Theta`
|
1606
|
+
* `upRho`
|
1607
|
+
* `Sigma`
|
1608
|
+
* `upTau`
|
1609
|
+
* `upPhi`
|
1610
|
+
* `upChi`
|
1611
|
+
* `upPsi`
|
1612
|
+
* `Omega`
|
1613
|
+
* `alpha`
|
1614
|
+
* `gamma`
|
1615
|
+
* `delta`
|
1616
|
+
* `upeta`
|
1617
|
+
* `theta`
|
1618
|
+
* `kappa`
|
1619
|
+
* `uprho`
|
1620
|
+
* `sigma`
|
1621
|
+
* `uptau`
|
1622
|
+
* `upchi`
|
1623
|
+
* `uppsi`
|
1624
|
+
* `omega`
|
1625
|
+
* `upphi`
|
1626
|
+
* `varpi`
|
1627
|
+
* `Qoppa`
|
1628
|
+
* `Koppa`
|
1629
|
+
* `qoppa`
|
1630
|
+
* `koppa`
|
1631
|
+
* `Sampi`
|
1632
|
+
* `sampi`
|
1633
|
+
* `comma`
|
1634
|
+
* `colon`
|
1635
|
+
* `equal`
|
1636
|
+
* `sphat`
|
1637
|
+
* `Micro`
|
1638
|
+
* `cdotp`
|
1639
|
+
* `times`
|
1640
|
+
* `lVert`
|
1641
|
+
* `rVert`
|
1642
|
+
* `quad`
|
1643
|
+
* `Vert`
|
1644
|
+
* `euro`
|
1645
|
+
* `lvec`
|
1646
|
+
* `LVec`
|
1647
|
+
* `Finv`
|
1648
|
+
* `beth`
|
1649
|
+
* `Game`
|
1650
|
+
* `gets`
|
1651
|
+
* `tsur`
|
1652
|
+
* `tinj`
|
1653
|
+
* `dlsh`
|
1654
|
+
* `Ldsh`
|
1655
|
+
* `drsh`
|
1656
|
+
* `Rdsh`
|
1657
|
+
* `pfun`
|
1658
|
+
* `ffun`
|
1659
|
+
* `nexi`
|
1660
|
+
* `owns`
|
1661
|
+
* `circ`
|
1662
|
+
* `nmid`
|
1663
|
+
* `land`
|
1664
|
+
* `iint`
|
1665
|
+
* `oint`
|
1666
|
+
* `nsim`
|
1667
|
+
* `cong`
|
1668
|
+
* `sdef`
|
1669
|
+
* `leqq`
|
1670
|
+
* `geqq`
|
1671
|
+
* `ngtr`
|
1672
|
+
* `nleq`
|
1673
|
+
* `ngeq`
|
1674
|
+
* `prec`
|
1675
|
+
* `succ`
|
1676
|
+
* `buni`
|
1677
|
+
* `odot`
|
1678
|
+
* `dint`
|
1679
|
+
* `duni`
|
1680
|
+
* `cdot`
|
1681
|
+
* `star`
|
1682
|
+
* `hash`
|
1683
|
+
* `nisd`
|
1684
|
+
* `obar`
|
1685
|
+
* `rres`
|
1686
|
+
* `dres`
|
1687
|
+
* `XBox`
|
1688
|
+
* `male`
|
1689
|
+
* `Mars`
|
1690
|
+
* `flat`
|
1691
|
+
* `perp`
|
1692
|
+
* `Lbag`
|
1693
|
+
* `lbag`
|
1694
|
+
* `Rbag`
|
1695
|
+
* `rbag`
|
1696
|
+
* `upin`
|
1697
|
+
* `lang`
|
1698
|
+
* `rang`
|
1699
|
+
* `psur`
|
1700
|
+
* `pinj`
|
1701
|
+
* `finj`
|
1702
|
+
* `tona`
|
1703
|
+
* `toea`
|
1704
|
+
* `tosa`
|
1705
|
+
* `towa`
|
1706
|
+
* `VERT`
|
1707
|
+
* `spot`
|
1708
|
+
* `limg`
|
1709
|
+
* `rimg`
|
1710
|
+
* `obot`
|
1711
|
+
* `cirE`
|
1712
|
+
* `dsol`
|
1713
|
+
* `xsol`
|
1714
|
+
* `hide`
|
1715
|
+
* `fint`
|
1716
|
+
* `intx`
|
1717
|
+
* `Join`
|
1718
|
+
* `zcmp`
|
1719
|
+
* `semi`
|
1720
|
+
* `odiv`
|
1721
|
+
* `fcmp`
|
1722
|
+
* `comp`
|
1723
|
+
* `dsub`
|
1724
|
+
* `rsub`
|
1725
|
+
* `eqeq`
|
1726
|
+
* `Same`
|
1727
|
+
* `lneq`
|
1728
|
+
* `gneq`
|
1729
|
+
* `ltcc`
|
1730
|
+
* `gtcc`
|
1731
|
+
* `smte`
|
1732
|
+
* `late`
|
1733
|
+
* `Prec`
|
1734
|
+
* `Succ`
|
1735
|
+
* `csub`
|
1736
|
+
* `csup`
|
1737
|
+
* `mlcp`
|
1738
|
+
* `Barv`
|
1739
|
+
* `vBar`
|
1740
|
+
* `barV`
|
1741
|
+
* `Vbar`
|
1742
|
+
* `Perp`
|
1743
|
+
* `bNot`
|
1744
|
+
* `Zbar`
|
1745
|
+
* `ddot`
|
1746
|
+
* `DDot`
|
1747
|
+
* `ring`
|
1748
|
+
* `upMu`
|
1749
|
+
* `upNu`
|
1750
|
+
* `upXi`
|
1751
|
+
* `upPi`
|
1752
|
+
* `beta`
|
1753
|
+
* `zeta`
|
1754
|
+
* `iota`
|
1755
|
+
* `upmu`
|
1756
|
+
* `upnu`
|
1757
|
+
* `upxi`
|
1758
|
+
* `uppi`
|
1759
|
+
* `plus`
|
1760
|
+
* `less`
|
1761
|
+
* `vert`
|
1762
|
+
* `cent`
|
1763
|
+
* `lnot`
|
1764
|
+
* `tcmu`
|
1765
|
+
* `cat`
|
1766
|
+
* `Vec`
|
1767
|
+
* `ell`
|
1768
|
+
* `mho`
|
1769
|
+
* `Mho`
|
1770
|
+
* `Yup`
|
1771
|
+
* `rel`
|
1772
|
+
* `Lsh`
|
1773
|
+
* `Rsh`
|
1774
|
+
* `exi`
|
1775
|
+
* `nin`
|
1776
|
+
* `nni`
|
1777
|
+
* `QED`
|
1778
|
+
* `ast`
|
1779
|
+
* `mid`
|
1780
|
+
* `vee`
|
1781
|
+
* `lor`
|
1782
|
+
* `cap`
|
1783
|
+
* `cup`
|
1784
|
+
* `int`
|
1785
|
+
* `sim`
|
1786
|
+
* `neq`
|
1787
|
+
* `leq`
|
1788
|
+
* `geq`
|
1789
|
+
* `top`
|
1790
|
+
* `bot`
|
1791
|
+
* `Cap`
|
1792
|
+
* `Cup`
|
1793
|
+
* `lll`
|
1794
|
+
* `ggg`
|
1795
|
+
* `nis`
|
1796
|
+
* `RHD`
|
1797
|
+
* `rhd`
|
1798
|
+
* `LHD`
|
1799
|
+
* `lhd`
|
1800
|
+
* `Sun`
|
1801
|
+
* `sun`
|
1802
|
+
* `leo`
|
1803
|
+
* `Leo`
|
1804
|
+
* `iff`
|
1805
|
+
* `bij`
|
1806
|
+
* `Vee`
|
1807
|
+
* `lgE`
|
1808
|
+
* `glE`
|
1809
|
+
* `glj`
|
1810
|
+
* `gla`
|
1811
|
+
* `smt`
|
1812
|
+
* `lat`
|
1813
|
+
* `Top`
|
1814
|
+
* `Bot`
|
1815
|
+
* `Not`
|
1816
|
+
* `dot`
|
1817
|
+
* `Dot`
|
1818
|
+
* `not`
|
1819
|
+
* `Phi`
|
1820
|
+
* `Psi`
|
1821
|
+
* `eta`
|
1822
|
+
* `rho`
|
1823
|
+
* `tau`
|
1824
|
+
* `chi`
|
1825
|
+
* `psi`
|
1826
|
+
* `phi`
|
1827
|
+
* `yen`
|
1828
|
+
* `neg`
|
1829
|
+
* `eth`
|
1830
|
+
* `div`
|
1831
|
+
* `Xi`
|
1832
|
+
* `Im`
|
1833
|
+
* `wp`
|
1834
|
+
* `Re`
|
1835
|
+
* `DD`
|
1836
|
+
* `dd`
|
1837
|
+
* `ee`
|
1838
|
+
* `ii`
|
1839
|
+
* `jj`
|
1840
|
+
* `to`
|
1841
|
+
* `in`
|
1842
|
+
* `ni`
|
1843
|
+
* `mp`
|
1844
|
+
* `AC`
|
1845
|
+
* `wr`
|
1846
|
+
* `ne`
|
1847
|
+
* `le`
|
1848
|
+
* `ge`
|
1849
|
+
* `ll`
|
1850
|
+
* `gg`
|
1851
|
+
* `Lt`
|
1852
|
+
* `Gt`
|
1853
|
+
* `Pi`
|
1854
|
+
* `mu`
|
1855
|
+
* `nu`
|
1856
|
+
* `xi`
|
1857
|
+
* `pi`
|
1858
|
+
* `pm`
|
1859
|
+
* `-`
|
1860
|
+
* `'`
|
1861
|
+
* `!`
|
1862
|
+
* `#`
|
1863
|
+
* `$`
|
1864
|
+
* `%`
|
1865
|
+
* `&`
|
1866
|
+
* `*`
|
1867
|
+
* `+`
|
1868
|
+
* `,`
|
1869
|
+
* `.`
|
1870
|
+
* `/`
|
1871
|
+
* `:`
|
1872
|
+
* `;`
|
1873
|
+
* `<`
|
1874
|
+
* `=`
|
1875
|
+
* `>`
|
1876
|
+
* `?`
|
1877
|
+
* `@`
|
1878
|
+
* `|`
|
1879
|
+
* `_`
|