-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsubtitles.js
More file actions
3145 lines (3145 loc) · 94.6 KB
/
Copy pathsubtitles.js
File metadata and controls
3145 lines (3145 loc) · 94.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
var st = new Array();
st[0]="C0 controls";
st[1]="ASCII punctuation and symbols";
st[2]="ASCII math operator";
st[3]="ASCII punctuation";
st[4]="ASCII digits";
st[5]="ASCII punctuation";
st[6]="ASCII mathematical operators";
st[7]="ASCII punctuation";
st[8]="Uppercase Latin alphabet";
st[9]="ASCII punctuation and symbols";
st[10]="Lowercase Latin alphabet";
st[11]="ASCII punctuation and symbols";
st[12]="Control character";
st[13]="C1 controls";
st[14]="Latin-1 punctuation and symbols";
st[15]="Vulgar fractions";
st[16]="Punctuation";
st[17]="Uppercase letters";
st[18]="Mathematical operator";
st[19]="Uppercase letters";
st[20]="Lowercase letters";
st[21]="Mathematical operator";
st[22]="Lowercase letters";
st[23]="European Latin";
st[24]="Deprecated letter";
st[25]="European Latin";
st[26]="Non-European and historic Latin";
st[27]="African letters for clicks";
st[28]="Latin digraphs matching Serbian Cyrillic letters";
st[29]="Pinyin diacritic-vowel combinations";
st[30]="Phonetic and historic letters";
st[31]="Additions for Slovenian";
st[32]="Additions for Romanian";
st[33]="Miscellaneous additions";
st[34]="Additions for Livonian";
st[35]="Additions for Sinology";
st[36]="Miscellaneous addition";
st[37]="Additions for Africanist linguistics";
st[38]="Additions for Sencoten";
st[39]="Additions for Africanist linguistics";
st[40]="Miscellaneous additions";
st[41]="IPA extensions";
st[42]="Sinological extension";
st[43]="IPA extensions";
st[44]="Sinological extension";
st[45]="IPA extensions";
st[46]="IPA characters for disordered speech";
st[47]="Sinological extensions";
st[48]="Latin superscript modifier letters";
st[49]="Miscellaneous phonetic modifiers";
st[50]="Spacing clones of diacritics";
st[51]="Additions based on 1989 IPA";
st[52]="Tone letters";
st[53]="Extended Bopomofo tone marks";
st[54]="IPA modifiers";
st[55]="Other modifier letter";
st[56]="UPA modifiers";
st[57]="Ordinary diacritics";
st[58]="Overstruck diacritics";
st[59]="Miscellaneous additions";
st[60]="Vietnamese tone marks";
st[61]="Additions for Greek";
st[62]="Additions for IPA";
st[63]="IPA diacritics for disordered speech";
st[64]="Miscellaneous addition";
st[65]="Additions for the Uralic Phonetic Alphabet";
st[66]="Miscellaneous additions";
st[67]="Double diacritics";
st[68]="Medieval superscript letter diacritics";
st[69]="Archaic letters";
st[70]="Numeral signs";
st[71]="Archaic letters";
st[72]="Iota subscript";
st[73]="Lowercase of editorial symbols";
st[74]="Punctuation";
st[75]="Additional letter";
st[76]="Spacing accent marks";
st[77]="Letter";
st[78]="Punctuation";
st[79]="Letters";
st[80]="Variant letterforms";
st[81]="Archaic letters";
st[82]="Coptic letters derived from Demotic";
st[83]="Variant letterforms";
st[84]="Additional letter";
st[85]="Variant letterforms and symbols";
st[86]="Additional archaic letters for Bactrian";
st[87]="Variant letterform";
st[88]="Archaic letters";
st[89]="Symbol";
st[90]="Editorial symbols";
st[91]="Cyrillic extensions";
st[92]="Basic Russian alphabet";
st[93]="Cyrillic extensions";
st[94]="Historic letters";
st[95]="Historic digraphs";
st[96]="Historic letters";
st[97]="Historic miscellaneous";
st[98]="Extended Cyrillic";
st[99]="Additions for Nivkh";
st[100]="Komi letters";
st[101]="Khanty letters";
st[102]="Chukchi letters";
st[103]="Mordvin letters";
st[104]="Kurdish letters";
st[105]="Aleut letters";
st[106]="Chuvash letters";
st[107]="Abkhaz letters";
st[108]="Azerbaijani letters";
st[109]="Orok letters";
st[110]="Komi letters";
st[111]="Khanty letters";
st[112]="Uppercase letters";
st[113]="Modifier letters";
st[114]="Lowercase letters";
st[115]="Punctuation";
st[116]="Religious symbols";
st[117]="Currency symbol";
st[118]="Cantillation marks";
st[119]="Points and punctuation";
st[120]="Puncta extraordinaria";
st[121]="Points and punctuation";
st[122]="Based on ISO 8859-8";
st[123]="Sign";
st[124]="Yiddish digraphs";
st[125]="Additional punctuation";
st[126]="Subtending marks";
st[127]="Supertending mark";
st[128]="Radix symbols";
st[129]="Letterlike symbol";
st[130]="Punctuation";
st[131]="Currency symbol";
st[132]="Punctuation";
st[133]="Poetic marks";
st[134]="Honorifics";
st[135]="Quranic annotation sign";
st[136]="Extended Arabic mark";
st[137]="Quranic annotation signs";
st[138]="Punctuation";
st[139]="Format character";
st[140]="Punctuation";
st[141]="Addition for Kashmiri";
st[142]="Based on ISO 8859-6";
st[143]="Additions for early Persian and Azerbaijani";
st[144]="Based on ISO 8859-6";
st[145]="Tashkil from ISO 8859-6";
st[146]="Combining maddah and hamza";
st[147]="Other combining marks";
st[148]="Arabic-Indic digits";
st[149]="Punctuation";
st[150]="Archaic letters";
st[151]="Tashkil";
st[152]="Extended Arabic letters";
st[153]="Deprecated letter";
st[154]="High hamza";
st[155]="Digraphic letters for Kazakh";
st[156]="Extended Arabic letters";
st[157]="Punctuation";
st[158]="Extended Arabic letter";
st[159]="Quranic annotation signs";
st[160]="Extended Arabic letters for Parkari";
st[161]="Eastern Arabic-Indic digits";
st[162]="Extended Arabic letters";
st[163]="Signs for Sindhi";
st[164]="Extended Arabic letter for Parkari";
st[165]="Syriac punctuation and signs";
st[166]="Syriac format control character";
st[167]="Syriac letters";
st[168]="Persian letters";
st[169]="Syriac points (vowels)";
st[170]="Syriac marks";
st[171]="Sogdian letters";
st[172]="Extended Arabic letters";
st[173]="Additions for Khowar";
st[174]="Addition for Torwali";
st[175]="Additions for Burushaski";
st[176]="Additions for early Persian";
st[177]="Basic consonants";
st[178]="Extensions for Arabic";
st[179]="Vowels";
st[180]="Consonant for Addu dialect";
st[181]="Digits";
st[182]="Letters";
st[183]="Archaic letters";
st[184]="Tone marks";
st[185]="Other diacritics";
st[186]="Tonal apostrophes";
st[187]="Symbol";
st[188]="Punctuation";
st[189]="Letter extender";
st[190]="Abbreviation sign";
st[191]="Currency symbols";
st[192]="Letters";
st[193]="Consonant modifiers";
st[194]="Vowel signs";
st[195]="Variant reading sign";
st[196]="Punctuation";
st[197]="Letters";
st[198]="Diacritics";
st[199]="Punctuation";
st[200]="Syriac letters";
st[201]="Additions for Quranic orthographies";
st[202]="Additions for Bosnian orthographies";
st[203]="Additions for Pegon orthographies";
st[204]="Abbreviation mark";
st[205]="Addition for Eastern Punjabi orthographies";
st[206]="Supertending currency symbols";
st[207]="Vowel sign for Pegon";
st[208]="Additions for Quranic orthographies";
st[209]="Arabic letters for African languages";
st[210]="Dependent consonants for Rohingya";
st[211]="Arabic letters for European and Central Asian languages";
st[212]="Arabic letter for Berber";
st[213]="Arabic letters for Arwi";
st[214]="Early Arabic letter";
st[215]="Arabic letters for Bravanese";
st[216]="Arabic letters for Warsh orthography";
st[217]="Arabic letters for Hindko";
st[218]="Arabic letters for Hausa, Wolof and other African orthographies";
st[219]="Arabic letter for Punjabi";
st[220]="Arabic letter for Balti";
st[221]="Additions for Quranic orthographies";
st[222]="Quranic annotation signs";
st[223]="Extended vowel sign for Arwi";
st[224]="Extended vowel signs for Rohingya";
st[225]="Tone marks for Rohingya";
st[226]="Quranic annotation signs";
st[227]="Extended vowel signs for African languages";
st[228]="Extended vowel signs";
st[229]="Various signs";
st[230]="Independent vowels";
st[231]="Consonants";
st[232]="Dependent vowel signs";
st[233]="Various signs";
st[234]="Dependent vowel signs";
st[235]="Virama";
st[236]="Dependent vowel signs";
st[237]="Sign";
st[238]="Vedic tone marks";
st[239]="Accent marks";
st[240]="Dependent vowel sign";
st[241]="Dependent vowel signs for Kashmiri";
st[242]="Additional consonants";
st[243]="Additional vowels for Sanskrit";
st[244]="Generic punctuation for scripts of India";
st[245]="Digits";
st[246]="Additional signs";
st[247]="Independent vowel for Marathi";
st[248]="Independent vowels";
st[249]="Independent vowels for Kashmiri";
st[250]="Additional consonants";
st[251]="Sindhi implosives";
st[252]="Glottal stop";
st[253]="Sindhi implosives";
st[254]="Various signs";
st[255]="Independent vowels";
st[256]="Consonants";
st[257]="Various signs";
st[258]="Dependent vowel signs";
st[259]="Two-part dependent vowel signs";
st[260]="Virama";
st[261]="Additional consonant";
st[262]="Sign";
st[263]="Additional consonants";
st[264]="Additional vowels for Sanskrit";
st[265]="Reserved";
st[266]="Digits";
st[267]="Additions for Assamese";
st[268]="Currency symbols";
st[269]="Historic symbols for fractional values";
st[270]="Sign";
st[271]="Historic currency sign";
st[272]="Signs";
st[273]="Various signs";
st[274]="Independent vowels";
st[275]="Consonants";
st[276]="Various signs";
st[277]="Dependent vowel signs";
st[278]="Virama";
st[279]="Sign";
st[280]="Additional consonants";
st[281]="Reserved";
st[282]="Digits";
st[283]="Signs";
st[284]="Vowel bases";
st[285]="Signs";
st[286]="Various signs";
st[287]="Independent vowels";
st[288]="Consonants";
st[289]="Various signs";
st[290]="Dependent vowel signs";
st[291]="Virama";
st[292]="Various signs";
st[293]="Additional vowels for Sanskrit";
st[294]="Reserved";
st[295]="Digits";
st[296]="Abbreviation sign";
st[297]="Currency symbol";
st[298]="Additional consonant";
st[299]="Transliteration signs";
st[300]="Various signs";
st[301]="Independent vowels";
st[302]="Consonants";
st[303]="Various signs";
st[304]="Dependent vowel signs";
st[305]="Two-part dependent vowel signs";
st[306]="Virama";
st[307]="Various signs";
st[308]="Additional consonants";
st[309]="Additional vowels for Sanskrit";
st[310]="Dependent vowels";
st[311]="Reserved";
st[312]="Digits";
st[313]="Sign";
st[314]="Additional consonant";
st[315]="Fraction signs";
st[316]="Various signs";
st[317]="Independent vowels";
st[318]="Consonants";
st[319]="Dependent vowel signs";
st[320]="Two-part dependent vowel signs";
st[321]="Virama";
st[322]="Various signs";
st[323]="Reserved";
st[324]="Digits";
st[325]="Tamil numerics";
st[326]="Tamil calendrical symbols";
st[327]="Tamil clerical symbols";
st[328]="Currency symbol";
st[329]="Tamil clerical symbol";
st[330]="Various signs";
st[331]="Independent vowels";
st[332]="Consonants";
st[333]="Sign";
st[334]="Addition for Sanskrit";
st[335]="Dependent vowel signs";
st[336]="Virama";
st[337]="Various signs";
st[338]="Historic phonetic variants";
st[339]="Ligature";
st[340]="Consonant";
st[341]="Additional vowels for Sanskrit";
st[342]="Dependent vowels";
st[343]="Reserved";
st[344]="Digits";
st[345]="Sign";
st[346]="Telugu fractions and weights";
st[347]="Various signs";
st[348]="Independent vowels";
st[349]="Consonants";
st[350]="Various signs";
st[351]="Dependent vowel signs";
st[352]="Virama";
st[353]="Various signs";
st[354]="Ligature";
st[355]="Additional consonants";
st[356]="Additional vowels for Sanskrit";
st[357]="Dependent vowels";
st[358]="Reserved";
st[359]="Digits";
st[360]="Signs used in Sanskrit";
st[361]="Various signs";
st[362]="Independent vowels";
st[363]="Consonants";
st[364]="Variant shape viramas";
st[365]="Addition for Sanskrit";
st[366]="Dependent vowel signs";
st[367]="Two-part dependent vowel signs";
st[368]="Virama";
st[369]="Dot reph";
st[370]="Measurement symbol";
st[371]="Additional historic chillu letters";
st[372]="Dependent vowel sign";
st[373]="Minor fractions";
st[374]="Additional historic vowel";
st[375]="Additional vowels for Sanskrit";
st[376]="Dependent vowels";
st[377]="Reserved";
st[378]="Digits";
st[379]="Malayalam numerics";
st[380]="Fractions";
st[381]="Date mark";
st[382]="Chillu letters";
st[383]="Various signs";
st[384]="Independent vowels";
st[385]="Consonants";
st[386]="Sign";
st[387]="Dependent vowel signs";
st[388]="Two-part dependent vowel signs";
st[389]="Dependent vowel sign";
st[390]="Astrological digits";
st[391]="Additional dependent vowel signs";
st[392]="Punctuation";
st[393]="Consonants";
st[394]="Sign";
st[395]="Vowels";
st[396]="Currency symbol";
st[397]="Vowels";
st[398]="Vowel length sign";
st[399]="Repetition mark";
st[400]="Vowel";
st[401]="Tone marks";
st[402]="Signs";
st[403]="Digits";
st[404]="Signs";
st[405]="Consonants";
st[406]="Sign";
st[407]="Vowels";
st[408]="Virama";
st[409]="Vowel";
st[410]="Signs";
st[411]="Vowels";
st[412]="Repetition mark";
st[413]="Tone marks";
st[414]="Signs";
st[415]="Digits";
st[416]="Digraphs";
st[417]="Consonants for Khmu";
st[418]="Syllable";
st[419]="Head marks";
st[420]="Marks and signs";
st[421]="Astrological signs";
st[422]="Digits";
st[423]="Digits minus half";
st[424]="Marks and signs";
st[425]="Paired punctuation";
st[426]="Astrological signs";
st[427]="Consonants";
st[428]="Extensions for Balti";
st[429]="Dependent vowel signs";
st[430]="Vocalic modification";
st[431]="Dependent vowel signs";
st[432]="Marks and signs";
st[433]="Transliteration head letters";
st[434]="Transliteration subjoined signs";
st[435]="Subjoined consonants";
st[436]="Fixed-form subjoined consonants";
st[437]="Signs";
st[438]="Cantillation signs";
st[439]="Symbols";
st[440]="Astrological signs";
st[441]="Marks";
st[442]="Head marks";
st[443]="Religious symbols";
st[444]="Annotation marks";
st[445]="Consonants";
st[446]="Independent vowels";
st[447]="Dependent vowel signs";
st[448]="Various signs";
st[449]="Virama and killer";
st[450]="Dependent consonant signs";
st[451]="Consonant";
st[452]="Digits";
st[453]="Punctuation";
st[454]="Various signs";
st[455]="Pali and Sanskrit extensions";
st[456]="Extensions for Mon";
st[457]="Extensions for S'gaw Karen";
st[458]="Extensions for Western Pwo Karen";
st[459]="Extensions for Eastern Pwo Karen";
st[460]="Extension for Geba Karen";
st[461]="Extensions for Kayah";
st[462]="Extensions for Shan";
st[463]="Extensions for Rumai Palaung";
st[464]="Shan digits";
st[465]="Extensions for Khamti Shan";
st[466]="Extensions for Aiton and Phake";
st[467]="Shan symbols";
st[468]="Capital letters (Khutsuri)";
st[469]="Additional letter";
st[470]="Additional letter for Ossetian";
st[471]="Mkhedruli";
st[472]="Archaic letters";
st[473]="Additional letters for Mingrelian and Svan";
st[474]="Additional letters";
st[475]="Punctuation";
st[476]="Modifier letter";
st[477]="Additional letters for Ossetian and Abkhaz";
st[478]="Initial consonants";
st[479]="Old initial consonants";
st[480]="Medial vowels";
st[481]="Old medial vowels";
st[482]="Final consonants";
st[483]="Old final consonants";
st[484]="Syllables";
st[485]="Combining marks";
st[486]="Punctuation";
st[487]="Digits";
st[488]="Numbers";
st[489]="Syllables for Gurage";
st[490]="Tonal marks";
st[491]="Uppercase syllables";
st[492]="Archaic uppercase syllable";
st[493]="Lowercase syllables";
st[494]="Archaic lowercase syllable";
st[495]="Punctuation";
st[496]="Syllables";
st[497]="Syllables for Carrier";
st[498]="Symbol";
st[499]="Punctuation";
st[500]="Syllables";
st[501]="Space";
st[502]="Traditional letters";
st[503]="Forfeda (supplementary letters)";
st[504]="Punctuation";
st[505]="Letters";
st[506]="Punctuation";
st[507]="Golden number runes";
st[508]="Tolkienian extensions";
st[509]="Cryptogrammic letters";
st[510]="Independent vowels";
st[511]="Consonants";
st[512]="Dependent vowel signs";
st[513]="Viramas";
st[514]="Archaic letter";
st[515]="Independent vowels";
st[516]="Consonants";
st[517]="Dependent vowel signs";
st[518]="Virama";
st[519]="Generic punctuation for Philippine scripts";
st[520]="Independent vowels";
st[521]="Consonants";
st[522]="Dependent vowel signs";
st[523]="Independent vowels";
st[524]="Consonants";
st[525]="Dependent vowel signs";
st[526]="Consonants";
st[527]="Deprecated independent vowels for transliteration";
st[528]="Independent vowels";
st[529]="Inherent vowels";
st[530]="Dependent vowel signs";
st[531]="Two-part dependent vowel signs";
st[532]="Dependent vowel signs";
st[533]="Two-part dependent vowel signs";
st[534]="Various signs";
st[535]="Consonant shifters";
st[536]="Various signs";
st[537]="Lunar date sign";
st[538]="Various signs";
st[539]="Currency symbol";
st[540]="Various signs";
st[541]="Digits";
st[542]="Numeric symbols for divination lore";
st[543]="Punctuation";
st[544]="Format controls";
st[545]="Digits";
st[546]="Basic letters";
st[547]="Todo letters";
st[548]="Sibe letters";
st[549]="Manchu letters";
st[550]="Buryat letter";
st[551]="Extensions for Sanskrit and Tibetan";
st[552]="Syllables for Moose Cree";
st[553]="Syllables for Cree and Ojibway";
st[554]="Finals for Cree and Ojibway";
st[555]="Syllables for Beaver Dene, Hare Dene, and Chipewyan Dene";
st[556]="Finals for Dene and Carrier";
st[557]="Consonants";
st[558]="Dependent vowel signs";
st[559]="Subjoined consonants";
st[560]="Final consonants";
st[561]="Various signs";
st[562]="Digits";
st[563]="Consonants";
st[564]="Vowels";
st[565]="Tone letters";
st[566]="Consonants";
st[567]="Vowels";
st[568]="Final consonants";
st[569]="Tone marks";
st[570]="Digits";
st[571]="Various signs";
st[572]="Lunar date symbols";
st[573]="Consonants";
st[574]="Vowels";
st[575]="Various signs";
st[576]="Consonants";
st[577]="Independent vowels";
st[578]="Consonants";
st[579]="Consonant signs";
st[580]="Sign";
st[581]="Dependent vowel signs";
st[582]="Tone marks";
st[583]="Other marks";
st[584]="Cryptogrammic mark";
st[585]="Hora digits";
st[586]="Tham digits";
st[587]="Logographs";
st[588]="Punctuation";
st[589]="Sign";
st[590]="Punctuation";
st[591]="Used in German dialectology";
st[592]="Marks surrounding other diacritics or letters";
st[593]="Used in Scots dialectology";
st[594]="Marks next to or surrounding other diacritics";
st[595]="Phonetic sign";
st[596]="Used in extended IPA";
st[597]="Used in Middle English Ormulum";
st[598]="Compound tone diacritics";
st[599]="J.P. Harrington diacritics";
st[600]="IPA positional variants";
st[601]="Historical IPA";
st[602]="Extended IPA positional variants";
st[603]="Various signs";
st[604]="Independent vowels";
st[605]="Consonants";
st[606]="Sign";
st[607]="Dependent vowel signs";
st[608]="Sign";
st[609]="Additional consonants";
st[610]="Punctuation";
st[611]="Digits";
st[612]="Punctuation";
st[613]="Musical symbols for notes";
st[614]="Diacritical marks for musical symbols";
st[615]="Musical symbols";
st[616]="Punctuation";
st[617]="Various signs";
st[618]="Vowels";
st[619]="Consonants";
st[620]="Consonant signs";
st[621]="Vowel signs";
st[622]="Viramas";
st[623]="Consonant signs";
st[624]="Additional consonants";
st[625]="Digits";
st[626]="Sign";
st[627]="Historic letters";
st[628]="Letters";
st[629]="Sign";
st[630]="Dependent vowel signs";
st[631]="Dependent consonant signs";
st[632]="Signs";
st[633]="Punctuation";
st[634]="Consonants";
st[635]="Subjoined consonants";
st[636]="Dependent vowels";
st[637]="Consonant signs";
st[638]="Various signs";
st[639]="Punctuation";
st[640]="Digits";
st[641]="Additional letters";
st[642]="Digits";
st[643]="Letters";
st[644]="Modifier letters";
st[645]="Punctuation";
st[646]="Historic letter variants";
st[647]="Khanty letters";
st[648]="Capital letters (Mtavruli)";
st[649]="Archaic letters";
st[650]="Additional letters for Mingrelian and Svan";
st[651]="Additional letters";
st[652]="Additional letters for Ossetian and Abkhaz";
st[653]="Punctuation";
st[654]="Tone marks for the Samaveda";
st[655]="Breathing mark for the Samaveda";
st[656]="Signs for Yajurvedic";
st[657]="Tone marks for the Satapathabrahmana";
st[658]="Tone mark for the Rigveda";
st[659]="Tone mark for the Atharvaveda";
st[660]="Diacritics for visarga";
st[661]="Nasalization signs";
st[662]="Ardhavisarga";
st[663]="Sign for Yajurvedic";
st[664]="Signs";
st[665]="Signs for Jaiminiya Sama Veda";
st[666]="Nasalization sign";
st[667]="Latin letters";
st[668]="Greek letters";
st[669]="Cyrillic letter";
st[670]="Latin superscript modifier letters";
st[671]="Greek superscript modifier letters";
st[672]="Latin subscript modifier letters";
st[673]="Greek subscript modifier letters";
st[674]="Latin letter for American lexicography";
st[675]="Latin letters with middle tilde";
st[676]="Letters for Caucasian linguistics";
st[677]="Other phonetic symbols";
st[678]="Latin letters with palatal hook";
st[679]="Latin letters with retroflex hook";
st[680]="Modifier letters";
st[681]="Used for Ancient Greek";
st[682]="Miscellaneous marks";
st[683]="Contour tone marks";
st[684]="Miscellaneous mark";
st[685]="Contour tone marks";
st[686]="Double diacritic";
st[687]="Medievalist additions";
st[688]="Medieval superscript letter diacritics";
st[689]="Superscript letter diacritics for German dialectology";
st[690]="Diacritic for American lexicography";
st[691]="Typicon marks";
st[692]="Miscellaneous marks";
st[693]="Double diacritic mark for UPA";
st[694]="Miscellaneous mark";
st[695]="Additional marks for UPA";
st[696]="Latin general use extensions";
st[697]="Medievalist additions";
st[698]="Addition for German typography";
st[699]="Medievalist addition";
st[700]="Latin extensions for Vietnamese";
st[701]="Latin general extensions";
st[702]="Medievalist additions";
st[703]="Precomposed polytonic Greek";
st[704]="Spaces";
st[705]="Format characters";
st[706]="Dashes";
st[707]="General punctuation";
st[708]="Quotation marks and apostrophe";
st[709]="General punctuation";
st[710]="Separators";
st[711]="Format characters";
st[712]="Space";
st[713]="General punctuation";
st[714]="Quotation marks";
st[715]="General punctuation";
st[716]="Double punctuation for vertical text";
st[717]="General punctuation";
st[718]="Brackets";
st[719]="Double punctuation for vertical text";
st[720]="General punctuation";
st[721]="Archaic punctuation";
st[722]="General punctuation";
st[723]="Archaic punctuation";
st[724]="Space";
st[725]="Format character";
st[726]="Invisible operators";
st[727]="Format characters";
st[728]="Deprecated";
st[729]="Superscripts";
st[730]="Subscripts";
st[731]="Subscripts for UPA";
st[732]="Currency symbols";
st[733]="Combining diacritical marks for symbols";
st[734]="Enclosing diacritics";
st[735]="Additional diacritical mark for symbols";
st[736]="Additional enclosing diacritics";
st[737]="Additional diacritical marks for symbols";
st[738]="Letterlike symbols";
st[739]="Hebrew letterlike math symbols";
st[740]="Additional letterlike symbols";
st[741]="Double-struck large operator";
st[742]="Additional letterlike symbols";
st[743]="Double-struck italic math symbols";
st[744]="Additional letterlike symbols";
st[745]="Lowercase Claudian letter";
st[746]="Biblical editorial symbol";
st[747]="Fractions";
st[748]="Roman numerals";
st[749]="Archaic Roman numerals";
st[750]="Lowercase Claudian letter";
st[751]="Archaic Roman numerals";
st[752]="Fraction";
st[753]="Turned digits";
st[754]="Simple arrows";
st[755]="Arrows with modifications";
st[756]="Arrows with bent tips";
st[757]="Keyboard symbols and circle arrows";
st[758]="Harpoons";
st[759]="Paired arrows and harpoons";
st[760]="Double arrows";
st[761]="Miscellaneous arrows and keyboard symbols";
st[762]="White arrows and keyboard symbols";
st[763]="Miscellaneous arrows";
st[764]="Miscellaneous mathematical symbols";
st[765]="Set membership";
st[766]="Miscellaneous mathematical symbol";
st[767]="N-ary operators";
st[768]="Operators";
st[769]="Miscellaneous mathematical symbol";
st[770]="Angles";
st[771]="Relations";
st[772]="Logical and set operators";
st[773]="Integrals";
st[774]="Miscellaneous mathematical symbols";
st[775]="Relations";
st[776]="Operator";
st[777]="Relation";
st[778]="Operator";
st[779]="Relations";
st[780]="Miscellaneous mathematical symbol";
st[781]="Operator";
st[782]="Relations";
st[783]="Operators";
st[784]="Relations";
st[785]="Operators";
st[786]="Miscellaneous mathematical symbols";
st[787]="Relations";
st[788]="Operators";
st[789]="Miscellaneous mathematical symbols";
st[790]="N-ary operators";
st[791]="Operators";
st[792]="Relation";
st[793]="Operators";
st[794]="Relation";
st[795]="Logical operators";
st[796]="Relations";
st[797]="Operators";
st[798]="Relations";
st[799]="Matrix ellipses";
st[800]="Relations";
st[801]="Miscellaneous technical";
st[802]="Ceilings and floors";
st[803]="Crops";
st[804]="Miscellaneous technical";
st[805]="User interface symbols";
st[806]="Quine corners";
st[807]="Integral pieces";
st[808]="Frown and smile";
st[809]="Keyboard symbols";
st[810]="Deprecated angle brackets";
st[811]="Keyboard symbol";
st[812]="Chemistry symbol";
st[813]="Drafting symbols";
st[814]="APL";
st[815]="Graphics for control codes";
st[816]="Miscellaneous technical";
st[817]="Graphics for control codes";
st[818]="Keyboard symbols from ISO 9995-7";
st[819]="Electrotechnical symbols from IR 181";
st[820]="APL";
st[821]="Keyboard symbols from ISO 9995-7";
st[822]="Bracket pieces";
st[823]="Special character extensions";
st[824]="Bracket pieces";
st[825]="Summation sign parts";
st[826]="Horizontal brackets";
st[827]="Terminal graphic characters";
st[828]="Scan lines for terminal graphics";
st[829]="Dentistry notation symbols";
st[830]="Miscellaneous technical";
st[831]="Keyboard and UI symbols";
st[832]="Special character extension";
st[833]="Metrical symbols";
st[834]="Electrotechnical symbols";
st[835]="Horizontal brackets";
st[836]="Miscellaneous technical";
st[837]="Chemistry symbol";
st[838]="Miscellaneous technical";
st[839]="User interface symbols";
st[840]="Power symbols from ISO 7000:2012";
st[841]="Power symbol from IEEE 1621-2004";
st[842]="Miscellaneous symbol";
st[843]="Graphic pictures for control codes";
st[844]="Specific symbols for space";
st[845]="Graphic picture for control code";
st[846]="Keyboard symbol";
st[847]="Specific symbol for control code";
st[848]="Legacy computer symbols for delete";
st[849]="OCR-A";
st[850]="MICR";
st[851]="OCR";
st[852]="Circled numbers";
st[853]="Parenthesized numbers";
st[854]="Numbers period";
st[855]="Parenthesized Latin letters";
st[856]="Circled Latin letters";
st[857]="Additional circled number";
st[858]="White on black circled numbers";
st[859]="Double circled numbers";
st[860]="Additional white on black circled number";
st[861]="Light and heavy solid lines";
st[862]="Light and heavy dashed lines";
st[863]="Light and heavy line box components";
st[864]="Light and heavy dashed lines";
st[865]="Double lines";
st[866]="Light and double line box components";
st[867]="Character cell arcs";
st[868]="Character cell diagonals";
st[869]="Light and heavy half lines";
st[870]="Mixed light and heavy lines";
st[871]="Block elements";
st[872]="Shade characters";
st[873]="Block elements";
st[874]="Terminal graphic characters";
st[875]="Geometric shapes";
st[876]="Control code graphics";
st[877]="Geometric shapes";
st[878]="Weather and astrological symbols";
st[879]="Miscellaneous symbols";
st[880]="Weather symbol";
st[881]="Miscellaneous symbol";
st[882]="Japanese chess symbols";
st[883]="Miscellaneous symbols";
st[884]="Pointing hand symbols";
st[885]="Warning signs";
st[886]="Medical and healing symbols";
st[887]="Religious and political symbols";
st[888]="Yijing trigram symbols";
st[889]="Miscellaneous symbol";
st[890]="Emoticons";
st[891]="Miscellaneous symbol";
st[892]="Astrological symbols";
st[893]="Zodiacal symbols";
st[894]="Chess symbols";
st[895]="Playing card symbols";
st[896]="Miscellaneous symbol";
st[897]="Musical symbols";
st[898]="Syriac cross symbols";
st[899]="Recycling symbols";
st[900]="Miscellaneous symbols";
st[901]="Dice";
st[902]="Go markers";
st[903]="Yijing monogram and digram symbols";
st[904]="Dictionary and map symbols";
st[905]="Miscellaneous symbols";
st[906]="Symbols for closed captioning from ARIB STD B24";
st[907]="Miscellaneous symbols";
st[908]="Gender symbols";
st[909]="Circles";
st[910]="Genealogical symbols";
st[911]="Gender symbol";
st[912]="Astrological signs";
st[913]="Astrological aspects";
st[914]="Sport symbols";
st[915]="Miscellaneous symbol from ARIB STD B24";
st[916]="Symbols for draughts and checkers";
st[917]="Weather symbols from ARIB STD B24";
st[918]="Game symbols from ARIB STD B24";
st[919]="Traffic signs from ARIB STD B24";
st[920]="Zodiacal symbol";
st[921]="Traffic signs from ARIB STD B24";
st[922]="Astronomical symbol";
st[923]="Map symbol from ARIB STD B24";
st[924]="Pentagram symbols";
st[925]="Map symbols from ARIB STD B24";
st[926]="Miscellaneous";
st[927]="Crosses";
st[928]="Stars and asterisks";
st[929]="Fleurons";
st[930]="Stars, asterisks and snowflakes";
st[931]="Miscellaneous";
st[932]="Punctuation mark ornaments";
st[933]="Fleurons";
st[934]="Ornamental brackets";
st[935]="Dingbat circled digits";
st[936]="Dingbat arrow";
st[937]="Heavy variants of arithmetic symbols";
st[938]="Dingbat arrows";
st[939]="Miscellaneous";
st[940]="Dingbat arrows";
st[941]="Miscellaneous";
st[942]="Miscellaneous symbols";
st[943]="Paired punctuation";
st[944]="Operator";
st[945]="Miscellaneous symbols";
st[946]="Vertical line operator";
st[947]="Miscellaneous symbol";
st[948]="Division operator";
st[949]="Miscellaneous symbol";
st[950]="Operators";
st[951]="Miscellaneous symbol";
st[952]="Operators";
st[953]="Database theory operators";
st[954]="Tacks and turnstiles";
st[955]="Modal logic operators";
st[956]="Mathematical brackets";
st[957]="Arrows";
st[958]="Long arrows";
st[959]="Braille patterns";
st[960]="Miscellaneous arrows";
st[961]="Arrow tails";
st[962]="Miscellaneous arrows";
st[963]="Crossing arrows for knot theory";
st[964]="Miscellaneous curved arrows";
st[965]="Arrows combined with operators";
st[966]="Double-barbed harpoons";
st[967]="Modified harpoons";
st[968]="Paired harpoons";
st[969]="Miscellaneous arrow";
st[970]="Arrows combined with relations";
st[971]="Fish tails";
st[972]="Miscellaneous mathematical symbols";
st[973]="Brackets";
st[974]="Brackets with ticks";
st[975]="Brackets";
st[976]="Fences";
st[977]="Angles";
st[978]="Empty sets";
st[979]="Circle symbols";
st[980]="Square symbols";
st[981]="Triangle symbols";
st[982]="Bowtie symbols";
st[983]="Fences";
st[984]="Miscellaneous mathematical symbols";
st[985]="Relations";
st[986]="Miscellaneous mathematical symbols";
st[987]="Error bar symbols";
st[988]="Miscellaneous mathematical symbols";
st[989]="Large operators";
st[990]="Specialized plus sign operators";
st[991]="Brackets";
st[992]="Symbols used in game theory";
st[993]="N-ary operators";
st[994]="Summations and integrals";
st[995]="Miscellaneous large operators";
st[996]="Plus and minus sign operators";
st[997]="Multiplication and division sign operators";
st[998]="Miscellaneous mathematical operators";