mathml2latex 0.1.2 → 1.0.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a8a4cc52e1958b4039441bc744d9daf3d804b56c
4
- data.tar.gz: 5592fd32ad1763e889c265bd9bc13c319f9e6ff0
3
+ metadata.gz: 30d52d34b8f4cac8093de73b9de83b03831b308a
4
+ data.tar.gz: a50f6c441a005606f2eb0f993de1ceb68e84272c
5
5
  SHA512:
6
- metadata.gz: ff11e15a1e9fb27f6d5d55f9c7ec5e1bf4beab53b4abff39c7f7ad0fbba6ec453b86e9ae07d7fd70ee1caa46501e7bb34f811356680dd77d29e5ea7395ca4af0
7
- data.tar.gz: 447cb0d7abcf6472c78847ae6774bccc431bdafc76fac76cddf41655ea106cc110cbf940e92797158611868734172b88c780fe81777bb061892ec4b268357cb5
6
+ metadata.gz: a4fb3513fa67a133d7c031ce598b7b05f7b35758358d86e7faa0185b76962fa84db468da5992ea3add61c7bca3717b8bdd8bdf8473ba6fb2585a7e908bca46eb
7
+ data.tar.gz: 741337af3bda509db9092440448c4bd14555a03ad612296bd5fb8dbe7cead071d8a8388f75e7f7cc95b95907b4959deb72ab040d38b834cfabb36a8c1d3ad9fc
data/README.md CHANGED
@@ -19,29 +19,57 @@ require 'mathml2latex'
19
19
 
20
20
  ## Development
21
21
 
