From 0c27d66da3ffc60c573dd310ece80c762b2bbd0f Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Fri, 9 Feb 2018 22:37:12 +0000 Subject: luaxml (9feb18) git-svn-id: svn://tug.org/texlive/trunk@46582 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/luatex/luaxml/README | 7 +- Master/texmf-dist/doc/luatex/luaxml/luaxml.pdf | Bin 98163 -> 98307 bytes Master/texmf-dist/doc/luatex/luaxml/luaxml.tex | 2 +- .../tex/luatex/luaxml/luaxml-domobject.lua | 5 +- .../tex/luatex/luaxml/luaxml-entities.lua | 37 + .../tex/luatex/luaxml/luaxml-mod-handler.lua | 13 +- .../tex/luatex/luaxml/luaxml-namedentities.lua | 2233 ++++++++++++++++++++ 7 files changed, 2289 insertions(+), 8 deletions(-) create mode 100644 Master/texmf-dist/tex/luatex/luaxml/luaxml-entities.lua create mode 100644 Master/texmf-dist/tex/luatex/luaxml/luaxml-namedentities.lua (limited to 'Master') diff --git a/Master/texmf-dist/doc/luatex/luaxml/README b/Master/texmf-dist/doc/luatex/luaxml/README index 0ebf891e74b..3f80c181f2d 100644 --- a/Master/texmf-dist/doc/luatex/luaxml/README +++ b/Master/texmf-dist/doc/luatex/luaxml/README @@ -15,8 +15,8 @@ then clone this repository and run make install -Please note that you will need [LDoc](http://stevedonovan.github.io/ldoc/manual/doc.md.html#Processing_Single_Modules) installed -on your system. +Please note that you will need [LDoc](http://stevedonovan.github.io/ldoc/manual/doc.md.html#Processing_Single_Modules) and +[dkjson](http://dkolf.de/src/dkjson-lua.fsl/home) Lua modules installed on your system. License: ======== @@ -29,9 +29,10 @@ Author ------ Michal Hoftich Email: michal.h21@gmail.com +Version: 0.1a Original authors: Paul Chakravarti and Manoel Campos (http://manoelcampos.com) If you are interested in the process of development you may observe - https://github.com/michal-h21/LuaXML \ No newline at end of file + https://github.com/michal-h21/LuaXML diff --git a/Master/texmf-dist/doc/luatex/luaxml/luaxml.pdf b/Master/texmf-dist/doc/luatex/luaxml/luaxml.pdf index 07ec3244c70..529228ec8d8 100644 Binary files a/Master/texmf-dist/doc/luatex/luaxml/luaxml.pdf and b/Master/texmf-dist/doc/luatex/luaxml/luaxml.pdf differ diff --git a/Master/texmf-dist/doc/luatex/luaxml/luaxml.tex b/Master/texmf-dist/doc/luatex/luaxml/luaxml.tex index 88ab450a50e..1338c3e275b 100644 --- a/Master/texmf-dist/doc/luatex/luaxml/luaxml.tex +++ b/Master/texmf-dist/doc/luatex/luaxml/luaxml.tex @@ -7,7 +7,7 @@ \usepackage{framed} % Version is defined in the makefile, use default values when compiled directly \ifdefined\version\else -\def\version{0} +\def\version{0.1a} \let\gitdate\date \fi \newcommand\modulename[1]{\subsection{#1}\label{sec:#1}} diff --git a/Master/texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua b/Master/texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua index 7047c76a937..46be64803b3 100644 --- a/Master/texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua +++ b/Master/texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua @@ -14,7 +14,8 @@ local escapes = { ["<"] = "<", ["&"] = "&", ['"'] = """, - ["'"] = "'" + ["'"] = "'", + ["`"] = "`" } local function escape(search, text) @@ -28,7 +29,7 @@ local function escape_element(text) end local function escape_attr(text) - return escape("([<>&\"'])", text) + return escape("([<>&\"'`])", text) end local actions = { diff --git a/Master/texmf-dist/tex/luatex/luaxml/luaxml-entities.lua b/Master/texmf-dist/tex/luatex/luaxml/luaxml-entities.lua new file mode 100644 index 00000000000..1d298764118 --- /dev/null +++ b/Master/texmf-dist/tex/luatex/luaxml/luaxml-entities.lua @@ -0,0 +1,37 @@ +local M = {} +local char = unicode.utf8.char +local named_entities = require "luaxml-namedentities" +local hexchartable = {} +local decchartable = {} + + +local function get_named_entity(name) + return named_entities[name] +end + +function M.decode(s) + return s:gsub("&([#a-zA-Z0-9]+);?", function(m) + -- check if this is named entity first + local named = get_named_entity(m) + if named then return named end + -- check if it is numeric entity + local hex, charcode = m:match("#([xX]?)([a-fA-F0-9]+)") + -- if the entity is not numeric + if not charcode then return + "&" .. m .. ";" + end + local character + if hex~="" then + character = hexchartable[charcode] or char(tonumber(charcode,16)) + hexchartable[charcode] = character + else + character = decchartable[charcode] or char(tonumber(charcode)) + decchartable[charcode] = character + end + return character + end) +end + +return M + + diff --git a/Master/texmf-dist/tex/luatex/luaxml/luaxml-mod-handler.lua b/Master/texmf-dist/tex/luatex/luaxml/luaxml-mod-handler.lua index 155ce28d9f3..52acecb0c65 100644 --- a/Master/texmf-dist/tex/luatex/luaxml/luaxml-mod-handler.lua +++ b/Master/texmf-dist/tex/luatex/luaxml/luaxml-mod-handler.lua @@ -113,6 +113,7 @@ local M = {} local stack = require("luaxml-stack") +local entities = require("luaxml-entities") local function showTable(t) local sep = '' @@ -251,13 +252,21 @@ M.simpleTreeHandler = simpleTreeHandler --- domHandler local function domHandler() local obj = {} + local decode = entities.decode obj.options = {commentNode=1,piNode=1,dtdNode=1,declNode=1} obj.root = { _children = {n=0}, _type = "ROOT" } obj.current = obj.root obj.starttag = function(self,t,a) + local newattr + if a then + newattr = {} + for k,v in pairs(a) do + newattr[k] = decode(v) + end + end local node = { _type = 'ELEMENT', _name = t, - _attr = a, + _attr = newattr, _parent = self.current, _children = {n=0} } table.insert(self.current._children,node) @@ -272,7 +281,7 @@ local function domHandler() obj.text = function(self,t) local node = { _type = "TEXT", _parent = self.current, - _text = t } + _text = decode(t) } table.insert(self.current._children,node) end obj.comment = function(self,t) diff --git a/Master/texmf-dist/tex/luatex/luaxml/luaxml-namedentities.lua b/Master/texmf-dist/tex/luatex/luaxml/luaxml-namedentities.lua new file mode 100644 index 00000000000..5d686929147 --- /dev/null +++ b/Master/texmf-dist/tex/luatex/luaxml/luaxml-namedentities.lua @@ -0,0 +1,2233 @@ +return { +["HARDcy"]="Ъ", +["capdot"]="⩀", +["pound"]="£", +["upuparrows"]="⇈", +["RightFloor"]="⌋", +["LeftUpTeeVector"]="⥠", +["shcy"]="ш", +["ac"]="∾", +["Iacute"]="Í", +["boxVl"]="╢", +["prap"]="⪷", +["ocirc"]="ô", +["Rsh"]="↱", +["Ncy"]="Н", +["mdash"]="—", +["lozf"]="⧫", +["ETH"]="Ð", +["rhov"]="ϱ", +["dtri"]="▿", +["shortparallel"]="∥", +["DiacriticalDoubleAcute"]="˝", +["Uring"]="Ů", +["gap"]="⪆", +["notinvb"]="⋷", +["nsc"]="⊁", +["zeta"]="ζ", +["Ouml"]="Ö", +["Sub"]="⋐", +["Zdot"]="Ż", +["ograve"]="ò", +["block"]="█", +["toea"]="⤨", +["odash"]="⊝", +["DownRightVector"]="⇁", +["siml"]="⪝", +["sharp"]="♯", +["oline"]="‾", +["Proportional"]="∝", +["Lacute"]="Ĺ", +["gtreqqless"]="⪌", +["Im"]="ℑ", +["blacktriangledown"]="▾", +["ndash"]="–", +["straightepsilon"]="ϵ", +["bigodot"]="⨀", +["npr"]="⊀", +["iocy"]="ё", +["lltri"]="◺", +["Uuml"]="Ü", +["srarr"]="→", +["nvap"]="≍⃒", +["nprec"]="⊀", +["Rcy"]="Р", +["DownArrowBar"]="⤓", +["Ll"]="⋘", +["forkv"]="⫙", +["LongLeftArrow"]="⟵", +["LeftUpVectorBar"]="⥘", +["jsercy"]="ј", +["thkap"]="≈", +["gsime"]="⪎", +["realine"]="ℛ", +["nsupset"]="⊃⃒", +["inodot"]="ı", +["CircleDot"]="⊙", +["qint"]="⨌", +["nLeftarrow"]="⇍", +["prnap"]="⪹", +["caron"]="ˇ", +["LessFullEqual"]="≦", +["RightVectorBar"]="⥓", +["kappa"]="κ", +["Ascr"]="𝒜", +["Emacr"]="Ē", +["nsup"]="⊅", +["simlE"]="⪟", +["gamma"]="γ", +["CircleTimes"]="⊗", +["Aogon"]="Ą", +["sstarf"]="⋆", +["drbkarow"]="⤐", +["ruluhar"]="⥨", +["icirc"]="î", +["Esim"]="⩳", +["Longleftrightarrow"]="⟺", +["SquareUnion"]="⊔", +["Iacute"]="Í", +["oplus"]="⊕", +["VerticalSeparator"]="❘", +["coprod"]="∐", +["eDot"]="≑", +["TScy"]="Ц", +["Leftrightarrow"]="⇔", +["Lcy"]="Л", +["NotSucceedsSlantEqual"]="⋡", +["Tstrok"]="Ŧ", +["QUOT"]="\"", +["curlyeqsucc"]="⋟", +["lozenge"]="◊", +["ltcir"]="⩹", +["Lsh"]="↰", +["ldsh"]="↲", +["dcaron"]="ď", +["scaron"]="š", +["Racute"]="Ŕ", +["nvgt"]=">⃒", +["Cscr"]="𝒞", +["rmoustache"]="⎱", +["Ucy"]="У", +["LessEqualGreater"]="⋚", +["lsime"]="⪍", +["Iuml"]="Ï", +["zfr"]="𝔷", +["LowerLeftArrow"]="↙", +["ccaps"]="⩍", +["smeparsl"]="⧤", +["hellip"]="…", +["rcaron"]="ř", +["Dscr"]="𝒟", +["clubs"]="♣", +["Poincareplane"]="ℌ", +["Vcy"]="В", +["nles"]="⩽̸", +["blank"]="␣", +["order"]="ℴ", +["ccups"]="⩌", +["rbrkslu"]="⦐", +["easter"]="⩮", +["ltimes"]="⋉", +["rBarr"]="⤏", +["nlArr"]="⇍", +["minusdu"]="⨪", +["nhArr"]="⇎", +["lg"]="≶", +["LessGreater"]="≶", +["lne"]="⪇", +["NegativeThickSpace"]="​", +["LessLess"]="⪡", +["nsime"]="≄", +["nltri"]="⋪", +["boxvL"]="╡", +["isin"]="∈", +["UnderBrace"]="⏟", +["el"]="⪙", +["ntriangleleft"]="⋪", +["lnsim"]="⋦", +["Sacute"]="Ś", +["Fscr"]="ℱ", +["gbreve"]="ğ", +["ohbar"]="⦵", +["alefsym"]="ℵ", +["nap"]="≉", +["eqvparsl"]="⧥", +["NegativeVeryThinSpace"]="​", +["prod"]="∏", +["ohm"]="Ω", +["NotNestedGreaterGreater"]="⪢̸", +["rtimes"]="⋊", +["sigmav"]="ς", +["check"]="✓", +["reg"]="®", +["Gscr"]="𝒢", +["nLeftrightarrow"]="⇎", +["triminus"]="⨺", +["topfork"]="⫚", +["Ugrave"]="Ù", +["nleqslant"]="⩽̸", +["Oacute"]="Ó", +["NonBreakingSpace"]=" ", +["eqcolon"]="≕", +["lrcorner"]="⌟", +["Ycy"]="Ы", +["rarrtl"]="↣", +["Udblac"]="Ű", +["gl"]="≷", +["rightarrow"]="→", +["nprcue"]="⋠", +["Hscr"]="ℋ", +["rlhar"]="⇌", +["trianglerighteq"]="⊵", +["Uacute"]="Ú", +["nexist"]="∄", +["plusmn"]="±", +["hardcy"]="ъ", +["Zcy"]="З", +["lbarr"]="⤌", +["macr"]="¯", +["prnsim"]="⋨", +["NotTildeEqual"]="≄", +["Iscr"]="ℐ", +["Element"]="∈", +["Subset"]="⋐", +["supsetneq"]="⊋", +["raemptyv"]="⦳", +["Scy"]="С", +["xmap"]="⟼", +["ugrave"]="ù", +["notnivc"]="⋽", +["LessTilde"]="≲", +["RightUpVectorBar"]="⥔", +["epar"]="⋕", +["otimes"]="⊗", +["boxH"]="═", +["angmsdae"]="⦬", +["topcir"]="⫱", +["shy"]="­", +["Lstrok"]="Ł", +["latail"]="⤙", +["Tcy"]="Т", +["sqcup"]="⊔", +["sqsub"]="⊏", +["sqcap"]="⊓", +["angmsd"]="∡", +["parallel"]="∥", +["minus"]="−", +["circ"]="ˆ", +["alpha"]="α", +["chcy"]="ч", +["SucceedsEqual"]="⪰", +["opar"]="⦷", +["Cayleys"]="ℭ", +["agrave"]="à", +["imagpart"]="ℑ", +["varsubsetneqq"]="⫋︀", +["epsi"]="ε", +["nVdash"]="⊮", +["orarr"]="↻", +["rfr"]="𝔯", +["xuplus"]="⨄", +["checkmark"]="✓", +["rpargt"]="⦔", +["ncup"]="⩂", +["trisb"]="⧍", +["npar"]="∦", +["times"]="×", +["nrightarrow"]="↛", +["commat"]="@", +["bigtriangleup"]="△", +["Zcaron"]="Ž", +["fpartint"]="⨍", +["lnapprox"]="⪉", +["utri"]="▵", +["Hat"]="^", +["rsquo"]="’", +["wfr"]="𝔴", +["LeftDoubleBracket"]="⟦", +["Sc"]="⪼", +["midast"]="*", +["utdot"]="⋰", +["lbrkslu"]="⦍", +["Sqrt"]="√", +["TripleDot"]="⃛", +["oslash"]="ø", +["rarrpl"]="⥅", +["csupe"]="⫒", +["gcy"]="г", +["gtrdot"]="⋗", +["xfr"]="𝔵", +["cudarrl"]="⤸", +["rarrb"]="⇥", +["nRightarrow"]="⇏", +["phi"]="φ", +["fallingdotseq"]="≒", +["rarrbfs"]="⤠", +["rangle"]="⟩", +["HorizontalLine"]="─", +["propto"]="∝", +["subsub"]="⫕", +["flat"]="♭", +["ograve"]="ò", +["bne"]="=⃥", +["Cedilla"]="¸", +["DownLeftTeeVector"]="⥞", +["sup"]="⊃", +["profalar"]="⌮", +["sime"]="≃", +["And"]="⩓", +["bsim"]="∽", +["vfr"]="𝔳", +["edot"]="ė", +["scE"]="⪴", +["ffllig"]="ffl", +["spadesuit"]="♠", +["gt"]=">", +["Lt"]="≪", +["angmsdad"]="⦫", +["rightsquigarrow"]="↝", +["larrbfs"]="⤟", +["NJcy"]="Њ", +["thicksim"]="∼", +["gnsim"]="⋧", +["bottom"]="⊥", +["lmoustache"]="⎰", +["NotPrecedesEqual"]="⪯̸", +["bumpe"]="≏", +["heartsuit"]="♥", +["lt"]="<", +["prop"]="∝", +["DiacriticalAcute"]="´", +["boxHu"]="╧", +["RightUpDownVector"]="⥏", +["ReverseElement"]="∋", +["Dot"]="¨", +["sqcups"]="⊔︀", +["lvnE"]="≨︀", +["subsetneq"]="⊊", +["gdot"]="ġ", +["lpar"]="(", +["NotEqual"]="≠", +["awint"]="⨑", +["iiint"]="∭", +["imath"]="ı", +["gne"]="⪈", +["operp"]="⦹", +["nbumpe"]="≏̸", +["doublebarwedge"]="⌆", +["LJcy"]="Љ", +["bbrk"]="⎵", +["RightAngleBracket"]="⟩", +["reg"]="®", +["nvlArr"]="⤂", +["xcup"]="⋃", +["mapstoup"]="↥", +["nlt"]="≮", +["nsim"]="≁", +["nsubE"]="⫅̸", +["plus"]="+", +["bigotimes"]="⨂", +["jmath"]="ȷ", +["equals"]="=", +["khcy"]="х", +["Upsilon"]="Υ", +["rightrightarrows"]="⇉", +["supe"]="⊇", +["Egrave"]="È", +["lbrksld"]="⦏", +["sce"]="⪰", +["HilbertSpace"]="ℋ", +["ic"]="⁣", +["niv"]="∋", +["ccaron"]="č", +["bigwedge"]="⋀", +["olt"]="⧀", +["ultri"]="◸", +["ofr"]="𝔬", +["exponentiale"]="ⅇ", +["LeftCeiling"]="⌈", +["UpEquilibrium"]="⥮", +["vartriangleleft"]="⊲", +["Supset"]="⋑", +["aacute"]="á", +["langle"]="⟨", +["cuwed"]="⋏", +["Ubreve"]="Ŭ", +["fcy"]="ф", +["lsim"]="≲", +["vltri"]="⊲", +["jfr"]="𝔧", +["digamma"]="ϝ", +["Eogon"]="Ę", +["gnapprox"]="⪊", +["Amacr"]="Ā", +["ecirc"]="ê", +["scnE"]="⪶", +["thickapprox"]="≈", +["ltdot"]="⋖", +["malt"]="✠", +["drcrop"]="⌌", +["ifr"]="𝔦", +["NotGreaterTilde"]="≵", +["upharpoonright"]="↾", +["wedge"]="∧", +["notin"]="∉", +["nrarr"]="↛", +["LeftTeeArrow"]="↤", +["cacute"]="ć", +["dwangle"]="⦦", +["frasl"]="⁄", +["dzigrarr"]="⟿", +["para"]="¶", +["vnsup"]="⊃⃒", +["spar"]="∥", +["DotDot"]="⃜", +["vnsub"]="⊂⃒", +["suplarr"]="⥻", +["preceq"]="⪯", +["ffilig"]="ffi", +["quot"]="\"", +["nabla"]="∇", +["weierp"]="℘", +["searhk"]="⤥", +["icy"]="и", +["downdownarrows"]="⇊", +["lang"]="⟨", +["nleftrightarrow"]="↮", +["hamilt"]="ℋ", +["rpar"]=")", +["iquest"]="¿", +["bigstar"]="★", +["biguplus"]="⨄", +["dagger"]="†", +["lrarr"]="⇆", +["eacute"]="é", +["gtdot"]="⋗", +["jcy"]="й", +["supdsub"]="⫘", +["Prime"]="″", +["intercal"]="⊺", +["Aacute"]="Á", +["prsim"]="≾", +["nfr"]="𝔫", +["ngeq"]="≱", +["angmsdac"]="⦪", +["DoubleLeftRightArrow"]="⇔", +["Iogon"]="Į", +["kappav"]="ϰ", +["lsh"]="↰", +["tfr"]="𝔱", +["sect"]="§", +["omega"]="ω", +["gesles"]="⪔", +["boxplus"]="⊞", +["mfr"]="𝔪", +["GreaterFullEqual"]="≧", +["Exists"]="∃", +["Acirc"]="Â", +["nesim"]="≂̸", +["gacute"]="ǵ", +["dotplus"]="∔", +["rrarr"]="⇉", +["prnE"]="⪵", +["qfr"]="𝔮", +["triangleq"]="≜", +["boxvH"]="╪", +["dcy"]="д", +["sup1"]="¹", +["nequiv"]="≢", +["longleftrightarrow"]="⟷", +["Icirc"]="Î", +["shchcy"]="щ", +["raquo"]="»", +["quest"]="?", +["Euml"]="Ë", +["leftthreetimes"]="⋋", +["part"]="∂", +["VeryThinSpace"]=" ", +["Upsi"]="ϒ", +["bprime"]="‵", +["CenterDot"]="·", +["Agrave"]="À", +["NotHumpEqual"]="≏̸", +["theta"]="θ", +["Jcirc"]="Ĵ", +["Ocirc"]="Ô", +["rightharpoondown"]="⇁", +["caps"]="∩︀", +["DownLeftRightVector"]="⥐", +["doteqdot"]="≑", +["boxbox"]="⧉", +["nvHarr"]="⤄", +["timesd"]="⨰", +["uharl"]="↿", +["ouml"]="ö", +["TSHcy"]="Ћ", +["TRADE"]="™", +["iecy"]="е", +["Zeta"]="Ζ", +["Scirc"]="Ŝ", +["Lleftarrow"]="⇚", +["bigoplus"]="⨁", +["DoubleDownArrow"]="⇓", +["nexists"]="∄", +["lesdoto"]="⪁", +["geq"]="≥", +["nwnear"]="⤧", +["Updownarrow"]="⇕", +["andand"]="⩕", +["nge"]="≱", +["curvearrowleft"]="↶", +["bkarow"]="⤍", +["Ccaron"]="Č", +["NegativeThinSpace"]="​", +["nbump"]="≎̸", +["ecir"]="≖", +["imacr"]="ī", +["Succeeds"]="≻", +["supnE"]="⫌", +["Auml"]="Ä", +["rsh"]="↱", +["approx"]="≈", +["sdote"]="⩦", +["SuchThat"]="∋", +["Jsercy"]="Ј", +["odsold"]="⦼", +["Dcaron"]="Ď", +["dfisht"]="⥿", +["harrcir"]="⥈", +["hArr"]="⇔", +["leftrightarrow"]="↔", +["geqslant"]="⩾", +["boxDL"]="╗", +["nsucceq"]="⪰̸", +["leg"]="⋚", +["parsl"]="⫽", +["dd"]="ⅆ", +["bump"]="≎", +["GT"]=">", +["DiacriticalGrave"]="`", +["Ecaron"]="Ě", +["cap"]="∩", +["sext"]="✶", +["LongRightArrow"]="⟶", +["LeftDownVectorBar"]="⥙", +["gg"]="≫", +["dlcorn"]="⌞", +["LeftVector"]="↼", +["Gcirc"]="Ĝ", +["LT"]="<", +["ldquor"]="„", +["subset"]="⊂", +["tstrok"]="ŧ", +["iacute"]="í", +["Hcirc"]="Ĥ", +["gtrapprox"]="⪆", +["demptyv"]="⦱", +["HumpDownHump"]="≎", +["image"]="ℑ", +["Icirc"]="Î", +["boxHD"]="╦", +["aogon"]="ą", +["smid"]="∣", +["uuml"]="ü", +["lneq"]="⪇", +["star"]="☆", +["UpperRightArrow"]="↗", +["larrpl"]="⤹", +["backsimeq"]="⋍", +["Itilde"]="Ĩ", +["supne"]="⊋", +["LeftDownTeeVector"]="⥡", +["yicy"]="ї", +["NotSucceeds"]="⊁", +["KJcy"]="Ќ", +["GreaterEqualLess"]="⋛", +["nLt"]="≪⃒", +["LeftRightArrow"]="↔", +["Ubrcy"]="Ў", +["LeftArrowRightArrow"]="⇆", +["dArr"]="⇓", +["epsilon"]="ε", +["wr"]="≀", +["percnt"]="%", +["lesdot"]="⩿", +["iiota"]="℩", +["boxul"]="┘", +["iquest"]="¿", +["tbrk"]="⎴", +["blacktriangle"]="▴", +["real"]="ℜ", +["origof"]="⊶", +["yen"]="¥", +["Intersection"]="⋂", +["els"]="⪕", +["cuesc"]="⋟", +["mldr"]="…", +["RightTee"]="⊢", +["Gbreve"]="Ğ", +["gimel"]="ℷ", +["models"]="⊧", +["uring"]="ů", +["gtrsim"]="≳", +["hairsp"]=" ", +["iota"]="ι", +["eacute"]="é", +["diamond"]="⋄", +["iuml"]="ï", +["hybull"]="⁃", +["Uarrocir"]="⥉", +["lesdotor"]="⪃", +["lceil"]="⌈", +["lsquo"]="‘", +["Uogon"]="Ų", +["beta"]="β", +["permil"]="‰", +["measuredangle"]="∡", +["eg"]="⪚", +["CHcy"]="Ч", +["bepsi"]="϶", +["GreaterLess"]="≷", +["Ucirc"]="Û", +["ange"]="⦤", +["Otimes"]="⨷", +["simgE"]="⪠", +["boxdl"]="┐", +["vDash"]="⊨", +["supedot"]="⫄", +["xvee"]="⋁", +["nisd"]="⋺", +["oacute"]="ó", +["llhard"]="⥫", +["Rarrtl"]="⤖", +["equest"]="≟", +["abreve"]="ă", +["rceil"]="⌉", +["nle"]="≰", +["frown"]="⌢", +["Ocirc"]="Ô", +["boxminus"]="⊟", +["nvrArr"]="⤃", +["TildeTilde"]="≈", +["Congruent"]="≡", +["Alpha"]="Α", +["glE"]="⪒", +["compfn"]="∘", +["cularr"]="↶", +["llcorner"]="⌞", +["plusacir"]="⨣", +["RightTeeArrow"]="↦", +["supsub"]="⫔", +["aring"]="å", +["boxhd"]="┬", +["boxvh"]="┼", +["VerticalBar"]="∣", +["AElig"]="Æ", +["DiacriticalDot"]="˙", +["pscr"]="𝓅", +["triangleleft"]="◃", +["supsetneqq"]="⫌", +["trie"]="≜", +["NotDoubleVerticalBar"]="∦", +["RightUpTeeVector"]="⥜", +["NotLessGreater"]="≸", +["gopf"]="𝕘", +["amalg"]="⨿", +["nrtrie"]="⋭", +["harrw"]="↭", +["FilledVerySmallSquare"]="▪", +["gtrarr"]="⥸", +["DDotrahd"]="⤑", +["UpArrowBar"]="⤒", +["angle"]="∠", +["gtquest"]="⩼", +["Equilibrium"]="⇌", +["qscr"]="𝓆", +["RightArrow"]="→", +["LongLeftRightArrow"]="⟷", +["NotCongruent"]="≢", +["target"]="⌖", +["iexcl"]="¡", +["vsupne"]="⊋︀", +["dopf"]="𝕕", +["RightTeeVector"]="⥛", +["AElig"]="Æ", +["lrm"]="‎", +["boxUr"]="╙", +["nscr"]="𝓃", +["Phi"]="Φ", +["erarr"]="⥱", +["gesdot"]="⪀", +["acE"]="∾̳", +["iopf"]="𝕚", +["NotSucceedsTilde"]="≿̸", +["geqq"]="≧", +["timesb"]="⊠", +["nvdash"]="⊬", +["fflig"]="ff", +["Tilde"]="∼", +["Ccirc"]="Ĉ", +["boxDR"]="╔", +["AMP"]="&", +["Idot"]="İ", +["Gcy"]="Г", +["pluscir"]="⨢", +["Longrightarrow"]="⟹", +["UnderParenthesis"]="⏝", +["sqsubseteq"]="⊑", +["profsurf"]="⌓", +["fopf"]="𝕗", +["and"]="∧", +["middot"]="·", +["ltquest"]="⩻", +["scpolint"]="⨓", +["Rcaron"]="Ř", +["DoubleLeftTee"]="⫤", +["rangd"]="⦒", +["crarr"]="↵", +["Bcy"]="Б", +["lscr"]="𝓁", +["kopf"]="𝕜", +["rharu"]="⇀", +["map"]="↦", +["LT"]="<", +["Scaron"]="Š", +["dscy"]="ѕ", +["NegativeMediumSpace"]="​", +["amp"]="&", +["sfrown"]="⌢", +["EmptySmallSquare"]="◻", +["Acy"]="А", +["cupcup"]="⩊", +["Gdot"]="Ġ", +["hopf"]="𝕙", +["smtes"]="⪬︀", +["lap"]="⪅", +["boxV"]="║", +["ltrie"]="⊴", +["divide"]="÷", +["larrb"]="⇤", +["ijlig"]="ij", +["Superset"]="⊃", +["gtreqless"]="⋛", +["Tcaron"]="Ť", +["jscr"]="𝒿", +["risingdotseq"]="≓", +["DScy"]="Ѕ", +["rdca"]="⤷", +["emptyset"]="∅", +["curvearrowright"]="↷", +["nrarrw"]="↝̸", +["angzarr"]="⍼", +["frac35"]="⅗", +["centerdot"]="·", +["vsupnE"]="⫌︀", +["Bumpeq"]="≎", +["lnap"]="⪉", +["gvertneqq"]="≩︀", +["tcaron"]="ť", +["Edot"]="Ė", +["Union"]="⋃", +["cupdot"]="⊍", +["napE"]="⩰̸", +["jopf"]="𝕛", +["iff"]="⇔", +["Aacute"]="Á", +["NotTildeFullEqual"]="≇", +["plussim"]="⨦", +["Yacute"]="Ý", +["Sup"]="⋑", +["multimap"]="⊸", +["nlE"]="≦̸", +["aelig"]="æ", +["ntgl"]="≹", +["Dstrok"]="Đ", +["frac14"]="¼", +["minusd"]="∸", +["Wedge"]="⋀", +["Fcy"]="Ф", +["xscr"]="𝓍", +["igrave"]="ì", +["ulcorn"]="⌜", +["CapitalDifferentialD"]="ⅅ", +["Star"]="⋆", +["ExponentialE"]="ⅇ", +["NotNestedLessLess"]="⪡̸", +["Acirc"]="Â", +["DoubleRightArrow"]="⇒", +["radic"]="√", +["twoheadleftarrow"]="↞", +["Ecy"]="Э", +["SquareSuperset"]="⊐", +["leftleftarrows"]="⇇", +["OElig"]="Œ", +["Cacute"]="Ć", +["bullet"]="•", +["ngeqslant"]="⩾̸", +["circlearrowright"]="↻", +["CounterClockwiseContourIntegral"]="∳", +["gnap"]="⪊", +["Vdashl"]="⫦", +["curlyeqprec"]="⋞", +["gtlPar"]="⦕", +["upsilon"]="υ", +["aopf"]="𝕒", +["prec"]="≺", +["vscr"]="𝓋", +["fjlig"]="fj", +["colone"]="≔", +["copy"]="©", +["ordf"]="ª", +["laquo"]="«", +["bemptyv"]="⦰", +["NotReverseElement"]="∌", +["eogon"]="ę", +["DoubleUpArrow"]="⇑", +["Ecirc"]="Ê", +["Rrightarrow"]="⇛", +["Fouriertrf"]="ℱ", +["wscr"]="𝓌", +["lBarr"]="⤎", +["plankv"]="ℏ", +["Uacute"]="Ú", +["cemptyv"]="⦲", +["squarf"]="▪", +["diamondsuit"]="♦", +["rightharpoonup"]="⇀", +["rtri"]="▹", +["Jcy"]="Й", +["copf"]="𝕔", +["langd"]="⦑", +["xlArr"]="⟸", +["egrave"]="è", +["Lcaron"]="Ľ", +["range"]="⦥", +["solbar"]="⌿", +["veeeq"]="≚", +["suphsol"]="⟉", +["brvbar"]="¦", +["Ecirc"]="Ê", +["nmid"]="∤", +["shortmid"]="∣", +["hookleftarrow"]="↩", +["GreaterEqual"]="≥", +["Icy"]="И", +["uscr"]="𝓊", +["gel"]="⋛", +["ocir"]="⊚", +["dzcy"]="џ", +["GT"]=">", +["ordm"]="º", +["chi"]="χ", +["Implies"]="⇒", +["Verbar"]="‖", +["nsupseteqq"]="⫆̸", +["Dcy"]="Д", +["it"]="⁢", +["Ncaron"]="Ň", +["eopf"]="𝕖", +["gtcir"]="⩺", +["emsp13"]=" ", +["nGt"]="≫⃒", +["ges"]="⩾", +["Dashv"]="⫤", +["andslope"]="⩘", +["bsolb"]="⧅", +["sup1"]="¹", +["bopf"]="𝕓", +["iogon"]="į", +["puncsp"]=" ", +["sscr"]="𝓈", +["SquareSupersetEqual"]="⊒", +["neArr"]="⇗", +["Ccedil"]="Ç", +["mapstodown"]="↧", +["aacute"]="á", +["ForAll"]="∀", +["lbbrk"]="❲", +["leftrightarrows"]="⇆", +["mDDot"]="∺", +["sccue"]="≽", +["otilde"]="õ", +["NotSquareSuperset"]="⊐̸", +["succapprox"]="⪸", +["nrarrc"]="⤳̸", +["wopf"]="𝕨", +["nu"]="ν", +["jcirc"]="ĵ", +["rHar"]="⥤", +["rdquo"]="”", +["conint"]="∮", +["ensp"]=" ", +["les"]="⩽", +["supseteq"]="⊇", +["uparrow"]="↑", +["Larr"]="↞", +["breve"]="˘", +["questeq"]="≟", +["topf"]="𝕥", +["Hfr"]="ℌ", +["icirc"]="î", +["sigmaf"]="ς", +["nbsp"]=" ", +["mho"]="℧", +["dotsquare"]="⊡", +["rarrsim"]="⥴", +["strns"]="¯", +["swArr"]="⇙", +["leftrightharpoons"]="⇋", +["THORN"]="Þ", +["lsaquo"]="‹", +["varnothing"]="∅", +["Afr"]="𝔄", +["Or"]="⩔", +["subedot"]="⫃", +["agrave"]="à", +["fltns"]="▱", +["apos"]="'", +["Imacr"]="Ī", +["Cap"]="⋒", +["lbrace"]="{", +["lrhar"]="⇋", +["euml"]="ë", +["scirc"]="ŝ", +["NotPrecedes"]="⊀", +["leftrightsquigarrow"]="↭", +["female"]="♀", +["urcrop"]="⌎", +["Pr"]="⪻", +["NotLessSlantEqual"]="⩽̸", +["subsup"]="⫓", +["GreaterTilde"]="≳", +["timesbar"]="⨱", +["Gg"]="⋙", +["NotSquareSupersetEqual"]="⋣", +["starf"]="★", +["sdotb"]="⊡", +["xlarr"]="⟵", +["xharr"]="⟷", +["NotHumpDownHump"]="≎̸", +["andd"]="⩜", +["nis"]="⋼", +["esdot"]="≐", +["ApplyFunction"]="⁡", +["scnap"]="⪺", +["Cup"]="⋓", +["dollar"]="$", +["ShortUpArrow"]="↑", +["nsupseteq"]="⊉", +["solb"]="⧄", +["Lcedil"]="Ļ", +["rharul"]="⥬", +["xopf"]="𝕩", +["mu"]="μ", +["Ntilde"]="Ñ", +["QUOT"]="\"", +["varrho"]="ϱ", +["zwj"]="‍", +["trpezium"]="⏢", +["dbkarow"]="⤏", +["zscr"]="𝓏", +["boxhU"]="╨", +["circledcirc"]="⊚", +["Efr"]="𝔈", +["hcirc"]="ĥ", +["Otilde"]="Õ", +["subseteq"]="⊆", +["swarhk"]="⤦", +["nGtv"]="≫̸", +["ddotseq"]="⩷", +["cularrp"]="⤽", +["RightArrowLeftArrow"]="⇄", +["rx"]="℞", +["mnplus"]="∓", +["auml"]="ä", +["uogon"]="ų", +["notinvc"]="⋶", +["Ffr"]="𝔉", +["apid"]="≋", +["lharul"]="⥪", +["gcirc"]="ĝ", +["ljcy"]="љ", +["dharr"]="⇂", +["phiv"]="ϕ", +["Beta"]="Β", +["kgreen"]="ĸ", +["ne"]="≠", +["oopf"]="𝕠", +["top"]="⊤", +["orslope"]="⩗", +["succnsim"]="⋩", +["erDot"]="≓", +["OverBracket"]="⎴", +["lesg"]="⋚︀", +["eDDot"]="⩷", +["nbsp"]=" ", +["plusdo"]="∔", +["Omacr"]="Ō", +["ape"]="≊", +["lbrke"]="⦋", +["zwnj"]="‌", +["straightphi"]="ϕ", +["NotGreaterGreater"]="≫̸", +["cong"]="≅", +["lopf"]="𝕝", +["ntlg"]="≸", +["iiiint"]="⨌", +["nshortmid"]="∤", +["Darr"]="↡", +["LeftAngleBracket"]="⟨", +["itilde"]="ĩ", +["triangleright"]="▹", +["mcomma"]="⨩", +["ETH"]="Ð", +["roang"]="⟭", +["apE"]="⩰", +["reals"]="ℝ", +["qopf"]="𝕢", +["nsub"]="⊄", +["mid"]="∣", +["NotSucceedsEqual"]="⪰̸", +["szlig"]="ß", +["uwangle"]="⦧", +["Kappa"]="Κ", +["rotimes"]="⨵", +["notniva"]="∌", +["xutri"]="△", +["Iota"]="Ι", +["UnderBar"]="_", +["leqq"]="≦", +["notinva"]="∉", +["nopf"]="𝕟", +["ubrcy"]="ў", +["urcorn"]="⌝", +["luruhar"]="⥦", +["nLtv"]="≪̸", +["angsph"]="∢", +["minusb"]="⊟", +["nesear"]="⤨", +["bot"]="⊥", +["Abreve"]="Ă", +["equiv"]="≡", +["EmptyVerySmallSquare"]="▫", +["bigtriangledown"]="▽", +["nvlt"]="<⃒", +["cylcty"]="⌭", +["PartialD"]="∂", +["ni"]="∋", +["leftarrowtail"]="↢", +["ClockwiseContourIntegral"]="∲", +["divonx"]="⋇", +["rsaquo"]="›", +["bsime"]="⋍", +["popf"]="𝕡", +["quaternions"]="ℍ", +["boxhu"]="┴", +["disin"]="⋲", +["Tcedil"]="Ţ", +["angmsdaa"]="⦨", +["npre"]="⪯̸", +["gesl"]="⋛︀", +["ldquo"]="“", +["between"]="≬", +["wedgeq"]="≙", +["in"]="∈", +["pi"]="π", +["acute"]="´", +["uopf"]="𝕦", +["succnapprox"]="⪺", +["nleqq"]="≦̸", +["ENG"]="Ŋ", +["NotEqualTilde"]="≂̸", +["circlearrowleft"]="↺", +["rtrie"]="⊵", +["integers"]="ℤ", +["frac13"]="⅓", +["gEl"]="⪌", +["ropf"]="𝕣", +["Sigma"]="Σ", +["ocirc"]="ô", +["DownRightTeeVector"]="⥟", +["rfloor"]="⌋", +["SHCHcy"]="Щ", +["Uuml"]="Ü", +["llarr"]="⇇", +["efDot"]="≒", +["NestedLessLess"]="≪", +["SHcy"]="Ш", +["NotCupCap"]="≭", +["xdtri"]="▽", +["curlyvee"]="⋎", +["downharpoonleft"]="⇃", +["Dopf"]="𝔻", +["napos"]="ʼn", +["Auml"]="Ä", +["profline"]="⌒", +["Ycirc"]="Ŷ", +["RightDownTeeVector"]="⥝", +["rAtail"]="⤜", +["osol"]="⊘", +["atilde"]="ã", +["Kscr"]="𝒦", +["ang"]="∠", +["natur"]="♮", +["Gopf"]="𝔾", +["AMP"]="&", +["DoubleDot"]="¨", +["Ouml"]="Ö", +["dlcrop"]="⌍", +["bsolhsub"]="⟈", +["NestedGreaterGreater"]="≫", +["prcue"]="≼", +["Uarr"]="↟", +["dHar"]="⥥", +["ssmile"]="⌣", +["eqslantgtr"]="⪖", +["glj"]="⪤", +["hstrok"]="ħ", +["lesssim"]="≲", +["lowast"]="∗", +["cirmid"]="⫯", +["lates"]="⪭︀", +["fnof"]="ƒ", +["ord"]="⩝", +["rthree"]="⋌", +["rcub"]="}", +["Coproduct"]="∐", +["curren"]="¤", +["Mscr"]="ℳ", +["Iopf"]="𝕀", +["vprop"]="∝", +["andv"]="⩚", +["vrtri"]="⊳", +["yacute"]="ý", +["tilde"]="˜", +["numsp"]=" ", +["acd"]="∿", +["blk34"]="▓", +["Pscr"]="𝒫", +["ReverseEquilibrium"]="⇋", +["diams"]="♦", +["Hopf"]="ℍ", +["veebar"]="⊻", +["Euml"]="Ë", +["intprod"]="⨼", +["macr"]="¯", +["Oscr"]="𝒪", +["nvle"]="≤⃒", +["odblac"]="ő", +["eqcirc"]="≖", +["Kopf"]="𝕂", +["bumpeq"]="≏", +["twoheadrightarrow"]="↠", +["apacir"]="⩯", +["elinters"]="⏧", +["forall"]="∀", +["ofcir"]="⦿", +["dstrok"]="đ", +["simne"]="≆", +["mopf"]="𝕞", +["RightTriangleBar"]="⧐", +["Jopf"]="𝕁", +["parsim"]="⫳", +["pm"]="±", +["boxh"]="─", +["sqsupseteq"]="⊒", +["eplus"]="⩱", +["xi"]="ξ", +["Diamond"]="⋄", +["Wcirc"]="Ŵ", +["ReverseUpEquilibrium"]="⥯", +["ovbar"]="⌽", +["rho"]="ρ", +["Map"]="⤅", +["Qscr"]="𝒬", +["lhblk"]="▄", +["Igrave"]="Ì", +["LeftTriangle"]="⊲", +["LeftVectorBar"]="⥒", +["late"]="⪭", +["cups"]="∪︀", +["lAtail"]="⤛", +["RightTriangle"]="⊳", +["Tscr"]="𝒯", +["capbrcup"]="⩉", +["verbar"]="|", +["leqslant"]="⩽", +["DownBreve"]="̑", +["Laplacetrf"]="ℒ", +["nlsim"]="≴", +["dblac"]="˝", +["empty"]="∅", +["bowtie"]="⋈", +["subdot"]="⪽", +["oror"]="⩖", +["LeftUpDownVector"]="⥑", +["varkappa"]="ϰ", +["kjcy"]="ќ", +["iukcy"]="і", +["angmsdag"]="⦮", +["Sscr"]="𝒮", +["frac34"]="¾", +["acirc"]="â", +["eqslantless"]="⪕", +["YUcy"]="Ю", +["swarr"]="↙", +["DownArrow"]="↓", +["Cdot"]="Ċ", +["RuleDelayed"]="⧴", +["UnderBracket"]="⎵", +["sqcaps"]="⊓︀", +["bbrktbrk"]="⎶", +["barvee"]="⊽", +["jukcy"]="є", +["middot"]="·", +["Psi"]="Ψ", +["DifferentialD"]="ⅆ", +["ordf"]="ª", +["yucy"]="ю", +["int"]="∫", +["maltese"]="✠", +["lHar"]="⥢", +["NotLessLess"]="≪̸", +["filig"]="fi", +["af"]="⁡", +["duarr"]="⇵", +["boxVR"]="╠", +["elsdot"]="⪗", +["Egrave"]="È", +["RightDownVector"]="⇂", +["bernou"]="ℬ", +["szlig"]="ß", +["Ncedil"]="Ņ", +["Aopf"]="𝔸", +["Ccedil"]="Ç", +["DoubleLongLeftArrow"]="⟸", +["Xscr"]="𝒳", +["Mellintrf"]="ℳ", +["ccedil"]="ç", +["NotRightTriangleEqual"]="⋭", +["lotimes"]="⨴", +["gjcy"]="ѓ", +["boxVr"]="╟", +["cuepr"]="⋞", +["DiacriticalTilde"]="˜", +["nwarr"]="↖", +["plusb"]="⊞", +["Iuml"]="Ï", +["Gt"]="≫", +["boxuL"]="╛", +["gsiml"]="⪐", +["vee"]="∨", +["NotGreaterEqual"]="≱", +["isinv"]="∈", +["eng"]="ŋ", +["lessdot"]="⋖", +["olcross"]="⦻", +["pound"]="£", +["RightUpVector"]="↾", +["Chi"]="Χ", +["num"]="#", +["Because"]="∵", +["udarr"]="⇅", +["Copf"]="ℂ", +["precnsim"]="⋨", +["Bernoullis"]="ℬ", +["angmsdah"]="⦯", +["LeftFloor"]="⌊", +["boxvR"]="╞", +["plusmn"]="±", +["ContourIntegral"]="∮", +["notinE"]="⋹̸", +["nwarhk"]="⤣", +["gtrless"]="≷", +["complexes"]="ℂ", +["dashv"]="⊣", +["SubsetEqual"]="⊆", +["NotVerticalBar"]="∤", +["Yscr"]="𝒴", +["RightCeiling"]="⌉", +["Rarr"]="↠", +["vartheta"]="ϑ", +["PrecedesSlantEqual"]="≼", +["boxUR"]="╚", +["ntilde"]="ñ", +["boxVL"]="╣", +["bigvee"]="⋁", +["aelig"]="æ", +["angrtvbd"]="⦝", +["scap"]="⪸", +["Topf"]="𝕋", +["hfr"]="𝔥", +["Nu"]="Ν", +["Downarrow"]="⇓", +["rsquor"]="’", +["circledS"]="Ⓢ", +["ntilde"]="ñ", +["circledast"]="⊛", +["eqsim"]="≂", +["kcy"]="к", +["ldrdhar"]="⥧", +["nLl"]="⋘̸", +["hyphen"]="‐", +["Conint"]="∯", +["xsqcup"]="⨆", +["asympeq"]="≍", +["Wopf"]="𝕎", +["gfr"]="𝔤", +["larr"]="←", +["ncy"]="н", +["iacute"]="í", +["gE"]="≧", +["gesdoto"]="⪂", +["tshcy"]="ћ", +["IEcy"]="Е", +["NotGreater"]="≯", +["Vbar"]="⫫", +["Vopf"]="𝕍", +["UpArrowDownArrow"]="⇅", +["mp"]="∓", +["RightDownVectorBar"]="⥕", +["exist"]="∃", +["frac38"]="⅜", +["zdot"]="ż", +["eparsl"]="⧣", +["lacute"]="ĺ", +["zopf"]="𝕫", +["zigrarr"]="⇝", +["zhcy"]="ж", +["zeetrf"]="ℨ", +["vangrt"]="⦜", +["Breve"]="˘", +["odot"]="⊙", +["blacklozenge"]="⧫", +["NotRightTriangle"]="⋫", +["yuml"]="ÿ", +["homtht"]="∻", +["yscr"]="𝓎", +["yopf"]="𝕪", +["afr"]="𝔞", +["Yopf"]="𝕐", +["ThinSpace"]=" ", +["yfr"]="𝔶", +["larrlp"]="↫", +["yen"]="¥", +["nwarrow"]="↖", +["supmult"]="⫂", +["nearrow"]="↗", +["bigsqcup"]="⨆", +["yacy"]="я", +["lcy"]="л", +["ii"]="ⅈ", +["seswar"]="⤩", +["yacute"]="ý", +["lArr"]="⇐", +["Uparrow"]="⇑", +["xwedge"]="⋀", +["xrarr"]="⟶", +["xrArr"]="⟹", +["oast"]="⊛", +["xoplus"]="⨁", +["ImaginaryI"]="ⅈ", +["xnis"]="⋻", +["xhArr"]="⟺", +["xcirc"]="◯", +["xcap"]="⋂", +["wreath"]="≀", +["wp"]="℘", +["lfr"]="𝔩", +["wedbar"]="⩟", +["psi"]="ψ", +["Xopf"]="𝕏", +["vzigzag"]="⦚", +["realpart"]="ℜ", +["vsubne"]="⊊︀", +["DoubleLongLeftRightArrow"]="⟺", +["nsqsube"]="⋢", +["varpropto"]="∝", +["npreceq"]="⪯̸", +["vopf"]="𝕧", +["vert"]="|", +["vellip"]="⋮", +["vdash"]="⊢", +["hkswarow"]="⤦", +["sqsube"]="⊑", +["tdot"]="⃛", +["leq"]="≤", +["nacute"]="ń", +["succcurlyeq"]="≽", +["vartriangleright"]="⊳", +["Re"]="ℜ", +["varsupsetneqq"]="⫌︀", +["dsol"]="⧶", +["Tau"]="Τ", +["rsqb"]="]", +["varsupsetneq"]="⊋︀", +["varsubsetneq"]="⊊︀", +["varsigma"]="ς", +["expectation"]="ℰ", +["kfr"]="𝔨", +["varr"]="↕", +["varpi"]="ϖ", +["varphi"]="ϕ", +["CloseCurlyDoubleQuote"]="”", +["varepsilon"]="ϵ", +["zcy"]="з", +["lt"]="<", +["vBarv"]="⫩", +["vBar"]="⫨", +["larrfs"]="⤝", +["lthree"]="⋋", +["nsimeq"]="≄", +["div"]="÷", +["Fopf"]="𝔽", +["rbrack"]="]", +["searrow"]="↘", +["lcedil"]="ļ", +["uuarr"]="⇈", +["utrif"]="▴", +["utilde"]="ũ", +["urtri"]="◹", +["mapstoleft"]="↤", +["olcir"]="⦾", +["upsih"]="ϒ", +["upsi"]="υ", +["curlywedge"]="⋏", +["uplus"]="⊎", +["upharpoonleft"]="↿", +["updownarrow"]="↕", +["uml"]="¨", +["cirscir"]="⧂", +["ffr"]="𝔣", +["uml"]="¨", +["epsiv"]="ϵ", +["umacr"]="ū", +["ulcrop"]="⌏", +["ulcorner"]="⌜", +["dtrif"]="▾", +["uhblk"]="▀", +["uharr"]="↾", +["ugrave"]="ù", +["ufr"]="𝔲", +["ufisht"]="⥾", +["mcy"]="м", +["ngE"]="≧̸", +["udhar"]="⥮", +["iinfin"]="⧜", +["kcedil"]="ķ", +["natural"]="♮", +["udblac"]="ű", +["Gamma"]="Γ", +["sol"]="/", +["ucirc"]="û", +["dtdot"]="⋱", +["lsimg"]="⪏", +["Gfr"]="𝔊", +["nearhk"]="⤤", +["NotTildeTilde"]="≉", +["frac15"]="⅕", +["uarr"]="↑", +["succeq"]="⪰", +["COPY"]="©", +["uacute"]="ú", +["uHar"]="⥣", +["efr"]="𝔢", +["NotGreaterSlantEqual"]="⩾̸", +["backsim"]="∽", +["mlcp"]="⫛", +["Mu"]="Μ", +["tscy"]="ц", +["NotExists"]="∄", +["tscr"]="𝓉", +["ssetmn"]="∖", +["triplus"]="⨹", +["tridot"]="◬", +["trianglelefteq"]="⊴", +["orderof"]="ℴ", +["thetasym"]="ϑ", +["emptyv"]="∅", +["emacr"]="ē", +["trade"]="™", +["spades"]="♠", +["ncedil"]="ņ", +["tprime"]="‴", +["NotGreaterFullEqual"]="≧̸", +["topbot"]="⌶", +["ctdot"]="⋯", +["sqsubset"]="⊏", +["comma"]=",", +["Mcy"]="М", +["notni"]="∌", +["OpenCurlyDoubleQuote"]="“", +["sup2"]="²", +["ascr"]="𝒶", +["UnionPlus"]="⊎", +["scy"]="с", +["gesdotol"]="⪄", +["KHcy"]="Х", +["frac45"]="⅘", +["larrsim"]="⥳", +["COPY"]="©", +["comp"]="∁", +["Lopf"]="𝕃", +["thorn"]="þ", +["prE"]="⪳", +["Eta"]="Η", +["thksim"]="∼", +["dscr"]="𝒹", +["thinsp"]=" ", +["ucirc"]="û", +["clubsuit"]="♣", +["LeftDownVector"]="⇃", +["oscr"]="ℴ", +["thetav"]="ϑ", +["TildeFullEqual"]="≅", +["triangle"]="▵", +["smashp"]="⨳", +["subsetneqq"]="⫋", +["ecirc"]="ê", +["therefore"]="∴", +["Theta"]="Θ", +["plusdu"]="⨥", +["Assign"]="≔", +["telrec"]="⌕", +["UpperLeftArrow"]="↖", +["boxUL"]="╝", +["planck"]="ℏ", +["rarrc"]="⤳", +["UpDownArrow"]="↕", +["incare"]="℅", +["vcy"]="в", +["Oopf"]="𝕆", +["cwint"]="∱", +["Kcy"]="К", +["PrecedesEqual"]="⪯", +["coloneq"]="≔", +["duhar"]="⥯", +["NewLine"]="\n", +["tau"]="τ", +["supE"]="⫆", +["downarrow"]="↓", +["half"]="½", +["cscr"]="𝒸", +["omacr"]="ō", +["SquareSubset"]="⊏", +["downharpoonright"]="⇂", +["Uopf"]="𝕌", +["swnwar"]="⤪", +["swarrow"]="↙", +["nGg"]="⋙̸", +["imped"]="Ƶ", +["diam"]="⋄", +["gla"]="⪥", +["horbar"]="―", +["eth"]="ð", +["supsup"]="⫖", +["hslash"]="ℏ", +["circeq"]="≗", +["darr"]="↓", +["supsim"]="⫈", +["supset"]="⊃", +["supplus"]="⫀", +["ecolon"]="≕", +["csube"]="⫑", +["Nopf"]="ℕ", +["RoundImplies"]="⥰", +["ycy"]="ы", +["suphsub"]="⫗", +["SucceedsSlantEqual"]="≽", +["capand"]="⩄", +["fscr"]="𝒻", +["supdot"]="⪾", +["Bfr"]="𝔅", +["NotLeftTriangle"]="⋪", +["RightArrowBar"]="⇥", +["boxVH"]="╬", +["raquo"]="»", +["rightleftarrows"]="⇄", +["Cross"]="⨯", +["egsdot"]="⪘", +["nvDash"]="⊭", +["RBarr"]="⤐", +["sup3"]="³", +["cuvee"]="⋎", +["sup2"]="²", +["angst"]="Å", +["backcong"]="≌", +["oelig"]="œ", +["Kfr"]="𝔎", +["boxVh"]="╫", +["Zfr"]="ℨ", +["sung"]="♪", +["tcy"]="т", +["nshortparallel"]="∦", +["Qopf"]="ℚ", +["sum"]="∑", +["succsim"]="≿", +["rmoust"]="⎱", +["nleftarrow"]="↚", +["cup"]="∪", +["vsubnE"]="⫋︀", +["copy"]="©", +["Vdash"]="⊩", +["Kcedil"]="Ķ", +["escr"]="ℯ", +["gnE"]="≩", +["uacute"]="ú", +["napid"]="≋̸", +["le"]="≤", +["DD"]="ⅅ", +["rarrlp"]="↬", +["Lfr"]="𝔏", +["subsim"]="⫇", +["ZHcy"]="Ж", +["subseteqq"]="⫅", +["rcedil"]="ŗ", +["napprox"]="≉", +["laquo"]="«", +["njcy"]="њ", +["Colone"]="⩴", +["Nacute"]="Ń", +["Yfr"]="𝔜", +["aring"]="å", +["mapsto"]="↦", +["brvbar"]="¦", +["Popf"]="ℙ", +["sigma"]="σ", +["subrarr"]="⥹", +["cire"]="≗", +["subplus"]="⪿", +["dfr"]="𝔡", +["subne"]="⊊", +["hscr"]="𝒽", +["lgE"]="⪑", +["racute"]="ŕ", +["LeftRightVector"]="⥎", +["subnE"]="⫋", +["isinE"]="⋹", +["boxdR"]="╒", +["CupCap"]="≍", +["ncongdot"]="⩭̸", +["bigcap"]="⋂", +["nsce"]="⪰̸", +["submult"]="⫁", +["NotLessEqual"]="≰", +["piv"]="ϖ", +["mstpos"]="∾", +["sub"]="⊂", +["cent"]="¢", +["capcup"]="⩇", +["blacksquare"]="▪", +["Oacute"]="Ó", +["circledR"]="®", +["Atilde"]="Ã", +["tritime"]="⨻", +["notnivb"]="⋾", +["Sopf"]="𝕊", +["Sum"]="∑", +["hoarr"]="⇿", +["Scedil"]="Ş", +["square"]="□", +["cfr"]="𝔠", +["divide"]="÷", +["sacute"]="ś", +["NotLessTilde"]="≴", +["gscr"]="ℊ", +["ll"]="≪", +["isins"]="⋴", +["PrecedesTilde"]="≾", +["sqsupset"]="⊐", +["OverBrace"]="⏞", +["Epsilon"]="Ε", +["sqsupe"]="⊒", +["iprod"]="⨼", +["dash"]="‐", +["sqsup"]="⊐", +["nsccue"]="⋡", +["infin"]="∞", +["frac25"]="⅖", +["backepsilon"]="϶", +["robrk"]="⟧", +["harr"]="↔", +["ogt"]="⧁", +["sopf"]="𝕤", +["larrhk"]="↩", +["boxvl"]="┤", +["tcedil"]="ţ", +["cwconint"]="∲", +["lfloor"]="⌊", +["ucy"]="у", +["CloseCurlyQuote"]="’", +["lsquor"]="‚", +["softcy"]="ь", +["smte"]="⪬", +["smt"]="⪪", +["isindot"]="⋵", +["Pi"]="Π", +["lnE"]="≨", +["caret"]="⁁", +["TildeEqual"]="≃", +["delta"]="δ", +["euro"]="€", +["angrtvb"]="⊾", +["Escr"]="ℰ", +["Ucirc"]="Û", +["rarrap"]="⥵", +["smile"]="⌣", +["ccupssm"]="⩐", +["LeftArrow"]="←", +["frac12"]="½", +["smallsetminus"]="∖", +["Zscr"]="𝒵", +["angrt"]="∟", +["lurdshar"]="⥊", +["simrarr"]="⥲", +["boxUl"]="╜", +["simplus"]="⨤", +["scedil"]="ş", +["Eacute"]="É", +["ast"]="*", +["simg"]="⪞", +["Aring"]="Å", +["yuml"]="ÿ", +["bsemi"]="⁏", +["Omicron"]="Ο", +["simdot"]="⩪", +["sim"]="∼", +["OverBar"]="‾", +["intlarhk"]="⨗", +["sfr"]="𝔰", +["boxDl"]="╖", +["Cconint"]="∰", +["ncaron"]="ň", +["Lmidot"]="Ŀ", +["shy"]="­", +["LeftTriangleEqual"]="⊴", +["esim"]="≂", +["THORN"]="Þ", +["REG"]="®", +["xodot"]="⨀", +["ddarr"]="⇊", +["setmn"]="∖", +["Ugrave"]="Ù", +["setminus"]="∖", +["dotminus"]="∸", +["semi"]=";", +["sect"]="§", +["ncong"]="≇", +["bNot"]="⫭", +["Rho"]="Ρ", +["GJcy"]="Ѓ", +["boxhD"]="╥", +["searr"]="↘", +["Del"]="∇", +["auml"]="ä", +["Cfr"]="ℭ", +["VDash"]="⊫", +["seArr"]="⇘", +["ncap"]="⩃", +["Product"]="∏", +["sdot"]="⋅", +["frac58"]="⅝", +["zcaron"]="ž", +["DZcy"]="Џ", +["ltlarr"]="⥶", +["scsim"]="≿", +["VerticalTilde"]="≀", +["squf"]="▪", +["dharl"]="⇃", +["iexcl"]="¡", +["bumpE"]="⪮", +["scnsim"]="⋩", +["drcorn"]="⌟", +["Xfr"]="𝔛", +["nsube"]="⊈", +["Dfr"]="𝔇", +["nsmid"]="∤", +["not"]="¬", +["ShortRightArrow"]="→", +["hookrightarrow"]="↪", +["par"]="∥", +["sc"]="≻", +["rtrif"]="▸", +["tosa"]="⤩", +["acirc"]="â", +["gtcc"]="⪧", +["DJcy"]="Ђ", +["NotLeftTriangleEqual"]="⋬", +["bigcirc"]="◯", +["rbrksld"]="⦎", +["angmsdab"]="⦩", +["Aring"]="Å", +["rlm"]="‏", +["Therefore"]="∴", +["lambda"]="λ", +["LowerRightArrow"]="↘", +["asymp"]="≈", +["rscr"]="𝓇", +["ouml"]="ö", +["boxDr"]="╓", +["divideontimes"]="⋇", +["rppolint"]="⨒", +["oacute"]="ó", +["Rcedil"]="Ŗ", +["roplus"]="⨮", +["DownLeftVectorBar"]="⥖", +["Wfr"]="𝔚", +["lesseqgtr"]="⋚", +["ropar"]="⦆", +["bnot"]="⌐", +["Integral"]="∫", +["boxdr"]="┌", +["LeftTee"]="⊣", +["hercon"]="⊹", +["rnmid"]="⫮", +["gvnE"]="≩︀", +["bdquo"]="„", +["Zacute"]="Ź", +["Lscr"]="ℒ", +["ring"]="˚", +["supseteqq"]="⫆", +["kscr"]="𝓀", +["approxeq"]="≊", +["ntriangleright"]="⋫", +["lessgtr"]="≶", +["prurel"]="⊰", +["rightleftharpoons"]="⇌", +["pitchfork"]="⋔", +["ltrPar"]="⦖", +["NotSubset"]="⊂⃒", +["Yacute"]="Ý", +["eta"]="η", +["Rfr"]="ℜ", +["UpTee"]="⊥", +["rfisht"]="⥽", +["HumpEqual"]="≏", +["NotLess"]="≮", +["sbquo"]="‚", +["pointint"]="⨕", +["ycirc"]="ŷ", +["lescc"]="⪨", +["looparrowright"]="↬", +["cross"]="✗", +["grave"]="`", +["rdquor"]="”", +["blacktriangleleft"]="◂", +["rdldhar"]="⥩", +["Nscr"]="𝒩", +["atilde"]="ã", +["lsqb"]="[", +["lbrack"]="[", +["Lambda"]="Λ", +["rbrace"]="}", +["times"]="×", +["deg"]="°", +["uuml"]="ü", +["MediumSpace"]=" ", +["lAarr"]="⇚", +["bull"]="•", +["daleth"]="ℸ", +["ccirc"]="ĉ", +["capcap"]="⩋", +["fllig"]="fl", +["Qfr"]="𝔔", +["lopar"]="⦅", +["nspar"]="∦", +["RightTriangleEqual"]="⊵", +["rbrke"]="⦌", +["NotPrecedesSlantEqual"]="⋠", +["rbbrk"]="❳", +["hbar"]="ℏ", +["rbarr"]="⤍", +["rationals"]="ℚ", +["Oslash"]="Ø", +["frac14"]="¼", +["ratio"]="∶", +["ratail"]="⤚", +["rarrw"]="↝", +["Gammad"]="Ϝ", +["rarrhk"]="↪", +["rarrfs"]="⤞", +["lparlt"]="⦓", +["rarr"]="→", +["Backslash"]="∖", +["zacute"]="ź", +["euml"]="ë", +["GreaterGreater"]="⪢", +["NotTilde"]="≁", +["rang"]="⟩", +["deg"]="°", +["rArr"]="⇒", +["congdot"]="⩭", +["rAarr"]="⇛", +["roarr"]="⇾", +["emsp14"]=" ", +["quot"]="\"", +["isinsv"]="⋳", +["quatint"]="⨖", +["bcy"]="б", +["qprime"]="⁗", +["race"]="∽̱", +["tint"]="∭", +["egs"]="⪖", +["Proportion"]="∷", +["aleph"]="ℵ", +["wcirc"]="ŵ", +["prime"]="′", +["barwedge"]="⌅", +["precsim"]="≾", +["frac18"]="⅛", +["nsubseteqq"]="⫅̸", +["primes"]="ℙ", +["csup"]="⫐", +["boxuR"]="╘", +["lmidot"]="ŀ", +["squ"]="□", +["Oslash"]="Ø", +["SOFTcy"]="Ь", +["nvinfin"]="⧞", +["precneqq"]="⪵", +["precnapprox"]="⪹", +["SupersetEqual"]="⊇", +["angmsdaf"]="⦭", +["preccurlyeq"]="≼", +["precapprox"]="⪷", +["amp"]="&", +["cudarrr"]="⤵", +["Bscr"]="ℬ", +["circleddash"]="⊝", +["pr"]="≺", +["emsp"]=" ", +["DoubleLongRightArrow"]="⟹", +["cupcap"]="⩆", +["plustwo"]="⨧", +["numero"]="№", +["ddagger"]="‡", +["die"]="¨", +["vArr"]="⇕", +["Ograve"]="Ò", +["LeftArrowBar"]="⇤", +["period"]=".", +["InvisibleTimes"]="⁢", +["NoBreak"]="⁠", +["ap"]="≈", +["rtriltri"]="⧎", +["curarrm"]="⤼", +["planckh"]="ℎ", +["Leftarrow"]="⇐", +["Not"]="⫬", +["RightDoubleBracket"]="⟧", +["Xi"]="Ξ", +["phone"]="☎", +["blk12"]="▒", +["boxvr"]="├", +["intcal"]="⊺", +["gneqq"]="≩", +["Hacek"]="ˇ", +["bscr"]="𝒷", +["pfr"]="𝔭", +["pertenk"]="‱", +["perp"]="⊥", +["npart"]="∂̸", +["Odblac"]="Ő", +["Vfr"]="𝔙", +["Ocy"]="О", +["rhard"]="⇁", +["Vscr"]="𝒱", +["Square"]="□", +["hearts"]="♥", +["NotSubsetEqual"]="⊈", +["uArr"]="⇑", +["nrArr"]="⇏", +["otimesas"]="⨶", +["ggg"]="⋙", +["otilde"]="õ", +["ee"]="ⅇ", +["NotElement"]="∉", +["VerticalLine"]="|", +["orv"]="⩛", +["Umacr"]="Ū", +["boxHU"]="╩", +["Mopf"]="𝕄", +["Uscr"]="𝒰", +["EqualTilde"]="≂", +["Pcy"]="П", +["ordm"]="º", +["DoubleContourIntegral"]="∯", +["triangledown"]="▿", +["or"]="∨", +["DownTee"]="⊤", +["frac56"]="⅚", +["ominus"]="⊖", +["oslash"]="ø", +["omid"]="⦶", +["para"]="¶", +["gescc"]="⪩", +["Ufr"]="𝔘", +["omicron"]="ο", +["doteq"]="≐", +["mumap"]="⊸", +["urcorner"]="⌝", +["olarr"]="↺", +["DotEqual"]="≐", +["ogon"]="˛", +["odiv"]="⨸", +["ltcc"]="⪦", +["nparsl"]="⫽⃥", +["Colon"]="∷", +["REG"]="®", +["cirE"]="⧃", +["laemptyv"]="⦴", +["Igrave"]="Ì", +["rdsh"]="↳", +["nsucc"]="⊁", +["xotime"]="⨂", +["Wscr"]="𝒲", +["ShortDownArrow"]="↓", +["copysr"]="℗", +["Longleftarrow"]="⟸", +["oS"]="Ⓢ", +["Yuml"]="Ÿ", +["becaus"]="∵", +["Rightarrow"]="⇒", +["nwArr"]="⇖", +["nvsim"]="∼⃒", +["SquareIntersection"]="⊓", +["Barv"]="⫧", +["nvrtrie"]="⊵⃒", +["nvltrie"]="⊴⃒", +["sube"]="⊆", +["boxHd"]="╤", +["Iukcy"]="І", +["NotSquareSubsetEqual"]="⋢", +["DownRightVectorBar"]="⥗", +["Jscr"]="𝒥", +["LeftTriangleBar"]="⧏", +["blacktriangleright"]="▸", +["ntrianglerighteq"]="⋭", +["ntrianglelefteq"]="⋬", +["Bopf"]="𝔹", +["LeftUpVector"]="↿", +["OpenCurlyQuote"]="‘", +["NotSupersetEqual"]="⊉", +["Barwed"]="⌆", +["nsupe"]="⊉", +["nsupE"]="⫆̸", +["lrtri"]="⊿", +["pluse"]="⩲", +["blk14"]="░", +["Eopf"]="𝔼", +["boxv"]="│", +["Pfr"]="𝔓", +["DownTeeArrow"]="↧", +["DownLeftVector"]="↽", +["YIcy"]="Ї", +["phmmat"]="ℳ", +["NotRightTriangleBar"]="⧐̸", +["bigcup"]="⋃", +["ubreve"]="ŭ", +["lEg"]="⪋", +["IJlig"]="IJ", +["nrtri"]="⋫", +["npolint"]="⨔", +["micro"]="µ", +["cir"]="○", +["ge"]="≥", +["NotGreaterLess"]="≹", +["YAcy"]="Я", +["nparallel"]="∦", +["thorn"]="þ", +["Vert"]="‖", +["DoubleRightTee"]="⊨", +["sup3"]="³", +["notindot"]="⋵̸", +["not"]="¬", +["Delta"]="Δ", +["simeq"]="≃", +["nltrie"]="⋬", +["beth"]="ℶ", +["bfr"]="𝔟", +["loarr"]="⇽", +["Ifr"]="ℑ", +["nleq"]="≰", +["FilledSmallSquare"]="◼", +["nldr"]="‥", +["CirclePlus"]="⊕", +["nless"]="≮", +["Atilde"]="Ã", +["Ograve"]="Ò", +["nhpar"]="⫲", +["rlarr"]="⇄", +["bsol"]="\\", +["nharr"]="↮", +["pre"]="⪯", +["ngtr"]="≯", +["acy"]="а", +["ngsim"]="≵", +["nges"]="⩾̸", +["ngeqq"]="≧̸", +["Otilde"]="Õ", +["nedot"]="≐̸", +["nearr"]="↗", +["frac23"]="⅔", +["frac16"]="⅙", +["lcaron"]="ľ", +["naturals"]="ℕ", +["nang"]="∠⃒", +["nVDash"]="⊯", +["longrightarrow"]="⟶", +["igrave"]="ì", +["DownArrowUpArrow"]="⇵", +["Omega"]="Ω", +["ZeroWidthSpace"]="​", +["curren"]="¤", +["Jfr"]="𝔍", +["DoubleLeftArrow"]="⇐", +["bcong"]="≌", +["mscr"]="𝓂", +["Rscr"]="ℛ", +["twixt"]="≬", +["frac12"]="½", +["slarr"]="←", +["LessSlantEqual"]="⩽", +["oint"]="∮", +["amacr"]="ā", +["ell"]="ℓ", +["midcir"]="⫰", +["Lang"]="⟪", +["micro"]="µ", +["ldca"]="⤶", +["marker"]="▮", +["succ"]="≻", +["Int"]="∬", +["Jukcy"]="Є", +["succneqq"]="⪶", +["because"]="∵", +["male"]="♂", +["lrhard"]="⥭", +["complement"]="∁", +["lvertneqq"]="≨︀", +["DoubleUpDownArrow"]="⇕", +["ltrif"]="◂", +["ltri"]="◃", +["dot"]="˙", +["bnequiv"]="≡⃥", +["Ntilde"]="Ñ", +["ocy"]="о", +["lstrok"]="ł", +["RightVector"]="⇀", +["backprime"]="‵", +["loz"]="◊", +["lowbar"]="_", +["infintie"]="⧝", +["nsqsupe"]="⋣", +["Tfr"]="𝔗", +["loplus"]="⨭", +["nsubset"]="⊂⃒", +["looparrowleft"]="↫", +["longmapsto"]="⟼", +["longleftarrow"]="⟵", +["PlusMinus"]="±", +["NotSquareSubset"]="⊏̸", +["lobrk"]="⟦", +["DoubleVerticalBar"]="∥", +["NotLeftTriangleBar"]="⧏̸", +["equivDD"]="⩸", +["loang"]="⟬", +["lneqq"]="≨", +["iuml"]="ï", +["lmoust"]="⎰", +["csub"]="⫏", +["lharu"]="↼", +["lhard"]="↽", +["lfisht"]="⥼", +["lesseqqgtr"]="⪋", +["rcy"]="р", +["cent"]="¢", +["lessapprox"]="⪅", +["lesges"]="⪓", +["Utilde"]="Ũ", +["leftharpoonup"]="↼", +["leftarrow"]="←", +["awconint"]="∳", +["lcub"]="{", +["excl"]="!", +["Sfr"]="𝔖", +["leftharpoondown"]="↽", +["Vvdash"]="⊪", +["there4"]="∴", +["lat"]="⪫", +["larrtl"]="↢", +["Precedes"]="≺", +["Gcedil"]="Ģ", +["boxtimes"]="⊠", +["colon"]=":", +["InvisibleComma"]="⁣", +["OverParenthesis"]="⏜", +["lagran"]="ℒ", +["Rang"]="⟫", +["djcy"]="ђ", +["curarr"]="↷", +["gsim"]="≳", +["cedil"]="¸", +["boxur"]="└", +["rightthreetimes"]="⋌", +["eth"]="ð", +["Ropf"]="ℝ", +["Agrave"]="À", +["iscr"]="𝒾", +["ccedil"]="ç", +["imof"]="⊷", +["imagline"]="ℐ", +["UpArrow"]="↑", +["boxdL"]="╕", +["Mfr"]="𝔐", +["SucceedsTilde"]="≿", +["barwed"]="⌅", +["NotSuperset"]="⊃⃒", +["gneq"]="⪈", +["hksearow"]="⤥", +["lE"]="≦", +["nlarr"]="↚", +["gt"]=">", +["Zopf"]="ℤ", +["gammad"]="ϝ", +["rect"]="▭", +["Hstrok"]="Ħ", +["frac34"]="¾", +["acute"]="´", +["fork"]="⋔", +["Vee"]="⋁", +["ldrushar"]="⥋", +["ThickSpace"]="  ", +["LeftTeeVector"]="⥚", +["egrave"]="è", +["ngt"]="≯", +["nsubseteq"]="⊈", +["frac78"]="⅞", +["SquareSubsetEqual"]="⊑", +["ecy"]="э", +["UpTeeArrow"]="↥", +["pcy"]="п", +["GreaterSlantEqual"]="⩾", +["ecaron"]="ě", +["cupor"]="⩅", +["Nfr"]="𝔑", +["rightarrowtail"]="↣", +["Ofr"]="𝔒", +["subE"]="⫅", +["IOcy"]="Ё", +["cedil"]="¸", +["cdot"]="ċ", +["ShortLeftArrow"]="←", +["CircleMinus"]="⊖", +["Dagger"]="‡", +["cupbrcap"]="⩈", +["SmallCircle"]="∘", +["cirfnint"]="⨐", +["nvge"]="≥⃒", +["Eacute"]="É", +["Equal"]="⩵", +["MinusPlus"]="∓", +["Tab"]=" ", +} -- cgit v1.2.3