onix 0.7.1 → 0.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,77 @@
1
+ # coding: utf-8
2
+
3
+ $LOAD_PATH.unshift(File.dirname(__FILE__) + '/../lib')
4
+
5
+ require 'onix'
6
+
7
+ context "ONIX::Normaliser", "with a simple short tag file" do
8
+
9
+ before(:each) do
10
+ @data_path = File.join(File.dirname(__FILE__),"..","data")
11
+ @filename = File.join(@data_path, "short_tags.xml")
12
+ @outfile = @filename + ".new"
13
+ end
14
+
15
+ after(:each) do
16
+ File.unlink(@outfile) if File.file?(@outfile)
17
+ end
18
+
19
+ specify "should correctly convert short tag file to reference tag" do
20
+ ONIX::Normaliser.process(@filename, @outfile)
21
+
22
+ File.file?(@outfile).should be_true
23
+ content = File.read(@outfile)
24
+ content.include?("<m174>").should be_false
25
+ content.include?("<FromCompany>").should be_true
26
+ end
27
+
28
+ end
29
+
30
+ context "ONIX::Normaliser", "with an ISO-8859-1 file" do
31
+
32
+ before(:each) do
33
+ @data_path = File.join(File.dirname(__FILE__),"..","data")
34
+ @filename = File.join(@data_path, "iso_8859_1.xml")
35
+ @outfile = @filename + ".new"
36
+ end
37
+
38
+ after(:each) do
39
+ File.unlink(@outfile) if File.file?(@outfile)
40
+ end
41
+
42
+ specify "should correctly convert an iso-8859-1 file to UTF-8" do
43
+ ONIX::Normaliser.process(@filename, @outfile)
44
+
45
+ File.file?(@outfile).should be_true
46
+ content = File.read(@outfile)
47
+
48
+ content.include?("ISO-8859-1").should be_false
49
+ content.include?("UTF-8").should be_true
50
+
51
+ `isutf8 #{File.expand_path(@outfile)}`.strip.should eql("")
52
+ end
53
+
54
+ end
55
+
56
+ context "ONIX::Normaliser", "with an file using entities" do
57
+
58
+ before(:each) do
59
+ @data_path = File.join(File.dirname(__FILE__),"..","data")
60
+ @filename = File.join(@data_path, "entities.xml")
61
+ @outfile = @filename + ".new"
62
+ end
63
+
64
+ after(:each) do
65
+ File.unlink(@outfile) if File.file?(@outfile)
66
+ end
67
+
68
+ specify "should correctly convert named entities to numeric entities" do
69
+ ONIX::Normaliser.process(@filename, @outfile)
70
+
71
+ File.file?(@outfile).should be_true
72
+ content = File.read(@outfile)
73
+
74
+ content.include?("&ndash;").should be_false
75
+ content.include?("&#x02013;").should be_true
76
+ end
77
+ end
@@ -0,0 +1,1499 @@
1
+ angzarr:#x0237C
2
+ cirmid:#x02AEF
3
+ cudarrl:#x02938
4
+ cudarrr:#x02935
5
+ cularr:#x021B6
6
+ cularrp:#x0293D
7
+ curarr:#x021B7
8
+ curarrm:#x0293C
9
+ dArr:#x021D3
10
+ Darr:#x021A1
11
+ ddarr:#x021CA
12
+ DDotrahd:#x02911
13
+ dfisht:#x0297F
14
+ dHar:#x02965
15
+ dharl:#x021C3
16
+ dharr:#x021C2
17
+ duarr:#x021F5
18
+ duhar:#x0296F
19
+ dzigrarr:#x0F5A2
20
+ erarr:#x02971
21
+ harr:#x02194
22
+ hArr:#x021D4
23
+ harrcir:#x02948
24
+ harrw:#x021AD
25
+ hoarr:#x021FF
26
+ imof:#x022B7
27
+ lAarr:#x021DA
28
+ Larr:#x0219E
29
+ larrbfs:#x0291F
30
+ larrfs:#x0291D
31
+ larrhk:#x021A9
32
+ larrlp:#x021AB
33
+ larrpl:#x02939
34
+ larrsim:#x02973
35
+ larrtl:#x021A2
36
+ latail:#x02919
37
+ lAtail:#x0291B
38
+ lbarr:#x0290C
39
+ lBarr:#x0290E
40
+ ldca:#x02936
41
+ ldrdhar:#x02967
42
+ ldrushar:#x0294B
43
+ ldsh:#x021B2
44
+ lfisht:#x0297C
45
+ lHar:#x02962
46
+ lhard:#x021BD
47
+ lharu:#x021BC
48
+ lharul:#x0296A
49
+ llarr:#x021C7
50
+ llhard:#x0296B
51
+ loarr:#x021FD
52
+ lrarr:#x021C6
53
+ lrhar:#x021CB
54
+ lrhard:#x0296D
55
+ lsh:#x021B0
56
+ lurdshar:#x0294A
57
+ luruhar:#x02966
58
+ map:#x021A6
59
+ Map:#x02905
60
+ midcir:#x02AF0
61
+ mumap:#x022B8
62
+ nearhk:#x02924
63
+ nearr:#x02197
64
+ neArr:#x021D7
65
+ nesear:#x02928
66
+ nharr:#x021AE
67
+ nhArr:#x021CE
68
+ nlarr:#x0219A
69
+ nlArr:#x021CD
70
+ nrarr:#x0219B
71
+ nrArr:#x021CF
72
+ nrarrc:#x02933
73
+ nrarrw:#x0219D
74
+ nvHarr:#x021CE
75
+ nvlArr:#x021CD
76
+ nvrArr:#x021CF
77
+ nwarhk:#x02923
78
+ nwarr:#x02196
79
+ nwArr:#x021D6
80
+ nwnear:#x02927
81
+ olarr:#x021BA
82
+ orarr:#x021BB
83
+ origof:#x022B6
84
+ rAarr:#x021DB
85
+ Rarr:#x021A0
86
+ rarrap:#x02975
87
+ rarrbfs:#x02920
88
+ rarrc:#x02933
89
+ rarrfs:#x0291E
90
+ rarrhk:#x021AA
91
+ rarrlp:#x021AC
92
+ rarrpl:#x02945
93
+ rarrsim:#x02974
94
+ rarrtl:#x021A3
95
+ Rarrtl:#x02916
96
+ rarrw:#x0219D
97
+ ratail:#x021A3
98
+ rAtail:#x0291C
99
+ rbarr:#x0290D
100
+ rBarr:#x0290F
101
+ RBarr:#x02910
102
+ rdca:#x02937
103
+ rdldhar:#x02969
104
+ rdsh:#x021B3
105
+ rfisht:#x0297D
106
+ rHar:#x02964
107
+ rhard:#x021C1
108
+ rharu:#x021C0
109
+ rharul:#x0296C
110
+ rlarr:#x021C4
111
+ rlhar:#x021CC
112
+ roarr:#x021FE
113
+ rrarr:#x021C9
114
+ rsh:#x021B1
115
+ ruluhar:#x02968
116
+ searhk:#x02925
117
+ searr:#x02198
118
+ seArr:#x021D8
119
+ seswar:#x02929
120
+ simrarr:#x02972
121
+ slarr:#x02190
122
+ srarr:#x02192
123
+ swarhk:#x02926
124
+ swarr:#x02199
125
+ swArr:#x021D9
126
+ swnwar:#x0292A
127
+ uArr:#x021D1
128
+ Uarr:#x0219F
129
+ Uarrocir:#x02949
130
+ udarr:#x021C5
131
+ udhar:#x0296E
132
+ ufisht:#x0297E
133
+ uHar:#x02963
134
+ uharl:#x021BF
135
+ uharr:#x021BE
136
+ uuarr:#x021C8
137
+ varr:#x02195
138
+ vArr:#x021D5
139
+ xharr:#x0F578
140
+ xhArr:#x0F57B
141
+ xlarr:#x0F576
142
+ xlArr:#x0F579
143
+ xmap:#x0F57D
144
+ xrarr:#x0F577
145
+ xrArr:#x0F57A
146
+ zigrarr:#x021DD
147
+ ac:#x0290F
148
+ acE:#x029DB
149
+ amalg:#x02A3F
150
+ barvee:#x022BD
151
+ barwed:#x022BC
152
+ Barwed:#x02306
153
+ bsolb:#x029C5
154
+ Cap:#x022D2
155
+ capand:#x02A44
156
+ capbrcup:#x02A49
157
+ capcap:#x02A4B
158
+ capcup:#x02A47
159
+ capdot:#x02A40
160
+ caps:#x02229
161
+ ccaps:#x02A4D
162
+ ccups:#x02A4C
163
+ ccupssm:#x02A50
164
+ coprod:#x02210
165
+ Cup:#x022D3
166
+ cupbrcap:#x02A48
167
+ cupcap:#x02A46
168
+ cupcup:#x02A4A
169
+ cupdot:#x0228D
170
+ cupor:#x02A45
171
+ cups:#x0222A
172
+ cuvee:#x022CE
173
+ cuwed:#x022CF
174
+ dagger:#x02020
175
+ Dagger:#x02021
176
+ diam:#x022C4
177
+ divonx:#x022C7
178
+ eplus:#x02A71
179
+ hercon:#x022B9
180
+ intcal:#x022BA
181
+ iprod:#x02A3C
182
+ loplus:#x02A2D
183
+ lotimes:#x02A34
184
+ lthree:#x022CB
185
+ ltimes:#x022C9
186
+ midast:#x0002A
187
+ minusb:#x0229F
188
+ minusd:#x02238
189
+ minusdu:#x02A2A
190
+ ncap:#x02A43
191
+ ncup:#x02A42
192
+ oast:#x0229B
193
+ ocir:#x0229A
194
+ odash:#x0229D
195
+ odiv:#x02A38
196
+ odot:#x02299
197
+ odsold:#x029BC
198
+ ofcir:#x029BF
199
+ ogt:#x029C1
200
+ ohbar:#x029B5
201
+ olcir:#x029BE
202
+ olt:#x029C0
203
+ omid:#x029B6
204
+ ominus:#x02296
205
+ opar:#x029B7
206
+ operp:#x029B9
207
+ oplus:#x02295
208
+ osol:#x02298
209
+ otimes:#x02297
210
+ Otimes:#x02A37
211
+ otimesas:#x02A36
212
+ ovbar:#x0233D
213
+ plusacir:#x02A23
214
+ plusb:#x0229E
215
+ pluscir:#x02A22
216
+ plusdo:#x02214
217
+ plusdu:#x02A25
218
+ pluse:#x02A72
219
+ plussim:#x02A26
220
+ plustwo:#x02A27
221
+ prod:#x0220F
222
+ race:#x029DA
223
+ roplus:#x02A2E
224
+ rotimes:#x02A35
225
+ rthree:#x022CC
226
+ rtimes:#x022CA
227
+ sdot:#x022C5
228
+ sdotb:#x022A1
229
+ setmn:#x02216
230
+ simplus:#x02A24
231
+ smashp:#x02A33
232
+ solb:#x029C4
233
+ sqcap:#x02293
234
+ sqcaps:#x02293
235
+ sqcup:#x02294
236
+ sqcups:#x02294
237
+ ssetmn:#x02216
238
+ sstarf:#x022C6
239
+ subdot:#x02ABD
240
+ sum:#x02211
241
+ supdot:#x02ABE
242
+ timesb:#x022A0
243
+ timesbar:#x02A31
244
+ timesd:#x02A30
245
+ tridot:#x025EC
246
+ triminus:#x02A3A
247
+ triplus:#x02A39
248
+ trisb:#x029CD
249
+ tritime:#x02A3B
250
+ uplus:#x0228E
251
+ veebar:#x022BB
252
+ wedbar:#x02A5F
253
+ wreath:#x02240
254
+ xcap:#x022C2
255
+ xcirc:#x025EF
256
+ xcup:#x022C3
257
+ xdtri:#x025BD
258
+ xodot:#x02299
259
+ xoplus:#x02295
260
+ xotime:#x02297
261
+ xsqcup:#x02294
262
+ xuplus:#x0228E
263
+ xutri:#x025B3
264
+ xvee:#x022C1
265
+ xwedge:#x022C0
266
+ dlcorn:#x0231E
267
+ drcorn:#x0231F
268
+ gtlPar:#x02995
269
+ langd:#x02991
270
+ lbrke:#x0298B
271
+ lbrksld:#x0298F
272
+ lbrkslu:#x0298D
273
+ lceil:#x02308
274
+ lfloor:#x0230A
275
+ lmoust:#x023B0
276
+ lparlt:#x02993
277
+ ltrPar:#x02996
278
+ rangd:#x02992
279
+ rbrke:#x0298C
280
+ rbrksld:#x0298E
281
+ rbrkslu:#x02990
282
+ rceil:#x02309
283
+ rfloor:#x0230B
284
+ rmoust:#x023B1
285
+ rpargt:#x02994
286
+ ulcorn:#x0231C
287
+ urcorn:#x0231D
288
+ gnap:#x02A8A
289
+ gne:#x02269
290
+ gnE:#x02269
291
+ gnsim:#x022E7
292
+ gvnE:#x02269
293
+ lnap:#x02A89
294
+ lne:#x02268
295
+ lnE:#x02268
296
+ lnsim:#x022E6
297
+ lvnE:#x02268
298
+ nap:#x02249
299
+ napE:#x02A70
300
+ napid:#x0224B
301
+ ncong:#x02247
302
+ ncongdot:#x02A6D
303
+ nequiv:#x02262
304
+ nge:#x02271
305
+ ngE:#x02271
306
+ nges:#x02271
307
+ nGg:#x022D9
308
+ ngsim:#x02275
309
+ ngt:#x0226F
310
+ nGt:#x0226B
311
+ nGtv:#x0226B
312
+ nle:#x02270
313
+ nlE:#x02270
314
+ nles:#x02270
315
+ nLl:#x022D8
316
+ nlsim:#x02274
317
+ nlt:#x0226E
318
+ nLt:#x0226A
319
+ nltri:#x022EA
320
+ nltrie:#x022EC
321
+ nLtv:#x0226A
322
+ nmid:#x02224
323
+ npar:#x02226
324
+ npr:#x02280
325
+ nprcue:#x022E0
326
+ npre:#x02AAF
327
+ nrtri:#x022EB
328
+ nrtrie:#x022ED
329
+ nsc:#x02281
330
+ nsccue:#x022E1
331
+ nsce:#x02AB0
332
+ nsim:#x02241
333
+ nsime:#x02244
334
+ nsmid:#x02224
335
+ nspar:#x02226
336
+ nsqsube:#x022E2
337
+ nsqsupe:#x022E3
338
+ nsub:#x02284
339
+ nsube:#x02288
340
+ nsubE:#x02288
341
+ nsup:#x02285
342
+ nsupe:#x02289
343
+ nsupE:#x02289
344
+ ntgl:#x02279
345
+ ntlg:#x02278
346
+ nvap:#x02249
347
+ nvdash:#x022AC
348
+ nvDash:#x022AD
349
+ nVdash:#x022AE
350
+ nVDash:#x022AF
351
+ nvge:#x02271
352
+ nvgt:#x0226F
353
+ nvle:#x02270
354
+ nvlt:#x0226E
355
+ nvltrie:#x022EC
356
+ nvrtrie:#x022ED
357
+ nvsim:#x02241
358
+ parsim:#x02AF3
359
+ prnap:#x022E8
360
+ prnE:#x02AB5
361
+ prnsim:#x022E8
362
+ rnmid:#x02AEE
363
+ scnap:#x022E9
364
+ scnE:#x02AB6
365
+ scnsim:#x022E9
366
+ simne:#x02246
367
+ solbar:#x0233F
368
+ subne:#x0228A
369
+ subnE:#x0228A
370
+ supne:#x0228B
371
+ supnE:#x0228B
372
+ vnsub:#x02284
373
+ vnsup:#x02285
374
+ vsubne:#x0228A
375
+ vsubnE:#x0228A
376
+ vsupne:#x0228B
377
+ vsupnE:#x0228B
378
+ ang:#x02220
379
+ ange:#x029A4
380
+ angmsd:#x02221
381
+ angmsdaa:#x029A8
382
+ angmsdab:#x029A9
383
+ angmsdac:#x029AA
384
+ angmsdad:#x029AB
385
+ angmsdae:#x029AC
386
+ angmsdaf:#x029AD
387
+ angmsdag:#x029AE
388
+ angmsdah:#x029AF
389
+ angrtvb:#x0299D
390
+ angrtvbd:#x0299D
391
+ bbrk:#x023B5
392
+ bemptyv:#x029B0
393
+ beth:#x02136
394
+ boxbox:#x029C9
395
+ bprime:#x02035
396
+ bsemi:#x0204F
397
+ cemptyv:#x029B2
398
+ cirE:#x029C3
399
+ cirscir:#x029C2
400
+ comp:#x02201
401
+ daleth:#x02138
402
+ demptyv:#x029B1
403
+ ell:#x02113
404
+ empty:#x02205
405
+ emptyv:#x02205
406
+ gimel:#x02137
407
+ iiota:#x02129
408
+ image:#x02111
409
+ imath:#x00131
410
+ jmath:#x0006A
411
+ laemptyv:#x029B4
412
+ lltri:#x025FA
413
+ lrtri:#x022BF
414
+ mho:#x02127
415
+ nang:#x02220
416
+ nexist:#x02204
417
+ oS:#x024C8
418
+ planck:#x0210F
419
+ plankv:#x0210F
420
+ raemptyv:#x029B3
421
+ range:#x029A5
422
+ real:#x0211C
423
+ tbrk:#x023B4
424
+ ultri:#x025F8
425
+ urtri:#x025F9
426
+ vzigzag:#x0299A
427
+ weierp:#x02118
428
+ ape:#x0224A
429
+ apE:#x0224A
430
+ apid:#x0224B
431
+ asymp:#x0224D
432
+ Barv:#x02AE7
433
+ bcong:#x0224C
434
+ bepsi:#x003F6
435
+ bowtie:#x022C8
436
+ bsim:#x0223D
437
+ bsime:#x022CD
438
+ bsolhsub:#x0005C
439
+ bump:#x0224E
440
+ bumpe:#x0224F
441
+ bumpE:#x02AAE
442
+ cire:#x02257
443
+ Colon:#x02237
444
+ colone:#x02254
445
+ Colone:#x02A74
446
+ congdot:#x02A6D
447
+ csub:#x02ACF
448
+ csube:#x02AD1
449
+ csup:#x02AD0
450
+ csupe:#x02AD2
451
+ cuepr:#x022DE
452
+ cuesc:#x022DF
453
+ dashv:#x022A3
454
+ Dashv:#x02AE4
455
+ easter:#x0225B
456
+ ecir:#x02256
457
+ ecolon:#x02255
458
+ eDDot:#x02A77
459
+ eDot:#x02251
460
+ efDot:#x02252
461
+ eg:#x02A9A
462
+ egs:#x022DD
463
+ egsdot:#x02A98
464
+ el:#x02A99
465
+ els:#x022DC
466
+ elsdot:#x02A97
467
+ equest:#x0225F
468
+ equivDD:#x02A78
469
+ erDot:#x02253
470
+ esdot:#x02250
471
+ esim:#x02242
472
+ Esim:#x02A73
473
+ fork:#x022D4
474
+ forkv:#x02AD9
475
+ frown:#x02322
476
+ gap:#x02273
477
+ gE:#x02267
478
+ gel:#x022DB
479
+ gEl:#x022DB
480
+ ges:#x02A7E
481
+ gescc:#x02AA9
482
+ gesdot:#x02A80
483
+ gesdoto:#x02A82
484
+ gesdotol:#x02A84
485
+ gesl:#x022DB
486
+ gesles:#x02A94
487
+ Gg:#x022D9
488
+ gl:#x02277
489
+ gla:#x02AA5
490
+ glE:#x02A92
491
+ glj:#x02AA4
492
+ gsim:#x02273
493
+ gsime:#x02A8E
494
+ gsiml:#x02A90
495
+ Gt:#x0226B
496
+ gtcc:#x02AA7
497
+ gtcir:#x02A7A
498
+ gtdot:#x022D7
499
+ gtquest:#x02A7C
500
+ gtrarr:#x02978
501
+ homtht:#x0223B
502
+ lap:#x02272
503
+ lat:#x02AAB
504
+ late:#x02AAD
505
+ lates:#x02AAD
506
+ lE:#x02266
507
+ leg:#x022DA
508
+ lEg:#x022DA
509
+ les:#x02A7D
510
+ lescc:#x02AA8
511
+ lesdot:#x02A7F
512
+ lesdoto:#x02A81
513
+ lesdotor:#x02A83
514
+ lesg:#x022DA
515
+ lesges:#x02A93
516
+ lg:#x02276
517
+ lgE:#x02A91
518
+ Ll:#x022D8
519
+ lsim:#x02272
520
+ lsime:#x02A8D
521
+ lsimg:#x02A8F
522
+ Lt:#x0226A
523
+ ltcc:#x02AA6
524
+ ltcir:#x02A79
525
+ ltdot:#x022D6
526
+ ltlarr:#x02976
527
+ ltquest:#x02A7B
528
+ ltrie:#x022B4
529
+ mcomma:#x02A29
530
+ mDDot:#x0223A
531
+ mid:#x02223
532
+ mlcp:#x02ADB
533
+ models:#x022A7
534
+ mstpos:#x0223E
535
+ pr:#x0227A
536
+ Pr:#x02ABB
537
+ prap:#x0227E
538
+ prcue:#x0227C
539
+ pre:#x02AAF
540
+ prE:#x02AAF
541
+ prsim:#x0227E
542
+ prurel:#x022B0
543
+ ratio:#x02236
544
+ rtrie:#x022B5
545
+ rtriltri:#x029CE
546
+ sc:#x0227B
547
+ Sc:#x02ABC
548
+ scap:#x0227F
549
+ sccue:#x0227D
550
+ sce:#x0227D
551
+ scE:#x0227E
552
+ scsim:#x0227F
553
+ sdote:#x02A66
554
+ simg:#x02A9E
555
+ simgE:#x02AA0
556
+ siml:#x02A9D
557
+ simlE:#x02A9F
558
+ smid:#x02223
559
+ smile:#x02323
560
+ smt:#x02AAA
561
+ smte:#x02AAC
562
+ smtes:#x02AAC
563
+ spar:#x02225
564
+ sqsub:#x0228F
565
+ sqsube:#x02291
566
+ sqsup:#x02290
567
+ sqsupe:#x02292
568
+ Sub:#x022D0
569
+ subE:#x02286
570
+ subedot:#x02AC3
571
+ submult:#x02AC1
572
+ subplus:#x02ABF
573
+ subrarr:#x02979
574
+ subsim:#x02AC7
575
+ subsub:#x02AD5
576
+ subsup:#x02AD3
577
+ Sup:#x022D1
578
+ supdsub:#x02AD8
579
+ supE:#x02287
580
+ supedot:#x02AC4
581
+ suphsol:#x02283
582
+ suphsub:#x02AD7
583
+ suplarr:#x0297B
584
+ supmult:#x02AC2
585
+ supplus:#x02AC0
586
+ supsim:#x02AC8
587
+ supsub:#x02AD4
588
+ supsup:#x02AD6
589
+ thkap:#x02248
590
+ thksim:#x0223C
591
+ topfork:#x02ADA
592
+ trie:#x0225C
593
+ twixt:#x0226C
594
+ vBar:#x02AE8
595
+ Vbar:#x02AEB
596
+ vBarv:#x02AE9
597
+ vdash:#x022A2
598
+ vDash:#x022A8
599
+ Vdash:#x022A9
600
+ VDash:#x022AB
601
+ Vdashl:#x02AE6
602
+ vltri:#x022B2
603
+ vprop:#x0221D
604
+ vrtri:#x022B3
605
+ Vvdash:#x022AA
606
+ boxdl:#x02510
607
+ boxdL:#x02555
608
+ boxDl:#x02556
609
+ boxDL:#x02557
610
+ boxdr:#x0250C
611
+ boxdR:#x02552
612
+ boxDr:#x02553
613
+ boxDR:#x02554
614
+ boxh:#x02500
615
+ boxH:#x02550
616
+ boxhd:#x0252C
617
+ boxhD:#x02565
618
+ boxHd:#x02564
619
+ boxHD:#x02566
620
+ boxhu:#x02534
621
+ boxhU:#x02568
622
+ boxHu:#x02567
623
+ boxHU:#x02569
624
+ boxul:#x02518
625
+ boxuL:#x0255B
626
+ boxUl:#x0255C
627
+ boxUL:#x0255D
628
+ boxur:#x02514
629
+ boxuR:#x02558
630
+ boxUr:#x02559
631
+ boxUR:#x0255A
632
+ boxv:#x02502
633
+ boxV:#x02551
634
+ boxvh:#x0253C
635
+ boxvH:#x0256A
636
+ boxVh:#x0256B
637
+ boxVH:#x0256C
638
+ boxvl:#x02524
639
+ boxvL:#x02561
640
+ boxVl:#x02562
641
+ boxVL:#x02563
642
+ boxvr:#x0251C
643
+ boxvR:#x0255E
644
+ boxVr:#x0255F
645
+ boxVR:#x02560
646
+ acy:#x00430
647
+ Acy:#x00410
648
+ bcy:#x00431
649
+ Bcy:#x00411
650
+ chcy:#x00447
651
+ CHcy:#x00427
652
+ dcy:#x00434
653
+ Dcy:#x00414
654
+ ecy:#x0044D
655
+ Ecy:#x0042D
656
+ fcy:#x00444
657
+ Fcy:#x00424
658
+ gcy:#x00433
659
+ Gcy:#x00413
660
+ hardcy:#x0044A
661
+ HARDcy:#x0042A
662
+ icy:#x00438
663
+ Icy:#x00418
664
+ iecy:#x00435
665
+ IEcy:#x00415
666
+ iocy:#x00451
667
+ IOcy:#x00401
668
+ jcy:#x00439
669
+ Jcy:#x00419
670
+ kcy:#x0043A
671
+ Kcy:#x0041A
672
+ khcy:#x00445
673
+ KHcy:#x00425
674
+ lcy:#x0043B
675
+ Lcy:#x0041B
676
+ mcy:#x0043C
677
+ Mcy:#x0041C
678
+ ncy:#x0043D
679
+ Ncy:#x0041D
680
+ numero:#x02116
681
+ ocy:#x0043E
682
+ Ocy:#x0041E
683
+ pcy:#x0043F
684
+ Pcy:#x0041F
685
+ rcy:#x00440
686
+ Rcy:#x00420
687
+ scy:#x00441
688
+ Scy:#x00421
689
+ shchcy:#x00449
690
+ SHCHcy:#x00429
691
+ shcy:#x00448
692
+ SHcy:#x00428
693
+ softcy:#x0044C
694
+ SOFTcy:#x0042C
695
+ tcy:#x00442
696
+ Tcy:#x00422
697
+ tscy:#x00446
698
+ TScy:#x00426
699
+ ucy:#x00443
700
+ Ucy:#x00423
701
+ vcy:#x00432
702
+ Vcy:#x00412
703
+ yacy:#x0044F
704
+ YAcy:#x0042F
705
+ ycy:#x0044B
706
+ Ycy:#x0042B
707
+ yucy:#x0044E
708
+ YUcy:#x0042E
709
+ zcy:#x00437
710
+ Zcy:#x00417
711
+ zhcy:#x00436
712
+ ZHcy:#x00416
713
+ djcy:#x00452
714
+ DJcy:#x00402
715
+ dscy:#x00455
716
+ DScy:#x00405
717
+ dzcy:#x0045F
718
+ DZcy:#x0040F
719
+ gjcy:#x00453
720
+ GJcy:#x00403
721
+ iukcy:#x00456
722
+ Iukcy:#x00406
723
+ jsercy:#x00458
724
+ Jsercy:#x00408
725
+ jukcy:#x00454
726
+ Jukcy:#x00404
727
+ kjcy:#x0045C
728
+ KJcy:#x0040C
729
+ ljcy:#x00459
730
+ LJcy:#x00409
731
+ njcy:#x0045A
732
+ NJcy:#x0040A
733
+ tshcy:#x0045B
734
+ TSHcy:#x0040B
735
+ ubrcy:#x0045E
736
+ Ubrcy:#x0040E
737
+ yicy:#x00457
738
+ YIcy:#x00407
739
+ acute:#x000B4
740
+ breve:#x002D8
741
+ caron:#x002C7
742
+ cedil:#x000B8
743
+ circ:#x0005E
744
+ dblac:#x002DD
745
+ die:#x000A8
746
+ dot:#x002D9
747
+ grave:#x00060
748
+ macr:#x000AF
749
+ ogon:#x002DB
750
+ ring:#x002DA
751
+ tilde:#x002DC
752
+ uml:#x000A8
753
+ alpha:#x003B1
754
+ beta:#x003B2
755
+ chi:#x003C7
756
+ delta:#x003B4
757
+ Delta:#x00394
758
+ epsi:#x003B5
759
+ epsiv:#x0025B
760
+ eta:#x003B7
761
+ gamma:#x003B3
762
+ Gamma:#x00393
763
+ gammad:#x003DC
764
+ Gammad:#x003DC
765
+ iota:#x003B9
766
+ kappa:#x003BA
767
+ kappav:#x003F0
768
+ lambda:#x003BB
769
+ Lambda:#x0039B
770
+ mu:#x003BC
771
+ nu:#x003BD
772
+ omega:#x003C9
773
+ Omega:#x003A9
774
+ phi:#x003C6
775
+ Phi:#x003A6
776
+ phiv:#x003D5
777
+ pi:#x003C0
778
+ Pi:#x003A0
779
+ piv:#x003D6
780
+ psi:#x003C8
781
+ Psi:#x003A8
782
+ rho:#x003C1
783
+ rhov:#x003F1
784
+ sigma:#x003C3
785
+ Sigma:#x003A3
786
+ sigmav:#x003C2
787
+ tau:#x003C4
788
+ theta:#x003B8
789
+ Theta:#x00398
790
+ thetav:#x003D1
791
+ upsi:#x003C5
792
+ Upsi:#x003D2
793
+ xi:#x003BE
794
+ Xi:#x0039E
795
+ zeta:#x003B6
796
+ aacute:#x000E1
797
+ Aacute:#x000C1
798
+ acirc:#x000E2
799
+ Acirc:#x000C2
800
+ aelig:#x000E6
801
+ AElig:#x000C6
802
+ agrave:#x000E0
803
+ Agrave:#x000C0
804
+ aring:#x000E5
805
+ Aring:#x000C5
806
+ atilde:#x000E3
807
+ Atilde:#x000C3
808
+ auml:#x000E4
809
+ Auml:#x000C4
810
+ ccedil:#x000E7
811
+ Ccedil:#x000C7
812
+ eacute:#x000E9
813
+ Eacute:#x000C9
814
+ ecirc:#x000EA
815
+ Ecirc:#x000CA
816
+ egrave:#x000E8
817
+ Egrave:#x000C8
818
+ eth:#x000F0
819
+ ETH:#x000D0
820
+ euml:#x000EB
821
+ Euml:#x000CB
822
+ iacute:#x000ED
823
+ Iacute:#x000CD
824
+ icirc:#x000EE
825
+ Icirc:#x000CE
826
+ igrave:#x000EC
827
+ Igrave:#x000CC
828
+ iuml:#x000EF
829
+ Iuml:#x000CF
830
+ ntilde:#x000F1
831
+ Ntilde:#x000D1
832
+ oacute:#x000F3
833
+ Oacute:#x000D3
834
+ ocirc:#x000F4
835
+ Ocirc:#x000D4
836
+ ograve:#x000F2
837
+ Ograve:#x000D2
838
+ oslash:#x000F8
839
+ Oslash:#x000D8
840
+ otilde:#x000F5
841
+ Otilde:#x000D5
842
+ ouml:#x000F6
843
+ Ouml:#x000D6
844
+ szlig:#x000DF
845
+ thorn:#x000FE
846
+ THORN:#x000DE
847
+ uacute:#x000FA
848
+ Uacute:#x000DA
849
+ ucirc:#x000FB
850
+ Ucirc:#x000DB
851
+ ugrave:#x000F9
852
+ Ugrave:#x000D9
853
+ uuml:#x000FC
854
+ Uuml:#x000DC
855
+ yacute:#x000FD
856
+ Yacute:#x000DD
857
+ yuml:#x000FF
858
+ abreve:#x00103
859
+ Abreve:#x00102
860
+ amacr:#x00101
861
+ Amacr:#x00100
862
+ aogon:#x00105
863
+ Aogon:#x00104
864
+ cacute:#x00107
865
+ Cacute:#x00106
866
+ ccaron:#x0010D
867
+ Ccaron:#x0010C
868
+ ccirc:#x00109
869
+ Ccirc:#x00108
870
+ cdot:#x0010B
871
+ Cdot:#x0010A
872
+ dcaron:#x0010F
873
+ Dcaron:#x0010E
874
+ dstrok:#x00111
875
+ Dstrok:#x00110
876
+ ecaron:#x0011B
877
+ Ecaron:#x0011A
878
+ edot:#x00117
879
+ Edot:#x00116
880
+ emacr:#x00113
881
+ Emacr:#x00112
882
+ eng:#x0014B
883
+ ENG:#x0014A
884
+ eogon:#x00119
885
+ Eogon:#x00118
886
+ gacute:#x001F5
887
+ gbreve:#x0011F
888
+ Gbreve:#x0011E
889
+ Gcedil:#x00122
890
+ gcirc:#x0011D
891
+ Gcirc:#x0011C
892
+ gdot:#x00121
893
+ Gdot:#x00120
894
+ hcirc:#x00125
895
+ Hcirc:#x00124
896
+ hstrok:#x00127
897
+ Hstrok:#x00126
898
+ Idot:#x00130
899
+ ijlig:#x00133
900
+ IJlig:#x00132
901
+ imacr:#x0012B
902
+ Imacr:#x0012A
903
+ inodot:#x00131
904
+ iogon:#x0012F
905
+ Iogon:#x0012E
906
+ itilde:#x00129
907
+ Itilde:#x00128
908
+ jcirc:#x00135
909
+ Jcirc:#x00134
910
+ kcedil:#x00137
911
+ Kcedil:#x00136
912
+ kgreen:#x00138
913
+ lacute:#x0013A
914
+ Lacute:#x00139
915
+ lcaron:#x0013E
916
+ Lcaron:#x0013D
917
+ lcedil:#x0013C
918
+ Lcedil:#x0013B
919
+ lmidot:#x00140
920
+ Lmidot:#x0013F
921
+ lstrok:#x00142
922
+ Lstrok:#x00141
923
+ nacute:#x00144
924
+ Nacute:#x00143
925
+ napos:#x00149
926
+ ncaron:#x00148
927
+ Ncaron:#x00147
928
+ ncedil:#x00146
929
+ Ncedil:#x00145
930
+ odblac:#x00151
931
+ Odblac:#x00150
932
+ oelig:#x00153
933
+ OElig:#x00152
934
+ omacr:#x0014D
935
+ Omacr:#x0014C
936
+ racute:#x00155
937
+ Racute:#x00154
938
+ rcaron:#x00159
939
+ Rcaron:#x00158
940
+ rcedil:#x00157
941
+ Rcedil:#x00156
942
+ sacute:#x0015B
943
+ Sacute:#x0015A
944
+ scaron:#x00161
945
+ Scaron:#x00160
946
+ scedil:#x0015F
947
+ Scedil:#x0015E
948
+ scirc:#x0015D
949
+ Scirc:#x0015C
950
+ tcaron:#x00165
951
+ Tcaron:#x00164
952
+ tcedil:#x00163
953
+ Tcedil:#x00162
954
+ tstrok:#x00167
955
+ Tstrok:#x00166
956
+ ubreve:#x0016D
957
+ Ubreve:#x0016C
958
+ udblac:#x00171
959
+ Udblac:#x00170
960
+ umacr:#x0016B
961
+ Umacr:#x0016A
962
+ uogon:#x00173
963
+ Uogon:#x00172
964
+ uring:#x0016F
965
+ Uring:#x0016E
966
+ utilde:#x00169
967
+ Utilde:#x00168
968
+ wcirc:#x00175
969
+ Wcirc:#x00174
970
+ ycirc:#x00177
971
+ Ycirc:#x00176
972
+ Yuml:#x00178
973
+ zacute:#x0017A
974
+ Zacute:#x00179
975
+ zcaron:#x0017E
976
+ Zcaron:#x0017D
977
+ zdot:#x0017C
978
+ Zdot:#x0017B
979
+ afr:#x1D51E
980
+ Afr:#x1D504
981
+ bfr:#x1D51F
982
+ Bfr:#x1D505
983
+ cfr:#x1D520
984
+ Cfr:#x0212D
985
+ dfr:#x1D521
986
+ Dfr:#x1D507
987
+ efr:#x1D522
988
+ Efr:#x1D508
989
+ ffr:#x1D523
990
+ Ffr:#x1D509
991
+ gfr:#x1D524
992
+ Gfr:#x1D50A
993
+ hfr:#x1D525
994
+ Hfr:#x0210C
995
+ ifr:#x1D526
996
+ Ifr:#x02111
997
+ jfr:#x1D527
998
+ Jfr:#x1D50D
999
+ kfr:#x1D528
1000
+ Kfr:#x1D50E
1001
+ lfr:#x1D529
1002
+ Lfr:#x1D50F
1003
+ mfr:#x1D52A
1004
+ Mfr:#x1D510
1005
+ nfr:#x1D52B
1006
+ Nfr:#x1D511
1007
+ ofr:#x1D52C
1008
+ Ofr:#x1D512
1009
+ pfr:#x1D52D
1010
+ Pfr:#x1D513
1011
+ qfr:#x1D52E
1012
+ Qfr:#x1D514
1013
+ rfr:#x1D52F
1014
+ Rfr:#x0211C
1015
+ sfr:#x1D530
1016
+ Sfr:#x1D516
1017
+ tfr:#x1D531
1018
+ Tfr:#x1D517
1019
+ ufr:#x1D532
1020
+ Ufr:#x1D518
1021
+ vfr:#x1D533
1022
+ Vfr:#x1D519
1023
+ wfr:#x1D534
1024
+ Wfr:#x1D51A
1025
+ xfr:#x1D535
1026
+ Xfr:#x1D51B
1027
+ yfr:#x1D536
1028
+ Yfr:#x1D51C
1029
+ zfr:#x1D537
1030
+ Zfr:#x02128
1031
+ Aopf:#x1D538
1032
+ Bopf:#x1D539
1033
+ Copf:#x02102
1034
+ Dopf:#x1D53B
1035
+ Eopf:#x1D53C
1036
+ Fopf:#x1D53D
1037
+ Gopf:#x1D53E
1038
+ Hopf:#x0210D
1039
+ Iopf:#x1D540
1040
+ Jopf:#x1D541
1041
+ Kopf:#x1D542
1042
+ Lopf:#x1D543
1043
+ Mopf:#x1D544
1044
+ Nopf:#x02115
1045
+ Oopf:#x1D546
1046
+ Popf:#x02119
1047
+ Qopf:#x0211A
1048
+ Ropf:#x0211D
1049
+ Sopf:#x1D54A
1050
+ Topf:#x1D54B
1051
+ Uopf:#x1D54C
1052
+ Vopf:#x1D54D
1053
+ Wopf:#x1D54E
1054
+ Xopf:#x1D54F
1055
+ Yopf:#x1D550
1056
+ Zopf:#x02124
1057
+ ascr:#x1D4B6
1058
+ Ascr:#x1D49C
1059
+ bscr:#x1D4B7
1060
+ Bscr:#x0212C
1061
+ cscr:#x1D4B8
1062
+ Cscr:#x1D49E
1063
+ dscr:#x1D4B9
1064
+ Dscr:#x1D49F
1065
+ escr:#x0212F
1066
+ Escr:#x02130
1067
+ fscr:#x1D4BB
1068
+ Fscr:#x02131
1069
+ gscr:#x0210A
1070
+ Gscr:#x1D4A2
1071
+ hscr:#x1D4BD
1072
+ Hscr:#x0210B
1073
+ iscr:#x1D4BE
1074
+ Iscr:#x02110
1075
+ jscr:#x1D4BF
1076
+ Jscr:#x1D4A5
1077
+ kscr:#x1D4C0
1078
+ Kscr:#x1D4A6
1079
+ lscr:#x02113
1080
+ Lscr:#x02112
1081
+ mscr:#x1D4C2
1082
+ Mscr:#x02133
1083
+ nscr:#x1D4C3
1084
+ Nscr:#x1D4A9
1085
+ oscr:#x02134
1086
+ Oscr:#x1D4AA
1087
+ pscr:#x1D4C5
1088
+ Pscr:#x1D4AB
1089
+ qscr:#x1D4C6
1090
+ Qscr:#x1D4AC
1091
+ rscr:#x1D4C7
1092
+ Rscr:#x0211B
1093
+ sscr:#x1D4C8
1094
+ Sscr:#x1D4AE
1095
+ tscr:#x1D4C9
1096
+ Tscr:#x1D4AF
1097
+ uscr:#x1D4CA
1098
+ Uscr:#x1D4B0
1099
+ vscr:#x1D4CB
1100
+ Vscr:#x1D4B1
1101
+ wscr:#x1D4CC
1102
+ Wscr:#x1D4B2
1103
+ xscr:#x1D4CD
1104
+ Xscr:#x1D4B3
1105
+ yscr:#x1D4CE
1106
+ Yscr:#x1D4B4
1107
+ zscr:#x1D4CF
1108
+ Zscr:#x1D4B5
1109
+ amp:#x26
1110
+ apos:#x00027
1111
+ ast:#x0002A
1112
+ brvbar:#x000A6
1113
+ bsol:#x0005C
1114
+ cent:#x000A2
1115
+ colon:#x0003A
1116
+ comma:#x0002C
1117
+ commat:#x00040
1118
+ copy:#x000A9
1119
+ curren:#x000A4
1120
+ darr:#x02193
1121
+ deg:#x000B0
1122
+ divide:#x000F7
1123
+ dollar:#x00024
1124
+ equals:#x0003D
1125
+ excl:#x00021
1126
+ frac12:#x000BD
1127
+ frac14:#x000BC
1128
+ frac18:#x0215B
1129
+ frac34:#x000BE
1130
+ frac38:#x0215C
1131
+ frac58:#x0215D
1132
+ frac78:#x0215E
1133
+ gt:#x0003E
1134
+ half:#x000BD
1135
+ horbar:#x02015
1136
+ hyphen:#x02010
1137
+ iexcl:#x000A1
1138
+ iquest:#x000BF
1139
+ laquo:#x000AB
1140
+ larr:#x02190
1141
+ lcub:#x0007B
1142
+ ldquo:#x0201C
1143
+ lowbar:#x0005F
1144
+ lpar:#x00028
1145
+ lsqb:#x0005B
1146
+ lsquo:#x02018
1147
+ lt:#x26
1148
+ micro:#x000B5
1149
+ middot:#x000B7
1150
+ nbsp:#x000A0
1151
+ not:#x000AC
1152
+ num:#x00023
1153
+ ohm:#x02126
1154
+ ordf:#x000AA
1155
+ ordm:#x000BA
1156
+ para:#x000B6
1157
+ percnt:#x00025
1158
+ period:#x0002E
1159
+ plus:#x0002B
1160
+ plusmn:#x000B1
1161
+ pound:#x000A3
1162
+ quest:#x0003F
1163
+ quot:#x00022
1164
+ raquo:#x000BB
1165
+ rarr:#x02192
1166
+ rcub:#x0007D
1167
+ rdquo:#x0201D
1168
+ reg:#x000AE
1169
+ rpar:#x00029
1170
+ rsqb:#x0005D
1171
+ rsquo:#x02019
1172
+ sect:#x000A7
1173
+ semi:#x0003B
1174
+ shy:#x000AD
1175
+ sol:#x0002F
1176
+ sung:#x0266A
1177
+ sup1:#x000B9
1178
+ sup2:#x000B2
1179
+ sup3:#x000B3
1180
+ times:#x000D7
1181
+ trade:#x02122
1182
+ uarr:#x02191
1183
+ verbar:#x0007C
1184
+ yen:#x000A5
1185
+ amp:#x26
1186
+ apos:#x00027
1187
+ ast:#x0002A
1188
+ brvbar:#x000A6
1189
+ bsol:#x0005C
1190
+ cent:#x000A2
1191
+ colon:#x0003A
1192
+ comma:#x0002C
1193
+ commat:#x00040
1194
+ copy:#x000A9
1195
+ curren:#x000A4
1196
+ darr:#x02193
1197
+ deg:#x000B0
1198
+ divide:#x000F7
1199
+ dollar:#x00024
1200
+ equals:#x0003D
1201
+ excl:#x00021
1202
+ frac12:#x000BD
1203
+ frac14:#x000BC
1204
+ frac18:#x0215B
1205
+ frac34:#x000BE
1206
+ frac38:#x0215C
1207
+ frac58:#x0215D
1208
+ frac78:#x0215E
1209
+ gt:#x0003E
1210
+ half:#x000BD
1211
+ horbar:#x02015
1212
+ hyphen:#x02010
1213
+ iexcl:#x000A1
1214
+ iquest:#x000BF
1215
+ laquo:#x000AB
1216
+ larr:#x02190
1217
+ lcub:#x0007B
1218
+ ldquo:#x0201C
1219
+ lowbar:#x0005F
1220
+ lpar:#x00028
1221
+ lsqb:#x0005B
1222
+ lsquo:#x02018
1223
+ lt:#x26
1224
+ micro:#x000B5
1225
+ middot:#x000B7
1226
+ nbsp:#x000A0
1227
+ not:#x000AC
1228
+ num:#x00023
1229
+ ohm:#x02126
1230
+ ordf:#x000AA
1231
+ ordm:#x000BA
1232
+ para:#x000B6
1233
+ percnt:#x00025
1234
+ period:#x0002E
1235
+ plus:#x0002B
1236
+ plusmn:#x000B1
1237
+ pound:#x000A3
1238
+ quest:#x0003F
1239
+ quot:#x00022
1240
+ raquo:#x000BB
1241
+ rarr:#x02192
1242
+ rcub:#x0007D
1243
+ rdquo:#x0201D
1244
+ reg:#x000AE
1245
+ rpar:#x00029
1246
+ rsqb:#x0005D
1247
+ rsquo:#x02019
1248
+ sect:#x000A7
1249
+ semi:#x0003B
1250
+ shy:#x000AD
1251
+ sol:#x0002F
1252
+ sung:#x0266A
1253
+ sup1:#x000B9
1254
+ sup2:#x000B2
1255
+ sup3:#x000B3
1256
+ times:#x000D7
1257
+ trade:#x02122
1258
+ uarr:#x02191
1259
+ verbar:#x0007C
1260
+ yen:#x000A5
1261
+ blank:#x02423
1262
+ blk12:#x02592
1263
+ blk14:#x02591
1264
+ blk34:#x02593
1265
+ block:#x02588
1266
+ bull:#x02022
1267
+ caret:#x02041
1268
+ check:#x02713
1269
+ cir:#x025CB
1270
+ clubs:#x02663
1271
+ copysr:#x02117
1272
+ cross:#x02717
1273
+ dagger:#x02020
1274
+ Dagger:#x02021
1275
+ dash:#x02010
1276
+ diams:#x02666
1277
+ dlcrop:#x0230D
1278
+ drcrop:#x0230C
1279
+ dtri:#x025BF
1280
+ dtrif:#x025BE
1281
+ emsp:#x02003
1282
+ emsp13:#x02004
1283
+ emsp14:#x02005
1284
+ ensp:#x02002
1285
+ female:#x02640
1286
+ ffilig:#x0FB03
1287
+ fflig:#x0FB00
1288
+ ffllig:#x0FB04
1289
+ filig:#x0FB01
1290
+ flat:#x0266D
1291
+ fllig:#x0FB02
1292
+ frac13:#x02153
1293
+ frac15:#x02155
1294
+ frac16:#x02159
1295
+ frac23:#x02154
1296
+ frac25:#x02156
1297
+ frac35:#x02157
1298
+ frac45:#x02158
1299
+ frac56:#x0215A
1300
+ hairsp:#x0200A
1301
+ hellip:#x02026
1302
+ hybull:#x02043
1303
+ incare:#x02105
1304
+ ldquor:#x0201E
1305
+ lhblk:#x02584
1306
+ loz:#x025CA
1307
+ lozf:#x029EB
1308
+ lsquor:#x0201A
1309
+ ltri:#x025C3
1310
+ ltrif:#x025C2
1311
+ male:#x02642
1312
+ malt:#x02720
1313
+ marker:#x025AE
1314
+ mdash:#x02014
1315
+ mldr:#x02026
1316
+ natur:#x0266E
1317
+ ndash:#x02013
1318
+ nldr:#x02025
1319
+ numsp:#x02007
1320
+ phone:#x0260E
1321
+ puncsp:#x02008
1322
+ rdquor:#x0201D
1323
+ rect:#x025AD
1324
+ rsquor:#x02019
1325
+ rtri:#x025B9
1326
+ rtrif:#x025B8
1327
+ rx:#x0211E
1328
+ sext:#x02736
1329
+ sharp:#x0266F
1330
+ spades:#x02660
1331
+ squ:#x025A1
1332
+ squf:#x025AA
1333
+ star:#x022C6
1334
+ starf:#x02605
1335
+ target:#x02316
1336
+ telrec:#x02315
1337
+ thinsp:#x02009
1338
+ uhblk:#x02580
1339
+ ulcrop:#x0230F
1340
+ urcrop:#x0230E
1341
+ utri:#x025B5
1342
+ utrif:#x025B4
1343
+ vellip:#x022EE
1344
+ acd:#x0223F
1345
+ aleph:#x02135
1346
+ and:#x02227
1347
+ And:#x02A53
1348
+ andand:#x02A55
1349
+ andd:#x02A5C
1350
+ andslope:#x02A58
1351
+ andv:#x02A5A
1352
+ angrt:#x0221F
1353
+ angsph:#x02222
1354
+ angst:#x0212B
1355
+ ap:#x02248
1356
+ apacir:#x02A6F
1357
+ awconint:#x02233
1358
+ awint:#x02A11
1359
+ becaus:#x02235
1360
+ bernou:#x0212C
1361
+ bne:#x0003D
1362
+ bnequiv:#x02261
1363
+ bnot:#x02310
1364
+ bNot:#x02AED
1365
+ bottom:#x022A5
1366
+ cap:#x02229
1367
+ Cconint:#x02230
1368
+ cirfnint:#x02A10
1369
+ compfn:#x02218
1370
+ cong:#x02245
1371
+ conint:#x0222E
1372
+ Conint:#x0222F
1373
+ ctdot:#x022EF
1374
+ cup:#x0222A
1375
+ cwconint:#x02232
1376
+ cwint:#x02231
1377
+ cylcty:#x0232D
1378
+ disin:#x022F2
1379
+ Dot:#x000A8
1380
+ DotDot:#x020DC
1381
+ dsol:#x029F6
1382
+ dtdot:#x022F1
1383
+ dwangle:#x029A6
1384
+ epar:#x022D5
1385
+ eparsl:#x029E3
1386
+ equiv:#x02261
1387
+ eqvparsl:#x029E5
1388
+ exist:#x02203
1389
+ fnof:#x00192
1390
+ forall:#x02200
1391
+ fpartint:#x02A0D
1392
+ ge:#x02265
1393
+ hamilt:#x0210B
1394
+ iff:#x021D4
1395
+ iinfin:#x029DC
1396
+ imped:#x1D543
1397
+ infin:#x0221E
1398
+ int:#x0222B
1399
+ Int:#x0222C
1400
+ intlarhk:#x02A17
1401
+ isin:#x02208
1402
+ isindot:#x022F5
1403
+ isinE:#x022F9
1404
+ isins:#x022F4
1405
+ isinsv:#x022F3
1406
+ isinv:#x02208
1407
+ lagran:#x02112
1408
+ lang:#x02329
1409
+ Lang:#x0300A
1410
+ lArr:#x021D0
1411
+ lbbrk:#x03014
1412
+ le:#x02264
1413
+ loang:#x0F558
1414
+ lobrk:#x0301A
1415
+ lopar:#x03018
1416
+ lowast:#x02217
1417
+ minus:#x02212
1418
+ mnplus:#x02213
1419
+ nabla:#x02207
1420
+ ne:#x02260
1421
+ nedot:#x02260
1422
+ nhpar:#x02AF2
1423
+ ni:#x0220B
1424
+ nis:#x022FC
1425
+ nisd:#x022FA
1426
+ niv:#x0220B
1427
+ Not:#x02AEC
1428
+ notin:#x02209
1429
+ notindot:#x022F6
1430
+ notinva:#x02209
1431
+ notinvb:#x022F7
1432
+ notinvc:#x022F6
1433
+ notni:#x0220C
1434
+ notniva:#x0220C
1435
+ notnivb:#x022FE
1436
+ notnivc:#x022FD
1437
+ nparsl:#x02225
1438
+ npart:#x02202
1439
+ npolint:#x02A14
1440
+ nvinfin:#x029DE
1441
+ olcross:#x029BB
1442
+ or:#x02228
1443
+ Or:#x02A54
1444
+ ord:#x02A5D
1445
+ order:#x02134
1446
+ oror:#x02A56
1447
+ orslope:#x02A57
1448
+ orv:#x02A5B
1449
+ par:#x02225
1450
+ parsl:#x02225
1451
+ part:#x02202
1452
+ permil:#x02030
1453
+ perp:#x022A5
1454
+ pertenk:#x02031
1455
+ phmmat:#x02133
1456
+ pointint:#x02A15
1457
+ prime:#x02032
1458
+ Prime:#x02033
1459
+ profalar:#x0232E
1460
+ profline:#x02312
1461
+ profsurf:#x02313
1462
+ prop:#x0221D
1463
+ qint:#x02A0C
1464
+ qprime:#x02057
1465
+ quatint:#x02A16
1466
+ radic:#x0221A
1467
+ rang:#x0232A
1468
+ Rang:#x0300B
1469
+ rArr:#x021D2
1470
+ rbbrk:#x03015
1471
+ roang:#x0F559
1472
+ robrk:#x0301B
1473
+ ropar:#x03019
1474
+ rppolint:#x02A12
1475
+ scpolint:#x02A13
1476
+ sim:#x0223C
1477
+ simdot:#x02A6A
1478
+ sime:#x02243
1479
+ smeparsl:#x029E4
1480
+ square:#x025A1
1481
+ squarf:#x025AA
1482
+ sub:#x02282
1483
+ sube:#x02286
1484
+ sup:#x02283
1485
+ supe:#x02287
1486
+ tdot:#x020DB
1487
+ there4:#x02234
1488
+ tint:#x0222D
1489
+ top:#x022A4
1490
+ topbot:#x02336
1491
+ topcir:#x02AF1
1492
+ tprime:#x02034
1493
+ utdot:#x022F0
1494
+ uwangle:#x029A7
1495
+ vangrt:#x022BE
1496
+ veeeq:#x0225A
1497
+ Verbar:#x02016
1498
+ wedgeq:#x02259
1499
+ xnis:#x022FB