22
- A simple docker environment has been provided for spinning up and testing this gem. This requires docker and docker-compose to be installed.
22
+ A simple docker environment has been provided for spinning up and testing this
23
+ gem with multiple versions of Ruby. This requires docker and docker-compose to
24
+ be installed. To run specs, run the following:
25
+
26
+ ```bash
27
+ docker-compose build --pull
28
+ docker-compose run --rm app
29
+ ```
30
+
31
+ This will install the gem in a docker image with all versions of Ruby installed,
32
+ and install all gem dependencies in the Ruby 2.5 set of gems. Then it will run
33
+ [wwtd](https://github.com/grosser/wwtd), which runs all specs across all
34
+ supported versions of Ruby and gem dependencies.
35
+
36
+ The first build will take a long time, however, docker images and gems are
37
+ cached, making additional runs significantly faster.
23
38
 
24
39
  Individual spec runs can be started like so:
40
+
25
41
  ```bash
26
42
  docker-compose run --rm app bash -l -c \
27
- "rvm-exec 2.4 bundle exec rspec"
43
+ "rvm-exec 2.5 bundle exec rspec"
28
44
  ```
29
45
 
30
- You can also run
46
+ You can also pull up an interactive console:
47
+
31
48
  ```bash
32
49
  docker-compose run --rm app bash -l -c \
33
- "rvm-exec 2.4 bundle exec rake console"
50
+ "rvm-exec 2.5 bundle exec rake console"
51
+ ```
52
+
53
+ If you'd like to mount your git checkout within the docker container running
54
+ tests so changes are easier to test, use the override provided:
55
+
56
+ ```bash
57
+ cp docker-compose.override.example.yml docker-compose.override.yml
34
58
  ```
35
- for an interactive prompt that will allow you to experiment.
36
59
 
37
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
60
+ To install this gem onto your local machine, run `bundle exec rake install`.
61
+ To release a new version, update the version number in `version.rb`, and then
62
+ run `bundle exec rake release`, which will create a git tag for the version,
63
+ push git commits and tags, and push the `.gem` file to
64
+ [rubygems.org](https://rubygems.org).
38
65
 
39
66
  ## Contributing
40
67
 
41
68
  Bug reports and pull requests are welcome on GitHub at:
42
69
 
43
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/mathml2latex. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
70
+ https://github.com/instructure/mathml2latex
44
71
 
45
72
  ## License
46
73
 
47
- The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
74
+ The gem is available as open source under the terms of the
75
+ [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ require 'mathml2latex'
5
5
 
6
6
  RSpec::Core::RakeTask.new(:spec)
7
7
 
8
- task :default => :spec
8
+ task default: :spec
9
9
 
10
10
  task :console do
11
11
  def reload!
@@ -19,8 +19,9 @@ module Mathml2latex
19
19
  def replace_with_latex(xml_doc)
20
20
  nodes = xml_doc.xpath('//mm:math', 'mm' => Mathml2latex::MATHML_NAMESPACE)
21
21
  nodes.each do |node|
22
- latex_string = "<latex xmlns='#{Mathml2latex::INSTUCTURE_LATEX_NS}'>#{@service_object.to_latex(node.dup.to_xml)}</latex>"
23
- node.replace(latex_string)
22
+ node.replace(<<~XML)
23
+ <latex xmlns="#{Mathml2latex::INSTUCTURE_LATEX_NS}">#{@service_object.to_latex(node.dup.to_xml)}</latex>
24
+ XML
24
25
  end
25
26
  end
26
27
  end
@@ -6,7 +6,7 @@ module Mathml2latex
6
6
  class MathmlLatexService
7
7
  @xslt = nil
8
8
 
9
- def self.get_service_object
9
+ def self.get_service_object # rubocop:disable Naming/AccessorMethodName
10
10
  setup_xslt
11
11
  new
12
12
  end
@@ -1,8 +1,11 @@
1
1
  # provide regex operations to xslt
2
2
  # regex is not available to xslt 1.0
3
+ #
4
+ # This list is compiled from the following source:
5
+ # - https://github.com/transpect/mml2tex/blob/master/texmap/texmap.xml
3
6
 
4
7
  module Mathml2latex
5
- Symbols = {
8
+ SYMBOLS = {
6
9
  33 => '! ', # 21
7
10
  35 => '\# ', # 23
8
11
  36 => '\$ ', # 24
@@ -599,963 +602,963 @@ module Mathml2latex
599
602
  9898 => '\medcirc ', # 26aa
600
603
  9899 => '\medbullet ', # 26ab
601
604
  9998 => '\pencil ', # 270e
602
- 10003 => '\checkmark ', # 2713
603
- 10007 => '\ballotx ', # 2717
604
- 10016 => '\maltese ', # 2720
605
- 10146 => '\arrowbullet ', # 27a2
606
- 10178 => '\perp ', # 27c2
607
- 10181 => '\Lbag ', # 27c5
608
- 10182 => '\Rbag ', # 27c6
609
- 10192 => '\Diamonddot ', # 27d0
610
- 10204 => '\multimapinv ', # 27dc
611
- 10214 => '\llbracket ', # 27e6
612
- 10215 => '\rrbracket ', # 27e7
613
- 10216 => '\langle ', # 27e8
614
- 10217 => '\rangle ', # 27e9
615
- 10218 => '\lang ', # 27ea
616
- 10219 => '\rang ', # 27eb
617
- 10222 => '\lgroup ', # 27ee
618
- 10223 => '\rgroup ', # 27ef
619
- 10229 => '\longleftarrow ', # 27f5
620
- 10230 => '\longrightarrow ', # 27f6
621
- 10231 => '\longleftrightarrow ', # 27f7
622
- 10232 => '\Longleftarrow ', # 27f8
623
- 10233 => '\Longrightarrow ', # 27f9
624
- 10234 => '\Longleftrightarrow ', # 27fa
625
- 10235 => '\longmapsfrom ', # 27fb
626
- 10236 => '\longmapsto ', # 27fc
627
- 10237 => '\Longmapsfrom ', # 27fd
628
- 10238 => '\Longmapsto ', # 27fe
629
- 10496 => '\psur ', # 2900
630
- 10502 => '\Mapsfrom ', # 2906
631
- 10503 => '\Mapsto ', # 2907
632
- 10514 => '\UpArrowBar ', # 2912
633
- 10515 => '\DownArrowBar ', # 2913
634
- 10516 => '\pinj ', # 2914
635
- 10517 => '\finj ', # 2915
636
- 10518 => '\bij ', # 2916
637
- 10547 => '\leadsto ', # 2933
638
- 10570 => '\leftrightharpoon ', # 294a
639
- 10571 => '\rightleftharpoon ', # 294b
640
- 10574 => '\leftrightharpoonup ', # 294e
641
- 10575 => '\rightupdownharpoon ', # 294f
642
- 10576 => '\leftrightharpoondown ', # 2950
643
- 10577 => '\leftupdownharpoon ', # 2951
644
- 10578 => '\LeftVectorBar ', # 2952
645
- 10579 => '\RightVectorBar ', # 2953
646
- 10580 => '\RightUpVectorBar ', # 2954
647
- 10581 => '\RightDownVectorBar ', # 2955
648
- 10582 => '\DownLeftVectorBar ', # 2956
649
- 10583 => '\DownRightVectorBar ', # 2957
650
- 10584 => '\LeftUpVectorBar ', # 2958
651
- 10585 => '\LeftDownVectorBar ', # 2959
652
- 10586 => '\LeftTeeVector ', # 295a
653
- 10587 => '\RightTeeVector ', # 295b
654
- 10588 => '\RightUpTeeVector ', # 295c
655
- 10589 => '\RightDownTeeVector ', # 295d
656
- 10590 => '\DownLeftTeeVector ', # 295e
657
- 10591 => '\DownRightTeeVector ', # 295f
658
- 10592 => '\LeftUpTeeVector ', # 2960
659
- 10593 => '\LeftDownTeeVector ', # 2961
660
- 10594 => '\leftleftharpoons ', # 2962
661
- 10595 => '\upupharpoons ', # 2963
662
- 10596 => '\rightrightharpoons ', # 2964
663
- 10597 => '\downdownharpoons ', # 2965
664
- 10602 => '\leftbarharpoon ', # 296a
665
- 10603 => '\barleftharpoon ', # 296b
666
- 10604 => '\rightbarharpoon ', # 296c
667
- 10605 => '\barrightharpoon ', # 296d
668
- 10606 => '\updownharpoons ', # 296e
669
- 10607 => '\downupharpoons ', # 296f
670
- 10620 => '\strictfi ', # 297c
671
- 10621 => '\strictif ', # 297d
672
- 10624 => '\VERT ', # 2980
673
- 10625 => '\spot ', # 2981
674
- 10629 => '\Lparen ', # 2985
675
- 10630 => '\Rparen ', # 2986
676
- 10631 => '\limg ', # 2987
677
- 10632 => '\rimg ', # 2988
678
- 10633 => '\lblot ', # 2989
679
- 10634 => '\rblot ', # 298a
680
- 10680 => '\circledbslash ', # 29b8
681
- 10688 => '\circledless ', # 29c0
682
- 10689 => '\circledgtr ', # 29c1
683
- 10692 => '\boxslash ', # 29c4
684
- 10693 => '\boxbslash ', # 29c5
685
- 10694 => '\boxast ', # 29c6
686
- 10695 => '\boxcircle ', # 29c7
687
- 10696 => '\boxbox ', # 29c8
688
- 10703 => '\LeftTriangleBar ', # 29cf
689
- 10704 => '\RightTriangleBar ', # 29d0
690
- 10719 => '\multimapboth ', # 29df
691
- 10731 => '\blacklozenge ', # 29eb
692
- 10741 => '\setminus ', # 29f5
693
- 10745 => '\zhide ', # 29f9
694
- 10752 => '\bigodot ', # 2a00
695
- 10753 => '\bigoplus ', # 2a01
696
- 10754 => '\bigotimes ', # 2a02
697
- 10756 => '\biguplus ', # 2a04
698
- 10757 => '\bigsqcap ', # 2a05
699
- 10758 => '\bigsqcup ', # 2a06
700
- 10761 => '\varprod ', # 2a09
701
- 10764 => '\iiiint ', # 2a0c
702
- 10767 => '\fint ', # 2a0f
703
- 10774 => '\sqint ', # 2a16
704
- 10781 => '\Join ', # 2a1d
705
- 10783 => '\zcmp ', # 2a1f
706
- 10784 => '\zpipe ', # 2a20
707
- 10785 => '\zproject ', # 2a21
708
- 10814 => '\fcmp ', # 2a3e
709
- 10815 => '\amalg ', # 2a3f
710
- 10846 => '\doublebarwedge ', # 2a5e
711
- 10852 => '\dsub ', # 2a64
712
- 10853 => '\rsub ', # 2a65
713
- 10868 => '\Coloneqq ', # 2a74
714
- 10869 => '\Equal ', # 2a75
715
- 10870 => '\Same ', # 2a76
716
- 10877 => '\leqslant ', # 2a7d
717
- 10878 => '\geqslant ', # 2a7e
718
- 10885 => '\lessapprox ', # 2a85
719
- 10886 => '\gtrapprox ', # 2a86
720
- 10887 => '\lneq ', # 2a87
721
- 10888 => '\gneq ', # 2a88
722
- 10889 => '\lnapprox ', # 2a89
723
- 10890 => '\gnapprox ', # 2a8a
724
- 10891 => '\lesseqqgtr ', # 2a8b
725
- 10892 => '\gtreqqless ', # 2a8c
726
- 10901 => '\eqslantless ', # 2a95
727
- 10902 => '\eqslantgtr ', # 2a96
728
- 10913 => '\NestedLessLess ', # 2aa1
729
- 10914 => '\NestedGreaterGreater ', # 2aa2
730
- 10918 => '\leftslice ', # 2aa6
731
- 10919 => '\rightslice ', # 2aa7
732
- 10927 => '\preceq ', # 2aaf
733
- 10928 => '\succeq ', # 2ab0
734
- 10931 => '\preceqq ', # 2ab3
735
- 10932 => '\succeqq ', # 2ab4
736
- 10935 => '\precapprox ', # 2ab7
737
- 10936 => '\succapprox ', # 2ab8
738
- 10937 => '\precnapprox ', # 2ab9
739
- 10938 => '\succnapprox ', # 2aba
740
- 10939 => '\llcurly ', # 2abb
741
- 10940 => '\ggcurly ', # 2abc
742
- 10949 => '\subseteqq ', # 2ac5
743
- 10950 => '\supseteqq ', # 2ac6
744
- 10955 => '\subsetneqq ', # 2acb
745
- 10956 => '\supsetneqq ', # 2acc
746
- 10986 => '\Top ', # 2aea
747
- 10987 => '\Bot ', # 2aeb
748
- 10996 => '\interleave ', # 2af4
749
- 11004 => '\biginterleave ', # 2afc
750
- 11005 => '\sslash ', # 2afd
751
- 11006 => '\talloblong ', # 2afe
752
- 11035 => '\blacksquare ', # 2b1b
753
- 11036 => '\square ', # 2b1c
754
- 11037 => '\blacksquare ', # 2b1d
755
- 11047 => '\blacklozenge ', # 2b27
756
- 11048 => '\lozenge ', # 2b28
757
- 119808 => '\mathbf{A} ', # 1d400
758
- 119809 => '\mathbf{B} ', # 1d401
759
- 119810 => '\mathbf{C} ', # 1d402
760
- 119811 => '\mathbf{D} ', # 1d403
761
- 119812 => '\mathbf{E} ', # 1d404
762
- 119813 => '\mathbf{F} ', # 1d405
763
- 119814 => '\mathbf{G} ', # 1d406
764
- 119815 => '\mathbf{H} ', # 1d407
765
- 119816 => '\mathbf{I} ', # 1d408
766
- 119817 => '\mathbf{J} ', # 1d409
767
- 119818 => '\mathbf{K} ', # 1d40a
768
- 119819 => '\mathbf{L} ', # 1d40b
769
- 119820 => '\mathbf{M} ', # 1d40c
770
- 119821 => '\mathbf{N} ', # 1d40d
771
- 119822 => '\mathbf{O} ', # 1d40e
772
- 119823 => '\mathbf{P} ', # 1d40f
773
- 119824 => '\mathbf{Q} ', # 1d410
774
- 119825 => '\mathbf{R} ', # 1d411
775
- 119826 => '\mathbf{S} ', # 1d412
776
- 119827 => '\mathbf{T} ', # 1d413
777
- 119828 => '\mathbf{U} ', # 1d414
778
- 119829 => '\mathbf{V} ', # 1d415
779
- 119830 => '\mathbf{W} ', # 1d416
780
- 119831 => '\mathbf{X} ', # 1d417
781
- 119832 => '\mathbf{Y} ', # 1d418
782
- 119833 => '\mathbf{Z} ', # 1d419
783
- 119834 => '\mathbf{a} ', # 1d41a
784
- 119835 => '\mathbf{b} ', # 1d41b
785
- 119836 => '\mathbf{c} ', # 1d41c
786
- 119837 => '\mathbf{d} ', # 1d41d
787
- 119838 => '\mathbf{e} ', # 1d41e
788
- 119839 => '\mathbf{f} ', # 1d41f
789
- 119840 => '\mathbf{g} ', # 1d420
790
- 119841 => '\mathbf{h} ', # 1d421
791
- 119842 => '\mathbf{i} ', # 1d422
792
- 119843 => '\mathbf{j} ', # 1d423
793
- 119844 => '\mathbf{k} ', # 1d424
794
- 119845 => '\mathbf{l} ', # 1d425
795
- 119846 => '\mathbf{m} ', # 1d426
796
- 119847 => '\mathbf{n} ', # 1d427
797
- 119848 => '\mathbf{o} ', # 1d428
798
- 119849 => '\mathbf{p} ', # 1d429
799
- 119850 => '\mathbf{q} ', # 1d42a
800
- 119851 => '\mathbf{r} ', # 1d42b
801
- 119852 => '\mathbf{s} ', # 1d42c
802
- 119853 => '\mathbf{t} ', # 1d42d
803
- 119854 => '\mathbf{u} ', # 1d42e
804
- 119855 => '\mathbf{v} ', # 1d42f
805
- 119856 => '\mathbf{w} ', # 1d430
806
- 119857 => '\mathbf{x} ', # 1d431
807
- 119858 => '\mathbf{y} ', # 1d432
808
- 119859 => '\mathbf{z} ', # 1d433
809
- 119860 => 'A ', # 1d434
810
- 119861 => 'B ', # 1d435
811
- 119862 => 'C ', # 1d436
812
- 119863 => 'D ', # 1d437
813
- 119864 => 'E ', # 1d438
814
- 119865 => 'F ', # 1d439
815
- 119866 => 'G ', # 1d43a
816
- 119867 => 'H ', # 1d43b
817
- 119868 => 'I ', # 1d43c
818
- 119869 => 'J ', # 1d43d
819
- 119870 => 'K ', # 1d43e
820
- 119871 => 'L ', # 1d43f
821
- 119872 => 'M ', # 1d440
822
- 119873 => 'N ', # 1d441
823
- 119874 => 'O ', # 1d442
824
- 119875 => 'P ', # 1d443
825
- 119876 => 'Q ', # 1d444
826
- 119877 => 'R ', # 1d445
827
- 119878 => 'S ', # 1d446
828
- 119879 => 'T ', # 1d447
829
- 119880 => 'U ', # 1d448
830
- 119881 => 'V ', # 1d449
831
- 119882 => 'W ', # 1d44a
832
- 119883 => 'X ', # 1d44b
833
- 119884 => 'Y ', # 1d44c
834
- 119885 => 'Z ', # 1d44d
835
- 119886 => 'a ', # 1d44e
836
- 119887 => 'b ', # 1d44f
837
- 119888 => 'c ', # 1d450
838
- 119889 => 'd ', # 1d451
839
- 119890 => 'e ', # 1d452
840
- 119891 => 'f ', # 1d453
841
- 119892 => 'g ', # 1d454
842
- 119894 => 'i ', # 1d456
843
- 119895 => 'j ', # 1d457
844
- 119896 => 'k ', # 1d458
845
- 119897 => 'l ', # 1d459
846
- 119898 => 'm ', # 1d45a
847
- 119899 => 'n ', # 1d45b
848
- 119900 => 'o ', # 1d45c
849
- 119901 => 'p ', # 1d45d
850
- 119902 => 'q ', # 1d45e
851
- 119903 => 'r ', # 1d45f
852
- 119904 => 's ', # 1d460
853
- 119905 => 't ', # 1d461
854
- 119906 => 'u ', # 1d462
855
- 119907 => 'v ', # 1d463
856
- 119908 => 'w ', # 1d464
857
- 119909 => 'x ', # 1d465
858
- 119910 => 'y ', # 1d466
859
- 119911 => 'z ', # 1d467
860
- 119912 => '\mathbfit{A} ', # 1d468
861
- 119913 => '\mathbfit{B} ', # 1d469
862
- 119914 => '\mathbfit{C} ', # 1d46a
863
- 119915 => '\mathbfit{D} ', # 1d46b
864
- 119916 => '\mathbfit{E} ', # 1d46c
865
- 119917 => '\mathbfit{F} ', # 1d46d
866
- 119918 => '\mathbfit{G} ', # 1d46e
867
- 119919 => '\mathbfit{H} ', # 1d46f
868
- 119920 => '\mathbfit{I} ', # 1d470
869
- 119921 => '\mathbfit{J} ', # 1d471
870
- 119922 => '\mathbfit{K} ', # 1d472
871
- 119923 => '\mathbfit{L} ', # 1d473
872
- 119924 => '\mathbfit{M} ', # 1d474
873
- 119925 => '\mathbfit{N} ', # 1d475
874
- 119926 => '\mathbfit{O} ', # 1d476
875
- 119927 => '\mathbfit{P} ', # 1d477
876
- 119928 => '\mathbfit{Q} ', # 1d478
877
- 119929 => '\mathbfit{R} ', # 1d479
878
- 119930 => '\mathbfit{S} ', # 1d47a
879
- 119931 => '\mathbfit{T} ', # 1d47b
880
- 119932 => '\mathbfit{U} ', # 1d47c
881
- 119933 => '\mathbfit{V} ', # 1d47d
882
- 119934 => '\mathbfit{W} ', # 1d47e
883
- 119935 => '\mathbfit{X} ', # 1d47f
884
- 119936 => '\mathbfit{Y} ', # 1d480
885
- 119937 => '\mathbfit{Z} ', # 1d481
886
- 119938 => '\mathbfit{a} ', # 1d482
887
- 119939 => '\mathbfit{b} ', # 1d483
888
- 119940 => '\mathbfit{c} ', # 1d484
889
- 119941 => '\mathbfit{d} ', # 1d485
890
- 119942 => '\mathbfit{e} ', # 1d486
891
- 119943 => '\mathbfit{f} ', # 1d487
892
- 119944 => '\mathbfit{g} ', # 1d488
893
- 119945 => '\mathbfit{h} ', # 1d489
894
- 119946 => '\mathbfit{i} ', # 1d48a
895
- 119947 => '\mathbfit{j} ', # 1d48b
896
- 119948 => '\mathbfit{k} ', # 1d48c
897
- 119949 => '\mathbfit{l} ', # 1d48d
898
- 119950 => '\mathbfit{m} ', # 1d48e
899
- 119951 => '\mathbfit{n} ', # 1d48f
900
- 119952 => '\mathbfit{o} ', # 1d490
901
- 119953 => '\mathbfit{p} ', # 1d491
902
- 119954 => '\mathbfit{q} ', # 1d492
903
- 119955 => '\mathbfit{r} ', # 1d493
904
- 119956 => '\mathbfit{s} ', # 1d494
905
- 119957 => '\mathbfit{t} ', # 1d495
906
- 119958 => '\mathbfit{u} ', # 1d496
907
- 119959 => '\mathbfit{v} ', # 1d497
908
- 119960 => '\mathbfit{w} ', # 1d498
909
- 119961 => '\mathbfit{x} ', # 1d499
910
- 119962 => '\mathbfit{y} ', # 1d49a
911
- 119963 => '\mathbfit{z} ', # 1d49b
912
- 119964 => '\mathcal{A} ', # 1d49c
913
- 119966 => '\mathcal{C} ', # 1d49e
914
- 119967 => '\mathcal{D} ', # 1d49f
915
- 119970 => '\mathcal{G} ', # 1d4a2
916
- 119973 => '\mathcal{J} ', # 1d4a5
917
- 119974 => '\mathcal{K} ', # 1d4a6
918
- 119977 => '\mathcal{N} ', # 1d4a9
919
- 119978 => '\mathcal{O} ', # 1d4aa
920
- 119979 => '\mathcal{P} ', # 1d4ab
921
- 119980 => '\mathcal{Q} ', # 1d4ac
922
- 119982 => '\mathcal{S} ', # 1d4ae
923
- 119983 => '\mathcal{T} ', # 1d4af
924
- 119984 => '\mathcal{U} ', # 1d4b0
925
- 119985 => '\mathcal{V} ', # 1d4b1
926
- 119986 => '\mathcal{W} ', # 1d4b2
927
- 119987 => '\mathcal{X} ', # 1d4b3
928
- 119988 => '\mathcal{Y} ', # 1d4b4
929
- 119989 => '\mathcal{Z} ', # 1d4b5
930
- 119990 => '\mathcal{a} ', # 1d4b6
931
- 119991 => '\mathcal{b} ', # 1d4b7
932
- 119992 => '\mathcal{c} ', # 1d4b8
933
- 119993 => '\mathcal{d} ', # 1d4b9
934
- 119995 => '\mathcal{f} ', # 1d4bb
935
- 119997 => '\mathcal{h} ', # 1d4bd
936
- 119998 => '\mathcal{i} ', # 1d4be
937
- 119999 => '\mathcal{j} ', # 1d4bf
938
- 120000 => '\mathcal{k} ', # 1d4c0
939
- 120001 => '\mathcal{l} ', # 1d4c1
940
- 120002 => '\mathcal{m} ', # 1d4c2
941
- 120003 => '\mathcal{n} ', # 1d4c3
942
- 120005 => '\mathcal{p} ', # 1d4c5
943
- 120006 => '\mathcal{q} ', # 1d4c6
944
- 120007 => '\mathcal{r} ', # 1d4c7
945
- 120008 => '\mathcal{s} ', # 1d4c8
946
- 120009 => '\mathcal{t} ', # 1d4c9
947
- 120010 => '\mathcal{u} ', # 1d4ca
948
- 120011 => '\mathcal{v} ', # 1d4cb
949
- 120012 => '\mathcal{w} ', # 1d4cc
950
- 120013 => '\mathcal{x} ', # 1d4cd
951
- 120014 => '\mathcal{y} ', # 1d4ce
952
- 120015 => '\mathcal{z} ', # 1d4cf
953
- 120068 => '\mathfrak{A} ', # 1d504
954
- 120069 => '\mathfrak{B} ', # 1d505
955
- 120071 => '\mathfrak{D} ', # 1d507
956
- 120072 => '\mathfrak{E} ', # 1d508
957
- 120073 => '\mathfrak{F} ', # 1d509
958
- 120074 => '\mathfrak{G} ', # 1d50a
959
- 120077 => '\mathfrak{J} ', # 1d50d
960
- 120078 => '\mathfrak{K} ', # 1d50e
961
- 120079 => '\mathfrak{L} ', # 1d50f
962
- 120080 => '\mathfrak{M} ', # 1d510
963
- 120081 => '\mathfrak{N} ', # 1d511
964
- 120082 => '\mathfrak{O} ', # 1d512
965
- 120083 => '\mathfrak{P} ', # 1d513
966
- 120084 => '\mathfrak{Q} ', # 1d514
967
- 120086 => '\mathfrak{S} ', # 1d516
968
- 120087 => '\mathfrak{T} ', # 1d517
969
- 120088 => '\mathfrak{U} ', # 1d518
970
- 120089 => '\mathfrak{V} ', # 1d519
971
- 120090 => '\mathfrak{W} ', # 1d51a
972
- 120091 => '\mathfrak{X} ', # 1d51b
973
- 120092 => '\mathfrak{Y} ', # 1d51c
974
- 120094 => '\mathfrak{a} ', # 1d51e
975
- 120095 => '\mathfrak{b} ', # 1d51f
976
- 120096 => '\mathfrak{c} ', # 1d520
977
- 120097 => '\mathfrak{d} ', # 1d521
978
- 120098 => '\mathfrak{e} ', # 1d522
979
- 120099 => '\mathfrak{f} ', # 1d523
980
- 120100 => '\mathfrak{g} ', # 1d524
981
- 120101 => '\mathfrak{h} ', # 1d525
982
- 120102 => '\mathfrak{i} ', # 1d526
983
- 120103 => '\mathfrak{j} ', # 1d527
984
- 120104 => '\mathfrak{k} ', # 1d528
985
- 120105 => '\mathfrak{l} ', # 1d529
986
- 120106 => '\mathfrak{m} ', # 1d52a
987
- 120107 => '\mathfrak{n} ', # 1d52b
988
- 120108 => '\mathfrak{o} ', # 1d52c
989
- 120109 => '\mathfrak{p} ', # 1d52d
990
- 120110 => '\mathfrak{q} ', # 1d52e
991
- 120111 => '\mathfrak{r} ', # 1d52f
992
- 120112 => '\mathfrak{s} ', # 1d530
993
- 120113 => '\mathfrak{t} ', # 1d531
994
- 120114 => '\mathfrak{u} ', # 1d532
995
- 120115 => '\mathfrak{v} ', # 1d533
996
- 120116 => '\mathfrak{w} ', # 1d534
997
- 120117 => '\mathfrak{x} ', # 1d535
998
- 120118 => '\mathfrak{y} ', # 1d536
999
- 120119 => '\mathfrak{z} ', # 1d537
1000
- 120120 => '\mathbb{A} ', # 1d538
1001
- 120121 => '\mathbb{B} ', # 1d539
1002
- 120123 => '\mathbb{D} ', # 1d53b
1003
- 120124 => '\mathbb{E} ', # 1d53c
1004
- 120125 => '\mathbb{F} ', # 1d53d
1005
- 120126 => '\mathbb{G} ', # 1d53e
1006
- 120128 => '\mathbb{I} ', # 1d540
1007
- 120129 => '\mathbb{J} ', # 1d541
1008
- 120130 => '\mathbb{K} ', # 1d542
1009
- 120131 => '\mathbb{L} ', # 1d543
1010
- 120132 => '\mathbb{M} ', # 1d544
1011
- 120134 => '\mathbb{O} ', # 1d546
1012
- 120138 => '\mathbb{S} ', # 1d54a
1013
- 120139 => '\mathbb{T} ', # 1d54b
1014
- 120140 => '\mathbb{U} ', # 1d54c
1015
- 120141 => '\mathbb{V} ', # 1d54d
1016
- 120142 => '\mathbb{W} ', # 1d54e
1017
- 120143 => '\mathbb{X} ', # 1d54f
1018
- 120144 => '\mathbb{Y} ', # 1d550
1019
- 120146 => '\mathbb{a} ', # 1d552
1020
- 120147 => '\mathbb{b} ', # 1d553
1021
- 120148 => '\mathbb{c} ', # 1d554
1022
- 120149 => '\mathbb{d} ', # 1d555
1023
- 120150 => '\mathbb{e} ', # 1d556
1024
- 120151 => '\mathbb{f} ', # 1d557
1025
- 120152 => '\mathbb{g} ', # 1d558
1026
- 120153 => '\mathbb{h} ', # 1d559
1027
- 120154 => '\mathbb{i} ', # 1d55a
1028
- 120155 => '\mathbb{j} ', # 1d55b
1029
- 120156 => '\mathbb{k} ', # 1d55c
1030
- 120157 => '\mathbb{l} ', # 1d55d
1031
- 120158 => '\mathbb{m} ', # 1d55e
1032
- 120159 => '\mathbb{n} ', # 1d55f
1033
- 120160 => '\mathbb{o} ', # 1d560
1034
- 120161 => '\mathbb{p} ', # 1d561
1035
- 120162 => '\mathbb{q} ', # 1d562
1036
- 120163 => '\mathbb{r} ', # 1d563
1037
- 120164 => '\mathbb{s} ', # 1d564
1038
- 120165 => '\mathbb{t} ', # 1d565
1039
- 120166 => '\mathbb{u} ', # 1d566
1040
- 120167 => '\mathbb{v} ', # 1d567
1041
- 120168 => '\mathbb{w} ', # 1d568
1042
- 120169 => '\mathbb{x} ', # 1d569
1043
- 120170 => '\mathbb{y} ', # 1d56a
1044
- 120171 => '\mathbb{z} ', # 1d56b
1045
- 120224 => '\mathsf{A} ', # 1d5a0
1046
- 120225 => '\mathsf{B} ', # 1d5a1
1047
- 120226 => '\mathsf{C} ', # 1d5a2
1048
- 120227 => '\mathsf{D} ', # 1d5a3
1049
- 120228 => '\mathsf{E} ', # 1d5a4
1050
- 120229 => '\mathsf{F} ', # 1d5a5
1051
- 120230 => '\mathsf{G} ', # 1d5a6
1052
- 120231 => '\mathsf{H} ', # 1d5a7
1053
- 120232 => '\mathsf{I} ', # 1d5a8
1054
- 120233 => '\mathsf{J} ', # 1d5a9
1055
- 120234 => '\mathsf{K} ', # 1d5aa
1056
- 120235 => '\mathsf{L} ', # 1d5ab
1057
- 120236 => '\mathsf{M} ', # 1d5ac
1058
- 120237 => '\mathsf{N} ', # 1d5ad
1059
- 120238 => '\mathsf{O} ', # 1d5ae
1060
- 120239 => '\mathsf{P} ', # 1d5af
1061
- 120240 => '\mathsf{Q} ', # 1d5b0
1062
- 120241 => '\mathsf{R} ', # 1d5b1
1063
- 120242 => '\mathsf{S} ', # 1d5b2
1064
- 120243 => '\mathsf{T} ', # 1d5b3
1065
- 120244 => '\mathsf{U} ', # 1d5b4
1066
- 120245 => '\mathsf{V} ', # 1d5b5
1067
- 120246 => '\mathsf{W} ', # 1d5b6
1068
- 120247 => '\mathsf{X} ', # 1d5b7
1069
- 120248 => '\mathsf{Y} ', # 1d5b8
1070
- 120249 => '\mathsf{Z} ', # 1d5b9
1071
- 120250 => '\mathsf{a} ', # 1d5ba
1072
- 120251 => '\mathsf{b} ', # 1d5bb
1073
- 120252 => '\mathsf{c} ', # 1d5bc
1074
- 120253 => '\mathsf{d} ', # 1d5bd
1075
- 120254 => '\mathsf{e} ', # 1d5be
1076
- 120255 => '\mathsf{f} ', # 1d5bf
1077
- 120256 => '\mathsf{g} ', # 1d5c0
1078
- 120257 => '\mathsf{h} ', # 1d5c1
1079
- 120258 => '\mathsf{i} ', # 1d5c2
1080
- 120259 => '\mathsf{j} ', # 1d5c3
1081
- 120260 => '\mathsf{k} ', # 1d5c4
1082
- 120261 => '\mathsf{l} ', # 1d5c5
1083
- 120262 => '\mathsf{m} ', # 1d5c6
1084
- 120263 => '\mathsf{n} ', # 1d5c7
1085
- 120264 => '\mathsf{o} ', # 1d5c8
1086
- 120265 => '\mathsf{p} ', # 1d5c9
1087
- 120266 => '\mathsf{q} ', # 1d5ca
1088
- 120267 => '\mathsf{r} ', # 1d5cb
1089
- 120268 => '\mathsf{s} ', # 1d5cc
1090
- 120269 => '\mathsf{t} ', # 1d5cd
1091
- 120270 => '\mathsf{u} ', # 1d5ce
1092
- 120271 => '\mathsf{v} ', # 1d5cf
1093
- 120272 => '\mathsf{w} ', # 1d5d0
1094
- 120273 => '\mathsf{x} ', # 1d5d1
1095
- 120274 => '\mathsf{y} ', # 1d5d2
1096
- 120275 => '\mathsf{z} ', # 1d5d3
1097
- 120276 => '\mathsfbf{A} ', # 1d5d4
1098
- 120277 => '\mathsfbf{B} ', # 1d5d5
1099
- 120278 => '\mathsfbf{C} ', # 1d5d6
1100
- 120279 => '\mathsfbf{D} ', # 1d5d7
1101
- 120280 => '\mathsfbf{E} ', # 1d5d8
1102
- 120281 => '\mathsfbf{F} ', # 1d5d9
1103
- 120282 => '\mathsfbf{G} ', # 1d5da
1104
- 120283 => '\mathsfbf{H} ', # 1d5db
1105
- 120284 => '\mathsfbf{I} ', # 1d5dc
1106
- 120285 => '\mathsfbf{J} ', # 1d5dd
1107
- 120286 => '\mathsfbf{K} ', # 1d5de
1108
- 120287 => '\mathsfbf{L} ', # 1d5df
1109
- 120288 => '\mathsfbf{M} ', # 1d5e0
1110
- 120289 => '\mathsfbf{N} ', # 1d5e1
1111
- 120290 => '\mathsfbf{O} ', # 1d5e2
1112
- 120291 => '\mathsfbf{P} ', # 1d5e3
1113
- 120292 => '\mathsfbf{Q} ', # 1d5e4
1114
- 120293 => '\mathsfbf{R} ', # 1d5e5
1115
- 120294 => '\mathsfbf{S} ', # 1d5e6
1116
- 120295 => '\mathsfbf{T} ', # 1d5e7
1117
- 120296 => '\mathsfbf{U} ', # 1d5e8
1118
- 120297 => '\mathsfbf{V} ', # 1d5e9
1119
- 120298 => '\mathsfbf{W} ', # 1d5ea
1120
- 120299 => '\mathsfbf{X} ', # 1d5eb
1121
- 120300 => '\mathsfbf{Y} ', # 1d5ec
1122
- 120301 => '\mathsfbf{Z} ', # 1d5ed
1123
- 120302 => '\mathsfbf{a} ', # 1d5ee
1124
- 120303 => '\mathsfbf{b} ', # 1d5ef
1125
- 120304 => '\mathsfbf{c} ', # 1d5f0
1126
- 120305 => '\mathsfbf{d} ', # 1d5f1
1127
- 120306 => '\mathsfbf{e} ', # 1d5f2
1128
- 120307 => '\mathsfbf{f} ', # 1d5f3
1129
- 120308 => '\mathsfbf{g} ', # 1d5f4
1130
- 120309 => '\mathsfbf{h} ', # 1d5f5
1131
- 120310 => '\mathsfbf{i} ', # 1d5f6
1132
- 120311 => '\mathsfbf{j} ', # 1d5f7
1133
- 120312 => '\mathsfbf{k} ', # 1d5f8
1134
- 120313 => '\mathsfbf{l} ', # 1d5f9
1135
- 120314 => '\mathsfbf{m} ', # 1d5fa
1136
- 120315 => '\mathsfbf{n} ', # 1d5fb
1137
- 120316 => '\mathsfbf{o} ', # 1d5fc
1138
- 120317 => '\mathsfbf{p} ', # 1d5fd
1139
- 120318 => '\mathsfbf{q} ', # 1d5fe
1140
- 120319 => '\mathsfbf{r} ', # 1d5ff
1141
- 120320 => '\mathsfbf{s} ', # 1d600
1142
- 120321 => '\mathsfbf{t} ', # 1d601
1143
- 120322 => '\mathsfbf{u} ', # 1d602
1144
- 120323 => '\mathsfbf{v} ', # 1d603
1145
- 120324 => '\mathsfbf{w} ', # 1d604
1146
- 120325 => '\mathsfbf{x} ', # 1d605
1147
- 120326 => '\mathsfbf{y} ', # 1d606
1148
- 120327 => '\mathsfbf{z} ', # 1d607
1149
- 120328 => '\mathsfit{A} ', # 1d608
1150
- 120329 => '\mathsfit{B} ', # 1d609
1151
- 120330 => '\mathsfit{C} ', # 1d60a
1152
- 120331 => '\mathsfit{D} ', # 1d60b
1153
- 120332 => '\mathsfit{E} ', # 1d60c
1154
- 120333 => '\mathsfit{F} ', # 1d60d
1155
- 120334 => '\mathsfit{G} ', # 1d60e
1156
- 120335 => '\mathsfit{H} ', # 1d60f
1157
- 120336 => '\mathsfit{I} ', # 1d610
1158
- 120337 => '\mathsfit{J} ', # 1d611
1159
- 120338 => '\mathsfit{K} ', # 1d612
1160
- 120339 => '\mathsfit{L} ', # 1d613
1161
- 120340 => '\mathsfit{M} ', # 1d614
1162
- 120341 => '\mathsfit{N} ', # 1d615
1163
- 120342 => '\mathsfit{O} ', # 1d616
1164
- 120343 => '\mathsfit{P} ', # 1d617
1165
- 120344 => '\mathsfit{Q} ', # 1d618
1166
- 120345 => '\mathsfit{R} ', # 1d619
1167
- 120346 => '\mathsfit{S} ', # 1d61a
1168
- 120347 => '\mathsfit{T} ', # 1d61b
1169
- 120348 => '\mathsfit{U} ', # 1d61c
1170
- 120349 => '\mathsfit{V} ', # 1d61d
1171
- 120350 => '\mathsfit{W} ', # 1d61e
1172
- 120351 => '\mathsfit{X} ', # 1d61f
1173
- 120352 => '\mathsfit{Y} ', # 1d620
1174
- 120353 => '\mathsfit{Z} ', # 1d621
1175
- 120354 => '\mathsfit{a} ', # 1d622
1176
- 120355 => '\mathsfit{b} ', # 1d623
1177
- 120356 => '\mathsfit{c} ', # 1d624
1178
- 120357 => '\mathsfit{d} ', # 1d625
1179
- 120358 => '\mathsfit{e} ', # 1d626
1180
- 120359 => '\mathsfit{f} ', # 1d627
1181
- 120360 => '\mathsfit{g} ', # 1d628
1182
- 120361 => '\mathsfit{h} ', # 1d629
1183
- 120362 => '\mathsfit{i} ', # 1d62a
1184
- 120363 => '\mathsfit{j} ', # 1d62b
1185
- 120364 => '\mathsfit{k} ', # 1d62c
1186
- 120365 => '\mathsfit{l} ', # 1d62d
1187
- 120366 => '\mathsfit{m} ', # 1d62e
1188
- 120367 => '\mathsfit{n} ', # 1d62f
1189
- 120368 => '\mathsfit{o} ', # 1d630
1190
- 120369 => '\mathsfit{p} ', # 1d631
1191
- 120370 => '\mathsfit{q} ', # 1d632
1192
- 120371 => '\mathsfit{r} ', # 1d633
1193
- 120372 => '\mathsfit{s} ', # 1d634
1194
- 120373 => '\mathsfit{t} ', # 1d635
1195
- 120374 => '\mathsfit{u} ', # 1d636
1196
- 120375 => '\mathsfit{v} ', # 1d637
1197
- 120376 => '\mathsfit{w} ', # 1d638
1198
- 120377 => '\mathsfit{x} ', # 1d639
1199
- 120378 => '\mathsfit{y} ', # 1d63a
1200
- 120379 => '\mathsfit{z} ', # 1d63b
1201
- 120380 => '\mathsfbfit{A} ', # 1d63c
1202
- 120381 => '\mathsfbfit{B} ', # 1d63d
1203
- 120382 => '\mathsfbfit{C} ', # 1d63e
1204
- 120383 => '\mathsfbfit{D} ', # 1d63f
1205
- 120384 => '\mathsfbfit{E} ', # 1d640
1206
- 120385 => '\mathsfbfit{F} ', # 1d641
1207
- 120386 => '\mathsfbfit{G} ', # 1d642
1208
- 120387 => '\mathsfbfit{H} ', # 1d643
1209
- 120388 => '\mathsfbfit{I} ', # 1d644
1210
- 120389 => '\mathsfbfit{J} ', # 1d645
1211
- 120390 => '\mathsfbfit{K} ', # 1d646
1212
- 120391 => '\mathsfbfit{L} ', # 1d647
1213
- 120392 => '\mathsfbfit{M} ', # 1d648
1214
- 120393 => '\mathsfbfit{N} ', # 1d649
1215
- 120394 => '\mathsfbfit{O} ', # 1d64a
1216
- 120395 => '\mathsfbfit{P} ', # 1d64b
1217
- 120396 => '\mathsfbfit{Q} ', # 1d64c
1218
- 120397 => '\mathsfbfit{R} ', # 1d64d
1219
- 120398 => '\mathsfbfit{S} ', # 1d64e
1220
- 120399 => '\mathsfbfit{T} ', # 1d64f
1221
- 120400 => '\mathsfbfit{U} ', # 1d650
1222
- 120401 => '\mathsfbfit{V} ', # 1d651
1223
- 120402 => '\mathsfbfit{W} ', # 1d652
1224
- 120403 => '\mathsfbfit{X} ', # 1d653
1225
- 120404 => '\mathsfbfit{Y} ', # 1d654
1226
- 120405 => '\mathsfbfit{Z} ', # 1d655
1227
- 120406 => '\mathsfbfit{a} ', # 1d656
1228
- 120407 => '\mathsfbfit{b} ', # 1d657
1229
- 120408 => '\mathsfbfit{c} ', # 1d658
1230
- 120409 => '\mathsfbfit{d} ', # 1d659
1231
- 120410 => '\mathsfbfit{e} ', # 1d65a
1232
- 120411 => '\mathsfbfit{f} ', # 1d65b
1233
- 120412 => '\mathsfbfit{g} ', # 1d65c
1234
- 120413 => '\mathsfbfit{h} ', # 1d65d
1235
- 120414 => '\mathsfbfit{i} ', # 1d65e
1236
- 120415 => '\mathsfbfit{j} ', # 1d65f
1237
- 120416 => '\mathsfbfit{k} ', # 1d660
1238
- 120417 => '\mathsfbfit{l} ', # 1d661
1239
- 120418 => '\mathsfbfit{m} ', # 1d662
1240
- 120419 => '\mathsfbfit{n} ', # 1d663
1241
- 120420 => '\mathsfbfit{o} ', # 1d664
1242
- 120421 => '\mathsfbfit{p} ', # 1d665
1243
- 120422 => '\mathsfbfit{q} ', # 1d666
1244
- 120423 => '\mathsfbfit{r} ', # 1d667
1245
- 120424 => '\mathsfbfit{s} ', # 1d668
1246
- 120425 => '\mathsfbfit{t} ', # 1d669
1247
- 120426 => '\mathsfbfit{u} ', # 1d66a
1248
- 120427 => '\mathsfbfit{v} ', # 1d66b
1249
- 120428 => '\mathsfbfit{w} ', # 1d66c
1250
- 120429 => '\mathsfbfit{x} ', # 1d66d
1251
- 120430 => '\mathsfbfit{y} ', # 1d66e
1252
- 120431 => '\mathsfbfit{z} ', # 1d66f
1253
- 120432 => '\mathtt{A} ', # 1d670
1254
- 120433 => '\mathtt{B} ', # 1d671
1255
- 120434 => '\mathtt{C} ', # 1d672
1256
- 120435 => '\mathtt{D} ', # 1d673
1257
- 120436 => '\mathtt{E} ', # 1d674
1258
- 120437 => '\mathtt{F} ', # 1d675
1259
- 120438 => '\mathtt{G} ', # 1d676
1260
- 120439 => '\mathtt{H} ', # 1d677
1261
- 120440 => '\mathtt{I} ', # 1d678
1262
- 120441 => '\mathtt{J} ', # 1d679
1263
- 120442 => '\mathtt{K} ', # 1d67a
1264
- 120443 => '\mathtt{L} ', # 1d67b
1265
- 120444 => '\mathtt{M} ', # 1d67c
1266
- 120445 => '\mathtt{N} ', # 1d67d
1267
- 120446 => '\mathtt{O} ', # 1d67e
1268
- 120447 => '\mathtt{P} ', # 1d67f
1269
- 120448 => '\mathtt{Q} ', # 1d680
1270
- 120449 => '\mathtt{R} ', # 1d681
1271
- 120450 => '\mathtt{S} ', # 1d682
1272
- 120451 => '\mathtt{T} ', # 1d683
1273
- 120452 => '\mathtt{U} ', # 1d684
1274
- 120453 => '\mathtt{V} ', # 1d685
1275
- 120454 => '\mathtt{W} ', # 1d686
1276
- 120455 => '\mathtt{X} ', # 1d687
1277
- 120456 => '\mathtt{Y} ', # 1d688
1278
- 120457 => '\mathtt{Z} ', # 1d689
1279
- 120458 => '\mathtt{a} ', # 1d68a
1280
- 120459 => '\mathtt{b} ', # 1d68b
1281
- 120460 => '\mathtt{c} ', # 1d68c
1282
- 120461 => '\mathtt{d} ', # 1d68d
1283
- 120462 => '\mathtt{e} ', # 1d68e
1284
- 120463 => '\mathtt{f} ', # 1d68f
1285
- 120464 => '\mathtt{g} ', # 1d690
1286
- 120465 => '\mathtt{h} ', # 1d691
1287
- 120466 => '\mathtt{i} ', # 1d692
1288
- 120467 => '\mathtt{j} ', # 1d693
1289
- 120468 => '\mathtt{k} ', # 1d694
1290
- 120469 => '\mathtt{l} ', # 1d695
1291
- 120470 => '\mathtt{m} ', # 1d696
1292
- 120471 => '\mathtt{n} ', # 1d697
1293
- 120472 => '\mathtt{o} ', # 1d698
1294
- 120473 => '\mathtt{p} ', # 1d699
1295
- 120474 => '\mathtt{q} ', # 1d69a
1296
- 120475 => '\mathtt{r} ', # 1d69b
1297
- 120476 => '\mathtt{s} ', # 1d69c
1298
- 120477 => '\mathtt{t} ', # 1d69d
1299
- 120478 => '\mathtt{u} ', # 1d69e
1300
- 120479 => '\mathtt{v} ', # 1d69f
1301
- 120480 => '\mathtt{w} ', # 1d6a0
1302
- 120481 => '\mathtt{x} ', # 1d6a1
1303
- 120482 => '\mathtt{y} ', # 1d6a2
1304
- 120483 => '\mathtt{z} ', # 1d6a3
1305
- 120484 => '\imath ', # 1d6a4
1306
- 120485 => '\jmath ', # 1d6a5
1307
- 120490 => '\mathbf{\Gamma} ', # 1d6aa
1308
- 120491 => '\mathbf{\Delta} ', # 1d6ab
1309
- 120495 => '\mathbf{\Theta} ', # 1d6af
1310
- 120498 => '\mathbf{\Lambda} ', # 1d6b2
1311
- 120501 => '\mathbf{\Xi} ', # 1d6b5
1312
- 120503 => '\mathbf{\Pi} ', # 1d6b7
1313
- 120506 => '\mathbf{\Sigma} ', # 1d6ba
1314
- 120508 => '\mathbf{\Upsilon} ', # 1d6bc
1315
- 120509 => '\mathbf{\Phi} ', # 1d6bd
1316
- 120511 => '\mathbf{\Psi} ', # 1d6bf
1317
- 120512 => '\mathbf{\Omega} ', # 1d6c0
1318
- 120514 => '\mathbf{\alpha} ', # 1d6c2
1319
- 120515 => '\mathbf{\beta} ', # 1d6c3
1320
- 120516 => '\mathbf{\gamma} ', # 1d6c4
1321
- 120517 => '\mathbf{\delta} ', # 1d6c5
1322
- 120518 => '\mathbf{\varepsilon} ', # 1d6c6
1323
- 120519 => '\mathbf{\zeta} ', # 1d6c7
1324
- 120520 => '\mathbf{\eta} ', # 1d6c8
1325
- 120521 => '\mathbf{\theta} ', # 1d6c9
1326
- 120522 => '\mathbf{\iota} ', # 1d6ca
1327
- 120523 => '\mathbf{\kappa} ', # 1d6cb
1328
- 120524 => '\mathbf{\lambda} ', # 1d6cc
1329
- 120525 => '\mathbf{\mu} ', # 1d6cd
1330
- 120526 => '\mathbf{\nu} ', # 1d6ce
1331
- 120527 => '\mathbf{\xi} ', # 1d6cf
1332
- 120529 => '\mathbf{\pi} ', # 1d6d1
1333
- 120530 => '\mathbf{\rho} ', # 1d6d2
1334
- 120531 => '\mathbf{\varsigma} ', # 1d6d3
1335
- 120532 => '\mathbf{\sigma} ', # 1d6d4
1336
- 120533 => '\mathbf{\tau} ', # 1d6d5
1337
- 120534 => '\mathbf{\upsilon} ', # 1d6d6
1338
- 120535 => '\mathbf{\varphi} ', # 1d6d7
1339
- 120536 => '\mathbf{\chi} ', # 1d6d8
1340
- 120537 => '\mathbf{\psi} ', # 1d6d9
1341
- 120538 => '\mathbf{\omega} ', # 1d6da
1342
- 120540 => '\mathbf{\epsilon} ', # 1d6dc
1343
- 120541 => '\mathbf{\vartheta} ', # 1d6dd
1344
- 120543 => '\mathbf{\phi} ', # 1d6df
1345
- 120544 => '\mathbf{\varrho} ', # 1d6e0
1346
- 120545 => '\mathbf{\varpi} ', # 1d6e1
1347
- 120548 => '\Gamma ', # 1d6e4
1348
- 120549 => '\Delta ', # 1d6e5
1349
- 120553 => '\Theta ', # 1d6e9
1350
- 120556 => '\Lambda ', # 1d6ec
1351
- 120559 => '\Xi ', # 1d6ef
1352
- 120561 => '\Pi ', # 1d6f1
1353
- 120564 => '\Sigma ', # 1d6f4
1354
- 120566 => '\Upsilon ', # 1d6f6
1355
- 120567 => '\Phi ', # 1d6f7
1356
- 120569 => '\Psi ', # 1d6f9
1357
- 120570 => '\Omega ', # 1d6fa
1358
- 120572 => '\alpha ', # 1d6fc
1359
- 120573 => '\beta ', # 1d6fd
1360
- 120574 => '\gamma ', # 1d6fe
1361
- 120575 => '\delta ', # 1d6ff
1362
- 120576 => '\varepsilon ', # 1d700
1363
- 120577 => '\zeta ', # 1d701
1364
- 120578 => '\eta ', # 1d702
1365
- 120579 => '\theta ', # 1d703
1366
- 120580 => '\iota ', # 1d704
1367
- 120581 => '\kappa ', # 1d705
1368
- 120582 => '\lambda ', # 1d706
1369
- 120583 => '\mu ', # 1d707
1370
- 120584 => '\nu ', # 1d708
1371
- 120585 => '\xi ', # 1d709
1372
- 120587 => '\pi ', # 1d70b
1373
- 120588 => '\rho ', # 1d70c
1374
- 120589 => '\varsigma ', # 1d70d
1375
- 120590 => '\sigma ', # 1d70e
1376
- 120591 => '\tau ', # 1d70f
1377
- 120592 => '\upsilon ', # 1d710
1378
- 120593 => '\varphi ', # 1d711
1379
- 120594 => '\chi ', # 1d712
1380
- 120595 => '\psi ', # 1d713
1381
- 120596 => '\omega ', # 1d714
1382
- 120597 => '\partial ', # 1d715
1383
- 120598 => '\epsilon ', # 1d716
1384
- 120599 => '\vartheta ', # 1d717
1385
- 120600 => '\varkappa ', # 1d718
1386
- 120601 => '\phi ', # 1d719
1387
- 120602 => '\varrho ', # 1d71a
1388
- 120603 => '\varpi ', # 1d71b
1389
- 120606 => '\mathbfit{\Gamma} ', # 1d71e
1390
- 120607 => '\mathbfit{\Delta} ', # 1d71f
1391
- 120611 => '\mathbfit{\Theta} ', # 1d723
1392
- 120614 => '\mathbfit{\Lambda} ', # 1d726
1393
- 120617 => '\mathbfit{\Xi} ', # 1d729
1394
- 120619 => '\mathbfit{\Pi} ', # 1d72b
1395
- 120622 => '\mathbfit{\Sigma} ', # 1d72e
1396
- 120624 => '\mathbfit{\Upsilon} ', # 1d730
1397
- 120625 => '\mathbfit{\Phi} ', # 1d731
1398
- 120627 => '\mathbfit{\Psi} ', # 1d733
1399
- 120628 => '\mathbfit{\Omega} ', # 1d734
1400
- 120630 => '\mathbfit{\alpha} ', # 1d736
1401
- 120631 => '\mathbfit{\beta} ', # 1d737
1402
- 120632 => '\mathbfit{\gamma} ', # 1d738
1403
- 120633 => '\mathbfit{\delta} ', # 1d739
1404
- 120634 => '\mathbfit{\varepsilon} ', # 1d73a
1405
- 120635 => '\mathbfit{\zeta} ', # 1d73b
1406
- 120636 => '\mathbfit{\eta} ', # 1d73c
1407
- 120637 => '\mathbfit{\theta} ', # 1d73d
1408
- 120638 => '\mathbfit{\iota} ', # 1d73e
1409
- 120639 => '\mathbfit{\kappa} ', # 1d73f
1410
- 120640 => '\mathbfit{\lambda} ', # 1d740
1411
- 120641 => '\mathbfit{\mu} ', # 1d741
1412
- 120642 => '\mathbfit{\nu} ', # 1d742
1413
- 120643 => '\mathbfit{\xi} ', # 1d743
1414
- 120645 => '\mathbfit{\pi} ', # 1d745
1415
- 120646 => '\mathbfit{\rho} ', # 1d746
1416
- 120647 => '\mathbfit{\varsigma} ', # 1d747
1417
- 120648 => '\mathbfit{\sigma} ', # 1d748
1418
- 120649 => '\mathbfit{\tau} ', # 1d749
1419
- 120650 => '\mathbfit{\upsilon} ', # 1d74a
1420
- 120651 => '\mathbfit{\varphi} ', # 1d74b
1421
- 120652 => '\mathbfit{\chi} ', # 1d74c
1422
- 120653 => '\mathbfit{\psi} ', # 1d74d
1423
- 120654 => '\mathbfit{\omega} ', # 1d74e
1424
- 120656 => '\mathbfit{\epsilon} ', # 1d750
1425
- 120657 => '\mathbfit{\vartheta} ', # 1d751
1426
- 120659 => '\mathbfit{\phi} ', # 1d753
1427
- 120660 => '\mathbfit{\varrho} ', # 1d754
1428
- 120661 => '\mathbfit{\varpi} ', # 1d755
1429
- 120664 => '\mathsfbf{\Gamma} ', # 1d758
1430
- 120665 => '\mathsfbf{\Delta} ', # 1d759
1431
- 120669 => '\mathsfbf{\Theta} ', # 1d75d
1432
- 120672 => '\mathsfbf{\Lambda} ', # 1d760
1433
- 120675 => '\mathsfbf{\Xi} ', # 1d763
1434
- 120677 => '\mathsfbf{\Pi} ', # 1d765
1435
- 120680 => '\mathsfbf{\Sigma} ', # 1d768
1436
- 120682 => '\mathsfbf{\Upsilon} ', # 1d76a
1437
- 120683 => '\mathsfbf{\Phi} ', # 1d76b
1438
- 120685 => '\mathsfbf{\Psi} ', # 1d76d
1439
- 120686 => '\mathsfbf{\Omega} ', # 1d76e
1440
- 120688 => '\mathsfbf{\alpha} ', # 1d770
1441
- 120689 => '\mathsfbf{\beta} ', # 1d771
1442
- 120690 => '\mathsfbf{\gamma} ', # 1d772
1443
- 120691 => '\mathsfbf{\delta} ', # 1d773
1444
- 120692 => '\mathsfbf{\varepsilon} ', # 1d774
1445
- 120693 => '\mathsfbf{\zeta} ', # 1d775
1446
- 120694 => '\mathsfbf{\eta} ', # 1d776
1447
- 120695 => '\mathsfbf{\theta} ', # 1d777
1448
- 120696 => '\mathsfbf{\iota} ', # 1d778
1449
- 120697 => '\mathsfbf{\kappa} ', # 1d779
1450
- 120698 => '\mathsfbf{\lambda} ', # 1d77a
1451
- 120699 => '\mathsfbf{\mu} ', # 1d77b
1452
- 120700 => '\mathsfbf{\nu} ', # 1d77c
1453
- 120701 => '\mathsfbf{\xi} ', # 1d77d
1454
- 120703 => '\mathsfbf{\pi} ', # 1d77f
1455
- 120704 => '\mathsfbf{\rho} ', # 1d780
1456
- 120705 => '\mathsfbf{\varsigma} ', # 1d781
1457
- 120706 => '\mathsfbf{\sigma} ', # 1d782
1458
- 120707 => '\mathsfbf{\tau} ', # 1d783
1459
- 120708 => '\mathsfbf{\upsilon} ', # 1d784
1460
- 120709 => '\mathsfbf{\varphi} ', # 1d785
1461
- 120710 => '\mathsfbf{\chi} ', # 1d786
1462
- 120711 => '\mathsfbf{\psi} ', # 1d787
1463
- 120712 => '\mathsfbf{\omega} ', # 1d788
1464
- 120714 => '\mathsfbf{\epsilon} ', # 1d78a
1465
- 120715 => '\mathsfbf{\vartheta} ', # 1d78b
1466
- 120717 => '\mathsfbf{\phi} ', # 1d78d
1467
- 120718 => '\mathsfbf{\varrho} ', # 1d78e
1468
- 120719 => '\mathsfbf{\varpi} ', # 1d78f
1469
- 120722 => '\mathsfbfit{\Gamma} ', # 1d792
1470
- 120723 => '\mathsfbfit{\Delta} ', # 1d793
1471
- 120727 => '\mathsfbfit{\Theta} ', # 1d797
1472
- 120730 => '\mathsfbfit{\Lambda} ', # 1d79a
1473
- 120733 => '\mathsfbfit{\Xi} ', # 1d79d
1474
- 120735 => '\mathsfbfit{\Pi} ', # 1d79f
1475
- 120738 => '\mathsfbfit{\Sigma} ', # 1d7a2
1476
- 120740 => '\mathsfbfit{\Upsilon} ', # 1d7a4
1477
- 120741 => '\mathsfbfit{\Phi} ', # 1d7a5
1478
- 120743 => '\mathsfbfit{\Psi} ', # 1d7a7
1479
- 120744 => '\mathsfbfit{\Omega} ', # 1d7a8
1480
- 120746 => '\mathsfbfit{\alpha} ', # 1d7aa
1481
- 120747 => '\mathsfbfit{\beta} ', # 1d7ab
1482
- 120748 => '\mathsfbfit{\gamma} ', # 1d7ac
1483
- 120749 => '\mathsfbfit{\delta} ', # 1d7ad
1484
- 120750 => '\mathsfbfit{\varepsilon} ', # 1d7ae
1485
- 120751 => '\mathsfbfit{\zeta} ', # 1d7af
1486
- 120752 => '\mathsfbfit{\eta} ', # 1d7b0
1487
- 120753 => '\mathsfbfit{\theta} ', # 1d7b1
1488
- 120754 => '\mathsfbfit{\iota} ', # 1d7b2
1489
- 120755 => '\mathsfbfit{\kappa} ', # 1d7b3
1490
- 120756 => '\mathsfbfit{\lambda} ', # 1d7b4
1491
- 120757 => '\mathsfbfit{\mu} ', # 1d7b5
1492
- 120758 => '\mathsfbfit{\nu} ', # 1d7b6
1493
- 120759 => '\mathsfbfit{\xi} ', # 1d7b7
1494
- 120761 => '\mathsfbfit{\pi} ', # 1d7b9
1495
- 120762 => '\mathsfbfit{\rho} ', # 1d7ba
1496
- 120763 => '\mathsfbfit{\varsigma} ', # 1d7bb
1497
- 120764 => '\mathsfbfit{\sigma} ', # 1d7bc
1498
- 120765 => '\mathsfbfit{\tau} ', # 1d7bd
1499
- 120766 => '\mathsfbfit{\upsilon} ', # 1d7be
1500
- 120767 => '\mathsfbfit{\varphi} ', # 1d7bf
1501
- 120768 => '\mathsfbfit{\chi} ', # 1d7c0
1502
- 120769 => '\mathsfbfit{\psi} ', # 1d7c1
1503
- 120770 => '\mathsfbfit{\omega} ', # 1d7c2
1504
- 120772 => '\mathsfbfit{\epsilon} ', # 1d7c4
1505
- 120773 => '\mathsfbfit{\vartheta} ', # 1d7c5
1506
- 120775 => '\mathsfbfit{\phi} ', # 1d7c7
1507
- 120776 => '\mathsfbfit{\varrho} ', # 1d7c8
1508
- 120777 => '\mathsfbfit{\varpi} ', # 1d7c9
1509
- 120782 => '\mathbf{0} ', # 1d7ce
1510
- 120783 => '\mathbf{1} ', # 1d7cf
1511
- 120784 => '\mathbf{2} ', # 1d7d0
1512
- 120785 => '\mathbf{3} ', # 1d7d1
1513
- 120786 => '\mathbf{4} ', # 1d7d2
1514
- 120787 => '\mathbf{5} ', # 1d7d3
1515
- 120788 => '\mathbf{6} ', # 1d7d4
1516
- 120789 => '\mathbf{7} ', # 1d7d5
1517
- 120790 => '\mathbf{8} ', # 1d7d6
1518
- 120791 => '\mathbf{9} ', # 1d7d7
1519
- 120792 => '\mathbb{0} ', # 1d7d8
1520
- 120793 => '\mathbb{1} ', # 1d7d9
1521
- 120794 => '\mathbb{2} ', # 1d7da
1522
- 120795 => '\mathbb{3} ', # 1d7db
1523
- 120796 => '\mathbb{4} ', # 1d7dc
1524
- 120797 => '\mathbb{5} ', # 1d7dd
1525
- 120798 => '\mathbb{6} ', # 1d7de
1526
- 120799 => '\mathbb{7} ', # 1d7df
1527
- 120800 => '\mathbb{8} ', # 1d7e0
1528
- 120801 => '\mathbb{9} ', # 1d7e1
1529
- 120802 => '\mathsf{0} ', # 1d7e2
1530
- 120803 => '\mathsf{1} ', # 1d7e3
1531
- 120804 => '\mathsf{2} ', # 1d7e4
1532
- 120805 => '\mathsf{3} ', # 1d7e5
1533
- 120806 => '\mathsf{4} ', # 1d7e6
1534
- 120807 => '\mathsf{5} ', # 1d7e7
1535
- 120808 => '\mathsf{6} ', # 1d7e8
1536
- 120809 => '\mathsf{7} ', # 1d7e9
1537
- 120810 => '\mathsf{8} ', # 1d7ea
1538
- 120811 => '\mathsf{9} ', # 1d7eb
1539
- 120812 => '\mathsfbf{0} ', # 1d7ec
1540
- 120813 => '\mathsfbf{1} ', # 1d7ed
1541
- 120814 => '\mathsfbf{2} ', # 1d7ee
1542
- 120815 => '\mathsfbf{3} ', # 1d7ef
1543
- 120816 => '\mathsfbf{4} ', # 1d7f0
1544
- 120817 => '\mathsfbf{5} ', # 1d7f1
1545
- 120818 => '\mathsfbf{6} ', # 1d7f2
1546
- 120819 => '\mathsfbf{7} ', # 1d7f3
1547
- 120820 => '\mathsfbf{8} ', # 1d7f4
1548
- 120821 => '\mathsfbf{9} ', # 1d7f5
1549
- 120822 => '\mathtt{0} ', # 1d7f6
1550
- 120823 => '\mathtt{1} ', # 1d7f7
1551
- 120824 => '\mathtt{2} ', # 1d7f8
1552
- 120825 => '\mathtt{3} ', # 1d7f9
1553
- 120826 => '\mathtt{4} ', # 1d7fa
1554
- 120827 => '\mathtt{5} ', # 1d7fb
1555
- 120828 => '\mathtt{6} ', # 1d7fc
1556
- 120829 => '\mathtt{7} ', # 1d7fd
1557
- 120830 => '\mathtt{8} ', # 1d7fe
1558
- 120831 => '\mathtt{9} ', # 1d7ff
1559
- 128276 => '\bell ' # 1f514
605
+ 10_003 => '\checkmark ', # 2713
606
+ 10_007 => '\ballotx ', # 2717
607
+ 10_016 => '\maltese ', # 2720
608
+ 10_146 => '\arrowbullet ', # 27a2
609
+ 10_178 => '\perp ', # 27c2
610
+ 10_181 => '\Lbag ', # 27c5
611
+ 10_182 => '\Rbag ', # 27c6
612
+ 10_192 => '\Diamonddot ', # 27d0
613
+ 10_204 => '\multimapinv ', # 27dc
614
+ 10_214 => '\llbracket ', # 27e6
615
+ 10_215 => '\rrbracket ', # 27e7
616
+ 10_216 => '\langle ', # 27e8
617
+ 10_217 => '\rangle ', # 27e9
618
+ 10_218 => '\lang ', # 27ea
619
+ 10_219 => '\rang ', # 27eb
620
+ 10_222 => '\lgroup ', # 27ee
621
+ 10_223 => '\rgroup ', # 27ef
622
+ 10_229 => '\longleftarrow ', # 27f5
623
+ 10_230 => '\longrightarrow ', # 27f6
624
+ 10_231 => '\longleftrightarrow ', # 27f7
625
+ 10_232 => '\Longleftarrow ', # 27f8
626
+ 10_233 => '\Longrightarrow ', # 27f9
627
+ 10_234 => '\Longleftrightarrow ', # 27fa
628
+ 10_235 => '\longmapsfrom ', # 27fb
629
+ 10_236 => '\longmapsto ', # 27fc
630
+ 10_237 => '\Longmapsfrom ', # 27fd
631
+ 10_238 => '\Longmapsto ', # 27fe
632
+ 10_496 => '\psur ', # 2900
633
+ 10_502 => '\Mapsfrom ', # 2906
634
+ 10_503 => '\Mapsto ', # 2907
635
+ 10_514 => '\UpArrowBar ', # 2912
636
+ 10_515 => '\DownArrowBar ', # 2913
637
+ 10_516 => '\pinj ', # 2914
638
+ 10_517 => '\finj ', # 2915
639
+ 10_518 => '\bij ', # 2916
640
+ 10_547 => '\leadsto ', # 2933
641
+ 10_570 => '\leftrightharpoon ', # 294a
642
+ 10_571 => '\rightleftharpoon ', # 294b
643
+ 10_574 => '\leftrightharpoonup ', # 294e
644
+ 10_575 => '\rightupdownharpoon ', # 294f
645
+ 10_576 => '\leftrightharpoondown ', # 2950
646
+ 10_577 => '\leftupdownharpoon ', # 2951
647
+ 10_578 => '\LeftVectorBar ', # 2952
648
+ 10_579 => '\RightVectorBar ', # 2953
649
+ 10_580 => '\RightUpVectorBar ', # 2954
650
+ 10_581 => '\RightDownVectorBar ', # 2955
651
+ 10_582 => '\DownLeftVectorBar ', # 2956
652
+ 10_583 => '\DownRightVectorBar ', # 2957
653
+ 10_584 => '\LeftUpVectorBar ', # 2958
654
+ 10_585 => '\LeftDownVectorBar ', # 2959
655
+ 10_586 => '\LeftTeeVector ', # 295a
656
+ 10_587 => '\RightTeeVector ', # 295b
657
+ 10_588 => '\RightUpTeeVector ', # 295c
658
+ 10_589 => '\RightDownTeeVector ', # 295d
659
+ 10_590 => '\DownLeftTeeVector ', # 295e
660
+ 10_591 => '\DownRightTeeVector ', # 295f
661
+ 10_592 => '\LeftUpTeeVector ', # 2960
662
+ 10_593 => '\LeftDownTeeVector ', # 2961
663
+ 10_594 => '\leftleftharpoons ', # 2962
664
+ 10_595 => '\upupharpoons ', # 2963
665
+ 10_596 => '\rightrightharpoons ', # 2964
666
+ 10_597 => '\downdownharpoons ', # 2965
667
+ 10_602 => '\leftbarharpoon ', # 296a
668
+ 10_603 => '\barleftharpoon ', # 296b
669
+ 10_604 => '\rightbarharpoon ', # 296c
670
+ 10_605 => '\barrightharpoon ', # 296d
671
+ 10_606 => '\updownharpoons ', # 296e
672
+ 10_607 => '\downupharpoons ', # 296f
673
+ 10_620 => '\strictfi ', # 297c
674
+ 10_621 => '\strictif ', # 297d
675
+ 10_624 => '\VERT ', # 2980
676
+ 10_625 => '\spot ', # 2981
677
+ 10_629 => '\Lparen ', # 2985
678
+ 10_630 => '\Rparen ', # 2986
679
+ 10_631 => '\limg ', # 2987
680
+ 10_632 => '\rimg ', # 2988
681
+ 10_633 => '\lblot ', # 2989
682
+ 10_634 => '\rblot ', # 298a
683
+ 10_680 => '\circledbslash ', # 29b8
684
+ 10_688 => '\circledless ', # 29c0
685
+ 10_689 => '\circledgtr ', # 29c1
686
+ 10_692 => '\boxslash ', # 29c4
687
+ 10_693 => '\boxbslash ', # 29c5
688
+ 10_694 => '\boxast ', # 29c6
689
+ 10_695 => '\boxcircle ', # 29c7
690
+ 10_696 => '\boxbox ', # 29c8
691
+ 10_703 => '\LeftTriangleBar ', # 29cf
692
+ 10_704 => '\RightTriangleBar ', # 29d0
693
+ 10_719 => '\multimapboth ', # 29df
694
+ 10_731 => '\blacklozenge ', # 29eb
695
+ 10_741 => '\setminus ', # 29f5
696
+ 10_745 => '\zhide ', # 29f9
697
+ 10_752 => '\bigodot ', # 2a00
698
+ 10_753 => '\bigoplus ', # 2a01
699
+ 10_754 => '\bigotimes ', # 2a02
700
+ 10_756 => '\biguplus ', # 2a04
701
+ 10_757 => '\bigsqcap ', # 2a05
702
+ 10_758 => '\bigsqcup ', # 2a06
703
+ 10_761 => '\varprod ', # 2a09
704
+ 10_764 => '\iiiint ', # 2a0c
705
+ 10_767 => '\fint ', # 2a0f
706
+ 10_774 => '\sqint ', # 2a16
707
+ 10_781 => '\Join ', # 2a1d
708
+ 10_783 => '\zcmp ', # 2a1f
709
+ 10_784 => '\zpipe ', # 2a20
710
+ 10_785 => '\zproject ', # 2a21
711
+ 10_814 => '\fcmp ', # 2a3e
712
+ 10_815 => '\amalg ', # 2a3f
713
+ 10_846 => '\doublebarwedge ', # 2a5e
714
+ 10_852 => '\dsub ', # 2a64
715
+ 10_853 => '\rsub ', # 2a65
716
+ 10_868 => '\Coloneqq ', # 2a74
717
+ 10_869 => '\Equal ', # 2a75
718
+ 10_870 => '\Same ', # 2a76
719
+ 10_877 => '\leqslant ', # 2a7d
720
+ 10_878 => '\geqslant ', # 2a7e
721
+ 10_885 => '\lessapprox ', # 2a85
722
+ 10_886 => '\gtrapprox ', # 2a86
723
+ 10_887 => '\lneq ', # 2a87
724
+ 10_888 => '\gneq ', # 2a88
725
+ 10_889 => '\lnapprox ', # 2a89
726
+ 10_890 => '\gnapprox ', # 2a8a
727
+ 10_891 => '\lesseqqgtr ', # 2a8b
728
+ 10_892 => '\gtreqqless ', # 2a8c
729
+ 10_901 => '\eqslantless ', # 2a95
730
+ 10_902 => '\eqslantgtr ', # 2a96
731
+ 10_913 => '\NestedLessLess ', # 2aa1
732
+ 10_914 => '\NestedGreaterGreater ', # 2aa2
733
+ 10_918 => '\leftslice ', # 2aa6
734
+ 10_919 => '\rightslice ', # 2aa7
735
+ 10_927 => '\preceq ', # 2aaf
736
+ 10_928 => '\succeq ', # 2ab0
737
+ 10_931 => '\preceqq ', # 2ab3
738
+ 10_932 => '\succeqq ', # 2ab4
739
+ 10_935 => '\precapprox ', # 2ab7
740
+ 10_936 => '\succapprox ', # 2ab8
741
+ 10_937 => '\precnapprox ', # 2ab9
742
+ 10_938 => '\succnapprox ', # 2aba
743
+ 10_939 => '\llcurly ', # 2abb
744
+ 10_940 => '\ggcurly ', # 2abc
745
+ 10_949 => '\subseteqq ', # 2ac5
746
+ 10_950 => '\supseteqq ', # 2ac6
747
+ 10_955 => '\subsetneqq ', # 2acb
748
+ 10_956 => '\supsetneqq ', # 2acc
749
+ 10_986 => '\Top ', # 2aea
750
+ 10_987 => '\Bot ', # 2aeb
751
+ 10_996 => '\interleave ', # 2af4
752
+ 11_004 => '\biginterleave ', # 2afc
753
+ 11_005 => '\sslash ', # 2afd
754
+ 11_006 => '\talloblong ', # 2afe
755
+ 11_035 => '\blacksquare ', # 2b1b
756
+ 11_036 => '\square ', # 2b1c
757
+ 11_037 => '\blacksquare ', # 2b1d
758
+ 11_047 => '\blacklozenge ', # 2b27
759
+ 11_048 => '\lozenge ', # 2b28
760
+ 119_808 => '\mathbf{A} ', # 1d400
761
+ 119_809 => '\mathbf{B} ', # 1d401
762
+ 119_810 => '\mathbf{C} ', # 1d402
763
+ 119_811 => '\mathbf{D} ', # 1d403
764
+ 119_812 => '\mathbf{E} ', # 1d404
765
+ 119_813 => '\mathbf{F} ', # 1d405
766
+ 119_814 => '\mathbf{G} ', # 1d406
767
+ 119_815 => '\mathbf{H} ', # 1d407
768
+ 119_816 => '\mathbf{I} ', # 1d408
769
+ 119_817 => '\mathbf{J} ', # 1d409
770
+ 119_818 => '\mathbf{K} ', # 1d40a
771
+ 119_819 => '\mathbf{L} ', # 1d40b
772
+ 119_820 => '\mathbf{M} ', # 1d40c
773
+ 119_821 => '\mathbf{N} ', # 1d40d
774
+ 119_822 => '\mathbf{O} ', # 1d40e
775
+ 119_823 => '\mathbf{P} ', # 1d40f
776
+ 119_824 => '\mathbf{Q} ', # 1d410
777
+ 119_825 => '\mathbf{R} ', # 1d411
778
+ 119_826 => '\mathbf{S} ', # 1d412
779
+ 119_827 => '\mathbf{T} ', # 1d413
780
+ 119_828 => '\mathbf{U} ', # 1d414
781
+ 119_829 => '\mathbf{V} ', # 1d415
782
+ 119_830 => '\mathbf{W} ', # 1d416
783
+ 119_831 => '\mathbf{X} ', # 1d417
784
+ 119_832 => '\mathbf{Y} ', # 1d418
785
+ 119_833 => '\mathbf{Z} ', # 1d419
786
+ 119_834 => '\mathbf{a} ', # 1d41a
787
+ 119_835 => '\mathbf{b} ', # 1d41b
788
+ 119_836 => '\mathbf{c} ', # 1d41c
789
+ 119_837 => '\mathbf{d} ', # 1d41d
790
+ 119_838 => '\mathbf{e} ', # 1d41e
791
+ 119_839 => '\mathbf{f} ', # 1d41f
792
+ 119_840 => '\mathbf{g} ', # 1d420
793
+ 119_841 => '\mathbf{h} ', # 1d421
794
+ 119_842 => '\mathbf{i} ', # 1d422
795
+ 119_843 => '\mathbf{j} ', # 1d423
796
+ 119_844 => '\mathbf{k} ', # 1d424
797
+ 119_845 => '\mathbf{l} ', # 1d425
798
+ 119_846 => '\mathbf{m} ', # 1d426
799
+ 119_847 => '\mathbf{n} ', # 1d427
800
+ 119_848 => '\mathbf{o} ', # 1d428
801
+ 119_849 => '\mathbf{p} ', # 1d429
802
+ 119_850 => '\mathbf{q} ', # 1d42a
803
+ 119_851 => '\mathbf{r} ', # 1d42b
804
+ 119_852 => '\mathbf{s} ', # 1d42c
805
+ 119_853 => '\mathbf{t} ', # 1d42d
806
+ 119_854 => '\mathbf{u} ', # 1d42e
807
+ 119_855 => '\mathbf{v} ', # 1d42f
808
+ 119_856 => '\mathbf{w} ', # 1d430
809
+ 119_857 => '\mathbf{x} ', # 1d431
810
+ 119_858 => '\mathbf{y} ', # 1d432
811
+ 119_859 => '\mathbf{z} ', # 1d433
812
+ 119_860 => 'A ', # 1d434
813
+ 119_861 => 'B ', # 1d435
814
+ 119_862 => 'C ', # 1d436
815
+ 119_863 => 'D ', # 1d437
816
+ 119_864 => 'E ', # 1d438
817
+ 119_865 => 'F ', # 1d439
818
+ 119_866 => 'G ', # 1d43a
819
+ 119_867 => 'H ', # 1d43b
820
+ 119_868 => 'I ', # 1d43c
821
+ 119_869 => 'J ', # 1d43d
822
+ 119_870 => 'K ', # 1d43e
823
+ 119_871 => 'L ', # 1d43f
824
+ 119_872 => 'M ', # 1d440
825
+ 119_873 => 'N ', # 1d441
826
+ 119_874 => 'O ', # 1d442
827
+ 119_875 => 'P ', # 1d443
828
+ 119_876 => 'Q ', # 1d444
829
+ 119_877 => 'R ', # 1d445
830
+ 119_878 => 'S ', # 1d446
831
+ 119_879 => 'T ', # 1d447
832
+ 119_880 => 'U ', # 1d448
833
+ 119_881 => 'V ', # 1d449
834
+ 119_882 => 'W ', # 1d44a
835
+ 119_883 => 'X ', # 1d44b
836
+ 119_884 => 'Y ', # 1d44c
837
+ 119_885 => 'Z ', # 1d44d
838
+ 119_886 => 'a ', # 1d44e
839
+ 119_887 => 'b ', # 1d44f
840
+ 119_888 => 'c ', # 1d450
841
+ 119_889 => 'd ', # 1d451
842
+ 119_890 => 'e ', # 1d452
843
+ 119_891 => 'f ', # 1d453
844
+ 119_892 => 'g ', # 1d454
845
+ 119_894 => 'i ', # 1d456
846
+ 119_895 => 'j ', # 1d457
847
+ 119_896 => 'k ', # 1d458
848
+ 119_897 => 'l ', # 1d459
849
+ 119_898 => 'm ', # 1d45a
850
+ 119_899 => 'n ', # 1d45b
851
+ 119_900 => 'o ', # 1d45c
852
+ 119_901 => 'p ', # 1d45d
853
+ 119_902 => 'q ', # 1d45e
854
+ 119_903 => 'r ', # 1d45f
855
+ 119_904 => 's ', # 1d460
856
+ 119_905 => 't ', # 1d461
857
+ 119_906 => 'u ', # 1d462
858
+ 119_907 => 'v ', # 1d463
859
+ 119_908 => 'w ', # 1d464
860
+ 119_909 => 'x ', # 1d465
861
+ 119_910 => 'y ', # 1d466
862
+ 119_911 => 'z ', # 1d467
863
+ 119_912 => '\mathbfit{A} ', # 1d468
864
+ 119_913 => '\mathbfit{B} ', # 1d469
865
+ 119_914 => '\mathbfit{C} ', # 1d46a
866
+ 119_915 => '\mathbfit{D} ', # 1d46b
867
+ 119_916 => '\mathbfit{E} ', # 1d46c
868
+ 119_917 => '\mathbfit{F} ', # 1d46d
869
+ 119_918 => '\mathbfit{G} ', # 1d46e
870
+ 119_919 => '\mathbfit{H} ', # 1d46f
871
+ 119_920 => '\mathbfit{I} ', # 1d470
872
+ 119_921 => '\mathbfit{J} ', # 1d471
873
+ 119_922 => '\mathbfit{K} ', # 1d472
874
+ 119_923 => '\mathbfit{L} ', # 1d473
875
+ 119_924 => '\mathbfit{M} ', # 1d474
876
+ 119_925 => '\mathbfit{N} ', # 1d475
877
+ 119_926 => '\mathbfit{O} ', # 1d476
878
+ 119_927 => '\mathbfit{P} ', # 1d477
879
+ 119_928 => '\mathbfit{Q} ', # 1d478
880
+ 119_929 => '\mathbfit{R} ', # 1d479
881
+ 119_930 => '\mathbfit{S} ', # 1d47a
882
+ 119_931 => '\mathbfit{T} ', # 1d47b
883
+ 119_932 => '\mathbfit{U} ', # 1d47c
884
+ 119_933 => '\mathbfit{V} ', # 1d47d
885
+ 119_934 => '\mathbfit{W} ', # 1d47e
886
+ 119_935 => '\mathbfit{X} ', # 1d47f
887
+ 119_936 => '\mathbfit{Y} ', # 1d480
888
+ 119_937 => '\mathbfit{Z} ', # 1d481
889
+ 119_938 => '\mathbfit{a} ', # 1d482
890
+ 119_939 => '\mathbfit{b} ', # 1d483
891
+ 119_940 => '\mathbfit{c} ', # 1d484
892
+ 119_941 => '\mathbfit{d} ', # 1d485
893
+ 119_942 => '\mathbfit{e} ', # 1d486
894
+ 119_943 => '\mathbfit{f} ', # 1d487
895
+ 119_944 => '\mathbfit{g} ', # 1d488
896
+ 119_945 => '\mathbfit{h} ', # 1d489
897
+ 119_946 => '\mathbfit{i} ', # 1d48a
898
+ 119_947 => '\mathbfit{j} ', # 1d48b
899
+ 119_948 => '\mathbfit{k} ', # 1d48c
900
+ 119_949 => '\mathbfit{l} ', # 1d48d
901
+ 119_950 => '\mathbfit{m} ', # 1d48e
902
+ 119_951 => '\mathbfit{n} ', # 1d48f
903
+ 119_952 => '\mathbfit{o} ', # 1d490
904
+ 119_953 => '\mathbfit{p} ', # 1d491
905
+ 119_954 => '\mathbfit{q} ', # 1d492
906
+ 119_955 => '\mathbfit{r} ', # 1d493
907
+ 119_956 => '\mathbfit{s} ', # 1d494
908
+ 119_957 => '\mathbfit{t} ', # 1d495
909
+ 119_958 => '\mathbfit{u} ', # 1d496
910
+ 119_959 => '\mathbfit{v} ', # 1d497
911
+ 119_960 => '\mathbfit{w} ', # 1d498
912
+ 119_961 => '\mathbfit{x} ', # 1d499
913
+ 119_962 => '\mathbfit{y} ', # 1d49a
914
+ 119_963 => '\mathbfit{z} ', # 1d49b
915
+ 119_964 => '\mathcal{A} ', # 1d49c
916
+ 119_966 => '\mathcal{C} ', # 1d49e
917
+ 119_967 => '\mathcal{D} ', # 1d49f
918
+ 119_970 => '\mathcal{G} ', # 1d4a2
919
+ 119_973 => '\mathcal{J} ', # 1d4a5
920
+ 119_974 => '\mathcal{K} ', # 1d4a6
921
+ 119_977 => '\mathcal{N} ', # 1d4a9
922
+ 119_978 => '\mathcal{O} ', # 1d4aa
923
+ 119_979 => '\mathcal{P} ', # 1d4ab
924
+ 119_980 => '\mathcal{Q} ', # 1d4ac
925
+ 119_982 => '\mathcal{S} ', # 1d4ae
926
+ 119_983 => '\mathcal{T} ', # 1d4af
927
+ 119_984 => '\mathcal{U} ', # 1d4b0
928
+ 119_985 => '\mathcal{V} ', # 1d4b1
929
+ 119_986 => '\mathcal{W} ', # 1d4b2
930
+ 119_987 => '\mathcal{X} ', # 1d4b3
931
+ 119_988 => '\mathcal{Y} ', # 1d4b4
932
+ 119_989 => '\mathcal{Z} ', # 1d4b5
933
+ 119_990 => '\mathcal{a} ', # 1d4b6
934
+ 119_991 => '\mathcal{b} ', # 1d4b7
935
+ 119_992 => '\mathcal{c} ', # 1d4b8
936
+ 119_993 => '\mathcal{d} ', # 1d4b9
937
+ 119_995 => '\mathcal{f} ', # 1d4bb
938
+ 119_997 => '\mathcal{h} ', # 1d4bd
939
+ 119_998 => '\mathcal{i} ', # 1d4be
940
+ 119_999 => '\mathcal{j} ', # 1d4bf
941
+ 120_000 => '\mathcal{k} ', # 1d4c0
942
+ 120_001 => '\mathcal{l} ', # 1d4c1
943
+ 120_002 => '\mathcal{m} ', # 1d4c2
944
+ 120_003 => '\mathcal{n} ', # 1d4c3
945
+ 120_005 => '\mathcal{p} ', # 1d4c5
946
+ 120_006 => '\mathcal{q} ', # 1d4c6
947
+ 120_007 => '\mathcal{r} ', # 1d4c7
948
+ 120_008 => '\mathcal{s} ', # 1d4c8
949
+ 120_009 => '\mathcal{t} ', # 1d4c9
950
+ 120_010 => '\mathcal{u} ', # 1d4ca
951
+ 120_011 => '\mathcal{v} ', # 1d4cb
952
+ 120_012 => '\mathcal{w} ', # 1d4cc
953
+ 120_013 => '\mathcal{x} ', # 1d4cd
954
+ 120_014 => '\mathcal{y} ', # 1d4ce
955
+ 120_015 => '\mathcal{z} ', # 1d4cf
956
+ 120_068 => '\mathfrak{A} ', # 1d504
957
+ 120_069 => '\mathfrak{B} ', # 1d505
958
+ 120_071 => '\mathfrak{D} ', # 1d507
959
+ 120_072 => '\mathfrak{E} ', # 1d508
960
+ 120_073 => '\mathfrak{F} ', # 1d509
961
+ 120_074 => '\mathfrak{G} ', # 1d50a
962
+ 120_077 => '\mathfrak{J} ', # 1d50d
963
+ 120_078 => '\mathfrak{K} ', # 1d50e
964
+ 120_079 => '\mathfrak{L} ', # 1d50f
965
+ 120_080 => '\mathfrak{M} ', # 1d510
966
+ 120_081 => '\mathfrak{N} ', # 1d511
967
+ 120_082 => '\mathfrak{O} ', # 1d512
968
+ 120_083 => '\mathfrak{P} ', # 1d513
969
+ 120_084 => '\mathfrak{Q} ', # 1d514
970
+ 120_086 => '\mathfrak{S} ', # 1d516
971
+ 120_087 => '\mathfrak{T} ', # 1d517
972
+ 120_088 => '\mathfrak{U} ', # 1d518
973
+ 120_089 => '\mathfrak{V} ', # 1d519
974
+ 120_090 => '\mathfrak{W} ', # 1d51a
975
+ 120_091 => '\mathfrak{X} ', # 1d51b
976
+ 120_092 => '\mathfrak{Y} ', # 1d51c
977
+ 120_094 => '\mathfrak{a} ', # 1d51e
978
+ 120_095 => '\mathfrak{b} ', # 1d51f
979
+ 120_096 => '\mathfrak{c} ', # 1d520
980
+ 120_097 => '\mathfrak{d} ', # 1d521
981
+ 120_098 => '\mathfrak{e} ', # 1d522
982
+ 120_099 => '\mathfrak{f} ', # 1d523
983
+ 120_100 => '\mathfrak{g} ', # 1d524
984
+ 120_101 => '\mathfrak{h} ', # 1d525
985
+ 120_102 => '\mathfrak{i} ', # 1d526
986
+ 120_103 => '\mathfrak{j} ', # 1d527
987
+ 120_104 => '\mathfrak{k} ', # 1d528
988
+ 120_105 => '\mathfrak{l} ', # 1d529
989
+ 120_106 => '\mathfrak{m} ', # 1d52a
990
+ 120_107 => '\mathfrak{n} ', # 1d52b
991
+ 120_108 => '\mathfrak{o} ', # 1d52c
992
+ 120_109 => '\mathfrak{p} ', # 1d52d
993
+ 120_110 => '\mathfrak{q} ', # 1d52e
994
+ 120_111 => '\mathfrak{r} ', # 1d52f
995
+ 120_112 => '\mathfrak{s} ', # 1d530
996
+ 120_113 => '\mathfrak{t} ', # 1d531
997
+ 120_114 => '\mathfrak{u} ', # 1d532
998
+ 120_115 => '\mathfrak{v} ', # 1d533
999
+ 120_116 => '\mathfrak{w} ', # 1d534
1000
+ 120_117 => '\mathfrak{x} ', # 1d535
1001
+ 120_118 => '\mathfrak{y} ', # 1d536
1002
+ 120_119 => '\mathfrak{z} ', # 1d537
1003
+ 120_120 => '\mathbb{A} ', # 1d538
1004
+ 120_121 => '\mathbb{B} ', # 1d539
1005
+ 120_123 => '\mathbb{D} ', # 1d53b
1006
+ 120_124 => '\mathbb{E} ', # 1d53c
1007
+ 120_125 => '\mathbb{F} ', # 1d53d
1008
+ 120_126 => '\mathbb{G} ', # 1d53e
1009
+ 120_128 => '\mathbb{I} ', # 1d540
1010
+ 120_129 => '\mathbb{J} ', # 1d541
1011
+ 120_130 => '\mathbb{K} ', # 1d542
1012
+ 120_131 => '\mathbb{L} ', # 1d543
1013
+ 120_132 => '\mathbb{M} ', # 1d544
1014
+ 120_134 => '\mathbb{O} ', # 1d546
1015
+ 120_138 => '\mathbb{S} ', # 1d54a
1016
+ 120_139 => '\mathbb{T} ', # 1d54b
1017
+ 120_140 => '\mathbb{U} ', # 1d54c
1018
+ 120_141 => '\mathbb{V} ', # 1d54d
1019
+ 120_142 => '\mathbb{W} ', # 1d54e
1020
+ 120_143 => '\mathbb{X} ', # 1d54f
1021
+ 120_144 => '\mathbb{Y} ', # 1d550
1022
+ 120_146 => '\mathbb{a} ', # 1d552
1023
+ 120_147 => '\mathbb{b} ', # 1d553
1024
+ 120_148 => '\mathbb{c} ', # 1d554
1025
+ 120_149 => '\mathbb{d} ', # 1d555
1026
+ 120_150 => '\mathbb{e} ', # 1d556
1027
+ 120_151 => '\mathbb{f} ', # 1d557
1028
+ 120_152 => '\mathbb{g} ', # 1d558
1029
+ 120_153 => '\mathbb{h} ', # 1d559
1030
+ 120_154 => '\mathbb{i} ', # 1d55a
1031
+ 120_155 => '\mathbb{j} ', # 1d55b
1032
+ 120_156 => '\mathbb{k} ', # 1d55c
1033
+ 120_157 => '\mathbb{l} ', # 1d55d
1034
+ 120_158 => '\mathbb{m} ', # 1d55e
1035
+ 120_159 => '\mathbb{n} ', # 1d55f
1036
+ 120_160 => '\mathbb{o} ', # 1d560
1037
+ 120_161 => '\mathbb{p} ', # 1d561
1038
+ 120_162 => '\mathbb{q} ', # 1d562
1039
+ 120_163 => '\mathbb{r} ', # 1d563
1040
+ 120_164 => '\mathbb{s} ', # 1d564
1041
+ 120_165 => '\mathbb{t} ', # 1d565
1042
+ 120_166 => '\mathbb{u} ', # 1d566
1043
+ 120_167 => '\mathbb{v} ', # 1d567
1044
+ 120_168 => '\mathbb{w} ', # 1d568
1045
+ 120_169 => '\mathbb{x} ', # 1d569
1046
+ 120_170 => '\mathbb{y} ', # 1d56a
1047
+ 120_171 => '\mathbb{z} ', # 1d56b
1048
+ 120_224 => '\mathsf{A} ', # 1d5a0
1049
+ 120_225 => '\mathsf{B} ', # 1d5a1
1050
+ 120_226 => '\mathsf{C} ', # 1d5a2
1051
+ 120_227 => '\mathsf{D} ', # 1d5a3
1052
+ 120_228 => '\mathsf{E} ', # 1d5a4
1053
+ 120_229 => '\mathsf{F} ', # 1d5a5
1054
+ 120_230 => '\mathsf{G} ', # 1d5a6
1055
+ 120_231 => '\mathsf{H} ', # 1d5a7
1056
+ 120_232 => '\mathsf{I} ', # 1d5a8
1057
+ 120_233 => '\mathsf{J} ', # 1d5a9
1058
+ 120_234 => '\mathsf{K} ', # 1d5aa
1059
+ 120_235 => '\mathsf{L} ', # 1d5ab
1060
+ 120_236 => '\mathsf{M} ', # 1d5ac
1061
+ 120_237 => '\mathsf{N} ', # 1d5ad
1062
+ 120_238 => '\mathsf{O} ', # 1d5ae
1063
+ 120_239 => '\mathsf{P} ', # 1d5af
1064
+ 120_240 => '\mathsf{Q} ', # 1d5b0
1065
+ 120_241 => '\mathsf{R} ', # 1d5b1
1066
+ 120_242 => '\mathsf{S} ', # 1d5b2
1067
+ 120_243 => '\mathsf{T} ', # 1d5b3
1068
+ 120_244 => '\mathsf{U} ', # 1d5b4
1069
+ 120_245 => '\mathsf{V} ', # 1d5b5
1070
+ 120_246 => '\mathsf{W} ', # 1d5b6
1071
+ 120_247 => '\mathsf{X} ', # 1d5b7
1072
+ 120_248 => '\mathsf{Y} ', # 1d5b8
1073
+ 120_249 => '\mathsf{Z} ', # 1d5b9
1074
+ 120_250 => '\mathsf{a} ', # 1d5ba
1075
+ 120_251 => '\mathsf{b} ', # 1d5bb
1076
+ 120_252 => '\mathsf{c} ', # 1d5bc
1077
+ 120_253 => '\mathsf{d} ', # 1d5bd
1078
+ 120_254 => '\mathsf{e} ', # 1d5be
1079
+ 120_255 => '\mathsf{f} ', # 1d5bf
1080
+ 120_256 => '\mathsf{g} ', # 1d5c0
1081
+ 120_257 => '\mathsf{h} ', # 1d5c1
1082
+ 120_258 => '\mathsf{i} ', # 1d5c2
1083
+ 120_259 => '\mathsf{j} ', # 1d5c3
1084
+ 120_260 => '\mathsf{k} ', # 1d5c4
1085
+ 120_261 => '\mathsf{l} ', # 1d5c5
1086
+ 120_262 => '\mathsf{m} ', # 1d5c6
1087
+ 120_263 => '\mathsf{n} ', # 1d5c7
1088
+ 120_264 => '\mathsf{o} ', # 1d5c8
1089
+ 120_265 => '\mathsf{p} ', # 1d5c9
1090
+ 120_266 => '\mathsf{q} ', # 1d5ca
1091
+ 120_267 => '\mathsf{r} ', # 1d5cb
1092
+ 120_268 => '\mathsf{s} ', # 1d5cc
1093
+ 120_269 => '\mathsf{t} ', # 1d5cd
1094
+ 120_270 => '\mathsf{u} ', # 1d5ce
1095
+ 120_271 => '\mathsf{v} ', # 1d5cf
1096
+ 120_272 => '\mathsf{w} ', # 1d5d0
1097
+ 120_273 => '\mathsf{x} ', # 1d5d1
1098
+ 120_274 => '\mathsf{y} ', # 1d5d2
1099
+ 120_275 => '\mathsf{z} ', # 1d5d3
1100
+ 120_276 => '\mathsfbf{A} ', # 1d5d4
1101
+ 120_277 => '\mathsfbf{B} ', # 1d5d5
1102
+ 120_278 => '\mathsfbf{C} ', # 1d5d6
1103
+ 120_279 => '\mathsfbf{D} ', # 1d5d7
1104
+ 120_280 => '\mathsfbf{E} ', # 1d5d8
1105
+ 120_281 => '\mathsfbf{F} ', # 1d5d9
1106
+ 120_282 => '\mathsfbf{G} ', # 1d5da
1107
+ 120_283 => '\mathsfbf{H} ', # 1d5db
1108
+ 120_284 => '\mathsfbf{I} ', # 1d5dc
1109
+ 120_285 => '\mathsfbf{J} ', # 1d5dd
1110
+ 120_286 => '\mathsfbf{K} ', # 1d5de
1111
+ 120_287 => '\mathsfbf{L} ', # 1d5df
1112
+ 120_288 => '\mathsfbf{M} ', # 1d5e0
1113
+ 120_289 => '\mathsfbf{N} ', # 1d5e1
1114
+ 120_290 => '\mathsfbf{O} ', # 1d5e2
1115
+ 120_291 => '\mathsfbf{P} ', # 1d5e3
1116
+ 120_292 => '\mathsfbf{Q} ', # 1d5e4
1117
+ 120_293 => '\mathsfbf{R} ', # 1d5e5
1118
+ 120_294 => '\mathsfbf{S} ', # 1d5e6
1119
+ 120_295 => '\mathsfbf{T} ', # 1d5e7
1120
+ 120_296 => '\mathsfbf{U} ', # 1d5e8
1121
+ 120_297 => '\mathsfbf{V} ', # 1d5e9
1122
+ 120_298 => '\mathsfbf{W} ', # 1d5ea
1123
+ 120_299 => '\mathsfbf{X} ', # 1d5eb
1124
+ 120_300 => '\mathsfbf{Y} ', # 1d5ec
1125
+ 120_301 => '\mathsfbf{Z} ', # 1d5ed
1126
+ 120_302 => '\mathsfbf{a} ', # 1d5ee
1127
+ 120_303 => '\mathsfbf{b} ', # 1d5ef
1128
+ 120_304 => '\mathsfbf{c} ', # 1d5f0
1129
+ 120_305 => '\mathsfbf{d} ', # 1d5f1
1130
+ 120_306 => '\mathsfbf{e} ', # 1d5f2
1131
+ 120_307 => '\mathsfbf{f} ', # 1d5f3
1132
+ 120_308 => '\mathsfbf{g} ', # 1d5f4
1133
+ 120_309 => '\mathsfbf{h} ', # 1d5f5
1134
+ 120_310 => '\mathsfbf{i} ', # 1d5f6
1135
+ 120_311 => '\mathsfbf{j} ', # 1d5f7
1136
+ 120_312 => '\mathsfbf{k} ', # 1d5f8
1137
+ 120_313 => '\mathsfbf{l} ', # 1d5f9
1138
+ 120_314 => '\mathsfbf{m} ', # 1d5fa
1139
+ 120_315 => '\mathsfbf{n} ', # 1d5fb
1140
+ 120_316 => '\mathsfbf{o} ', # 1d5fc
1141
+ 120_317 => '\mathsfbf{p} ', # 1d5fd
1142
+ 120_318 => '\mathsfbf{q} ', # 1d5fe
1143
+ 120_319 => '\mathsfbf{r} ', # 1d5ff
1144
+ 120_320 => '\mathsfbf{s} ', # 1d600
1145
+ 120_321 => '\mathsfbf{t} ', # 1d601
1146
+ 120_322 => '\mathsfbf{u} ', # 1d602
1147
+ 120_323 => '\mathsfbf{v} ', # 1d603
1148
+ 120_324 => '\mathsfbf{w} ', # 1d604
1149
+ 120_325 => '\mathsfbf{x} ', # 1d605
1150
+ 120_326 => '\mathsfbf{y} ', # 1d606
1151
+ 120_327 => '\mathsfbf{z} ', # 1d607
1152
+ 120_328 => '\mathsfit{A} ', # 1d608
1153
+ 120_329 => '\mathsfit{B} ', # 1d609
1154
+ 120_330 => '\mathsfit{C} ', # 1d60a
1155
+ 120_331 => '\mathsfit{D} ', # 1d60b
1156
+ 120_332 => '\mathsfit{E} ', # 1d60c
1157
+ 120_333 => '\mathsfit{F} ', # 1d60d
1158
+ 120_334 => '\mathsfit{G} ', # 1d60e
1159
+ 120_335 => '\mathsfit{H} ', # 1d60f
1160
+ 120_336 => '\mathsfit{I} ', # 1d610
1161
+ 120_337 => '\mathsfit{J} ', # 1d611
1162
+ 120_338 => '\mathsfit{K} ', # 1d612
1163
+ 120_339 => '\mathsfit{L} ', # 1d613
1164
+ 120_340 => '\mathsfit{M} ', # 1d614
1165
+ 120_341 => '\mathsfit{N} ', # 1d615
1166
+ 120_342 => '\mathsfit{O} ', # 1d616
1167
+ 120_343 => '\mathsfit{P} ', # 1d617
1168
+ 120_344 => '\mathsfit{Q} ', # 1d618
1169
+ 120_345 => '\mathsfit{R} ', # 1d619
1170
+ 120_346 => '\mathsfit{S} ', # 1d61a
1171
+ 120_347 => '\mathsfit{T} ', # 1d61b
1172
+ 120_348 => '\mathsfit{U} ', # 1d61c
1173
+ 120_349 => '\mathsfit{V} ', # 1d61d
1174
+ 120_350 => '\mathsfit{W} ', # 1d61e
1175
+ 120_351 => '\mathsfit{X} ', # 1d61f
1176
+ 120_352 => '\mathsfit{Y} ', # 1d620
1177
+ 120_353 => '\mathsfit{Z} ', # 1d621
1178
+ 120_354 => '\mathsfit{a} ', # 1d622
1179
+ 120_355 => '\mathsfit{b} ', # 1d623
1180
+ 120_356 => '\mathsfit{c} ', # 1d624
1181
+ 120_357 => '\mathsfit{d} ', # 1d625
1182
+ 120_358 => '\mathsfit{e} ', # 1d626
1183
+ 120_359 => '\mathsfit{f} ', # 1d627
1184
+ 120_360 => '\mathsfit{g} ', # 1d628
1185
+ 120_361 => '\mathsfit{h} ', # 1d629
1186
+ 120_362 => '\mathsfit{i} ', # 1d62a
1187
+ 120_363 => '\mathsfit{j} ', # 1d62b
1188
+ 120_364 => '\mathsfit{k} ', # 1d62c
1189
+ 120_365 => '\mathsfit{l} ', # 1d62d
1190
+ 120_366 => '\mathsfit{m} ', # 1d62e
1191
+ 120_367 => '\mathsfit{n} ', # 1d62f
1192
+ 120_368 => '\mathsfit{o} ', # 1d630
1193
+ 120_369 => '\mathsfit{p} ', # 1d631
1194
+ 120_370 => '\mathsfit{q} ', # 1d632
1195
+ 120_371 => '\mathsfit{r} ', # 1d633
1196
+ 120_372 => '\mathsfit{s} ', # 1d634
1197
+ 120_373 => '\mathsfit{t} ', # 1d635
1198
+ 120_374 => '\mathsfit{u} ', # 1d636
1199
+ 120_375 => '\mathsfit{v} ', # 1d637
1200
+ 120_376 => '\mathsfit{w} ', # 1d638
1201
+ 120_377 => '\mathsfit{x} ', # 1d639
1202
+ 120_378 => '\mathsfit{y} ', # 1d63a
1203
+ 120_379 => '\mathsfit{z} ', # 1d63b
1204
+ 120_380 => '\mathsfbfit{A} ', # 1d63c
1205
+ 120_381 => '\mathsfbfit{B} ', # 1d63d
1206
+ 120_382 => '\mathsfbfit{C} ', # 1d63e
1207
+ 120_383 => '\mathsfbfit{D} ', # 1d63f
1208
+ 120_384 => '\mathsfbfit{E} ', # 1d640
1209
+ 120_385 => '\mathsfbfit{F} ', # 1d641
1210
+ 120_386 => '\mathsfbfit{G} ', # 1d642
1211
+ 120_387 => '\mathsfbfit{H} ', # 1d643
1212
+ 120_388 => '\mathsfbfit{I} ', # 1d644
1213
+ 120_389 => '\mathsfbfit{J} ', # 1d645
1214
+ 120_390 => '\mathsfbfit{K} ', # 1d646
1215
+ 120_391 => '\mathsfbfit{L} ', # 1d647
1216
+ 120_392 => '\mathsfbfit{M} ', # 1d648
1217
+ 120_393 => '\mathsfbfit{N} ', # 1d649
1218
+ 120_394 => '\mathsfbfit{O} ', # 1d64a
1219
+ 120_395 => '\mathsfbfit{P} ', # 1d64b
1220
+ 120_396 => '\mathsfbfit{Q} ', # 1d64c
1221
+ 120_397 => '\mathsfbfit{R} ', # 1d64d
1222
+ 120_398 => '\mathsfbfit{S} ', # 1d64e
1223
+ 120_399 => '\mathsfbfit{T} ', # 1d64f
1224
+ 120_400 => '\mathsfbfit{U} ', # 1d650
1225
+ 120_401 => '\mathsfbfit{V} ', # 1d651
1226
+ 120_402 => '\mathsfbfit{W} ', # 1d652
1227
+ 120_403 => '\mathsfbfit{X} ', # 1d653
1228
+ 120_404 => '\mathsfbfit{Y} ', # 1d654
1229
+ 120_405 => '\mathsfbfit{Z} ', # 1d655
1230
+ 120_406 => '\mathsfbfit{a} ', # 1d656
1231
+ 120_407 => '\mathsfbfit{b} ', # 1d657
1232
+ 120_408 => '\mathsfbfit{c} ', # 1d658
1233
+ 120_409 => '\mathsfbfit{d} ', # 1d659
1234
+ 120_410 => '\mathsfbfit{e} ', # 1d65a
1235
+ 120_411 => '\mathsfbfit{f} ', # 1d65b
1236
+ 120_412 => '\mathsfbfit{g} ', # 1d65c
1237
+ 120_413 => '\mathsfbfit{h} ', # 1d65d
1238
+ 120_414 => '\mathsfbfit{i} ', # 1d65e
1239
+ 120_415 => '\mathsfbfit{j} ', # 1d65f
1240
+ 120_416 => '\mathsfbfit{k} ', # 1d660
1241
+ 120_417 => '\mathsfbfit{l} ', # 1d661
1242
+ 120_418 => '\mathsfbfit{m} ', # 1d662
1243
+ 120_419 => '\mathsfbfit{n} ', # 1d663
1244
+ 120_420 => '\mathsfbfit{o} ', # 1d664
1245
+ 120_421 => '\mathsfbfit{p} ', # 1d665
1246
+ 120_422 => '\mathsfbfit{q} ', # 1d666
1247
+ 120_423 => '\mathsfbfit{r} ', # 1d667
1248
+ 120_424 => '\mathsfbfit{s} ', # 1d668
1249
+ 120_425 => '\mathsfbfit{t} ', # 1d669
1250
+ 120_426 => '\mathsfbfit{u} ', # 1d66a
1251
+ 120_427 => '\mathsfbfit{v} ', # 1d66b
1252
+ 120_428 => '\mathsfbfit{w} ', # 1d66c
1253
+ 120_429 => '\mathsfbfit{x} ', # 1d66d
1254
+ 120_430 => '\mathsfbfit{y} ', # 1d66e
1255
+ 120_431 => '\mathsfbfit{z} ', # 1d66f
1256
+ 120_432 => '\mathtt{A} ', # 1d670
1257
+ 120_433 => '\mathtt{B} ', # 1d671
1258
+ 120_434 => '\mathtt{C} ', # 1d672
1259
+ 120_435 => '\mathtt{D} ', # 1d673
1260
+ 120_436 => '\mathtt{E} ', # 1d674
1261
+ 120_437 => '\mathtt{F} ', # 1d675
1262
+ 120_438 => '\mathtt{G} ', # 1d676
1263
+ 120_439 => '\mathtt{H} ', # 1d677
1264
+ 120_440 => '\mathtt{I} ', # 1d678
1265
+ 120_441 => '\mathtt{J} ', # 1d679
1266
+ 120_442 => '\mathtt{K} ', # 1d67a
1267
+ 120_443 => '\mathtt{L} ', # 1d67b
1268
+ 120_444 => '\mathtt{M} ', # 1d67c
1269
+ 120_445 => '\mathtt{N} ', # 1d67d
1270
+ 120_446 => '\mathtt{O} ', # 1d67e
1271
+ 120_447 => '\mathtt{P} ', # 1d67f
1272
+ 120_448 => '\mathtt{Q} ', # 1d680
1273
+ 120_449 => '\mathtt{R} ', # 1d681
1274
+ 120_450 => '\mathtt{S} ', # 1d682
1275
+ 120_451 => '\mathtt{T} ', # 1d683
1276
+ 120_452 => '\mathtt{U} ', # 1d684
1277
+ 120_453 => '\mathtt{V} ', # 1d685
1278
+ 120_454 => '\mathtt{W} ', # 1d686
1279
+ 120_455 => '\mathtt{X} ', # 1d687
1280
+ 120_456 => '\mathtt{Y} ', # 1d688
1281
+ 120_457 => '\mathtt{Z} ', # 1d689
1282
+ 120_458 => '\mathtt{a} ', # 1d68a
1283
+ 120_459 => '\mathtt{b} ', # 1d68b
1284
+ 120_460 => '\mathtt{c} ', # 1d68c
1285
+ 120_461 => '\mathtt{d} ', # 1d68d
1286
+ 120_462 => '\mathtt{e} ', # 1d68e
1287
+ 120_463 => '\mathtt{f} ', # 1d68f
1288
+ 120_464 => '\mathtt{g} ', # 1d690
1289
+ 120_465 => '\mathtt{h} ', # 1d691
1290
+ 120_466 => '\mathtt{i} ', # 1d692
1291
+ 120_467 => '\mathtt{j} ', # 1d693
1292
+ 120_468 => '\mathtt{k} ', # 1d694
1293
+ 120_469 => '\mathtt{l} ', # 1d695
1294
+ 120_470 => '\mathtt{m} ', # 1d696
1295
+ 120_471 => '\mathtt{n} ', # 1d697
1296
+ 120_472 => '\mathtt{o} ', # 1d698
1297
+ 120_473 => '\mathtt{p} ', # 1d699
1298
+ 120_474 => '\mathtt{q} ', # 1d69a
1299
+ 120_475 => '\mathtt{r} ', # 1d69b
1300
+ 120_476 => '\mathtt{s} ', # 1d69c
1301
+ 120_477 => '\mathtt{t} ', # 1d69d
1302
+ 120_478 => '\mathtt{u} ', # 1d69e
1303
+ 120_479 => '\mathtt{v} ', # 1d69f
1304
+ 120_480 => '\mathtt{w} ', # 1d6a0
1305
+ 120_481 => '\mathtt{x} ', # 1d6a1
1306
+ 120_482 => '\mathtt{y} ', # 1d6a2
1307
+ 120_483 => '\mathtt{z} ', # 1d6a3
1308
+ 120_484 => '\imath ', # 1d6a4
1309
+ 120_485 => '\jmath ', # 1d6a5
1310
+ 120_490 => '\mathbf{\Gamma} ', # 1d6aa
1311
+ 120_491 => '\mathbf{\Delta} ', # 1d6ab
1312
+ 120_495 => '\mathbf{\Theta} ', # 1d6af
1313
+ 120_498 => '\mathbf{\Lambda} ', # 1d6b2
1314
+ 120_501 => '\mathbf{\Xi} ', # 1d6b5
1315
+ 120_503 => '\mathbf{\Pi} ', # 1d6b7
1316
+ 120_506 => '\mathbf{\Sigma} ', # 1d6ba
1317
+ 120_508 => '\mathbf{\Upsilon} ', # 1d6bc
1318
+ 120_509 => '\mathbf{\Phi} ', # 1d6bd
1319
+ 120_511 => '\mathbf{\Psi} ', # 1d6bf
1320
+ 120_512 => '\mathbf{\Omega} ', # 1d6c0
1321
+ 120_514 => '\mathbf{\alpha} ', # 1d6c2
1322
+ 120_515 => '\mathbf{\beta} ', # 1d6c3
1323
+ 120_516 => '\mathbf{\gamma} ', # 1d6c4
1324
+ 120_517 => '\mathbf{\delta} ', # 1d6c5
1325
+ 120_518 => '\mathbf{\varepsilon} ', # 1d6c6
1326
+ 120_519 => '\mathbf{\zeta} ', # 1d6c7
1327
+ 120_520 => '\mathbf{\eta} ', # 1d6c8
1328
+ 120_521 => '\mathbf{\theta} ', # 1d6c9
1329
+ 120_522 => '\mathbf{\iota} ', # 1d6ca
1330
+ 120_523 => '\mathbf{\kappa} ', # 1d6cb
1331
+ 120_524 => '\mathbf{\lambda} ', # 1d6cc
1332
+ 120_525 => '\mathbf{\mu} ', # 1d6cd
1333
+ 120_526 => '\mathbf{\nu} ', # 1d6ce
1334
+ 120_527 => '\mathbf{\xi} ', # 1d6cf
1335
+ 120_529 => '\mathbf{\pi} ', # 1d6d1
1336
+ 120_530 => '\mathbf{\rho} ', # 1d6d2
1337
+ 120_531 => '\mathbf{\varsigma} ', # 1d6d3
1338
+ 120_532 => '\mathbf{\sigma} ', # 1d6d4
1339
+ 120_533 => '\mathbf{\tau} ', # 1d6d5
1340
+ 120_534 => '\mathbf{\upsilon} ', # 1d6d6
1341
+ 120_535 => '\mathbf{\varphi} ', # 1d6d7
1342
+ 120_536 => '\mathbf{\chi} ', # 1d6d8
1343
+ 120_537 => '\mathbf{\psi} ', # 1d6d9
1344
+ 120_538 => '\mathbf{\omega} ', # 1d6da
1345
+ 120_540 => '\mathbf{\epsilon} ', # 1d6dc
1346
+ 120_541 => '\mathbf{\vartheta} ', # 1d6dd
1347
+ 120_543 => '\mathbf{\phi} ', # 1d6df
1348
+ 120_544 => '\mathbf{\varrho} ', # 1d6e0
1349
+ 120_545 => '\mathbf{\varpi} ', # 1d6e1
1350
+ 120_548 => '\Gamma ', # 1d6e4
1351
+ 120_549 => '\Delta ', # 1d6e5
1352
+ 120_553 => '\Theta ', # 1d6e9
1353
+ 120_556 => '\Lambda ', # 1d6ec
1354
+ 120_559 => '\Xi ', # 1d6ef
1355
+ 120_561 => '\Pi ', # 1d6f1
1356
+ 120_564 => '\Sigma ', # 1d6f4
1357
+ 120_566 => '\Upsilon ', # 1d6f6
1358
+ 120_567 => '\Phi ', # 1d6f7
1359
+ 120_569 => '\Psi ', # 1d6f9
1360
+ 120_570 => '\Omega ', # 1d6fa
1361
+ 120_572 => '\alpha ', # 1d6fc
1362
+ 120_573 => '\beta ', # 1d6fd
1363
+ 120_574 => '\gamma ', # 1d6fe
1364
+ 120_575 => '\delta ', # 1d6ff
1365
+ 120_576 => '\varepsilon ', # 1d700
1366
+ 120_577 => '\zeta ', # 1d701
1367
+ 120_578 => '\eta ', # 1d702
1368
+ 120_579 => '\theta ', # 1d703
1369
+ 120_580 => '\iota ', # 1d704
1370
+ 120_581 => '\kappa ', # 1d705
1371
+ 120_582 => '\lambda ', # 1d706
1372
+ 120_583 => '\mu ', # 1d707
1373
+ 120_584 => '\nu ', # 1d708
1374
+ 120_585 => '\xi ', # 1d709
1375
+ 120_587 => '\pi ', # 1d70b
1376
+ 120_588 => '\rho ', # 1d70c
1377
+ 120_589 => '\varsigma ', # 1d70d
1378
+ 120_590 => '\sigma ', # 1d70e
1379
+ 120_591 => '\tau ', # 1d70f
1380
+ 120_592 => '\upsilon ', # 1d710
1381
+ 120_593 => '\varphi ', # 1d711
1382
+ 120_594 => '\chi ', # 1d712
1383
+ 120_595 => '\psi ', # 1d713
1384
+ 120_596 => '\omega ', # 1d714
1385
+ 120_597 => '\partial ', # 1d715
1386
+ 120_598 => '\epsilon ', # 1d716
1387
+ 120_599 => '\vartheta ', # 1d717
1388
+ 120_600 => '\varkappa ', # 1d718
1389
+ 120_601 => '\phi ', # 1d719
1390
+ 120_602 => '\varrho ', # 1d71a
1391
+ 120_603 => '\varpi ', # 1d71b
1392
+ 120_606 => '\mathbfit{\Gamma} ', # 1d71e
1393
+ 120_607 => '\mathbfit{\Delta} ', # 1d71f
1394
+ 120_611 => '\mathbfit{\Theta} ', # 1d723
1395
+ 120_614 => '\mathbfit{\Lambda} ', # 1d726
1396
+ 120_617 => '\mathbfit{\Xi} ', # 1d729
1397
+ 120_619 => '\mathbfit{\Pi} ', # 1d72b
1398
+ 120_622 => '\mathbfit{\Sigma} ', # 1d72e
1399
+ 120_624 => '\mathbfit{\Upsilon} ', # 1d730
1400
+ 120_625 => '\mathbfit{\Phi} ', # 1d731
1401
+ 120_627 => '\mathbfit{\Psi} ', # 1d733
1402
+ 120_628 => '\mathbfit{\Omega} ', # 1d734
1403
+ 120_630 => '\mathbfit{\alpha} ', # 1d736
1404
+ 120_631 => '\mathbfit{\beta} ', # 1d737
1405
+ 120_632 => '\mathbfit{\gamma} ', # 1d738
1406
+ 120_633 => '\mathbfit{\delta} ', # 1d739
1407
+ 120_634 => '\mathbfit{\varepsilon} ', # 1d73a
1408
+ 120_635 => '\mathbfit{\zeta} ', # 1d73b
1409
+ 120_636 => '\mathbfit{\eta} ', # 1d73c
1410
+ 120_637 => '\mathbfit{\theta} ', # 1d73d
1411
+ 120_638 => '\mathbfit{\iota} ', # 1d73e
1412
+ 120_639 => '\mathbfit{\kappa} ', # 1d73f
1413
+ 120_640 => '\mathbfit{\lambda} ', # 1d740
1414
+ 120_641 => '\mathbfit{\mu} ', # 1d741
1415
+ 120_642 => '\mathbfit{\nu} ', # 1d742
1416
+ 120_643 => '\mathbfit{\xi} ', # 1d743
1417
+ 120_645 => '\mathbfit{\pi} ', # 1d745
1418
+ 120_646 => '\mathbfit{\rho} ', # 1d746
1419
+ 120_647 => '\mathbfit{\varsigma} ', # 1d747
1420
+ 120_648 => '\mathbfit{\sigma} ', # 1d748
1421
+ 120_649 => '\mathbfit{\tau} ', # 1d749
1422
+ 120_650 => '\mathbfit{\upsilon} ', # 1d74a
1423
+ 120_651 => '\mathbfit{\varphi} ', # 1d74b
1424
+ 120_652 => '\mathbfit{\chi} ', # 1d74c
1425
+ 120_653 => '\mathbfit{\psi} ', # 1d74d
1426
+ 120_654 => '\mathbfit{\omega} ', # 1d74e
1427
+ 120_656 => '\mathbfit{\epsilon} ', # 1d750
1428
+ 120_657 => '\mathbfit{\vartheta} ', # 1d751
1429
+ 120_659 => '\mathbfit{\phi} ', # 1d753
1430
+ 120_660 => '\mathbfit{\varrho} ', # 1d754
1431
+ 120_661 => '\mathbfit{\varpi} ', # 1d755
1432
+ 120_664 => '\mathsfbf{\Gamma} ', # 1d758
1433
+ 120_665 => '\mathsfbf{\Delta} ', # 1d759
1434
+ 120_669 => '\mathsfbf{\Theta} ', # 1d75d
1435
+ 120_672 => '\mathsfbf{\Lambda} ', # 1d760
1436
+ 120_675 => '\mathsfbf{\Xi} ', # 1d763
1437
+ 120_677 => '\mathsfbf{\Pi} ', # 1d765
1438
+ 120_680 => '\mathsfbf{\Sigma} ', # 1d768
1439
+ 120_682 => '\mathsfbf{\Upsilon} ', # 1d76a
1440
+ 120_683 => '\mathsfbf{\Phi} ', # 1d76b
1441
+ 120_685 => '\mathsfbf{\Psi} ', # 1d76d
1442
+ 120_686 => '\mathsfbf{\Omega} ', # 1d76e
1443
+ 120_688 => '\mathsfbf{\alpha} ', # 1d770
1444
+ 120_689 => '\mathsfbf{\beta} ', # 1d771
1445
+ 120_690 => '\mathsfbf{\gamma} ', # 1d772
1446
+ 120_691 => '\mathsfbf{\delta} ', # 1d773
1447
+ 120_692 => '\mathsfbf{\varepsilon} ', # 1d774
1448
+ 120_693 => '\mathsfbf{\zeta} ', # 1d775
1449
+ 120_694 => '\mathsfbf{\eta} ', # 1d776
1450
+ 120_695 => '\mathsfbf{\theta} ', # 1d777
1451
+ 120_696 => '\mathsfbf{\iota} ', # 1d778
1452
+ 120_697 => '\mathsfbf{\kappa} ', # 1d779
1453
+ 120_698 => '\mathsfbf{\lambda} ', # 1d77a
1454
+ 120_699 => '\mathsfbf{\mu} ', # 1d77b
1455
+ 120_700 => '\mathsfbf{\nu} ', # 1d77c
1456
+ 120_701 => '\mathsfbf{\xi} ', # 1d77d
1457
+ 120_703 => '\mathsfbf{\pi} ', # 1d77f
1458
+ 120_704 => '\mathsfbf{\rho} ', # 1d780
1459
+ 120_705 => '\mathsfbf{\varsigma} ', # 1d781
1460
+ 120_706 => '\mathsfbf{\sigma} ', # 1d782
1461
+ 120_707 => '\mathsfbf{\tau} ', # 1d783
1462
+ 120_708 => '\mathsfbf{\upsilon} ', # 1d784
1463
+ 120_709 => '\mathsfbf{\varphi} ', # 1d785
1464
+ 120_710 => '\mathsfbf{\chi} ', # 1d786
1465
+ 120_711 => '\mathsfbf{\psi} ', # 1d787
1466
+ 120_712 => '\mathsfbf{\omega} ', # 1d788
1467
+ 120_714 => '\mathsfbf{\epsilon} ', # 1d78a
1468
+ 120_715 => '\mathsfbf{\vartheta} ', # 1d78b
1469
+ 120_717 => '\mathsfbf{\phi} ', # 1d78d
1470
+ 120_718 => '\mathsfbf{\varrho} ', # 1d78e
1471
+ 120_719 => '\mathsfbf{\varpi} ', # 1d78f
1472
+ 120_722 => '\mathsfbfit{\Gamma} ', # 1d792
1473
+ 120_723 => '\mathsfbfit{\Delta} ', # 1d793
1474
+ 120_727 => '\mathsfbfit{\Theta} ', # 1d797
1475
+ 120_730 => '\mathsfbfit{\Lambda} ', # 1d79a
1476
+ 120_733 => '\mathsfbfit{\Xi} ', # 1d79d
1477
+ 120_735 => '\mathsfbfit{\Pi} ', # 1d79f
1478
+ 120_738 => '\mathsfbfit{\Sigma} ', # 1d7a2
1479
+ 120_740 => '\mathsfbfit{\Upsilon} ', # 1d7a4
1480
+ 120_741 => '\mathsfbfit{\Phi} ', # 1d7a5
1481
+ 120_743 => '\mathsfbfit{\Psi} ', # 1d7a7
1482
+ 120_744 => '\mathsfbfit{\Omega} ', # 1d7a8
1483
+ 120_746 => '\mathsfbfit{\alpha} ', # 1d7aa
1484
+ 120_747 => '\mathsfbfit{\beta} ', # 1d7ab
1485
+ 120_748 => '\mathsfbfit{\gamma} ', # 1d7ac
1486
+ 120_749 => '\mathsfbfit{\delta} ', # 1d7ad
1487
+ 120_750 => '\mathsfbfit{\varepsilon} ', # 1d7ae
1488
+ 120_751 => '\mathsfbfit{\zeta} ', # 1d7af
1489
+ 120_752 => '\mathsfbfit{\eta} ', # 1d7b0
1490
+ 120_753 => '\mathsfbfit{\theta} ', # 1d7b1
1491
+ 120_754 => '\mathsfbfit{\iota} ', # 1d7b2
1492
+ 120_755 => '\mathsfbfit{\kappa} ', # 1d7b3
1493
+ 120_756 => '\mathsfbfit{\lambda} ', # 1d7b4
1494
+ 120_757 => '\mathsfbfit{\mu} ', # 1d7b5
1495
+ 120_758 => '\mathsfbfit{\nu} ', # 1d7b6
1496
+ 120_759 => '\mathsfbfit{\xi} ', # 1d7b7
1497
+ 120_761 => '\mathsfbfit{\pi} ', # 1d7b9
1498
+ 120_762 => '\mathsfbfit{\rho} ', # 1d7ba
1499
+ 120_763 => '\mathsfbfit{\varsigma} ', # 1d7bb
1500
+ 120_764 => '\mathsfbfit{\sigma} ', # 1d7bc
1501
+ 120_765 => '\mathsfbfit{\tau} ', # 1d7bd
1502
+ 120_766 => '\mathsfbfit{\upsilon} ', # 1d7be
1503
+ 120_767 => '\mathsfbfit{\varphi} ', # 1d7bf
1504
+ 120_768 => '\mathsfbfit{\chi} ', # 1d7c0
1505
+ 120_769 => '\mathsfbfit{\psi} ', # 1d7c1
1506
+ 120_770 => '\mathsfbfit{\omega} ', # 1d7c2
1507
+ 120_772 => '\mathsfbfit{\epsilon} ', # 1d7c4
1508
+ 120_773 => '\mathsfbfit{\vartheta} ', # 1d7c5
1509
+ 120_775 => '\mathsfbfit{\phi} ', # 1d7c7
1510
+ 120_776 => '\mathsfbfit{\varrho} ', # 1d7c8
1511
+ 120_777 => '\mathsfbfit{\varpi} ', # 1d7c9
1512
+ 120_782 => '\mathbf{0} ', # 1d7ce
1513
+ 120_783 => '\mathbf{1} ', # 1d7cf
1514
+ 120_784 => '\mathbf{2} ', # 1d7d0
1515
+ 120_785 => '\mathbf{3} ', # 1d7d1
1516
+ 120_786 => '\mathbf{4} ', # 1d7d2
1517
+ 120_787 => '\mathbf{5} ', # 1d7d3
1518
+ 120_788 => '\mathbf{6} ', # 1d7d4
1519
+ 120_789 => '\mathbf{7} ', # 1d7d5
1520
+ 120_790 => '\mathbf{8} ', # 1d7d6
1521
+ 120_791 => '\mathbf{9} ', # 1d7d7
1522
+ 120_792 => '\mathbb{0} ', # 1d7d8
1523
+ 120_793 => '\mathbb{1} ', # 1d7d9
1524
+ 120_794 => '\mathbb{2} ', # 1d7da
1525
+ 120_795 => '\mathbb{3} ', # 1d7db
1526
+ 120_796 => '\mathbb{4} ', # 1d7dc
1527
+ 120_797 => '\mathbb{5} ', # 1d7dd
1528
+ 120_798 => '\mathbb{6} ', # 1d7de
1529
+ 120_799 => '\mathbb{7} ', # 1d7df
1530
+ 120_800 => '\mathbb{8} ', # 1d7e0
1531
+ 120_801 => '\mathbb{9} ', # 1d7e1
1532
+ 120_802 => '\mathsf{0} ', # 1d7e2
1533
+ 120_803 => '\mathsf{1} ', # 1d7e3
1534
+ 120_804 => '\mathsf{2} ', # 1d7e4
1535
+ 120_805 => '\mathsf{3} ', # 1d7e5
1536
+ 120_806 => '\mathsf{4} ', # 1d7e6
1537
+ 120_807 => '\mathsf{5} ', # 1d7e7
1538
+ 120_808 => '\mathsf{6} ', # 1d7e8
1539
+ 120_809 => '\mathsf{7} ', # 1d7e9
1540
+ 120_810 => '\mathsf{8} ', # 1d7ea
1541
+ 120_811 => '\mathsf{9} ', # 1d7eb
1542
+ 120_812 => '\mathsfbf{0} ', # 1d7ec
1543
+ 120_813 => '\mathsfbf{1} ', # 1d7ed
1544
+ 120_814 => '\mathsfbf{2} ', # 1d7ee
1545
+ 120_815 => '\mathsfbf{3} ', # 1d7ef
1546
+ 120_816 => '\mathsfbf{4} ', # 1d7f0
1547
+ 120_817 => '\mathsfbf{5} ', # 1d7f1
1548
+ 120_818 => '\mathsfbf{6} ', # 1d7f2
1549
+ 120_819 => '\mathsfbf{7} ', # 1d7f3
1550
+ 120_820 => '\mathsfbf{8} ', # 1d7f4
1551
+ 120_821 => '\mathsfbf{9} ', # 1d7f5
1552
+ 120_822 => '\mathtt{0} ', # 1d7f6
1553
+ 120_823 => '\mathtt{1} ', # 1d7f7
1554
+ 120_824 => '\mathtt{2} ', # 1d7f8
1555
+ 120_825 => '\mathtt{3} ', # 1d7f9
1556
+ 120_826 => '\mathtt{4} ', # 1d7fa
1557
+ 120_827 => '\mathtt{5} ', # 1d7fb
1558
+ 120_828 => '\mathtt{6} ', # 1d7fc
1559
+ 120_829 => '\mathtt{7} ', # 1d7fd
1560
+ 120_830 => '\mathtt{8} ', # 1d7fe
1561
+ 120_831 => '\mathtt{9} ', # 1d7ff
1562
+ 128_276 => '\bell ' # 1f514
1560
1563
  }.freeze
1561
1564
  end